-- MySQL dump 10.13  Distrib 8.0.44, for Linux (x86_64)
--
-- Host: dev-mysql.cxd6vtbcnuvz.ap-south-1.rds.amazonaws.com    Database: alfahim_cme_devdb
-- ------------------------------------------------------
-- Server version	8.0.42

/*!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 `about_uses`
--

DROP TABLE IF EXISTS `about_uses`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `about_uses` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `document_id` varchar(255) DEFAULT NULL,
  `sub_title` varchar(255) DEFAULT NULL,
  `title` varchar(255) DEFAULT NULL,
  `description` longtext,
  `section_title` varchar(255) DEFAULT NULL,
  `section_description` longtext,
  `created_at` datetime(6) DEFAULT NULL,
  `updated_at` datetime(6) DEFAULT NULL,
  `published_at` datetime(6) DEFAULT NULL,
  `created_by_id` int unsigned DEFAULT NULL,
  `updated_by_id` int unsigned DEFAULT NULL,
  `locale` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `about_uses_documents_idx` (`document_id`,`locale`,`published_at`),
  KEY `about_uses_created_by_id_fk` (`created_by_id`),
  KEY `about_uses_updated_by_id_fk` (`updated_by_id`),
  CONSTRAINT `about_uses_created_by_id_fk` FOREIGN KEY (`created_by_id`) REFERENCES `admin_users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `about_uses_updated_by_id_fk` FOREIGN KEY (`updated_by_id`) REFERENCES `admin_users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=28 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `about_uses`
--

LOCK TABLES `about_uses` WRITE;
/*!40000 ALTER TABLE `about_uses` DISABLE KEYS */;
INSERT INTO `about_uses` VALUES (1,'tzlebik01a0bhajnx2g2py6w','Central Motors & Equipment','Suppliers of Motor Equipment in Abu Dhabi, Dubai and Sharjah','<p>As one of the UAE’s foremost providers of motors and equipment, Central Motors &amp; Equipment offers a diverse range of brands, products and services to its customers.</p>','CME Divisions','<p>Following four divisions of CM&amp;E operates nationwide with a unified Logistics operation:</p>','2025-12-12 06:27:58.968000','2026-04-01 07:30:52.080000',NULL,1,1,'en'),(27,'tzlebik01a0bhajnx2g2py6w','Central Motors & Equipment','Suppliers of Motor Equipment in Abu Dhabi, Dubai and Sharjah','<p>As one of the UAE’s foremost providers of motors and equipment, Central Motors &amp; Equipment offers a diverse range of brands, products and services to its customers.</p>','CME Divisions','<p>Following four divisions of CM&amp;E operates nationwide with a unified Logistics operation:</p>','2025-12-12 06:27:58.968000','2026-04-01 07:30:52.080000','2026-04-01 07:30:54.654000',1,1,'en');
/*!40000 ALTER TABLE `about_uses` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `about_uses_cmps`
--

DROP TABLE IF EXISTS `about_uses_cmps`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `about_uses_cmps` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `entity_id` int unsigned DEFAULT NULL,
  `cmp_id` int unsigned DEFAULT NULL,
  `component_type` varchar(255) DEFAULT NULL,
  `field` varchar(255) DEFAULT NULL,
  `order` double unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `about_uses_uq` (`entity_id`,`cmp_id`,`field`,`component_type`),
  KEY `about_uses_field_idx` (`field`),
  KEY `about_uses_component_type_idx` (`component_type`),
  KEY `about_uses_entity_fk` (`entity_id`),
  CONSTRAINT `about_uses_entity_fk` FOREIGN KEY (`entity_id`) REFERENCES `about_uses` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=303 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `about_uses_cmps`
--

LOCK TABLES `about_uses_cmps` WRITE;
/*!40000 ALTER TABLE `about_uses_cmps` DISABLE KEYS */;
INSERT INTO `about_uses_cmps` VALUES (1,1,56,'common.title-desc-with-img','aboutSection',8),(4,1,58,'common.title-desc-with-img','cardSection',2),(5,1,59,'common.title-desc-with-img','cardSection',4),(6,1,1,'common.title-desc-btn-img','sections',2),(46,1,7,'common.title-desc-btn-img','sections',3),(47,1,8,'common.title-desc-btn-img','sections',1),(70,1,15,'common.title-desc-btn-img','sections',4),(214,1,64,'common.seo','seo',7),(295,27,800,'common.title-desc-with-img','aboutSection',NULL),(296,27,801,'common.title-desc-with-img','cardSection',1),(297,27,802,'common.title-desc-with-img','cardSection',2),(298,27,76,'common.title-desc-btn-img','sections',1),(299,27,77,'common.title-desc-btn-img','sections',2),(300,27,78,'common.title-desc-btn-img','sections',3),(301,27,79,'common.title-desc-btn-img','sections',4),(302,27,151,'common.seo','seo',NULL);
/*!40000 ALTER TABLE `about_uses_cmps` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `admin_permissions`
--

DROP TABLE IF EXISTS `admin_permissions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `admin_permissions` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `document_id` varchar(255) DEFAULT NULL,
  `action` varchar(255) DEFAULT NULL,
  `action_parameters` json DEFAULT NULL,
  `subject` varchar(255) DEFAULT NULL,
  `properties` json DEFAULT NULL,
  `conditions` json DEFAULT NULL,
  `created_at` datetime(6) DEFAULT NULL,
  `updated_at` datetime(6) DEFAULT NULL,
  `published_at` datetime(6) DEFAULT NULL,
  `created_by_id` int unsigned DEFAULT NULL,
  `updated_by_id` int unsigned DEFAULT NULL,
  `locale` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `admin_permissions_documents_idx` (`document_id`,`locale`,`published_at`),
  KEY `admin_permissions_created_by_id_fk` (`created_by_id`),
  KEY `admin_permissions_updated_by_id_fk` (`updated_by_id`),
  CONSTRAINT `admin_permissions_created_by_id_fk` FOREIGN KEY (`created_by_id`) REFERENCES `admin_users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `admin_permissions_updated_by_id_fk` FOREIGN KEY (`updated_by_id`) REFERENCES `admin_users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=599 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `admin_permissions`
--

LOCK TABLES `admin_permissions` WRITE;
/*!40000 ALTER TABLE `admin_permissions` DISABLE KEYS */;
INSERT INTO `admin_permissions` VALUES (5,'z6fd7pfv7utwjk3f81tlph81','plugin::content-manager.explorer.create','{}','api::footer.footer','{\"fields\": []}','[]','2025-11-21 05:39:32.038000','2025-12-03 11:57:28.802000','2025-11-21 05:39:32.038000',NULL,NULL,NULL),(6,'gnduwzgr5mp3lf0y6l7l3y5o','plugin::content-manager.explorer.create','{}','api::header.header','{\"fields\": [\"menu\", \"showMultilingual\"]}','[]','2025-11-21 05:39:32.140000','2025-12-12 04:52:38.425000','2025-11-21 05:39:32.141000',NULL,NULL,NULL),(7,'n1lalkm8b0mkl8sd9wj62986','plugin::content-manager.explorer.create','{}','api::home.home','{\"fields\": [\"banner.title\", \"seo.metaTitle\", \"seo.metaDescription\", \"seo.preventIndexing\", \"seo.keywords\", \"seo.canonicalUrl\", \"seo.metaHead\", \"seo.ogMeta.name\", \"seo.ogMeta.content\", \"seo.wordDescription\", \"seo.metaImage\"]}','[]','2025-11-21 05:39:32.242000','2025-12-12 04:52:38.426000','2025-11-21 05:39:32.243000',NULL,NULL,NULL),(16,'ortpcr8h7uj346erjwc94vpz','plugin::content-manager.explorer.read','{}','api::footer.footer','{\"fields\": []}','[]','2025-11-21 05:39:33.159000','2025-12-03 11:57:28.802000','2025-11-21 05:39:33.159000',NULL,NULL,NULL),(17,'aytqdrwx9jubk83ok2hqnl6r','plugin::content-manager.explorer.read','{}','api::header.header','{\"fields\": [\"menu\", \"showMultilingual\"]}','[]','2025-11-21 05:39:33.259000','2025-12-12 04:52:38.426000','2025-11-21 05:39:33.260000',NULL,NULL,NULL),(18,'og0gk020a81srj69zj41028h','plugin::content-manager.explorer.read','{}','api::home.home','{\"fields\": [\"banner.title\", \"seo.metaTitle\", \"seo.metaDescription\", \"seo.preventIndexing\", \"seo.keywords\", \"seo.canonicalUrl\", \"seo.metaHead\", \"seo.ogMeta.name\", \"seo.ogMeta.content\", \"seo.wordDescription\", \"seo.metaImage\"]}','[]','2025-11-21 05:39:33.361000','2025-12-12 04:52:38.426000','2025-11-21 05:39:33.362000',NULL,NULL,NULL),(27,'s6nfoj7s1ct2oldxb67cl8we','plugin::content-manager.explorer.update','{}','api::footer.footer','{\"fields\": []}','[]','2025-11-21 05:39:34.296000','2025-12-03 11:57:28.802000','2025-11-21 05:39:34.296000',NULL,NULL,NULL),(28,'ka86asdihfcs4im63vnw4nl8','plugin::content-manager.explorer.update','{}','api::header.header','{\"fields\": [\"menu\", \"showMultilingual\"]}','[]','2025-11-21 05:39:34.400000','2025-12-12 04:52:38.427000','2025-11-21 05:39:34.400000',NULL,NULL,NULL),(29,'eip1655ua90z89wtvqlfpnfl','plugin::content-manager.explorer.update','{}','api::home.home','{\"fields\": [\"banner.title\", \"seo.metaTitle\", \"seo.metaDescription\", \"seo.preventIndexing\", \"seo.keywords\", \"seo.canonicalUrl\", \"seo.metaHead\", \"seo.ogMeta.name\", \"seo.ogMeta.content\", \"seo.wordDescription\", \"seo.metaImage\"]}','[]','2025-11-21 05:39:34.500000','2025-12-12 04:52:38.427000','2025-11-21 05:39:34.501000',NULL,NULL,NULL),(56,'s338lp3wpywklwbstl9iuq2j','plugin::upload.read','{}',NULL,'{}','[]','2025-11-21 05:39:37.240000','2025-11-21 05:39:37.240000','2025-11-21 05:39:37.240000',NULL,NULL,NULL),(57,'sx2c5d4su96h6y8rmj6j9uxv','plugin::upload.configure-view','{}',NULL,'{}','[]','2025-11-21 05:39:37.339000','2025-11-21 05:39:37.339000','2025-11-21 05:39:37.339000',NULL,NULL,NULL),(58,'avbn6khihr71fjf22pamt75e','plugin::upload.assets.create','{}',NULL,'{}','[]','2025-11-21 05:39:37.439000','2025-11-21 05:39:37.439000','2025-11-21 05:39:37.439000',NULL,NULL,NULL),(59,'mnem39x1rw5ojgzznolduuw7','plugin::upload.assets.update','{}',NULL,'{}','[]','2025-11-21 05:39:37.538000','2025-11-21 05:39:37.538000','2025-11-21 05:39:37.538000',NULL,NULL,NULL),(60,'lgynsjdqqrwp0i3slkjgke24','plugin::upload.assets.download','{}',NULL,'{}','[]','2025-11-21 05:39:37.637000','2025-11-21 05:39:37.637000','2025-11-21 05:39:37.637000',NULL,NULL,NULL),(61,'h6xt81rpzkpblnv296dtt5i4','plugin::upload.assets.copy-link','{}',NULL,'{}','[]','2025-11-21 05:39:37.738000','2025-11-21 05:39:37.738000','2025-11-21 05:39:37.739000',NULL,NULL,NULL),(66,'mm13yp27ddzn2gm5ljq2wk4m','plugin::content-manager.explorer.create','{}','api::footer.footer','{\"fields\": []}','[\"admin::is-creator\"]','2025-11-21 05:39:38.251000','2025-12-03 11:57:28.802000','2025-11-21 05:39:38.252000',NULL,NULL,NULL),(67,'bbmf1xjaa9efxyc2rxchj783','plugin::content-manager.explorer.create','{}','api::header.header','{\"fields\": [\"menu\", \"showMultilingual\"]}','[\"admin::is-creator\"]','2025-11-21 05:39:38.352000','2025-12-12 04:52:38.427000','2025-11-21 05:39:38.352000',NULL,NULL,NULL),(68,'sm5xr4ym5av9bbdmekmju41r','plugin::content-manager.explorer.create','{}','api::home.home','{\"fields\": [\"banner.title\", \"seo.metaTitle\", \"seo.metaDescription\", \"seo.preventIndexing\", \"seo.keywords\", \"seo.canonicalUrl\", \"seo.metaHead\", \"seo.ogMeta.name\", \"seo.ogMeta.content\", \"seo.wordDescription\", \"seo.metaImage\"]}','[\"admin::is-creator\"]','2025-11-21 05:39:38.450000','2025-12-12 04:52:38.427000','2025-11-21 05:39:38.450000',NULL,NULL,NULL),(77,'tmvsgu77jd34jt002thy9g3q','plugin::content-manager.explorer.read','{}','api::footer.footer','{\"fields\": []}','[\"admin::is-creator\"]','2025-11-21 05:39:39.352000','2025-12-03 11:57:28.802000','2025-11-21 05:39:39.353000',NULL,NULL,NULL),(78,'pruz54johax4h7r874wrc017','plugin::content-manager.explorer.read','{}','api::header.header','{\"fields\": [\"menu\", \"showMultilingual\"]}','[\"admin::is-creator\"]','2025-11-21 05:39:39.458000','2025-12-12 04:52:38.427000','2025-11-21 05:39:39.458000',NULL,NULL,NULL),(79,'iksfi88yy61w4ix4k786mkwk','plugin::content-manager.explorer.read','{}','api::home.home','{\"fields\": [\"banner.title\", \"seo.metaTitle\", \"seo.metaDescription\", \"seo.preventIndexing\", \"seo.keywords\", \"seo.canonicalUrl\", \"seo.metaHead\", \"seo.ogMeta.name\", \"seo.ogMeta.content\", \"seo.wordDescription\", \"seo.metaImage\"]}','[\"admin::is-creator\"]','2025-11-21 05:39:39.557000','2025-12-12 04:52:38.427000','2025-11-21 05:39:39.557000',NULL,NULL,NULL),(88,'v8ss4zx9jnf5dqzmtzfuk14k','plugin::content-manager.explorer.update','{}','api::footer.footer','{\"fields\": []}','[\"admin::is-creator\"]','2025-11-21 05:39:40.458000','2025-12-03 11:57:28.802000','2025-11-21 05:39:40.458000',NULL,NULL,NULL),(89,'sdbtgwj941oo5knlxacyzky3','plugin::content-manager.explorer.update','{}','api::header.header','{\"fields\": [\"menu\", \"showMultilingual\"]}','[\"admin::is-creator\"]','2025-11-21 05:39:40.558000','2025-12-12 04:52:38.427000','2025-11-21 05:39:40.559000',NULL,NULL,NULL),(90,'s6ikq59h0ckg7fino1cb6wia','plugin::content-manager.explorer.update','{}','api::home.home','{\"fields\": [\"banner.title\", \"seo.metaTitle\", \"seo.metaDescription\", \"seo.preventIndexing\", \"seo.keywords\", \"seo.canonicalUrl\", \"seo.metaHead\", \"seo.ogMeta.name\", \"seo.ogMeta.content\", \"seo.wordDescription\", \"seo.metaImage\"]}','[\"admin::is-creator\"]','2025-11-21 05:39:40.658000','2025-12-12 04:52:38.427000','2025-11-21 05:39:40.658000',NULL,NULL,NULL),(106,'r23a2yp73480dgtint9io0zn','plugin::upload.read','{}',NULL,'{}','[\"admin::is-creator\"]','2025-11-21 05:39:42.260000','2025-11-21 05:39:42.260000','2025-11-21 05:39:42.261000',NULL,NULL,NULL),(107,'t1f284kltxf9541z3c09apky','plugin::upload.configure-view','{}',NULL,'{}','[]','2025-11-21 05:39:42.359000','2025-11-21 05:39:42.359000','2025-11-21 05:39:42.360000',NULL,NULL,NULL),(108,'cg8qrgmjeagth628f321m2sl','plugin::upload.assets.create','{}',NULL,'{}','[]','2025-11-21 05:39:42.457000','2025-11-21 05:39:42.457000','2025-11-21 05:39:42.458000',NULL,NULL,NULL),(109,'rg71qvy7fbwresob9cjipvh6','plugin::upload.assets.update','{}',NULL,'{}','[\"admin::is-creator\"]','2025-11-21 05:39:42.558000','2025-11-21 05:39:42.558000','2025-11-21 05:39:42.558000',NULL,NULL,NULL),(110,'ztolsappu8mmagtuygxlkwyr','plugin::upload.assets.download','{}',NULL,'{}','[]','2025-11-21 05:39:42.656000','2025-11-21 05:39:42.656000','2025-11-21 05:39:42.657000',NULL,NULL,NULL),(111,'f9yk0kakruofzf3mybjfhh4x','plugin::upload.assets.copy-link','{}',NULL,'{}','[]','2025-11-21 05:39:42.756000','2025-11-21 05:39:42.756000','2025-11-21 05:39:42.756000',NULL,NULL,NULL),(112,'rdbb4ptdtq538d14qjhrrwvv','plugin::content-manager.explorer.create','{}','plugin::users-permissions.user','{\"fields\": [\"username\", \"email\", \"provider\", \"password\", \"resetPasswordToken\", \"confirmationToken\", \"confirmed\", \"blocked\", \"role\"]}','[]','2025-11-21 05:39:43.002000','2025-11-21 05:39:43.002000','2025-11-21 05:39:43.003000',NULL,NULL,NULL),(124,'c3hndlzx5ezqxtyh6g75zolm','plugin::content-manager.explorer.read','{}','plugin::users-permissions.user','{\"fields\": [\"username\", \"email\", \"provider\", \"password\", \"resetPasswordToken\", \"confirmationToken\", \"confirmed\", \"blocked\", \"role\"]}','[]','2025-11-21 05:39:44.203000','2025-11-21 05:39:44.203000','2025-11-21 05:39:44.203000',NULL,NULL,NULL),(136,'cf0tct5odtb6jlb9uo51wg0y','plugin::content-manager.explorer.update','{}','plugin::users-permissions.user','{\"fields\": [\"username\", \"email\", \"provider\", \"password\", \"resetPasswordToken\", \"confirmationToken\", \"confirmed\", \"blocked\", \"role\"]}','[]','2025-11-21 05:39:45.455000','2025-11-21 05:39:45.455000','2025-11-21 05:39:45.456000',NULL,NULL,NULL),(148,'fqisnqi0o3nyi29us751fn1d','plugin::content-manager.explorer.delete','{}','plugin::users-permissions.user','{}','[]','2025-11-21 05:39:46.670000','2025-11-21 05:39:46.670000','2025-11-21 05:39:46.670000',NULL,NULL,NULL),(153,'x5k24n2zwqbgttgx59jpkf56','plugin::content-manager.explorer.delete','{}','api::footer.footer','{\"locales\": [\"en\", \"ar\"]}','[]','2025-11-28 09:33:55.667000','2025-11-28 09:33:55.667000','2025-11-28 09:33:55.668000',NULL,NULL,NULL),(154,'in09sve550hb4yvwbga1bzmv','plugin::content-manager.explorer.delete','{}','api::header.header','{\"locales\": [\"en\", \"ar\"]}','[]','2025-11-28 09:33:55.766000','2025-11-28 09:33:55.766000','2025-11-28 09:33:55.766000',NULL,NULL,NULL),(155,'o3tgvwgsw53i77okzybg1dss','plugin::content-manager.explorer.delete','{}','api::home.home','{\"locales\": [\"en\", \"ar\"]}','[]','2025-11-28 09:33:55.865000','2025-11-28 09:33:55.865000','2025-11-28 09:33:55.865000',NULL,NULL,NULL),(160,'tcvcxbe20kho3gfiou4dvgtm','plugin::content-manager.explorer.publish','{}','plugin::users-permissions.user','{}','[]','2025-11-21 05:39:47.866000','2025-11-21 05:39:47.866000','2025-11-21 05:39:47.867000',NULL,NULL,NULL),(165,'glfxsmsl64yt2ugzl6lqm516','plugin::content-manager.explorer.publish','{}','api::footer.footer','{\"locales\": [\"en\", \"ar\"]}','[]','2025-11-28 09:33:56.764000','2025-11-28 09:33:56.764000','2025-11-28 09:33:56.764000',NULL,NULL,NULL),(166,'rj1nux824k5g153qsov8zpkn','plugin::content-manager.explorer.publish','{}','api::header.header','{\"locales\": [\"en\", \"ar\"]}','[]','2025-11-28 09:33:56.865000','2025-11-28 09:33:56.865000','2025-11-28 09:33:56.865000',NULL,NULL,NULL),(167,'atepomw7qrucdz3nbk97ie85','plugin::content-manager.explorer.publish','{}','api::home.home','{\"locales\": [\"en\", \"ar\"]}','[]','2025-11-28 09:33:56.967000','2025-11-28 09:33:56.967000','2025-11-28 09:33:56.967000',NULL,NULL,NULL),(172,'rnhfrgr06rmnv7dy55e7f5cv','plugin::content-manager.single-types.configure-view','{}',NULL,'{}','[]','2025-11-21 05:39:49.083000','2025-11-21 05:39:49.083000','2025-11-21 05:39:49.083000',NULL,NULL,NULL),(173,'kmoliq8hlbonpbkqtdg3hh5t','plugin::content-manager.collection-types.configure-view','{}',NULL,'{}','[]','2025-11-21 05:39:49.184000','2025-11-21 05:39:49.184000','2025-11-21 05:39:49.184000',NULL,NULL,NULL),(174,'g7pklzprnje6o206mtxcg2sb','plugin::content-manager.components.configure-layout','{}',NULL,'{}','[]','2025-11-21 05:39:49.297000','2025-11-21 05:39:49.297000','2025-11-21 05:39:49.297000',NULL,NULL,NULL),(175,'aodybt6zf1vwvuuamd34ho3m','plugin::content-type-builder.read','{}',NULL,'{}','[]','2025-11-21 05:39:49.395000','2025-11-21 05:39:49.395000','2025-11-21 05:39:49.396000',NULL,NULL,NULL),(176,'xk1jedy1peme9p8rym06qt33','plugin::email.settings.read','{}',NULL,'{}','[]','2025-11-21 05:39:49.495000','2025-11-21 05:39:49.495000','2025-11-21 05:39:49.495000',NULL,NULL,NULL),(177,'cd83hu3fci2trz67vr3stts8','plugin::upload.read','{}',NULL,'{}','[]','2025-11-21 05:39:49.597000','2025-11-21 05:39:49.597000','2025-11-21 05:39:49.597000',NULL,NULL,NULL),(178,'gi8f9isjvhfui2vn7n0omt67','plugin::upload.assets.create','{}',NULL,'{}','[]','2025-11-21 05:39:49.696000','2025-11-21 05:39:49.696000','2025-11-21 05:39:49.697000',NULL,NULL,NULL),(179,'dciq9wrrxv2bm1tysb1ouyqj','plugin::upload.assets.update','{}',NULL,'{}','[]','2025-11-21 05:39:49.795000','2025-11-21 05:39:49.795000','2025-11-21 05:39:49.795000',NULL,NULL,NULL),(180,'nrn9jzjj46xbf01f9mdymbwu','plugin::upload.assets.download','{}',NULL,'{}','[]','2025-11-21 05:39:49.893000','2025-11-21 05:39:49.893000','2025-11-21 05:39:49.894000',NULL,NULL,NULL),(181,'se6l7famt49k161cvze7vnm6','plugin::upload.assets.copy-link','{}',NULL,'{}','[]','2025-11-21 05:39:50.016000','2025-11-21 05:39:50.016000','2025-11-21 05:39:50.016000',NULL,NULL,NULL),(182,'dul3p5k3mtow1aijisomlhic','plugin::upload.configure-view','{}',NULL,'{}','[]','2025-11-21 05:39:50.116000','2025-11-21 05:39:50.116000','2025-11-21 05:39:50.116000',NULL,NULL,NULL),(183,'fdi4v4a4d50lokvwqs86w8r9','plugin::upload.settings.read','{}',NULL,'{}','[]','2025-11-21 05:39:50.216000','2025-11-21 05:39:50.216000','2025-11-21 05:39:50.216000',NULL,NULL,NULL),(184,'pqmvkc0efzojyzc0apby05rp','plugin::i18n.locale.create','{}',NULL,'{}','[]','2025-11-21 05:39:50.318000','2025-11-21 05:39:50.318000','2025-11-21 05:39:50.318000',NULL,NULL,NULL),(185,'dusgjg9tpcr48vh8zplqtxeb','plugin::i18n.locale.read','{}',NULL,'{}','[]','2025-11-21 05:39:50.417000','2025-11-21 05:39:50.417000','2025-11-21 05:39:50.417000',NULL,NULL,NULL),(186,'zcyfs7g3mj520ejmj8kx766n','plugin::i18n.locale.update','{}',NULL,'{}','[]','2025-11-21 05:39:50.515000','2025-11-21 05:39:50.515000','2025-11-21 05:39:50.516000',NULL,NULL,NULL),(187,'rf2os1vd2o1fcpxk7ln0v2q1','plugin::i18n.locale.delete','{}',NULL,'{}','[]','2025-11-21 05:39:50.615000','2025-11-21 05:39:50.615000','2025-11-21 05:39:50.616000',NULL,NULL,NULL),(188,'h5ioxzqpgdxmek4q26uwwzyt','plugin::users-permissions.roles.create','{}',NULL,'{}','[]','2025-11-21 05:39:50.715000','2025-11-21 05:39:50.715000','2025-11-21 05:39:50.715000',NULL,NULL,NULL),(189,'eu75duez5ueafe7poman03tp','plugin::users-permissions.roles.read','{}',NULL,'{}','[]','2025-11-21 05:39:50.814000','2025-11-21 05:39:50.814000','2025-11-21 05:39:50.815000',NULL,NULL,NULL),(190,'law557cfvuhugllfp6izrk4a','plugin::users-permissions.roles.update','{}',NULL,'{}','[]','2025-11-21 05:39:50.913000','2025-11-21 05:39:50.913000','2025-11-21 05:39:50.913000',NULL,NULL,NULL),(191,'jkc0d0yvnqt0908fvs0xvrxm','plugin::users-permissions.roles.delete','{}',NULL,'{}','[]','2025-11-21 05:39:51.013000','2025-11-21 05:39:51.013000','2025-11-21 05:39:51.014000',NULL,NULL,NULL),(192,'ry6f9iflph6duclfnz571uin','plugin::users-permissions.providers.read','{}',NULL,'{}','[]','2025-11-21 05:39:51.113000','2025-11-21 05:39:51.113000','2025-11-21 05:39:51.113000',NULL,NULL,NULL),(193,'fanxvornpoo0p2fur0wwn7w1','plugin::users-permissions.providers.update','{}',NULL,'{}','[]','2025-11-21 05:39:51.215000','2025-11-21 05:39:51.215000','2025-11-21 05:39:51.215000',NULL,NULL,NULL),(194,'bcnwrwtbq6pm7x397kthgqww','plugin::users-permissions.email-templates.read','{}',NULL,'{}','[]','2025-11-21 05:39:51.314000','2025-11-21 05:39:51.314000','2025-11-21 05:39:51.315000',NULL,NULL,NULL),(195,'o4dnxjmupp4zh0mkces5915b','plugin::users-permissions.email-templates.update','{}',NULL,'{}','[]','2025-11-21 05:39:51.413000','2025-11-21 05:39:51.413000','2025-11-21 05:39:51.414000',NULL,NULL,NULL),(196,'hciwkcyx2yaepqtcjn6c26j7','plugin::users-permissions.advanced-settings.read','{}',NULL,'{}','[]','2025-11-21 05:39:51.528000','2025-11-21 05:39:51.528000','2025-11-21 05:39:51.528000',NULL,NULL,NULL),(197,'boeiqjlcid60ys68dt4yme0h','plugin::users-permissions.advanced-settings.update','{}',NULL,'{}','[]','2025-11-21 05:39:51.628000','2025-11-21 05:39:51.628000','2025-11-21 05:39:51.628000',NULL,NULL,NULL),(198,'iyk8thagft4b6h7yjpcl2w6l','admin::marketplace.read','{}',NULL,'{}','[]','2025-11-21 05:39:51.728000','2025-11-21 05:39:51.728000','2025-11-21 05:39:51.728000',NULL,NULL,NULL),(199,'wibrsbca2aedwlkjbpka9j9q','admin::webhooks.create','{}',NULL,'{}','[]','2025-11-21 05:39:51.829000','2025-11-21 05:39:51.829000','2025-11-21 05:39:51.829000',NULL,NULL,NULL),(200,'k4ww6y2d15s8b9feqst6rxxx','admin::webhooks.read','{}',NULL,'{}','[]','2025-11-21 05:39:51.932000','2025-11-21 05:39:51.932000','2025-11-21 05:39:51.932000',NULL,NULL,NULL),(201,'fpe5bmtyrddbpqo8eo7svl7g','admin::webhooks.update','{}',NULL,'{}','[]','2025-11-21 05:39:52.036000','2025-11-21 05:39:52.036000','2025-11-21 05:39:52.037000',NULL,NULL,NULL),(202,'jx4uuikjkzce7iya7q7nb4bo','admin::webhooks.delete','{}',NULL,'{}','[]','2025-11-21 05:39:52.135000','2025-11-21 05:39:52.135000','2025-11-21 05:39:52.136000',NULL,NULL,NULL),(203,'lyulhv5nkndjukqxnrhwlmhc','admin::users.create','{}',NULL,'{}','[]','2025-11-21 05:39:52.235000','2025-11-21 05:39:52.235000','2025-11-21 05:39:52.235000',NULL,NULL,NULL),(204,'whnwz67i7pmk251z8yon34bf','admin::users.read','{}',NULL,'{}','[]','2025-11-21 05:39:52.335000','2025-11-21 05:39:52.335000','2025-11-21 05:39:52.335000',NULL,NULL,NULL),(205,'y1k10sk4ftwwh5ihj9tdj840','admin::users.update','{}',NULL,'{}','[]','2025-11-21 05:39:52.437000','2025-11-21 05:39:52.437000','2025-11-21 05:39:52.438000',NULL,NULL,NULL),(206,'g7t1ez0fryh9h6egtc3p2lr3','admin::users.delete','{}',NULL,'{}','[]','2025-11-21 05:39:52.538000','2025-11-21 05:39:52.538000','2025-11-21 05:39:52.538000',NULL,NULL,NULL),(207,'ygj11rp6871d2s60nopqu6h2','admin::roles.create','{}',NULL,'{}','[]','2025-11-21 05:39:52.637000','2025-11-21 05:39:52.637000','2025-11-21 05:39:52.638000',NULL,NULL,NULL),(208,'y3g9ywa21jv8gp7h9lzjsrfo','admin::roles.read','{}',NULL,'{}','[]','2025-11-21 05:39:52.736000','2025-11-21 05:39:52.736000','2025-11-21 05:39:52.737000',NULL,NULL,NULL),(209,'q09jdseihtm5hlengye4sbrx','admin::roles.update','{}',NULL,'{}','[]','2025-11-21 05:39:52.839000','2025-11-21 05:39:52.839000','2025-11-21 05:39:52.839000',NULL,NULL,NULL),(210,'xi96w40etpy3cos5zrurau3l','admin::roles.delete','{}',NULL,'{}','[]','2025-11-21 05:39:52.938000','2025-11-21 05:39:52.938000','2025-11-21 05:39:52.938000',NULL,NULL,NULL),(211,'zzjwiq5m1ufpd0boxp0tfmw0','admin::api-tokens.access','{}',NULL,'{}','[]','2025-11-21 05:39:53.038000','2025-11-21 05:39:53.038000','2025-11-21 05:39:53.038000',NULL,NULL,NULL),(212,'ewx8m7sakqo6aozb0vmn5i5y','admin::api-tokens.create','{}',NULL,'{}','[]','2025-11-21 05:39:53.137000','2025-11-21 05:39:53.137000','2025-11-21 05:39:53.137000',NULL,NULL,NULL),(213,'euf495b5ipz9dxyaka5xgtoi','admin::api-tokens.read','{}',NULL,'{}','[]','2025-11-21 05:39:53.235000','2025-11-21 05:39:53.235000','2025-11-21 05:39:53.236000',NULL,NULL,NULL),(214,'ctfqxgqzflvn8jz1p5szyts3','admin::api-tokens.update','{}',NULL,'{}','[]','2025-11-21 05:39:53.335000','2025-11-21 05:39:53.335000','2025-11-21 05:39:53.335000',NULL,NULL,NULL),(215,'clw1s0gp6310kzwsi4gn8pc6','admin::api-tokens.regenerate','{}',NULL,'{}','[]','2025-11-21 05:39:53.435000','2025-11-21 05:39:53.435000','2025-11-21 05:39:53.435000',NULL,NULL,NULL),(216,'idm0cq3qfimsfrryjg2upyj3','admin::api-tokens.delete','{}',NULL,'{}','[]','2025-11-21 05:39:53.534000','2025-11-21 05:39:53.534000','2025-11-21 05:39:53.535000',NULL,NULL,NULL),(217,'i1gjg9xnk2uzdeaud43pvmh6','admin::project-settings.update','{}',NULL,'{}','[]','2025-11-21 05:39:53.634000','2025-11-21 05:39:53.634000','2025-11-21 05:39:53.635000',NULL,NULL,NULL),(218,'gl4e6lck1ljza9bgeg39syxb','admin::project-settings.read','{}',NULL,'{}','[]','2025-11-21 05:39:53.734000','2025-11-21 05:39:53.734000','2025-11-21 05:39:53.734000',NULL,NULL,NULL),(219,'xwyef32hxlcyucp0m9wwvfwq','admin::transfer.tokens.access','{}',NULL,'{}','[]','2025-11-21 05:39:53.833000','2025-11-21 05:39:53.833000','2025-11-21 05:39:53.833000',NULL,NULL,NULL),(220,'rp3256biyzu0x3whcqjjnbnt','admin::transfer.tokens.create','{}',NULL,'{}','[]','2025-11-21 05:39:53.932000','2025-11-21 05:39:53.932000','2025-11-21 05:39:53.932000',NULL,NULL,NULL),(221,'k3u24sgciwal4wlkq1358rf1','admin::transfer.tokens.read','{}',NULL,'{}','[]','2025-11-21 05:39:54.033000','2025-11-21 05:39:54.033000','2025-11-21 05:39:54.033000',NULL,NULL,NULL),(222,'um2s5pqeq9jihokphw039t4n','admin::transfer.tokens.update','{}',NULL,'{}','[]','2025-11-21 05:39:54.134000','2025-11-21 05:39:54.134000','2025-11-21 05:39:54.135000',NULL,NULL,NULL),(223,'iav90syl42a5hyw30s7pt97j','admin::transfer.tokens.regenerate','{}',NULL,'{}','[]','2025-11-21 05:39:54.236000','2025-11-21 05:39:54.236000','2025-11-21 05:39:54.236000',NULL,NULL,NULL),(224,'aikhia6tgdo5yg8t6vvm47tb','admin::transfer.tokens.delete','{}',NULL,'{}','[]','2025-11-21 05:39:54.337000','2025-11-21 05:39:54.337000','2025-11-21 05:39:54.338000',NULL,NULL,NULL),(253,'mffmwr0vhygf706qqffjun5m','plugin::content-manager.explorer.delete','{}','api::location.location','{\"locales\": [\"en\", \"ar\"]}','[]','2025-11-28 09:33:59.486000','2025-11-28 09:33:59.486000','2025-11-28 09:33:59.486000',NULL,NULL,NULL),(254,'iy0o6g1b8awfxxzdi6oi4pjo','plugin::content-manager.explorer.publish','{}','api::location.location','{\"locales\": [\"en\", \"ar\"]}','[]','2025-11-28 09:33:59.605000','2025-11-28 09:33:59.605000','2025-11-28 09:33:59.605000',NULL,NULL,NULL),(299,'n5v8dzckz4lhdtzltkb00hrp','plugin::content-manager.explorer.create','{}','api::about-us.about-us','{\"fields\": [\"subTitle\", \"title\", \"description\", \"aboutSection.title\", \"aboutSection.description\", \"aboutSection.image\", \"aboutSection.responsiveImage\", \"cardSection.title\", \"cardSection.description\", \"cardSection.image\", \"cardSection.responsiveImage\", \"sectionTitle\", \"sectionDescription\", \"sections.title\", \"sections.description\", \"sections.image\", \"sections.responsiveImg\", \"sections.imagePosition\", \"sections.tags.title\", \"sections.tags.key\", \"sections.button.label\", \"sections.button.url\", \"sections.button.newTab\", \"seo.metaTitle\", \"seo.metaDescription\", \"seo.preventIndexing\", \"seo.keywords\", \"seo.canonicalUrl\", \"seo.metaHead\", \"seo.ogMeta.name\", \"seo.ogMeta.content\", \"seo.socialMediaMeta.name\", \"seo.socialMediaMeta.content\", \"seo.wordDescription\", \"seo.metaImage\"], \"locales\": [\"en\", \"ar\"]}','[]','2025-12-12 04:52:29.969000','2025-12-12 04:52:29.969000','2025-12-12 04:52:29.978000',NULL,NULL,NULL),(307,'ym2wa2fxiqhydulzq50v5i1p','plugin::content-manager.explorer.create','{}','api::header.header','{\"fields\": [\"logo\", \"colorLogo\", \"menu\", \"showMultilingual\"], \"locales\": [\"en\", \"ar\"]}','[]','2025-12-12 04:52:30.951000','2025-12-12 04:52:30.951000','2025-12-12 04:52:30.951000',NULL,NULL,NULL),(308,'iav1yirxyz54wjdy25sd66lh','plugin::content-manager.explorer.create','{}','api::home.home','{\"fields\": [\"banner.title\", \"banner.subtitle\", \"banner.media\", \"banner.responsiveMedia\", \"banner.type\", \"banner.callToAction.label\", \"banner.callToAction.url\", \"banner.callToAction.newTab\", \"aboutCme.title\", \"aboutCme.subTitle\", \"aboutCme.description\", \"aboutCme.callToAction.label\", \"aboutCme.callToAction.url\", \"aboutCme.callToAction.newTab\", \"aboutCme.image\", \"businessStreams.title\", \"businessStreams.subTitle\", \"businessStreams.serviceData.title\", \"businessStreams.serviceData.description\", \"businessStreams.serviceData.image\", \"businessStreams.serviceData.responsiveImage\", \"trustedBrands.title\", \"trustedBrands.subTitle\", \"trustedPartners.title\", \"trustedPartners.subTitle\", \"trustedPartners.items.title\", \"trustedPartners.items.logo\", \"socialFeeds.title\", \"socialFeeds.subTitle\", \"ourLocations.title\", \"ourLocations.subTitle\", \"aboutGroup.title\", \"aboutGroup.subTitle\", \"aboutGroup.description\", \"aboutGroup.image\", \"aboutGroup.callToAction.label\", \"aboutGroup.callToAction.url\", \"aboutGroup.callToAction.newTab\", \"isNewsEnabled\", \"seo.metaTitle\", \"seo.metaDescription\", \"seo.preventIndexing\", \"seo.keywords\", \"seo.canonicalUrl\", \"seo.metaHead\", \"seo.ogMeta.name\", \"seo.ogMeta.content\", \"seo.socialMediaMeta.name\", \"seo.socialMediaMeta.content\", \"seo.wordDescription\", \"seo.metaImage\"], \"locales\": [\"en\", \"ar\"]}','[]','2025-12-12 04:52:31.055000','2025-12-12 04:52:31.055000','2025-12-12 04:52:31.056000',NULL,NULL,NULL),(311,'bpypwqm98v2av02ix1j5ph2o','plugin::content-manager.explorer.create','{}','api::news-landing.news-landing','{\"fields\": [\"title\", \"seo.metaTitle\", \"seo.metaDescription\", \"seo.preventIndexing\", \"seo.keywords\", \"seo.canonicalUrl\", \"seo.metaHead\", \"seo.ogMeta.name\", \"seo.ogMeta.content\", \"seo.socialMediaMeta.name\", \"seo.socialMediaMeta.content\", \"seo.wordDescription\", \"seo.metaImage\"], \"locales\": [\"en\", \"ar\"]}','[]','2025-12-12 04:52:31.373000','2025-12-12 04:52:31.373000','2025-12-12 04:52:31.374000',NULL,NULL,NULL),(314,'yh1gjn31cf5sd5rawnlfvehl','plugin::content-manager.explorer.create','{}','api::type.type','{\"fields\": [\"title\", \"key\"], \"locales\": [\"en\", \"ar\"]}','[]','2025-12-12 04:52:31.697000','2025-12-12 04:52:31.697000','2025-12-12 04:52:31.698000',NULL,NULL,NULL),(315,'i5dq31oqz27mjg8qkqj5f9hr','plugin::content-manager.explorer.read','{}','api::about-us.about-us','{\"fields\": [\"subTitle\", \"title\", \"description\", \"aboutSection.title\", \"aboutSection.description\", \"aboutSection.image\", \"aboutSection.responsiveImage\", \"cardSection.title\", \"cardSection.description\", \"cardSection.image\", \"cardSection.responsiveImage\", \"sectionTitle\", \"sectionDescription\", \"sections.title\", \"sections.description\", \"sections.image\", \"sections.responsiveImg\", \"sections.imagePosition\", \"sections.tags.title\", \"sections.tags.key\", \"sections.button.label\", \"sections.button.url\", \"sections.button.newTab\", \"seo.metaTitle\", \"seo.metaDescription\", \"seo.preventIndexing\", \"seo.keywords\", \"seo.canonicalUrl\", \"seo.metaHead\", \"seo.ogMeta.name\", \"seo.ogMeta.content\", \"seo.socialMediaMeta.name\", \"seo.socialMediaMeta.content\", \"seo.wordDescription\", \"seo.metaImage\"], \"locales\": [\"en\", \"ar\"]}','[]','2025-12-12 04:52:31.802000','2025-12-12 04:52:31.802000','2025-12-12 04:52:31.803000',NULL,NULL,NULL),(323,'vl3it4zp397rlblirsimh3nb','plugin::content-manager.explorer.read','{}','api::header.header','{\"fields\": [\"logo\", \"colorLogo\", \"menu\", \"showMultilingual\"], \"locales\": [\"en\", \"ar\"]}','[]','2025-12-12 04:52:32.654000','2025-12-12 04:52:32.654000','2025-12-12 04:52:32.654000',NULL,NULL,NULL),(324,'kl3y96b24bvhpvb77d74ewje','plugin::content-manager.explorer.read','{}','api::home.home','{\"fields\": [\"banner.title\", \"banner.subtitle\", \"banner.media\", \"banner.responsiveMedia\", \"banner.type\", \"banner.callToAction.label\", \"banner.callToAction.url\", \"banner.callToAction.newTab\", \"aboutCme.title\", \"aboutCme.subTitle\", \"aboutCme.description\", \"aboutCme.callToAction.label\", \"aboutCme.callToAction.url\", \"aboutCme.callToAction.newTab\", \"aboutCme.image\", \"businessStreams.title\", \"businessStreams.subTitle\", \"businessStreams.serviceData.title\", \"businessStreams.serviceData.description\", \"businessStreams.serviceData.image\", \"businessStreams.serviceData.responsiveImage\", \"trustedBrands.title\", \"trustedBrands.subTitle\", \"trustedPartners.title\", \"trustedPartners.subTitle\", \"trustedPartners.items.title\", \"trustedPartners.items.logo\", \"socialFeeds.title\", \"socialFeeds.subTitle\", \"ourLocations.title\", \"ourLocations.subTitle\", \"aboutGroup.title\", \"aboutGroup.subTitle\", \"aboutGroup.description\", \"aboutGroup.image\", \"aboutGroup.callToAction.label\", \"aboutGroup.callToAction.url\", \"aboutGroup.callToAction.newTab\", \"isNewsEnabled\", \"seo.metaTitle\", \"seo.metaDescription\", \"seo.preventIndexing\", \"seo.keywords\", \"seo.canonicalUrl\", \"seo.metaHead\", \"seo.ogMeta.name\", \"seo.ogMeta.content\", \"seo.socialMediaMeta.name\", \"seo.socialMediaMeta.content\", \"seo.wordDescription\", \"seo.metaImage\"], \"locales\": [\"en\", \"ar\"]}','[]','2025-12-12 04:52:32.756000','2025-12-12 04:52:32.756000','2025-12-12 04:52:32.757000',NULL,NULL,NULL),(327,'h2tl19kbujnpfdnwxilvovut','plugin::content-manager.explorer.read','{}','api::news-landing.news-landing','{\"fields\": [\"title\", \"seo.metaTitle\", \"seo.metaDescription\", \"seo.preventIndexing\", \"seo.keywords\", \"seo.canonicalUrl\", \"seo.metaHead\", \"seo.ogMeta.name\", \"seo.ogMeta.content\", \"seo.socialMediaMeta.name\", \"seo.socialMediaMeta.content\", \"seo.wordDescription\", \"seo.metaImage\"], \"locales\": [\"en\", \"ar\"]}','[]','2025-12-12 04:52:33.074000','2025-12-12 04:52:33.074000','2025-12-12 04:52:33.075000',NULL,NULL,NULL),(330,'ssd7hcs1gvs6tccf94lecv0g','plugin::content-manager.explorer.read','{}','api::type.type','{\"fields\": [\"title\", \"key\"], \"locales\": [\"en\", \"ar\"]}','[]','2025-12-12 04:52:33.427000','2025-12-12 04:52:33.427000','2025-12-12 04:52:33.428000',NULL,NULL,NULL),(331,'u6stf5oj74mvnoov1rwo0kdw','plugin::content-manager.explorer.update','{}','api::about-us.about-us','{\"fields\": [\"subTitle\", \"title\", \"description\", \"aboutSection.title\", \"aboutSection.description\", \"aboutSection.image\", \"aboutSection.responsiveImage\", \"cardSection.title\", \"cardSection.description\", \"cardSection.image\", \"cardSection.responsiveImage\", \"sectionTitle\", \"sectionDescription\", \"sections.title\", \"sections.description\", \"sections.image\", \"sections.responsiveImg\", \"sections.imagePosition\", \"sections.tags.title\", \"sections.tags.key\", \"sections.button.label\", \"sections.button.url\", \"sections.button.newTab\", \"seo.metaTitle\", \"seo.metaDescription\", \"seo.preventIndexing\", \"seo.keywords\", \"seo.canonicalUrl\", \"seo.metaHead\", \"seo.ogMeta.name\", \"seo.ogMeta.content\", \"seo.socialMediaMeta.name\", \"seo.socialMediaMeta.content\", \"seo.wordDescription\", \"seo.metaImage\"], \"locales\": [\"en\", \"ar\"]}','[]','2025-12-12 04:52:33.531000','2025-12-12 04:52:33.531000','2025-12-12 04:52:33.532000',NULL,NULL,NULL),(339,'mg7p7hiyfuveqwmos15wgxic','plugin::content-manager.explorer.update','{}','api::header.header','{\"fields\": [\"logo\", \"colorLogo\", \"menu\", \"showMultilingual\"], \"locales\": [\"en\", \"ar\"]}','[]','2025-12-12 04:52:34.532000','2025-12-12 04:52:34.532000','2025-12-12 04:52:34.533000',NULL,NULL,NULL),(340,'z13rg7v7nqxqucao7vlszldb','plugin::content-manager.explorer.update','{}','api::home.home','{\"fields\": [\"banner.title\", \"banner.subtitle\", \"banner.media\", \"banner.responsiveMedia\", \"banner.type\", \"banner.callToAction.label\", \"banner.callToAction.url\", \"banner.callToAction.newTab\", \"aboutCme.title\", \"aboutCme.subTitle\", \"aboutCme.description\", \"aboutCme.callToAction.label\", \"aboutCme.callToAction.url\", \"aboutCme.callToAction.newTab\", \"aboutCme.image\", \"businessStreams.title\", \"businessStreams.subTitle\", \"businessStreams.serviceData.title\", \"businessStreams.serviceData.description\", \"businessStreams.serviceData.image\", \"businessStreams.serviceData.responsiveImage\", \"trustedBrands.title\", \"trustedBrands.subTitle\", \"trustedPartners.title\", \"trustedPartners.subTitle\", \"trustedPartners.items.title\", \"trustedPartners.items.logo\", \"socialFeeds.title\", \"socialFeeds.subTitle\", \"ourLocations.title\", \"ourLocations.subTitle\", \"aboutGroup.title\", \"aboutGroup.subTitle\", \"aboutGroup.description\", \"aboutGroup.image\", \"aboutGroup.callToAction.label\", \"aboutGroup.callToAction.url\", \"aboutGroup.callToAction.newTab\", \"isNewsEnabled\", \"seo.metaTitle\", \"seo.metaDescription\", \"seo.preventIndexing\", \"seo.keywords\", \"seo.canonicalUrl\", \"seo.metaHead\", \"seo.ogMeta.name\", \"seo.ogMeta.content\", \"seo.socialMediaMeta.name\", \"seo.socialMediaMeta.content\", \"seo.wordDescription\", \"seo.metaImage\"], \"locales\": [\"en\", \"ar\"]}','[]','2025-12-12 04:52:34.638000','2025-12-12 04:52:34.638000','2025-12-12 04:52:34.638000',NULL,NULL,NULL),(343,'si6godpjosad5wfephlfabn4','plugin::content-manager.explorer.update','{}','api::news-landing.news-landing','{\"fields\": [\"title\", \"seo.metaTitle\", \"seo.metaDescription\", \"seo.preventIndexing\", \"seo.keywords\", \"seo.canonicalUrl\", \"seo.metaHead\", \"seo.ogMeta.name\", \"seo.ogMeta.content\", \"seo.socialMediaMeta.name\", \"seo.socialMediaMeta.content\", \"seo.wordDescription\", \"seo.metaImage\"], \"locales\": [\"en\", \"ar\"]}','[]','2025-12-12 04:52:34.954000','2025-12-12 04:52:34.954000','2025-12-12 04:52:34.954000',NULL,NULL,NULL),(346,'m7q37mfmgrhdm4c3cxeyeckk','plugin::content-manager.explorer.update','{}','api::type.type','{\"fields\": [\"title\", \"key\"], \"locales\": [\"en\", \"ar\"]}','[]','2025-12-12 04:52:35.324000','2025-12-12 04:52:35.324000','2025-12-12 04:52:35.324000',NULL,NULL,NULL),(347,'n8lfdbcdy1bbdanj467y2tbq','plugin::content-manager.explorer.delete','{}','api::about-us.about-us','{\"locales\": [\"en\", \"ar\"]}','[]','2025-12-12 04:52:35.439000','2025-12-12 04:52:35.439000','2025-12-12 04:52:35.439000',NULL,NULL,NULL),(348,'mo2p87kqcy7b3prt0uz42ojv','plugin::content-manager.explorer.delete','{}','api::branch.branch','{\"locales\": [\"en\", \"ar\"]}','[]','2025-12-12 04:52:35.551000','2025-12-12 04:52:35.551000','2025-12-12 04:52:35.552000',NULL,NULL,NULL),(349,'w03ufsq7oo1own1bpe4x345b','plugin::content-manager.explorer.delete','{}','api::branch-location.branch-location','{\"locales\": [\"en\", \"ar\"]}','[]','2025-12-12 04:52:35.657000','2025-12-12 04:52:35.657000','2025-12-12 04:52:35.658000',NULL,NULL,NULL),(350,'pb9p98bqww7cf04m0vvyqq63','plugin::content-manager.explorer.delete','{}','api::brand.brand','{\"locales\": [\"en\", \"ar\"]}','[]','2025-12-12 04:52:35.770000','2025-12-12 04:52:35.770000','2025-12-12 04:52:35.771000',NULL,NULL,NULL),(351,'bxzxkz83f2qnn3fs1m5h0oeg','plugin::content-manager.explorer.delete','{}','api::business-stream.business-stream','{\"locales\": [\"en\", \"ar\"]}','[]','2025-12-12 04:52:35.894000','2025-12-12 04:52:35.894000','2025-12-12 04:52:35.895000',NULL,NULL,NULL),(352,'gljql7y74x2gjp01gpflnv98','plugin::content-manager.explorer.delete','{}','api::contact-enquiry.contact-enquiry','{\"locales\": [\"en\", \"ar\"]}','[]','2025-12-12 04:52:36.015000','2025-12-12 04:52:36.015000','2025-12-12 04:52:36.015000',NULL,NULL,NULL),(353,'htpt4ymdfz9vzvljiv1svwed','plugin::content-manager.explorer.delete','{}','api::contact-us.contact-us','{\"locales\": [\"en\", \"ar\"]}','[]','2025-12-12 04:52:36.118000','2025-12-12 04:52:36.118000','2025-12-12 04:52:36.118000',NULL,NULL,NULL),(354,'ybgy55l4f67ly3c9smwb7gzo','plugin::content-manager.explorer.delete','{}','api::news.news','{\"locales\": [\"en\", \"ar\"]}','[]','2025-12-12 04:52:36.221000','2025-12-12 04:52:36.221000','2025-12-12 04:52:36.221000',NULL,NULL,NULL),(355,'k53j1t2yfvgx3ydqotebf5ki','plugin::content-manager.explorer.delete','{}','api::news-landing.news-landing','{\"locales\": [\"en\", \"ar\"]}','[]','2025-12-12 04:52:36.338000','2025-12-12 04:52:36.338000','2025-12-12 04:52:36.338000',NULL,NULL,NULL),(356,'i2emhwurpnca3kcrdoq00koo','plugin::content-manager.explorer.delete','{}','api::service.service','{\"locales\": [\"en\", \"ar\"]}','[]','2025-12-12 04:52:36.443000','2025-12-12 04:52:36.443000','2025-12-12 04:52:36.443000',NULL,NULL,NULL),(357,'zh6lcxgjhhw3cja3ow6848vn','plugin::content-manager.explorer.delete','{}','api::service-category.service-category','{\"locales\": [\"en\", \"ar\"]}','[]','2025-12-12 04:52:36.545000','2025-12-12 04:52:36.545000','2025-12-12 04:52:36.546000',NULL,NULL,NULL),(358,'f6lxpi42tcnwefiea99ok2ar','plugin::content-manager.explorer.delete','{}','api::type.type','{\"locales\": [\"en\", \"ar\"]}','[]','2025-12-12 04:52:36.653000','2025-12-12 04:52:36.653000','2025-12-12 04:52:36.655000',NULL,NULL,NULL),(359,'lcsrcmws2pt03p2a4o4lspen','plugin::content-manager.explorer.publish','{}','api::about-us.about-us','{\"locales\": [\"en\", \"ar\"]}','[]','2025-12-12 04:52:36.772000','2025-12-12 04:52:36.772000','2025-12-12 04:52:36.773000',NULL,NULL,NULL),(360,'yejkha6f3feqq59y7uhii8lv','plugin::content-manager.explorer.publish','{}','api::branch.branch','{\"locales\": [\"en\", \"ar\"]}','[]','2025-12-12 04:52:36.883000','2025-12-12 04:52:36.883000','2025-12-12 04:52:36.884000',NULL,NULL,NULL),(361,'q3rid2seunp2yuzjucrogxrk','plugin::content-manager.explorer.publish','{}','api::branch-location.branch-location','{\"locales\": [\"en\", \"ar\"]}','[]','2025-12-12 04:52:37.000000','2025-12-12 04:52:37.000000','2025-12-12 04:52:37.000000',NULL,NULL,NULL),(362,'kz99xuhovmunbjknnbf83uej','plugin::content-manager.explorer.publish','{}','api::brand.brand','{\"locales\": [\"en\", \"ar\"]}','[]','2025-12-12 04:52:37.111000','2025-12-12 04:52:37.111000','2025-12-12 04:52:37.111000',NULL,NULL,NULL),(363,'ouz9gqavbvdbblggoqpiraia','plugin::content-manager.explorer.publish','{}','api::business-stream.business-stream','{\"locales\": [\"en\", \"ar\"]}','[]','2025-12-12 04:52:37.218000','2025-12-12 04:52:37.218000','2025-12-12 04:52:37.218000',NULL,NULL,NULL),(364,'t8rctpjx400tiqcm6grvs56d','plugin::content-manager.explorer.publish','{}','api::contact-enquiry.contact-enquiry','{\"locales\": [\"en\", \"ar\"]}','[]','2025-12-12 04:52:37.322000','2025-12-12 04:52:37.322000','2025-12-12 04:52:37.322000',NULL,NULL,NULL),(365,'zumelxrppdp65xd2bz4zyplf','plugin::content-manager.explorer.publish','{}','api::contact-us.contact-us','{\"locales\": [\"en\", \"ar\"]}','[]','2025-12-12 04:52:37.423000','2025-12-12 04:52:37.423000','2025-12-12 04:52:37.423000',NULL,NULL,NULL),(366,'bfz3i6c7ufju0qdc1zeocoz2','plugin::content-manager.explorer.publish','{}','api::news.news','{\"locales\": [\"en\", \"ar\"]}','[]','2025-12-12 04:52:37.527000','2025-12-12 04:52:37.527000','2025-12-12 04:52:37.528000',NULL,NULL,NULL),(367,'r2y6ess6n7ehiqun1545a3zn','plugin::content-manager.explorer.publish','{}','api::news-landing.news-landing','{\"locales\": [\"en\", \"ar\"]}','[]','2025-12-12 04:52:37.657000','2025-12-12 04:52:37.657000','2025-12-12 04:52:37.658000',NULL,NULL,NULL),(368,'ohaxvrgso581oqo8w364zrac','plugin::content-manager.explorer.publish','{}','api::service.service','{\"locales\": [\"en\", \"ar\"]}','[]','2025-12-12 04:52:37.773000','2025-12-12 04:52:37.773000','2025-12-12 04:52:37.774000',NULL,NULL,NULL),(369,'wpgaocsinw0850zezyftg187','plugin::content-manager.explorer.publish','{}','api::service-category.service-category','{\"locales\": [\"en\", \"ar\"]}','[]','2025-12-12 04:52:37.882000','2025-12-12 04:52:37.882000','2025-12-12 04:52:37.882000',NULL,NULL,NULL),(370,'ql5nx0epuboesptv9225nz9h','plugin::content-manager.explorer.publish','{}','api::type.type','{\"locales\": [\"en\", \"ar\"]}','[]','2025-12-12 04:52:37.990000','2025-12-12 04:52:37.990000','2025-12-12 04:52:37.991000',NULL,NULL,NULL),(378,'zmfqu7lxzixal447gxa29wyb','plugin::content-manager.explorer.delete','{}','api::service-landing.service-landing','{\"locales\": [\"en\", \"ar\"]}','[]','2025-12-12 12:48:46.408000','2025-12-12 12:48:46.408000','2025-12-12 12:48:46.408000',NULL,NULL,NULL),(380,'zbzc7uaja1c5ncblfqeuy22o','plugin::content-manager.explorer.publish','{}','api::service-landing.service-landing','{\"locales\": [\"en\", \"ar\"]}','[]','2025-12-12 12:48:46.610000','2025-12-12 12:48:46.610000','2025-12-12 12:48:46.611000',NULL,NULL,NULL),(428,'ztuod3bcqwt7ixozuc6dieg5','plugin::content-manager.explorer.create','{}','api::social.social','{\"fields\": [\"title\", \"image\", \"icon\", \"link\", \"typeExternal\"], \"locales\": [\"en\", \"ar\"]}','[]','2026-01-20 05:37:47.112000','2026-01-20 05:37:47.112000','2026-01-20 05:37:47.112000',NULL,NULL,NULL),(432,'r8i2cqxxomj0ovbwqd92wgvj','plugin::content-manager.explorer.read','{}','api::social.social','{\"fields\": [\"title\", \"image\", \"icon\", \"link\", \"typeExternal\"], \"locales\": [\"en\", \"ar\"]}','[]','2026-01-20 05:37:47.546000','2026-01-20 05:37:47.546000','2026-01-20 05:37:47.546000',NULL,NULL,NULL),(436,'rdixmhg3rrmkwutdt7zz1wyl','plugin::content-manager.explorer.update','{}','api::social.social','{\"fields\": [\"title\", \"image\", \"icon\", \"link\", \"typeExternal\"], \"locales\": [\"en\", \"ar\"]}','[]','2026-01-20 05:37:47.971000','2026-01-20 05:37:47.971000','2026-01-20 05:37:47.972000',NULL,NULL,NULL),(437,'qeduujp2axkaf78rwvxpgv0u','plugin::content-manager.explorer.delete','{}','api::automotive-landing.automotive-landing','{\"locales\": [\"en\", \"ar\"]}','[]','2026-01-20 05:37:48.080000','2026-01-20 05:37:48.080000','2026-01-20 05:37:48.081000',NULL,NULL,NULL),(438,'atp9rsbs0s06462drhz7uq0o','plugin::content-manager.explorer.delete','{}','api::product-category.product-category','{\"locales\": [\"en\", \"ar\"]}','[]','2026-01-20 05:37:48.184000','2026-01-20 05:37:48.184000','2026-01-20 05:37:48.185000',NULL,NULL,NULL),(439,'h49iniuxyr5zrdtbu9dunsnw','plugin::content-manager.explorer.delete','{}','api::service-category-type.service-category-type','{\"locales\": [\"en\", \"ar\"]}','[]','2026-01-20 05:37:48.287000','2026-01-20 05:37:48.287000','2026-01-20 05:37:48.288000',NULL,NULL,NULL),(440,'tyhenuqzzeji4l4wpluypic6','plugin::content-manager.explorer.delete','{}','api::social.social','{\"locales\": [\"en\", \"ar\"]}','[]','2026-01-20 05:37:48.393000','2026-01-20 05:37:48.393000','2026-01-20 05:37:48.394000',NULL,NULL,NULL),(441,'tafwelgkoyn6lf8g14jt4965','plugin::content-manager.explorer.publish','{}','api::automotive-landing.automotive-landing','{\"locales\": [\"en\", \"ar\"]}','[]','2026-01-20 05:37:48.497000','2026-01-20 05:37:48.497000','2026-01-20 05:37:48.498000',NULL,NULL,NULL),(442,'t3zd2pp1l5xb56uov2bj1k5a','plugin::content-manager.explorer.publish','{}','api::product-category.product-category','{\"locales\": [\"en\", \"ar\"]}','[]','2026-01-20 05:37:48.600000','2026-01-20 05:37:48.600000','2026-01-20 05:37:48.600000',NULL,NULL,NULL),(443,'rvm3ux7jsy0idw1tisah3yzk','plugin::content-manager.explorer.publish','{}','api::service-category-type.service-category-type','{\"locales\": [\"en\", \"ar\"]}','[]','2026-01-20 05:37:48.707000','2026-01-20 05:37:48.707000','2026-01-20 05:37:48.707000',NULL,NULL,NULL),(444,'ktw2c7479vwvaqo2pq3smjmr','plugin::content-manager.explorer.publish','{}','api::social.social','{\"locales\": [\"en\", \"ar\"]}','[]','2026-01-20 05:37:48.811000','2026-01-20 05:37:48.811000','2026-01-20 05:37:48.811000',NULL,NULL,NULL),(466,'bsspk3zad3nm5q4ogs0kcmcr','plugin::content-manager.explorer.delete','{}','api::power-tool-landing.power-tool-landing','{\"locales\": [\"en\", \"ar\"]}','[]','2026-01-20 06:45:32.031000','2026-01-20 06:45:32.031000','2026-01-20 06:45:32.031000',NULL,NULL,NULL),(467,'a1akpf38pr3pqq6lnr6651sn','plugin::content-manager.explorer.delete','{}','api::tyre-category.tyre-category','{\"locales\": [\"en\", \"ar\"]}','[]','2026-01-20 06:45:32.133000','2026-01-20 06:45:32.133000','2026-01-20 06:45:32.133000',NULL,NULL,NULL),(468,'gor6okngnnnbsy93dclx4m2n','plugin::content-manager.explorer.delete','{}','api::tyre-landing.tyre-landing','{\"locales\": [\"en\", \"ar\"]}','[]','2026-01-20 06:45:32.237000','2026-01-20 06:45:32.237000','2026-01-20 06:45:32.237000',NULL,NULL,NULL),(469,'exf83vwglyclfp5lck147hyl','plugin::content-manager.explorer.delete','{}','api::tyre-service.tyre-service','{\"locales\": [\"en\", \"ar\"]}','[]','2026-01-20 06:45:32.341000','2026-01-20 06:45:32.341000','2026-01-20 06:45:32.341000',NULL,NULL,NULL),(470,'u4pspj8tubheg6dqeyplh11a','plugin::content-manager.explorer.publish','{}','api::power-tool-landing.power-tool-landing','{\"locales\": [\"en\", \"ar\"]}','[]','2026-01-20 06:45:32.443000','2026-01-20 06:45:32.443000','2026-01-20 06:45:32.443000',NULL,NULL,NULL),(471,'vbg8a6cwjfm76y5a2vbpaey5','plugin::content-manager.explorer.publish','{}','api::tyre-category.tyre-category','{\"locales\": [\"en\", \"ar\"]}','[]','2026-01-20 06:45:32.547000','2026-01-20 06:45:32.547000','2026-01-20 06:45:32.547000',NULL,NULL,NULL),(472,'pu1vk2o8162d7f67vkxn9w4w','plugin::content-manager.explorer.publish','{}','api::tyre-landing.tyre-landing','{\"locales\": [\"en\", \"ar\"]}','[]','2026-01-20 06:45:32.653000','2026-01-20 06:45:32.653000','2026-01-20 06:45:32.653000',NULL,NULL,NULL),(473,'m3u5ace8tl359oznoi27l422','plugin::content-manager.explorer.publish','{}','api::tyre-service.tyre-service','{\"locales\": [\"en\", \"ar\"]}','[]','2026-01-20 06:45:32.756000','2026-01-20 06:45:32.756000','2026-01-20 06:45:32.757000',NULL,NULL,NULL),(486,'o4pew4z8mtitoffqkzmrj0bm','plugin::content-manager.explorer.create','{}','api::footer.footer','{\"fields\": [\"logo\", \"description\", \"socialLinks.title\", \"socialLinks.link\", \"socialLinks.icon\", \"socialLinks.isActive\", \"bottomMenu.title\", \"bottomMenu.url\", \"bottomMenu.newTab\", \"bottomMenu.isActive\", \"bottomMenu.key\", \"menu.title\", \"menu.url\", \"menu.newTab\", \"menu.isActive\", \"menu.submenu.title\", \"menu.submenu.url\", \"menu.submenu.newTab\", \"menu.submenu.isActive\", \"menu.submenu.key\", \"copyrightText\"], \"locales\": [\"en\", \"ar\"]}','[]','2026-01-28 10:35:17.423000','2026-01-28 10:35:17.423000','2026-01-28 10:35:17.424000',NULL,NULL,NULL),(487,'b188pe7ut9ntf0ik93kkcgj8','plugin::content-manager.explorer.read','{}','api::footer.footer','{\"fields\": [\"logo\", \"description\", \"socialLinks.title\", \"socialLinks.link\", \"socialLinks.icon\", \"socialLinks.isActive\", \"bottomMenu.title\", \"bottomMenu.url\", \"bottomMenu.newTab\", \"bottomMenu.isActive\", \"bottomMenu.key\", \"menu.title\", \"menu.url\", \"menu.newTab\", \"menu.isActive\", \"menu.submenu.title\", \"menu.submenu.url\", \"menu.submenu.newTab\", \"menu.submenu.isActive\", \"menu.submenu.key\", \"copyrightText\"], \"locales\": [\"en\", \"ar\"]}','[]','2026-01-28 10:35:17.531000','2026-01-28 10:35:17.531000','2026-01-28 10:35:17.532000',NULL,NULL,NULL),(488,'mhkkiivfeivkc4kdazid953f','plugin::content-manager.explorer.update','{}','api::footer.footer','{\"fields\": [\"logo\", \"description\", \"socialLinks.title\", \"socialLinks.link\", \"socialLinks.icon\", \"socialLinks.isActive\", \"bottomMenu.title\", \"bottomMenu.url\", \"bottomMenu.newTab\", \"bottomMenu.isActive\", \"bottomMenu.key\", \"menu.title\", \"menu.url\", \"menu.newTab\", \"menu.isActive\", \"menu.submenu.title\", \"menu.submenu.url\", \"menu.submenu.newTab\", \"menu.submenu.isActive\", \"menu.submenu.key\", \"copyrightText\"], \"locales\": [\"en\", \"ar\"]}','[]','2026-01-28 10:35:17.662000','2026-01-28 10:35:17.662000','2026-01-28 10:35:17.662000',NULL,NULL,NULL),(489,'vb7cd8kvvhtaimlfvwuxpikz','plugin::content-manager.explorer.create','{}','api::contact-enquiry.contact-enquiry','{\"fields\": [\"fullName\", \"email\", \"phoneNumber\", \"message\", \"enquiryType\"], \"locales\": [\"en\", \"ar\"]}','[]','2026-01-30 08:58:18.596000','2026-01-30 08:58:18.596000','2026-01-30 08:58:18.599000',NULL,NULL,NULL),(490,'ugkmzlc69paqub8os8z2tavl','plugin::content-manager.explorer.read','{}','api::contact-enquiry.contact-enquiry','{\"fields\": [\"fullName\", \"email\", \"phoneNumber\", \"message\", \"enquiryType\"], \"locales\": [\"en\", \"ar\"]}','[]','2026-01-30 08:58:18.710000','2026-01-30 08:58:18.710000','2026-01-30 08:58:18.711000',NULL,NULL,NULL),(491,'jvvkjf07jcwh4kz25wq54rh5','plugin::content-manager.explorer.update','{}','api::contact-enquiry.contact-enquiry','{\"fields\": [\"fullName\", \"email\", \"phoneNumber\", \"message\", \"enquiryType\"], \"locales\": [\"en\", \"ar\"]}','[]','2026-01-30 08:58:18.824000','2026-01-30 08:58:18.824000','2026-01-30 08:58:18.824000',NULL,NULL,NULL),(494,'amdthnjcewu2349f51lwtoih','plugin::content-manager.explorer.create','{}','api::location.location','{\"fields\": [\"subTitle\", \"title\", \"description\", \"seo.metaTitle\", \"seo.metaDescription\", \"seo.preventIndexing\", \"seo.keywords\", \"seo.canonicalUrl\", \"seo.metaHead\", \"seo.ogMeta.name\", \"seo.ogMeta.content\", \"seo.socialMediaMeta.name\", \"seo.socialMediaMeta.content\", \"seo.wordDescription\", \"seo.metaImage\", \"locationTypes\"], \"locales\": [\"en\", \"ar\"]}','[]','2026-02-02 05:33:23.725000','2026-02-02 05:33:23.725000','2026-02-02 05:33:23.725000',NULL,NULL,NULL),(495,'s9jk6ok3u9so6au2s6avcjuj','plugin::content-manager.explorer.create','{}','api::news.news','{\"fields\": [\"title\", \"slug\", \"postedDate\", \"smallDescription\", \"description\", \"image\", \"isFeatured\", \"readTime\", \"seo.metaTitle\", \"seo.metaDescription\", \"seo.preventIndexing\", \"seo.keywords\", \"seo.canonicalUrl\", \"seo.metaHead\", \"seo.ogMeta.name\", \"seo.ogMeta.content\", \"seo.socialMediaMeta.name\", \"seo.socialMediaMeta.content\", \"seo.wordDescription\", \"seo.metaImage\", \"types\"], \"locales\": [\"en\", \"ar\"]}','[]','2026-02-02 05:33:23.829000','2026-02-02 05:33:23.829000','2026-02-02 05:33:23.829000',NULL,NULL,NULL),(498,'ko9jek7y3z7p8a3uhz0d9prf','plugin::content-manager.explorer.read','{}','api::location.location','{\"fields\": [\"subTitle\", \"title\", \"description\", \"seo.metaTitle\", \"seo.metaDescription\", \"seo.preventIndexing\", \"seo.keywords\", \"seo.canonicalUrl\", \"seo.metaHead\", \"seo.ogMeta.name\", \"seo.ogMeta.content\", \"seo.socialMediaMeta.name\", \"seo.socialMediaMeta.content\", \"seo.wordDescription\", \"seo.metaImage\", \"locationTypes\"], \"locales\": [\"en\", \"ar\"]}','[]','2026-02-02 05:33:24.157000','2026-02-02 05:33:24.157000','2026-02-02 05:33:24.158000',NULL,NULL,NULL),(499,'cxr67hzckp6vpst9kgxhe4pg','plugin::content-manager.explorer.read','{}','api::news.news','{\"fields\": [\"title\", \"slug\", \"postedDate\", \"smallDescription\", \"description\", \"image\", \"isFeatured\", \"readTime\", \"seo.metaTitle\", \"seo.metaDescription\", \"seo.preventIndexing\", \"seo.keywords\", \"seo.canonicalUrl\", \"seo.metaHead\", \"seo.ogMeta.name\", \"seo.ogMeta.content\", \"seo.socialMediaMeta.name\", \"seo.socialMediaMeta.content\", \"seo.wordDescription\", \"seo.metaImage\", \"types\"], \"locales\": [\"en\", \"ar\"]}','[]','2026-02-02 05:33:24.277000','2026-02-02 05:33:24.277000','2026-02-02 05:33:24.277000',NULL,NULL,NULL),(502,'kljviv9mv1k6svvye2v2v7cc','plugin::content-manager.explorer.update','{}','api::location.location','{\"fields\": [\"subTitle\", \"title\", \"description\", \"seo.metaTitle\", \"seo.metaDescription\", \"seo.preventIndexing\", \"seo.keywords\", \"seo.canonicalUrl\", \"seo.metaHead\", \"seo.ogMeta.name\", \"seo.ogMeta.content\", \"seo.socialMediaMeta.name\", \"seo.socialMediaMeta.content\", \"seo.wordDescription\", \"seo.metaImage\", \"locationTypes\"], \"locales\": [\"en\", \"ar\"]}','[]','2026-02-02 05:33:24.628000','2026-02-02 05:33:24.628000','2026-02-02 05:33:24.629000',NULL,NULL,NULL),(503,'bhkiipwrhyrjs6twlevp6co4','plugin::content-manager.explorer.update','{}','api::news.news','{\"fields\": [\"title\", \"slug\", \"postedDate\", \"smallDescription\", \"description\", \"image\", \"isFeatured\", \"readTime\", \"seo.metaTitle\", \"seo.metaDescription\", \"seo.preventIndexing\", \"seo.keywords\", \"seo.canonicalUrl\", \"seo.metaHead\", \"seo.ogMeta.name\", \"seo.ogMeta.content\", \"seo.socialMediaMeta.name\", \"seo.socialMediaMeta.content\", \"seo.wordDescription\", \"seo.metaImage\", \"types\"], \"locales\": [\"en\", \"ar\"]}','[]','2026-02-02 05:33:24.748000','2026-02-02 05:33:24.748000','2026-02-02 05:33:24.748000',NULL,NULL,NULL),(504,'bg3p56ufy99tyung1dfs74nn','plugin::content-manager.explorer.create','{}','api::brand.brand','{\"fields\": [\"title\", \"image\", \"types\", \"commonUrl\", \"enableCommonUrl\", \"automotiveUrl\", \"enableAutomotiveUrl\", \"powerToolUrl\", \"enablePowerToolUrl\", \"tyreUrl\", \"enableTyreUrl\", \"isFeatured\"], \"locales\": [\"en\", \"ar\"]}','[]','2026-02-03 07:17:32.803000','2026-02-03 07:17:32.803000','2026-02-03 07:17:32.805000',NULL,NULL,NULL),(505,'gthv9nw90y2fv40ngzjtgino','plugin::content-manager.explorer.read','{}','api::brand.brand','{\"fields\": [\"title\", \"image\", \"types\", \"commonUrl\", \"enableCommonUrl\", \"automotiveUrl\", \"enableAutomotiveUrl\", \"powerToolUrl\", \"enablePowerToolUrl\", \"tyreUrl\", \"enableTyreUrl\", \"isFeatured\"], \"locales\": [\"en\", \"ar\"]}','[]','2026-02-03 07:17:33.006000','2026-02-03 07:17:33.006000','2026-02-03 07:17:33.007000',NULL,NULL,NULL),(506,'jxhl2j1zi4v9wbbbiunnnpvr','plugin::content-manager.explorer.update','{}','api::brand.brand','{\"fields\": [\"title\", \"image\", \"types\", \"commonUrl\", \"enableCommonUrl\", \"automotiveUrl\", \"enableAutomotiveUrl\", \"powerToolUrl\", \"enablePowerToolUrl\", \"tyreUrl\", \"enableTyreUrl\", \"isFeatured\"], \"locales\": [\"en\", \"ar\"]}','[]','2026-02-03 07:17:33.210000','2026-02-03 07:17:33.210000','2026-02-03 07:17:33.211000',NULL,NULL,NULL),(510,'u47e37s15jr3mqa59i4z13zk','plugin::content-manager.explorer.delete','{}','api::power-category.power-category','{\"locales\": [\"en\", \"ar\"]}','[]','2026-02-05 04:41:14.221000','2026-02-05 04:41:14.221000','2026-02-05 04:41:14.221000',NULL,NULL,NULL),(511,'jbrf0whrenj8w674kjzy8evp','plugin::content-manager.explorer.publish','{}','api::power-category.power-category','{\"locales\": [\"en\", \"ar\"]}','[]','2026-02-05 04:41:14.327000','2026-02-05 04:41:14.327000','2026-02-05 04:41:14.327000',NULL,NULL,NULL),(512,'vfl2v9j7qhqsspq9upvf2qlg','plugin::content-manager.explorer.create','{}','api::service-landing.service-landing','{\"fields\": [\"banner.title\", \"banner.subtitle\", \"banner.media\", \"banner.responsiveMedia\", \"banner.type\", \"banner.callToAction.label\", \"banner.callToAction.url\", \"banner.callToAction.newTab\", \"serviceHeading\", \"description\", \"seo.metaTitle\", \"seo.metaDescription\", \"seo.preventIndexing\", \"seo.keywords\", \"seo.canonicalUrl\", \"seo.metaHead\", \"seo.ogMeta.name\", \"seo.ogMeta.content\", \"seo.socialMediaMeta.name\", \"seo.socialMediaMeta.content\", \"seo.wordDescription\", \"seo.metaImage\", \"serviceLocations.title\", \"serviceLocations.slug\", \"serviceLocations.address\", \"serviceLocations.branchLocation\", \"serviceLocations.phoneNumbers.phone\", \"serviceLocations.image\", \"serviceLocations.previewImage\", \"serviceLocations.embededMapUrl\", \"serviceLocations.mapUrl\", \"locationTypes\"], \"locales\": [\"en\", \"ar\"]}','[]','2026-02-25 09:46:12.140000','2026-02-25 09:46:12.140000','2026-02-25 09:46:12.145000',NULL,NULL,NULL),(513,'hgr42rdc6e4clavyr86oqzwo','plugin::content-manager.explorer.read','{}','api::service-landing.service-landing','{\"fields\": [\"banner.title\", \"banner.subtitle\", \"banner.media\", \"banner.responsiveMedia\", \"banner.type\", \"banner.callToAction.label\", \"banner.callToAction.url\", \"banner.callToAction.newTab\", \"serviceHeading\", \"description\", \"seo.metaTitle\", \"seo.metaDescription\", \"seo.preventIndexing\", \"seo.keywords\", \"seo.canonicalUrl\", \"seo.metaHead\", \"seo.ogMeta.name\", \"seo.ogMeta.content\", \"seo.socialMediaMeta.name\", \"seo.socialMediaMeta.content\", \"seo.wordDescription\", \"seo.metaImage\", \"serviceLocations.title\", \"serviceLocations.slug\", \"serviceLocations.address\", \"serviceLocations.branchLocation\", \"serviceLocations.phoneNumbers.phone\", \"serviceLocations.image\", \"serviceLocations.previewImage\", \"serviceLocations.embededMapUrl\", \"serviceLocations.mapUrl\", \"locationTypes\"], \"locales\": [\"en\", \"ar\"]}','[]','2026-02-25 09:46:12.255000','2026-02-25 09:46:12.255000','2026-02-25 09:46:12.256000',NULL,NULL,NULL),(514,'vyffh9r1wv4kdablwmy2zbqy','plugin::content-manager.explorer.update','{}','api::service-landing.service-landing','{\"fields\": [\"banner.title\", \"banner.subtitle\", \"banner.media\", \"banner.responsiveMedia\", \"banner.type\", \"banner.callToAction.label\", \"banner.callToAction.url\", \"banner.callToAction.newTab\", \"serviceHeading\", \"description\", \"seo.metaTitle\", \"seo.metaDescription\", \"seo.preventIndexing\", \"seo.keywords\", \"seo.canonicalUrl\", \"seo.metaHead\", \"seo.ogMeta.name\", \"seo.ogMeta.content\", \"seo.socialMediaMeta.name\", \"seo.socialMediaMeta.content\", \"seo.wordDescription\", \"seo.metaImage\", \"serviceLocations.title\", \"serviceLocations.slug\", \"serviceLocations.address\", \"serviceLocations.branchLocation\", \"serviceLocations.phoneNumbers.phone\", \"serviceLocations.image\", \"serviceLocations.previewImage\", \"serviceLocations.embededMapUrl\", \"serviceLocations.mapUrl\", \"locationTypes\"], \"locales\": [\"en\", \"ar\"]}','[]','2026-02-25 09:46:12.359000','2026-02-25 09:46:12.359000','2026-02-25 09:46:12.360000',NULL,NULL,NULL),(521,'x9s4i1q6erki31gax29w3c56','plugin::content-manager.explorer.delete','{}','api::power-top-category.power-top-category','{\"locales\": [\"en\", \"ar\"]}','[]','2026-03-06 05:21:43.207000','2026-03-06 05:21:43.207000','2026-03-06 05:21:43.208000',NULL,NULL,NULL),(522,'xvjabm3okp8nti40zw7gwocy','plugin::content-manager.explorer.publish','{}','api::power-top-category.power-top-category','{\"locales\": [\"en\", \"ar\"]}','[]','2026-03-06 05:21:43.309000','2026-03-06 05:21:43.309000','2026-03-06 05:21:43.309000',NULL,NULL,NULL),(523,'m7afyda8w75lxihmxxxd05y8','plugin::content-manager.explorer.create','{}','api::power-category.power-category','{\"fields\": [\"title\", \"image\", \"slug\", \"displayOrder\"], \"locales\": [\"en\", \"ar\"]}','[]','2026-03-09 06:43:11.220000','2026-03-09 06:43:11.220000','2026-03-09 06:43:11.223000',NULL,NULL,NULL),(524,'o3bo0w1dcazov48eyzmnlzm8','plugin::content-manager.explorer.create','{}','api::power-top-category.power-top-category','{\"fields\": [\"title\", \"image\", \"slug\", \"displayOrder\"], \"locales\": [\"en\", \"ar\"]}','[]','2026-03-09 06:43:11.332000','2026-03-09 06:43:11.332000','2026-03-09 06:43:11.332000',NULL,NULL,NULL),(525,'qk04o2pqqc0uioa7ami0ggy1','plugin::content-manager.explorer.create','{}','api::product-category.product-category','{\"fields\": [\"title\", \"image\", \"slug\", \"displayOrder\"], \"locales\": [\"en\", \"ar\"]}','[]','2026-03-09 06:43:11.433000','2026-03-09 06:43:11.433000','2026-03-09 06:43:11.434000',NULL,NULL,NULL),(526,'f3dqekn0ehglr8k610brhmdh','plugin::content-manager.explorer.create','{}','api::service-category-type.service-category-type','{\"fields\": [\"title\", \"image\", \"slug\", \"displayOrder\"], \"locales\": [\"en\", \"ar\"]}','[]','2026-03-09 06:43:11.538000','2026-03-09 06:43:11.538000','2026-03-09 06:43:11.538000',NULL,NULL,NULL),(527,'xizb6tznvgmje7bfjz3s6vzi','plugin::content-manager.explorer.create','{}','api::tyre-category.tyre-category','{\"fields\": [\"title\", \"image\", \"slug\", \"displayOrder\"], \"locales\": [\"en\", \"ar\"]}','[]','2026-03-09 06:43:11.646000','2026-03-09 06:43:11.646000','2026-03-09 06:43:11.646000',NULL,NULL,NULL),(528,'pm1b3ki9btjcqqw9pwc59r6m','plugin::content-manager.explorer.read','{}','api::power-category.power-category','{\"fields\": [\"title\", \"image\", \"slug\", \"displayOrder\"], \"locales\": [\"en\", \"ar\"]}','[]','2026-03-09 06:43:11.755000','2026-03-09 06:43:11.755000','2026-03-09 06:43:11.755000',NULL,NULL,NULL),(529,'al8v9r92qz116jmmx7dzydet','plugin::content-manager.explorer.read','{}','api::power-top-category.power-top-category','{\"fields\": [\"title\", \"image\", \"slug\", \"displayOrder\"], \"locales\": [\"en\", \"ar\"]}','[]','2026-03-09 06:43:11.858000','2026-03-09 06:43:11.858000','2026-03-09 06:43:11.858000',NULL,NULL,NULL),(530,'zpaycgqxjccxs1n3rbe7euhg','plugin::content-manager.explorer.read','{}','api::product-category.product-category','{\"fields\": [\"title\", \"image\", \"slug\", \"displayOrder\"], \"locales\": [\"en\", \"ar\"]}','[]','2026-03-09 06:43:11.967000','2026-03-09 06:43:11.967000','2026-03-09 06:43:11.967000',NULL,NULL,NULL),(531,'kplg0ktpa6fmuz62nzqba4h5','plugin::content-manager.explorer.read','{}','api::service-category-type.service-category-type','{\"fields\": [\"title\", \"image\", \"slug\", \"displayOrder\"], \"locales\": [\"en\", \"ar\"]}','[]','2026-03-09 06:43:12.077000','2026-03-09 06:43:12.077000','2026-03-09 06:43:12.078000',NULL,NULL,NULL),(532,'dusnwj9eq2mlvs3m1tys8fbm','plugin::content-manager.explorer.read','{}','api::tyre-category.tyre-category','{\"fields\": [\"title\", \"image\", \"slug\", \"displayOrder\"], \"locales\": [\"en\", \"ar\"]}','[]','2026-03-09 06:43:12.182000','2026-03-09 06:43:12.182000','2026-03-09 06:43:12.183000',NULL,NULL,NULL),(533,'mex7c31ckgpwv4lh1obw6msp','plugin::content-manager.explorer.update','{}','api::power-category.power-category','{\"fields\": [\"title\", \"image\", \"slug\", \"displayOrder\"], \"locales\": [\"en\", \"ar\"]}','[]','2026-03-09 06:43:12.304000','2026-03-09 06:43:12.304000','2026-03-09 06:43:12.304000',NULL,NULL,NULL),(534,'qrxl4ri258mszbuhjg7m4ael','plugin::content-manager.explorer.update','{}','api::power-top-category.power-top-category','{\"fields\": [\"title\", \"image\", \"slug\", \"displayOrder\"], \"locales\": [\"en\", \"ar\"]}','[]','2026-03-09 06:43:12.411000','2026-03-09 06:43:12.411000','2026-03-09 06:43:12.411000',NULL,NULL,NULL),(535,'rbg2znp4zichcq2wz15ub2hx','plugin::content-manager.explorer.update','{}','api::product-category.product-category','{\"fields\": [\"title\", \"image\", \"slug\", \"displayOrder\"], \"locales\": [\"en\", \"ar\"]}','[]','2026-03-09 06:43:12.529000','2026-03-09 06:43:12.529000','2026-03-09 06:43:12.530000',NULL,NULL,NULL),(536,'fgy3otxm4yjoj3wc3pub3klu','plugin::content-manager.explorer.update','{}','api::service-category-type.service-category-type','{\"fields\": [\"title\", \"image\", \"slug\", \"displayOrder\"], \"locales\": [\"en\", \"ar\"]}','[]','2026-03-09 06:43:12.642000','2026-03-09 06:43:12.642000','2026-03-09 06:43:12.642000',NULL,NULL,NULL),(537,'w2377ycwbvidblw87jqzs33n','plugin::content-manager.explorer.update','{}','api::tyre-category.tyre-category','{\"fields\": [\"title\", \"image\", \"slug\", \"displayOrder\"], \"locales\": [\"en\", \"ar\"]}','[]','2026-03-09 06:43:12.745000','2026-03-09 06:43:12.745000','2026-03-09 06:43:12.746000',NULL,NULL,NULL),(538,'bp9jtusi8cf59nb1kyjwlepx','plugin::content-manager.explorer.create','{}','api::tyre-service.tyre-service','{\"fields\": [\"title\", \"image\", \"slug\", \"displayOrder\"], \"locales\": [\"en\", \"ar\"]}','[]','2026-03-09 07:23:53.398000','2026-03-09 07:23:53.398000','2026-03-09 07:23:53.400000',NULL,NULL,NULL),(539,'sap9qhgcf7s9x1tzgblpbhum','plugin::content-manager.explorer.read','{}','api::tyre-service.tyre-service','{\"fields\": [\"title\", \"image\", \"slug\", \"displayOrder\"], \"locales\": [\"en\", \"ar\"]}','[]','2026-03-09 07:23:53.541000','2026-03-09 07:23:53.541000','2026-03-09 07:23:53.543000',NULL,NULL,NULL),(540,'bj00sdpdk4oeztboeqdfd8hg','plugin::content-manager.explorer.update','{}','api::tyre-service.tyre-service','{\"fields\": [\"title\", \"image\", \"slug\", \"displayOrder\"], \"locales\": [\"en\", \"ar\"]}','[]','2026-03-09 07:23:53.676000','2026-03-09 07:23:53.676000','2026-03-09 07:23:53.677000',NULL,NULL,NULL),(541,'yx6dqawuxwas414myltlvf3n','plugin::content-manager.explorer.create','{}','api::automotive-landing.automotive-landing','{\"fields\": [\"title\", \"banner.title\", \"banner.subtitle\", \"banner.media\", \"banner.responsiveMedia\", \"banner.type\", \"banner.callToAction.label\", \"banner.callToAction.url\", \"banner.callToAction.newTab\", \"seo.metaTitle\", \"seo.metaDescription\", \"seo.preventIndexing\", \"seo.keywords\", \"seo.canonicalUrl\", \"seo.metaHead\", \"seo.ogMeta.name\", \"seo.ogMeta.content\", \"seo.socialMediaMeta.name\", \"seo.socialMediaMeta.content\", \"seo.wordDescription\", \"seo.metaImage\", \"locationTypes\", \"socialFeeds.title\", \"socialFeeds.subTitle\"], \"locales\": [\"en\", \"ar\"]}','[]','2026-03-09 13:52:50.666000','2026-03-09 13:52:50.666000','2026-03-09 13:52:50.668000',NULL,NULL,NULL),(542,'r6ptc1ux55b3mc655hnwlyou','plugin::content-manager.explorer.create','{}','api::power-tool-landing.power-tool-landing','{\"fields\": [\"title\", \"banner.title\", \"banner.subtitle\", \"banner.media\", \"banner.responsiveMedia\", \"banner.type\", \"banner.callToAction.label\", \"banner.callToAction.url\", \"banner.callToAction.newTab\", \"mainTitle\", \"mainDescription\", \"seo.metaTitle\", \"seo.metaDescription\", \"seo.preventIndexing\", \"seo.keywords\", \"seo.canonicalUrl\", \"seo.metaHead\", \"seo.ogMeta.name\", \"seo.ogMeta.content\", \"seo.socialMediaMeta.name\", \"seo.socialMediaMeta.content\", \"seo.wordDescription\", \"seo.metaImage\", \"locationTypes\", \"socialFeeds.title\", \"socialFeeds.subTitle\"], \"locales\": [\"en\", \"ar\"]}','[]','2026-03-09 13:52:50.782000','2026-03-09 13:52:50.782000','2026-03-09 13:52:50.783000',NULL,NULL,NULL),(543,'c84v581u9ghgvqyfl4k72nux','plugin::content-manager.explorer.create','{}','api::tyre-landing.tyre-landing','{\"fields\": [\"title\", \"banner.title\", \"banner.subtitle\", \"banner.media\", \"banner.responsiveMedia\", \"banner.type\", \"banner.callToAction.label\", \"banner.callToAction.url\", \"banner.callToAction.newTab\", \"bookService.title\", \"bookService.description\", \"mobileService.title\", \"mobileService.description\", \"seo.metaTitle\", \"seo.metaDescription\", \"seo.preventIndexing\", \"seo.keywords\", \"seo.canonicalUrl\", \"seo.metaHead\", \"seo.ogMeta.name\", \"seo.ogMeta.content\", \"seo.socialMediaMeta.name\", \"seo.socialMediaMeta.content\", \"seo.wordDescription\", \"seo.metaImage\", \"locationTypes\", \"socialFeeds.title\", \"socialFeeds.subTitle\"], \"locales\": [\"en\", \"ar\"]}','[]','2026-03-09 13:52:50.887000','2026-03-09 13:52:50.887000','2026-03-09 13:52:50.888000',NULL,NULL,NULL),(544,'cmaemxt3908jqz88txydi6jc','plugin::content-manager.explorer.read','{}','api::automotive-landing.automotive-landing','{\"fields\": [\"title\", \"banner.title\", \"banner.subtitle\", \"banner.media\", \"banner.responsiveMedia\", \"banner.type\", \"banner.callToAction.label\", \"banner.callToAction.url\", \"banner.callToAction.newTab\", \"seo.metaTitle\", \"seo.metaDescription\", \"seo.preventIndexing\", \"seo.keywords\", \"seo.canonicalUrl\", \"seo.metaHead\", \"seo.ogMeta.name\", \"seo.ogMeta.content\", \"seo.socialMediaMeta.name\", \"seo.socialMediaMeta.content\", \"seo.wordDescription\", \"seo.metaImage\", \"locationTypes\", \"socialFeeds.title\", \"socialFeeds.subTitle\"], \"locales\": [\"en\", \"ar\"]}','[]','2026-03-09 13:52:50.993000','2026-03-09 13:52:50.993000','2026-03-09 13:52:50.993000',NULL,NULL,NULL),(545,'r82nvuw2wcg5v3n6lea629dw','plugin::content-manager.explorer.read','{}','api::power-tool-landing.power-tool-landing','{\"fields\": [\"title\", \"banner.title\", \"banner.subtitle\", \"banner.media\", \"banner.responsiveMedia\", \"banner.type\", \"banner.callToAction.label\", \"banner.callToAction.url\", \"banner.callToAction.newTab\", \"mainTitle\", \"mainDescription\", \"seo.metaTitle\", \"seo.metaDescription\", \"seo.preventIndexing\", \"seo.keywords\", \"seo.canonicalUrl\", \"seo.metaHead\", \"seo.ogMeta.name\", \"seo.ogMeta.content\", \"seo.socialMediaMeta.name\", \"seo.socialMediaMeta.content\", \"seo.wordDescription\", \"seo.metaImage\", \"locationTypes\", \"socialFeeds.title\", \"socialFeeds.subTitle\"], \"locales\": [\"en\", \"ar\"]}','[]','2026-03-09 13:52:51.094000','2026-03-09 13:52:51.094000','2026-03-09 13:52:51.094000',NULL,NULL,NULL),(546,'w9ku9l1714vzmmfl3hmlfbvg','plugin::content-manager.explorer.read','{}','api::tyre-landing.tyre-landing','{\"fields\": [\"title\", \"banner.title\", \"banner.subtitle\", \"banner.media\", \"banner.responsiveMedia\", \"banner.type\", \"banner.callToAction.label\", \"banner.callToAction.url\", \"banner.callToAction.newTab\", \"bookService.title\", \"bookService.description\", \"mobileService.title\", \"mobileService.description\", \"seo.metaTitle\", \"seo.metaDescription\", \"seo.preventIndexing\", \"seo.keywords\", \"seo.canonicalUrl\", \"seo.metaHead\", \"seo.ogMeta.name\", \"seo.ogMeta.content\", \"seo.socialMediaMeta.name\", \"seo.socialMediaMeta.content\", \"seo.wordDescription\", \"seo.metaImage\", \"locationTypes\", \"socialFeeds.title\", \"socialFeeds.subTitle\"], \"locales\": [\"en\", \"ar\"]}','[]','2026-03-09 13:52:51.197000','2026-03-09 13:52:51.197000','2026-03-09 13:52:51.198000',NULL,NULL,NULL),(547,'s6eefe4e8ahj6knyy0d6rv9l','plugin::content-manager.explorer.update','{}','api::automotive-landing.automotive-landing','{\"fields\": [\"title\", \"banner.title\", \"banner.subtitle\", \"banner.media\", \"banner.responsiveMedia\", \"banner.type\", \"banner.callToAction.label\", \"banner.callToAction.url\", \"banner.callToAction.newTab\", \"seo.metaTitle\", \"seo.metaDescription\", \"seo.preventIndexing\", \"seo.keywords\", \"seo.canonicalUrl\", \"seo.metaHead\", \"seo.ogMeta.name\", \"seo.ogMeta.content\", \"seo.socialMediaMeta.name\", \"seo.socialMediaMeta.content\", \"seo.wordDescription\", \"seo.metaImage\", \"locationTypes\", \"socialFeeds.title\", \"socialFeeds.subTitle\"], \"locales\": [\"en\", \"ar\"]}','[]','2026-03-09 13:52:51.302000','2026-03-09 13:52:51.302000','2026-03-09 13:52:51.303000',NULL,NULL,NULL),(548,'ff93fx94yuistgd922jcgo7g','plugin::content-manager.explorer.update','{}','api::power-tool-landing.power-tool-landing','{\"fields\": [\"title\", \"banner.title\", \"banner.subtitle\", \"banner.media\", \"banner.responsiveMedia\", \"banner.type\", \"banner.callToAction.label\", \"banner.callToAction.url\", \"banner.callToAction.newTab\", \"mainTitle\", \"mainDescription\", \"seo.metaTitle\", \"seo.metaDescription\", \"seo.preventIndexing\", \"seo.keywords\", \"seo.canonicalUrl\", \"seo.metaHead\", \"seo.ogMeta.name\", \"seo.ogMeta.content\", \"seo.socialMediaMeta.name\", \"seo.socialMediaMeta.content\", \"seo.wordDescription\", \"seo.metaImage\", \"locationTypes\", \"socialFeeds.title\", \"socialFeeds.subTitle\"], \"locales\": [\"en\", \"ar\"]}','[]','2026-03-09 13:52:51.405000','2026-03-09 13:52:51.405000','2026-03-09 13:52:51.406000',NULL,NULL,NULL),(549,'mzlfxbf0b854p6v0f2s0lep9','plugin::content-manager.explorer.update','{}','api::tyre-landing.tyre-landing','{\"fields\": [\"title\", \"banner.title\", \"banner.subtitle\", \"banner.media\", \"banner.responsiveMedia\", \"banner.type\", \"banner.callToAction.label\", \"banner.callToAction.url\", \"banner.callToAction.newTab\", \"bookService.title\", \"bookService.description\", \"mobileService.title\", \"mobileService.description\", \"seo.metaTitle\", \"seo.metaDescription\", \"seo.preventIndexing\", \"seo.keywords\", \"seo.canonicalUrl\", \"seo.metaHead\", \"seo.ogMeta.name\", \"seo.ogMeta.content\", \"seo.socialMediaMeta.name\", \"seo.socialMediaMeta.content\", \"seo.wordDescription\", \"seo.metaImage\", \"locationTypes\", \"socialFeeds.title\", \"socialFeeds.subTitle\"], \"locales\": [\"en\", \"ar\"]}','[]','2026-03-09 13:52:51.510000','2026-03-09 13:52:51.510000','2026-03-09 13:52:51.511000',NULL,NULL,NULL),(565,'qo8x2nqvojw2w40fshf6g7ih','plugin::content-manager.explorer.create','{}','api::service.service','{\"fields\": [\"title\", \"slug\", \"serviceType\", \"banner.title\", \"banner.subtitle\", \"banner.media\", \"banner.responsiveMedia\", \"banner.type\", \"banner.callToAction.label\", \"banner.callToAction.url\", \"banner.callToAction.newTab\", \"listDesc\", \"listImage\", \"locationTypes\", \"breadCrumb.label\", \"breadCrumb.url\", \"breadCrumb.newTab\", \"serviceContent\", \"seo.metaTitle\", \"seo.metaDescription\", \"seo.preventIndexing\", \"seo.keywords\", \"seo.canonicalUrl\", \"seo.metaHead\", \"seo.ogMeta.name\", \"seo.ogMeta.content\", \"seo.socialMediaMeta.name\", \"seo.socialMediaMeta.content\", \"seo.wordDescription\", \"seo.metaImage\", \"showBookServiceForm\", \"showMobileServiceForm\", \"bookService.title\", \"bookService.description\", \"mobileService.title\", \"mobileService.description\", \"headerServiceSortOrder\"], \"locales\": [\"en\", \"ar\"]}','[]','2026-03-12 06:00:09.638000','2026-03-12 06:00:09.638000','2026-03-12 06:00:09.642000',NULL,NULL,NULL),(566,'ie4nt87yflqhhn57yvwdh4sl','plugin::content-manager.explorer.create','{}','api::service-category.service-category','{\"fields\": [\"title\", \"slug\", \"description\", \"image\", \"menuImage\", \"banner.title\", \"banner.subtitle\", \"banner.media\", \"banner.responsiveMedia\", \"banner.type\", \"banner.callToAction.label\", \"banner.callToAction.url\", \"banner.callToAction.newTab\", \"servicesList.title\", \"servicesList.subTitle\", \"servicesList.description\", \"servicesList.horizontalAlignment\", \"seo.metaTitle\", \"seo.metaDescription\", \"seo.preventIndexing\", \"seo.keywords\", \"seo.canonicalUrl\", \"seo.metaHead\", \"seo.ogMeta.name\", \"seo.ogMeta.content\", \"seo.socialMediaMeta.name\", \"seo.socialMediaMeta.content\", \"seo.wordDescription\", \"seo.metaImage\", \"headerServicesSortOrder\"], \"locales\": [\"en\", \"ar\"]}','[]','2026-03-12 06:00:09.771000','2026-03-12 06:00:09.771000','2026-03-12 06:00:09.772000',NULL,NULL,NULL),(567,'imuix5o55akrxcyer3br4hv5','plugin::content-manager.explorer.read','{}','api::service.service','{\"fields\": [\"title\", \"slug\", \"serviceType\", \"banner.title\", \"banner.subtitle\", \"banner.media\", \"banner.responsiveMedia\", \"banner.type\", \"banner.callToAction.label\", \"banner.callToAction.url\", \"banner.callToAction.newTab\", \"listDesc\", \"listImage\", \"locationTypes\", \"breadCrumb.label\", \"breadCrumb.url\", \"breadCrumb.newTab\", \"serviceContent\", \"seo.metaTitle\", \"seo.metaDescription\", \"seo.preventIndexing\", \"seo.keywords\", \"seo.canonicalUrl\", \"seo.metaHead\", \"seo.ogMeta.name\", \"seo.ogMeta.content\", \"seo.socialMediaMeta.name\", \"seo.socialMediaMeta.content\", \"seo.wordDescription\", \"seo.metaImage\", \"showBookServiceForm\", \"showMobileServiceForm\", \"bookService.title\", \"bookService.description\", \"mobileService.title\", \"mobileService.description\", \"headerServiceSortOrder\"], \"locales\": [\"en\", \"ar\"]}','[]','2026-03-12 06:00:09.892000','2026-03-12 06:00:09.892000','2026-03-12 06:00:09.892000',NULL,NULL,NULL),(568,'b2fbs12bgfd4c2jqdmiqkhyn','plugin::content-manager.explorer.read','{}','api::service-category.service-category','{\"fields\": [\"title\", \"slug\", \"description\", \"image\", \"menuImage\", \"banner.title\", \"banner.subtitle\", \"banner.media\", \"banner.responsiveMedia\", \"banner.type\", \"banner.callToAction.label\", \"banner.callToAction.url\", \"banner.callToAction.newTab\", \"servicesList.title\", \"servicesList.subTitle\", \"servicesList.description\", \"servicesList.horizontalAlignment\", \"seo.metaTitle\", \"seo.metaDescription\", \"seo.preventIndexing\", \"seo.keywords\", \"seo.canonicalUrl\", \"seo.metaHead\", \"seo.ogMeta.name\", \"seo.ogMeta.content\", \"seo.socialMediaMeta.name\", \"seo.socialMediaMeta.content\", \"seo.wordDescription\", \"seo.metaImage\", \"headerServicesSortOrder\"], \"locales\": [\"en\", \"ar\"]}','[]','2026-03-12 06:00:10.018000','2026-03-12 06:00:10.018000','2026-03-12 06:00:10.019000',NULL,NULL,NULL),(569,'dt7xebel5810p88e3cd65ybd','plugin::content-manager.explorer.update','{}','api::service.service','{\"fields\": [\"title\", \"slug\", \"serviceType\", \"banner.title\", \"banner.subtitle\", \"banner.media\", \"banner.responsiveMedia\", \"banner.type\", \"banner.callToAction.label\", \"banner.callToAction.url\", \"banner.callToAction.newTab\", \"listDesc\", \"listImage\", \"locationTypes\", \"breadCrumb.label\", \"breadCrumb.url\", \"breadCrumb.newTab\", \"serviceContent\", \"seo.metaTitle\", \"seo.metaDescription\", \"seo.preventIndexing\", \"seo.keywords\", \"seo.canonicalUrl\", \"seo.metaHead\", \"seo.ogMeta.name\", \"seo.ogMeta.content\", \"seo.socialMediaMeta.name\", \"seo.socialMediaMeta.content\", \"seo.wordDescription\", \"seo.metaImage\", \"showBookServiceForm\", \"showMobileServiceForm\", \"bookService.title\", \"bookService.description\", \"mobileService.title\", \"mobileService.description\", \"headerServiceSortOrder\"], \"locales\": [\"en\", \"ar\"]}','[]','2026-03-12 06:00:10.132000','2026-03-12 06:00:10.132000','2026-03-12 06:00:10.133000',NULL,NULL,NULL),(570,'nbloc7zpfswnvbtmx9pxyo1y','plugin::content-manager.explorer.update','{}','api::service-category.service-category','{\"fields\": [\"title\", \"slug\", \"description\", \"image\", \"menuImage\", \"banner.title\", \"banner.subtitle\", \"banner.media\", \"banner.responsiveMedia\", \"banner.type\", \"banner.callToAction.label\", \"banner.callToAction.url\", \"banner.callToAction.newTab\", \"servicesList.title\", \"servicesList.subTitle\", \"servicesList.description\", \"servicesList.horizontalAlignment\", \"seo.metaTitle\", \"seo.metaDescription\", \"seo.preventIndexing\", \"seo.keywords\", \"seo.canonicalUrl\", \"seo.metaHead\", \"seo.ogMeta.name\", \"seo.ogMeta.content\", \"seo.socialMediaMeta.name\", \"seo.socialMediaMeta.content\", \"seo.wordDescription\", \"seo.metaImage\", \"headerServicesSortOrder\"], \"locales\": [\"en\", \"ar\"]}','[]','2026-03-12 06:00:10.239000','2026-03-12 06:00:10.239000','2026-03-12 06:00:10.239000',NULL,NULL,NULL),(571,'ns6ofwvbsnlh99e0no3s3gb4','plugin::content-manager.explorer.create','{}','api::business-stream.business-stream','{\"fields\": [\"title\", \"slug\", \"smallDescription\", \"image\", \"seo.metaTitle\", \"seo.metaDescription\", \"seo.preventIndexing\", \"seo.keywords\", \"seo.canonicalUrl\", \"seo.metaHead\", \"seo.ogMeta.name\", \"seo.ogMeta.content\", \"seo.socialMediaMeta.name\", \"seo.socialMediaMeta.content\", \"seo.wordDescription\", \"seo.metaImage\", \"homePageSortOrder\"], \"locales\": [\"en\", \"ar\"]}','[]','2026-03-26 13:19:53.767000','2026-03-26 13:19:53.767000','2026-03-26 13:19:53.769000',NULL,NULL,NULL),(572,'ikk1c4npwts2gb64z1wjo5z2','plugin::content-manager.explorer.read','{}','api::business-stream.business-stream','{\"fields\": [\"title\", \"slug\", \"smallDescription\", \"image\", \"seo.metaTitle\", \"seo.metaDescription\", \"seo.preventIndexing\", \"seo.keywords\", \"seo.canonicalUrl\", \"seo.metaHead\", \"seo.ogMeta.name\", \"seo.ogMeta.content\", \"seo.socialMediaMeta.name\", \"seo.socialMediaMeta.content\", \"seo.wordDescription\", \"seo.metaImage\", \"homePageSortOrder\"], \"locales\": [\"en\", \"ar\"]}','[]','2026-03-26 13:19:53.871000','2026-03-26 13:19:53.871000','2026-03-26 13:19:53.872000',NULL,NULL,NULL),(573,'s3hjl9mmfq6r0ses6bwc1r9i','plugin::content-manager.explorer.update','{}','api::business-stream.business-stream','{\"fields\": [\"title\", \"slug\", \"smallDescription\", \"image\", \"seo.metaTitle\", \"seo.metaDescription\", \"seo.preventIndexing\", \"seo.keywords\", \"seo.canonicalUrl\", \"seo.metaHead\", \"seo.ogMeta.name\", \"seo.ogMeta.content\", \"seo.socialMediaMeta.name\", \"seo.socialMediaMeta.content\", \"seo.wordDescription\", \"seo.metaImage\", \"homePageSortOrder\"], \"locales\": [\"en\", \"ar\"]}','[]','2026-03-26 13:19:53.972000','2026-03-26 13:19:53.972000','2026-03-26 13:19:53.972000',NULL,NULL,NULL),(575,'omc4c9ym4przj2i386vf5zls','plugin::content-manager.explorer.create','{}','api::branch-location.branch-location','{\"fields\": [\"title\", \"key\", \"tabSortOrder\"], \"locales\": [\"en\", \"ar\"]}','[]','2026-04-01 09:36:53.682000','2026-04-01 09:36:53.682000','2026-04-01 09:36:53.682000',NULL,NULL,NULL),(576,'bdk2l9wr76sps5yq1h3h4qls','plugin::content-manager.explorer.create','{}','api::contact-us.contact-us','{\"fields\": [\"banner.title\", \"banner.subtitle\", \"banner.media\", \"banner.responsiveMedia\", \"banner.type\", \"banner.callToAction.label\", \"banner.callToAction.url\", \"banner.callToAction.newTab\", \"boxComponent.logo\", \"boxComponent.responsiveLogo\", \"boxComponent.title\", \"boxComponent.listItem.item\", \"boxComponent.description\", \"boxComponent.phone\", \"boxComponent.latitude\", \"boxComponent.longitude\", \"boxComponent.subTitle\", \"formTitle\", \"seo.metaTitle\", \"seo.metaDescription\", \"seo.preventIndexing\", \"seo.keywords\", \"seo.canonicalUrl\", \"seo.metaHead\", \"seo.ogMeta.name\", \"seo.ogMeta.content\", \"seo.socialMediaMeta.name\", \"seo.socialMediaMeta.content\", \"seo.wordDescription\", \"seo.metaImage\", \"locations\"], \"locales\": [\"en\", \"ar\"]}','[]','2026-04-01 09:36:53.781000','2026-04-01 09:36:53.781000','2026-04-01 09:36:53.781000',NULL,NULL,NULL),(578,'ibqj8o9i7760ozod06h7do76','plugin::content-manager.explorer.read','{}','api::branch-location.branch-location','{\"fields\": [\"title\", \"key\", \"tabSortOrder\"], \"locales\": [\"en\", \"ar\"]}','[]','2026-04-01 09:36:53.980000','2026-04-01 09:36:53.980000','2026-04-01 09:36:53.980000',NULL,NULL,NULL),(579,'zii0xr9kguoxmss4lodi9syj','plugin::content-manager.explorer.read','{}','api::contact-us.contact-us','{\"fields\": [\"banner.title\", \"banner.subtitle\", \"banner.media\", \"banner.responsiveMedia\", \"banner.type\", \"banner.callToAction.label\", \"banner.callToAction.url\", \"banner.callToAction.newTab\", \"boxComponent.logo\", \"boxComponent.responsiveLogo\", \"boxComponent.title\", \"boxComponent.listItem.item\", \"boxComponent.description\", \"boxComponent.phone\", \"boxComponent.latitude\", \"boxComponent.longitude\", \"boxComponent.subTitle\", \"formTitle\", \"seo.metaTitle\", \"seo.metaDescription\", \"seo.preventIndexing\", \"seo.keywords\", \"seo.canonicalUrl\", \"seo.metaHead\", \"seo.ogMeta.name\", \"seo.ogMeta.content\", \"seo.socialMediaMeta.name\", \"seo.socialMediaMeta.content\", \"seo.wordDescription\", \"seo.metaImage\", \"locations\"], \"locales\": [\"en\", \"ar\"]}','[]','2026-04-01 09:36:54.078000','2026-04-01 09:36:54.078000','2026-04-01 09:36:54.079000',NULL,NULL,NULL),(581,'be3csegnjl824xz7taus0bsj','plugin::content-manager.explorer.update','{}','api::branch-location.branch-location','{\"fields\": [\"title\", \"key\", \"tabSortOrder\"], \"locales\": [\"en\", \"ar\"]}','[]','2026-04-01 09:36:54.274000','2026-04-01 09:36:54.274000','2026-04-01 09:36:54.275000',NULL,NULL,NULL),(582,'pxa2wb4ppgvx35vr5jkwo72q','plugin::content-manager.explorer.update','{}','api::contact-us.contact-us','{\"fields\": [\"banner.title\", \"banner.subtitle\", \"banner.media\", \"banner.responsiveMedia\", \"banner.type\", \"banner.callToAction.label\", \"banner.callToAction.url\", \"banner.callToAction.newTab\", \"boxComponent.logo\", \"boxComponent.responsiveLogo\", \"boxComponent.title\", \"boxComponent.listItem.item\", \"boxComponent.description\", \"boxComponent.phone\", \"boxComponent.latitude\", \"boxComponent.longitude\", \"boxComponent.subTitle\", \"formTitle\", \"seo.metaTitle\", \"seo.metaDescription\", \"seo.preventIndexing\", \"seo.keywords\", \"seo.canonicalUrl\", \"seo.metaHead\", \"seo.ogMeta.name\", \"seo.ogMeta.content\", \"seo.socialMediaMeta.name\", \"seo.socialMediaMeta.content\", \"seo.wordDescription\", \"seo.metaImage\", \"locations\"], \"locales\": [\"en\", \"ar\"]}','[]','2026-04-01 09:36:54.373000','2026-04-01 09:36:54.373000','2026-04-01 09:36:54.374000',NULL,NULL,NULL),(586,'bkuopgpmpp9t649tdf9aaudc','plugin::content-manager.explorer.create','{}','api::privacy-policy.privacy-policy','{\"fields\": [\"title\", \"description\", \"seo.metaTitle\", \"seo.metaDescription\", \"seo.preventIndexing\", \"seo.keywords\", \"seo.canonicalUrl\", \"seo.metaHead\", \"seo.ogMeta.name\", \"seo.ogMeta.content\", \"seo.socialMediaMeta.name\", \"seo.socialMediaMeta.content\", \"seo.wordDescription\", \"seo.metaImage\"], \"locales\": [\"en\", \"ar\"]}','[]','2026-04-02 05:04:47.352000','2026-04-02 05:04:47.352000','2026-04-02 05:04:47.353000',NULL,NULL,NULL),(587,'y28lwb0d0o95eg5sjh64ft74','plugin::content-manager.explorer.create','{}','api::terms-condition.terms-condition','{\"fields\": [\"title\", \"description\", \"seo.metaTitle\", \"seo.metaDescription\", \"seo.preventIndexing\", \"seo.keywords\", \"seo.canonicalUrl\", \"seo.metaHead\", \"seo.ogMeta.name\", \"seo.ogMeta.content\", \"seo.socialMediaMeta.name\", \"seo.socialMediaMeta.content\", \"seo.wordDescription\", \"seo.metaImage\"], \"locales\": [\"en\", \"ar\"]}','[]','2026-04-02 05:04:47.463000','2026-04-02 05:04:47.463000','2026-04-02 05:04:47.463000',NULL,NULL,NULL),(588,'s6cs9ygp87q6jgsbp2q03jyp','plugin::content-manager.explorer.read','{}','api::privacy-policy.privacy-policy','{\"fields\": [\"title\", \"description\", \"seo.metaTitle\", \"seo.metaDescription\", \"seo.preventIndexing\", \"seo.keywords\", \"seo.canonicalUrl\", \"seo.metaHead\", \"seo.ogMeta.name\", \"seo.ogMeta.content\", \"seo.socialMediaMeta.name\", \"seo.socialMediaMeta.content\", \"seo.wordDescription\", \"seo.metaImage\"], \"locales\": [\"en\", \"ar\"]}','[]','2026-04-02 05:04:47.591000','2026-04-02 05:04:47.591000','2026-04-02 05:04:47.591000',NULL,NULL,NULL),(589,'b664ivayrt610etaq6c8wvn2','plugin::content-manager.explorer.read','{}','api::terms-condition.terms-condition','{\"fields\": [\"title\", \"description\", \"seo.metaTitle\", \"seo.metaDescription\", \"seo.preventIndexing\", \"seo.keywords\", \"seo.canonicalUrl\", \"seo.metaHead\", \"seo.ogMeta.name\", \"seo.ogMeta.content\", \"seo.socialMediaMeta.name\", \"seo.socialMediaMeta.content\", \"seo.wordDescription\", \"seo.metaImage\"], \"locales\": [\"en\", \"ar\"]}','[]','2026-04-02 05:04:47.696000','2026-04-02 05:04:47.696000','2026-04-02 05:04:47.696000',NULL,NULL,NULL),(590,'tysidmw4m00veld9iof0j8a9','plugin::content-manager.explorer.update','{}','api::privacy-policy.privacy-policy','{\"fields\": [\"title\", \"description\", \"seo.metaTitle\", \"seo.metaDescription\", \"seo.preventIndexing\", \"seo.keywords\", \"seo.canonicalUrl\", \"seo.metaHead\", \"seo.ogMeta.name\", \"seo.ogMeta.content\", \"seo.socialMediaMeta.name\", \"seo.socialMediaMeta.content\", \"seo.wordDescription\", \"seo.metaImage\"], \"locales\": [\"en\", \"ar\"]}','[]','2026-04-02 05:04:47.796000','2026-04-02 05:04:47.796000','2026-04-02 05:04:47.796000',NULL,NULL,NULL),(591,'cp6xz24dnaypttyhz0ndbmq1','plugin::content-manager.explorer.update','{}','api::terms-condition.terms-condition','{\"fields\": [\"title\", \"description\", \"seo.metaTitle\", \"seo.metaDescription\", \"seo.preventIndexing\", \"seo.keywords\", \"seo.canonicalUrl\", \"seo.metaHead\", \"seo.ogMeta.name\", \"seo.ogMeta.content\", \"seo.socialMediaMeta.name\", \"seo.socialMediaMeta.content\", \"seo.wordDescription\", \"seo.metaImage\"], \"locales\": [\"en\", \"ar\"]}','[]','2026-04-02 05:04:47.898000','2026-04-02 05:04:47.898000','2026-04-02 05:04:47.898000',NULL,NULL,NULL),(592,'jeznigpc78q6u5av8uxgn3rk','plugin::content-manager.explorer.delete','{}','api::privacy-policy.privacy-policy','{\"locales\": [\"en\", \"ar\"]}','[]','2026-04-02 05:04:48.002000','2026-04-02 05:04:48.002000','2026-04-02 05:04:48.002000',NULL,NULL,NULL),(593,'efz9lut0qc0eybgea0c3gooy','plugin::content-manager.explorer.delete','{}','api::terms-condition.terms-condition','{\"locales\": [\"en\", \"ar\"]}','[]','2026-04-02 05:04:48.129000','2026-04-02 05:04:48.129000','2026-04-02 05:04:48.130000',NULL,NULL,NULL),(594,'s4km2f7qhixmqgyh8f88mtzk','plugin::content-manager.explorer.publish','{}','api::privacy-policy.privacy-policy','{\"locales\": [\"en\", \"ar\"]}','[]','2026-04-02 05:04:48.230000','2026-04-02 05:04:48.230000','2026-04-02 05:04:48.231000',NULL,NULL,NULL),(595,'pfouc7oxb8h4ye6nlq9ld0jq','plugin::content-manager.explorer.publish','{}','api::terms-condition.terms-condition','{\"locales\": [\"en\", \"ar\"]}','[]','2026-04-02 05:04:48.331000','2026-04-02 05:04:48.331000','2026-04-02 05:04:48.332000',NULL,NULL,NULL),(596,'blrh89ffxwp42g0aqx6ip91z','plugin::content-manager.explorer.create','{}','api::branch.branch','{\"fields\": [\"title\", \"slug\", \"address\", \"branchLocation\", \"phoneNumbers.phone\", \"image\", \"seo.metaTitle\", \"seo.metaDescription\", \"seo.preventIndexing\", \"seo.keywords\", \"seo.canonicalUrl\", \"seo.metaHead\", \"seo.ogMeta.name\", \"seo.ogMeta.content\", \"seo.socialMediaMeta.name\", \"seo.socialMediaMeta.content\", \"seo.wordDescription\", \"seo.metaImage\", \"previewImage\", \"embededMapUrl\", \"mapUrl\", \"isFeatured\", \"type\", \"locationSortOrder\", \"products\"], \"locales\": [\"en\", \"ar\"]}','[]','2026-04-08 10:37:32.148000','2026-04-08 10:37:32.148000','2026-04-08 10:37:32.150000',NULL,NULL,NULL),(597,'sn7u0ehdli7ke310cf9fty5m','plugin::content-manager.explorer.read','{}','api::branch.branch','{\"fields\": [\"title\", \"slug\", \"address\", \"branchLocation\", \"phoneNumbers.phone\", \"image\", \"seo.metaTitle\", \"seo.metaDescription\", \"seo.preventIndexing\", \"seo.keywords\", \"seo.canonicalUrl\", \"seo.metaHead\", \"seo.ogMeta.name\", \"seo.ogMeta.content\", \"seo.socialMediaMeta.name\", \"seo.socialMediaMeta.content\", \"seo.wordDescription\", \"seo.metaImage\", \"previewImage\", \"embededMapUrl\", \"mapUrl\", \"isFeatured\", \"type\", \"locationSortOrder\", \"products\"], \"locales\": [\"en\", \"ar\"]}','[]','2026-04-08 10:37:32.259000','2026-04-08 10:37:32.259000','2026-04-08 10:37:32.259000',NULL,NULL,NULL),(598,'zscqrnne1oc6r5nkskxiknk3','plugin::content-manager.explorer.update','{}','api::branch.branch','{\"fields\": [\"title\", \"slug\", \"address\", \"branchLocation\", \"phoneNumbers.phone\", \"image\", \"seo.metaTitle\", \"seo.metaDescription\", \"seo.preventIndexing\", \"seo.keywords\", \"seo.canonicalUrl\", \"seo.metaHead\", \"seo.ogMeta.name\", \"seo.ogMeta.content\", \"seo.socialMediaMeta.name\", \"seo.socialMediaMeta.content\", \"seo.wordDescription\", \"seo.metaImage\", \"previewImage\", \"embededMapUrl\", \"mapUrl\", \"isFeatured\", \"type\", \"locationSortOrder\", \"products\"], \"locales\": [\"en\", \"ar\"]}','[]','2026-04-08 10:37:32.366000','2026-04-08 10:37:32.366000','2026-04-08 10:37:32.367000',NULL,NULL,NULL);
/*!40000 ALTER TABLE `admin_permissions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `admin_permissions_role_lnk`
--

DROP TABLE IF EXISTS `admin_permissions_role_lnk`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `admin_permissions_role_lnk` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `permission_id` int unsigned DEFAULT NULL,
  `role_id` int unsigned DEFAULT NULL,
  `permission_ord` double unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `admin_permissions_role_lnk_uq` (`permission_id`,`role_id`),
  KEY `admin_permissions_role_lnk_fk` (`permission_id`),
  KEY `admin_permissions_role_lnk_ifk` (`role_id`),
  KEY `admin_permissions_role_lnk_oifk` (`permission_ord`),
  CONSTRAINT `admin_permissions_role_lnk_fk` FOREIGN KEY (`permission_id`) REFERENCES `admin_permissions` (`id`) ON DELETE CASCADE,
  CONSTRAINT `admin_permissions_role_lnk_ifk` FOREIGN KEY (`role_id`) REFERENCES `admin_roles` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=679 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `admin_permissions_role_lnk`
--

LOCK TABLES `admin_permissions_role_lnk` WRITE;
/*!40000 ALTER TABLE `admin_permissions_role_lnk` DISABLE KEYS */;
INSERT INTO `admin_permissions_role_lnk` VALUES (5,5,2,5),(6,6,2,6),(7,7,2,7),(16,16,2,16),(17,17,2,17),(18,18,2,18),(27,27,2,27),(28,28,2,28),(29,29,2,29),(56,56,2,56),(57,57,2,57),(58,58,2,58),(59,59,2,59),(60,60,2,60),(61,61,2,61),(66,66,3,5),(67,67,3,6),(68,68,3,7),(77,77,3,16),(78,78,3,17),(79,79,3,18),(88,88,3,27),(89,89,3,28),(90,90,3,29),(106,106,3,45),(107,107,3,46),(108,108,3,47),(109,109,3,48),(110,110,3,49),(111,111,3,50),(112,112,1,1),(124,124,1,13),(136,136,1,25),(148,148,1,37),(160,160,1,49),(172,172,1,61),(173,173,1,62),(174,174,1,63),(175,175,1,64),(176,176,1,65),(177,177,1,66),(178,178,1,67),(179,179,1,68),(180,180,1,69),(181,181,1,70),(182,182,1,71),(183,183,1,72),(184,184,1,73),(185,185,1,74),(186,186,1,75),(187,187,1,76),(188,188,1,77),(189,189,1,78),(190,190,1,79),(191,191,1,80),(192,192,1,81),(193,193,1,82),(194,194,1,83),(195,195,1,84),(196,196,1,85),(197,197,1,86),(198,198,1,87),(199,199,1,88),(200,200,1,89),(201,201,1,90),(202,202,1,91),(203,203,1,92),(204,204,1,93),(205,205,1,94),(206,206,1,95),(207,207,1,96),(208,208,1,97),(209,209,1,98),(210,210,1,99),(211,211,1,100),(212,212,1,101),(213,213,1,102),(214,214,1,103),(215,215,1,104),(216,216,1,105),(217,217,1,106),(218,218,1,107),(219,219,1,108),(220,220,1,109),(221,221,1,110),(222,222,1,111),(223,223,1,112),(224,224,1,113),(296,153,1,139),(297,154,1,140),(298,155,1,141),(307,165,1,150),(308,166,1,151),(309,167,1,152),(333,253,1,176),(334,254,1,177),(379,299,1,178),(387,307,1,186),(388,308,1,187),(391,311,1,190),(394,314,1,193),(395,315,1,194),(403,323,1,202),(404,324,1,203),(407,327,1,206),(410,330,1,209),(411,331,1,210),(419,339,1,218),(420,340,1,219),(423,343,1,222),(426,346,1,225),(427,347,1,226),(428,348,1,227),(429,349,1,228),(430,350,1,229),(431,351,1,230),(432,352,1,231),(433,353,1,232),(434,354,1,233),(435,355,1,234),(436,356,1,235),(437,357,1,236),(438,358,1,237),(439,359,1,238),(440,360,1,239),(441,361,1,240),(442,362,1,241),(443,363,1,242),(444,364,1,243),(445,365,1,244),(446,366,1,245),(447,367,1,246),(448,368,1,247),(449,369,1,248),(450,370,1,249),(458,378,1,257),(460,380,1,259),(508,428,1,278),(512,432,1,282),(516,436,1,286),(517,437,1,287),(518,438,1,288),(519,439,1,289),(520,440,1,290),(521,441,1,291),(522,442,1,292),(523,443,1,293),(524,444,1,294),(546,466,1,316),(547,467,1,317),(548,468,1,318),(549,469,1,319),(550,470,1,320),(551,471,1,321),(552,472,1,322),(553,473,1,323),(566,486,1,336),(567,487,1,337),(568,488,1,338),(569,489,1,339),(570,490,1,340),(571,491,1,341),(574,494,1,344),(575,495,1,345),(578,498,1,348),(579,499,1,349),(582,502,1,352),(583,503,1,353),(584,504,1,354),(585,505,1,355),(586,506,1,356),(590,510,1,360),(591,511,1,361),(592,512,1,362),(593,513,1,363),(594,514,1,364),(601,521,1,371),(602,522,1,372),(603,523,1,373),(604,524,1,374),(605,525,1,375),(606,526,1,376),(607,527,1,377),(608,528,1,378),(609,529,1,379),(610,530,1,380),(611,531,1,381),(612,532,1,382),(613,533,1,383),(614,534,1,384),(615,535,1,385),(616,536,1,386),(617,537,1,387),(618,538,1,388),(619,539,1,389),(620,540,1,390),(621,541,1,391),(622,542,1,392),(623,543,1,393),(624,544,1,394),(625,545,1,395),(626,546,1,396),(627,547,1,397),(628,548,1,398),(629,549,1,399),(645,565,1,400),(646,566,1,401),(647,567,1,402),(648,568,1,403),(649,569,1,404),(650,570,1,405),(651,571,1,406),(652,572,1,407),(653,573,1,408),(655,575,1,410),(656,576,1,411),(658,578,1,413),(659,579,1,414),(661,581,1,416),(662,582,1,417),(666,586,1,421),(667,587,1,422),(668,588,1,423),(669,589,1,424),(670,590,1,425),(671,591,1,426),(672,592,1,427),(673,593,1,428),(674,594,1,429),(675,595,1,430),(676,596,1,431),(677,597,1,432),(678,598,1,433);
/*!40000 ALTER TABLE `admin_permissions_role_lnk` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `admin_roles`
--

DROP TABLE IF EXISTS `admin_roles`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `admin_roles` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `document_id` varchar(255) DEFAULT NULL,
  `name` varchar(255) DEFAULT NULL,
  `code` varchar(255) DEFAULT NULL,
  `description` varchar(255) DEFAULT NULL,
  `created_at` datetime(6) DEFAULT NULL,
  `updated_at` datetime(6) DEFAULT NULL,
  `published_at` datetime(6) DEFAULT NULL,
  `created_by_id` int unsigned DEFAULT NULL,
  `updated_by_id` int unsigned DEFAULT NULL,
  `locale` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `admin_roles_documents_idx` (`document_id`,`locale`,`published_at`),
  KEY `admin_roles_created_by_id_fk` (`created_by_id`),
  KEY `admin_roles_updated_by_id_fk` (`updated_by_id`),
  CONSTRAINT `admin_roles_created_by_id_fk` FOREIGN KEY (`created_by_id`) REFERENCES `admin_users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `admin_roles_updated_by_id_fk` FOREIGN KEY (`updated_by_id`) REFERENCES `admin_users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `admin_roles`
--

LOCK TABLES `admin_roles` WRITE;
/*!40000 ALTER TABLE `admin_roles` DISABLE KEYS */;
INSERT INTO `admin_roles` VALUES (1,'sq3dy7yykozdkep59pa5y7r9','Super Admin','strapi-super-admin','Super Admins can access and manage all features and settings.','2025-11-21 05:39:31.331000','2025-11-21 05:39:31.331000','2025-11-21 05:39:31.331000',NULL,NULL,NULL),(2,'ssb2qe1cn7qg8jcuw0l6ftq8','Editor','strapi-editor','Editors can manage and publish contents including those of other users.','2025-11-21 05:39:31.438000','2025-11-21 05:39:31.438000','2025-11-21 05:39:31.439000',NULL,NULL,NULL),(3,'jpd85fm2s81tounee91e1e46','Author','strapi-author','Authors can manage the content they have created.','2025-11-21 05:39:31.521000','2025-11-21 05:39:31.521000','2025-11-21 05:39:31.521000',NULL,NULL,NULL);
/*!40000 ALTER TABLE `admin_roles` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `admin_users`
--

DROP TABLE IF EXISTS `admin_users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `admin_users` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `document_id` varchar(255) DEFAULT NULL,
  `firstname` varchar(255) DEFAULT NULL,
  `lastname` varchar(255) DEFAULT NULL,
  `username` varchar(255) DEFAULT NULL,
  `email` varchar(255) DEFAULT NULL,
  `password` varchar(255) DEFAULT NULL,
  `reset_password_token` varchar(255) DEFAULT NULL,
  `registration_token` varchar(255) DEFAULT NULL,
  `is_active` tinyint(1) DEFAULT NULL,
  `blocked` tinyint(1) DEFAULT NULL,
  `prefered_language` varchar(255) DEFAULT NULL,
  `created_at` datetime(6) DEFAULT NULL,
  `updated_at` datetime(6) DEFAULT NULL,
  `published_at` datetime(6) DEFAULT NULL,
  `created_by_id` int unsigned DEFAULT NULL,
  `updated_by_id` int unsigned DEFAULT NULL,
  `locale` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `admin_users_documents_idx` (`document_id`,`locale`,`published_at`),
  KEY `admin_users_created_by_id_fk` (`created_by_id`),
  KEY `admin_users_updated_by_id_fk` (`updated_by_id`),
  CONSTRAINT `admin_users_created_by_id_fk` FOREIGN KEY (`created_by_id`) REFERENCES `admin_users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `admin_users_updated_by_id_fk` FOREIGN KEY (`updated_by_id`) REFERENCES `admin_users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `admin_users`
--

LOCK TABLES `admin_users` WRITE;
/*!40000 ALTER TABLE `admin_users` DISABLE KEYS */;
INSERT INTO `admin_users` VALUES (1,'biidet4snf9zdw4w7cne1bv3','CME','CMS',NULL,'domains@ispg.co.in','$2a$10$WriENy0buQpMca99axh7l.SFYStmLAOPLpi6ZH8PjmehirRVZXDyi',NULL,NULL,1,0,NULL,'2025-11-22 05:34:14.504000','2025-11-22 05:34:14.504000','2025-11-22 05:34:14.505000',NULL,NULL,NULL);
/*!40000 ALTER TABLE `admin_users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `admin_users_roles_lnk`
--

DROP TABLE IF EXISTS `admin_users_roles_lnk`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `admin_users_roles_lnk` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `user_id` int unsigned DEFAULT NULL,
  `role_id` int unsigned DEFAULT NULL,
  `role_ord` double unsigned DEFAULT NULL,
  `user_ord` double unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `admin_users_roles_lnk_uq` (`user_id`,`role_id`),
  KEY `admin_users_roles_lnk_fk` (`user_id`),
  KEY `admin_users_roles_lnk_ifk` (`role_id`),
  KEY `admin_users_roles_lnk_ofk` (`role_ord`),
  KEY `admin_users_roles_lnk_oifk` (`user_ord`),
  CONSTRAINT `admin_users_roles_lnk_fk` FOREIGN KEY (`user_id`) REFERENCES `admin_users` (`id`) ON DELETE CASCADE,
  CONSTRAINT `admin_users_roles_lnk_ifk` FOREIGN KEY (`role_id`) REFERENCES `admin_roles` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `admin_users_roles_lnk`
--

LOCK TABLES `admin_users_roles_lnk` WRITE;
/*!40000 ALTER TABLE `admin_users_roles_lnk` DISABLE KEYS */;
INSERT INTO `admin_users_roles_lnk` VALUES (1,1,1,1,1);
/*!40000 ALTER TABLE `admin_users_roles_lnk` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `automotive_landings`
--

DROP TABLE IF EXISTS `automotive_landings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `automotive_landings` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `document_id` varchar(255) DEFAULT NULL,
  `title` varchar(255) DEFAULT NULL,
  `created_at` datetime(6) DEFAULT NULL,
  `updated_at` datetime(6) DEFAULT NULL,
  `published_at` datetime(6) DEFAULT NULL,
  `created_by_id` int unsigned DEFAULT NULL,
  `updated_by_id` int unsigned DEFAULT NULL,
  `locale` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `automotive_landings_documents_idx` (`document_id`,`locale`,`published_at`),
  KEY `automotive_landings_created_by_id_fk` (`created_by_id`),
  KEY `automotive_landings_updated_by_id_fk` (`updated_by_id`),
  CONSTRAINT `automotive_landings_created_by_id_fk` FOREIGN KEY (`created_by_id`) REFERENCES `admin_users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `automotive_landings_updated_by_id_fk` FOREIGN KEY (`updated_by_id`) REFERENCES `admin_users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `automotive_landings`
--

LOCK TABLES `automotive_landings` WRITE;
/*!40000 ALTER TABLE `automotive_landings` DISABLE KEYS */;
INSERT INTO `automotive_landings` VALUES (1,'jaxueeht8w2xdjvy15a9hae5','Automotive Aftermarket','2026-01-20 07:03:23.660000','2026-04-01 09:52:47.016000',NULL,1,1,'en'),(15,'jaxueeht8w2xdjvy15a9hae5','Automotive Aftermarket','2026-01-20 07:03:23.660000','2026-04-01 09:52:47.016000','2026-04-01 09:52:48.130000',1,1,'en');
/*!40000 ALTER TABLE `automotive_landings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `automotive_landings_cmps`
--

DROP TABLE IF EXISTS `automotive_landings_cmps`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `automotive_landings_cmps` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `entity_id` int unsigned DEFAULT NULL,
  `cmp_id` int unsigned DEFAULT NULL,
  `component_type` varchar(255) DEFAULT NULL,
  `field` varchar(255) DEFAULT NULL,
  `order` double unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `automotive_landings_uq` (`entity_id`,`cmp_id`,`field`,`component_type`),
  KEY `automotive_landings_field_idx` (`field`),
  KEY `automotive_landings_component_type_idx` (`component_type`),
  KEY `automotive_landings_entity_fk` (`entity_id`),
  CONSTRAINT `automotive_landings_entity_fk` FOREIGN KEY (`entity_id`) REFERENCES `automotive_landings` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=89 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `automotive_landings_cmps`
--

LOCK TABLES `automotive_landings_cmps` WRITE;
/*!40000 ALTER TABLE `automotive_landings_cmps` DISABLE KEYS */;
INSERT INTO `automotive_landings_cmps` VALUES (1,1,107,'common.banner','banner',1),(7,1,128,'common.banner','banner',2),(25,1,86,'common.seo','seo',5),(29,1,184,'common.banner','banner',3),(41,1,84,'home.content-section','socialFeeds',1),(77,1,283,'common.banner','banner',4),(83,15,284,'common.banner','banner',1),(84,15,285,'common.banner','banner',2),(85,15,286,'common.banner','banner',3),(86,15,287,'common.banner','banner',4),(87,15,164,'common.seo','seo',NULL),(88,15,109,'home.content-section','socialFeeds',NULL);
/*!40000 ALTER TABLE `automotive_landings_cmps` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `automotive_landings_location_types_lnk`
--

DROP TABLE IF EXISTS `automotive_landings_location_types_lnk`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `automotive_landings_location_types_lnk` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `automotive_landing_id` int unsigned DEFAULT NULL,
  `branch_location_id` int unsigned DEFAULT NULL,
  `branch_location_ord` double unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `automotive_landings_location_types_lnk_uq` (`automotive_landing_id`,`branch_location_id`),
  KEY `automotive_landings_location_types_lnk_fk` (`automotive_landing_id`),
  KEY `automotive_landings_location_types_lnk_ifk` (`branch_location_id`),
  KEY `automotive_landings_location_types_lnk_ofk` (`branch_location_ord`),
  CONSTRAINT `automotive_landings_location_types_lnk_fk` FOREIGN KEY (`automotive_landing_id`) REFERENCES `automotive_landings` (`id`) ON DELETE CASCADE,
  CONSTRAINT `automotive_landings_location_types_lnk_ifk` FOREIGN KEY (`branch_location_id`) REFERENCES `branch_locations` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=35 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `automotive_landings_location_types_lnk`
--

LOCK TABLES `automotive_landings_location_types_lnk` WRITE;
/*!40000 ALTER TABLE `automotive_landings_location_types_lnk` DISABLE KEYS */;
INSERT INTO `automotive_landings_location_types_lnk` VALUES (1,1,13,2),(13,1,11,3),(24,1,29,1),(32,15,31,1),(33,15,32,2),(34,15,33,3);
/*!40000 ALTER TABLE `automotive_landings_location_types_lnk` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `branch_locations`
--

DROP TABLE IF EXISTS `branch_locations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `branch_locations` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `document_id` varchar(255) DEFAULT NULL,
  `title` varchar(255) DEFAULT NULL,
  `key` varchar(255) DEFAULT NULL,
  `created_at` datetime(6) DEFAULT NULL,
  `updated_at` datetime(6) DEFAULT NULL,
  `published_at` datetime(6) DEFAULT NULL,
  `created_by_id` int unsigned DEFAULT NULL,
  `updated_by_id` int unsigned DEFAULT NULL,
  `locale` varchar(255) DEFAULT NULL,
  `tab_sort_order` int DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `branch_locations_documents_idx` (`document_id`,`locale`,`published_at`),
  KEY `branch_locations_created_by_id_fk` (`created_by_id`),
  KEY `branch_locations_updated_by_id_fk` (`updated_by_id`),
  CONSTRAINT `branch_locations_created_by_id_fk` FOREIGN KEY (`created_by_id`) REFERENCES `admin_users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `branch_locations_updated_by_id_fk` FOREIGN KEY (`updated_by_id`) REFERENCES `admin_users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=34 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `branch_locations`
--

LOCK TABLES `branch_locations` WRITE;
/*!40000 ALTER TABLE `branch_locations` DISABLE KEYS */;
INSERT INTO `branch_locations` VALUES (1,'u3c4ijnxuaio83d51tec3zrb','Dubai','dubai','2025-12-12 05:57:18.706000','2025-12-12 06:01:24.272000',NULL,1,1,'en',NULL),(3,'u3c4ijnxuaio83d51tec3zrb','Dubai','dubai','2025-12-12 05:57:18.706000','2025-12-12 06:01:24.272000','2025-12-12 06:01:24.495000',1,1,'en',NULL),(4,'dnah3yr0o7urvdsbelglxx2q','Abu Dhabi','abu dhabi','2025-12-12 06:01:51.617000','2025-12-12 06:04:49.620000',NULL,1,1,'en',NULL),(6,'dnah3yr0o7urvdsbelglxx2q','Abu Dhabi','abu dhabi','2025-12-12 06:01:51.617000','2025-12-12 06:04:49.620000','2025-12-12 06:04:49.838000',1,1,'en',NULL),(7,'ksx7wj9qlh1i2p8ouo4xggb4','Sharjah','sharjah','2026-01-08 11:45:33.668000','2026-01-08 11:45:33.668000',NULL,1,1,'en',NULL),(8,'ksx7wj9qlh1i2p8ouo4xggb4','Sharjah','sharjah','2026-01-08 11:45:33.668000','2026-01-08 11:45:33.668000','2026-01-08 11:45:33.981000',1,1,'en',NULL),(11,'vfmpry05l50efx3pxz7crt30','Bosch Diesel Service','bosch-diesel-service','2026-01-19 09:58:11.196000','2026-04-01 09:37:51.077000',NULL,1,1,'en',3),(13,'kwgqfi8yi24b3nkk6h0kofsu','Bosch Car Service','bosch-car-service','2026-01-21 04:49:18.968000','2026-04-01 09:37:43.527000',NULL,1,1,'en',2),(15,'t0kswwrblzwkfbdqoyno5e0a','Book a Service','book-a-service','2026-01-21 05:37:16.085000','2026-01-21 05:37:16.085000',NULL,1,1,'en',NULL),(16,'t0kswwrblzwkfbdqoyno5e0a','Book a Service','book-a-service','2026-01-21 05:37:16.085000','2026-01-21 05:37:16.085000','2026-01-21 05:37:16.439000',1,1,'en',NULL),(17,'khetsmcaiimnqfygnsyl8i9z','CME Branch Office',NULL,'2026-01-27 10:42:39.585000','2026-01-27 10:42:39.585000',NULL,1,1,'en',NULL),(18,'khetsmcaiimnqfygnsyl8i9z','CME Branch Office',NULL,'2026-01-27 10:42:39.585000','2026-01-27 10:42:39.585000','2026-01-27 10:42:39.912000',1,1,'en',NULL),(19,'k290t5g73opwvec16484dbmb','Service Locations',NULL,'2026-01-27 10:43:01.141000','2026-01-27 10:43:01.141000',NULL,1,1,'en',NULL),(20,'k290t5g73opwvec16484dbmb','Service Locations',NULL,'2026-01-27 10:43:01.141000','2026-01-27 10:43:01.141000','2026-01-27 10:43:01.553000',1,1,'en',NULL),(21,'fhjz5u0ljjx2jrk42fth68d2','Warehouse',NULL,'2026-01-27 10:43:12.677000','2026-01-27 10:43:12.677000',NULL,1,1,'en',NULL),(22,'fhjz5u0ljjx2jrk42fth68d2','Warehouse',NULL,'2026-01-27 10:43:12.677000','2026-01-27 10:43:12.677000','2026-01-27 10:43:12.984000',1,1,'en',NULL),(23,'ir7esjdt7tx50tsbusk9h62c','Abu Dhabi','abu-dhabi-power-tools','2026-03-02 12:46:19.480000','2026-03-02 12:46:19.480000',NULL,1,1,'en',NULL),(24,'ir7esjdt7tx50tsbusk9h62c','Abu Dhabi','abu-dhabi-power-tools','2026-03-02 12:46:19.480000','2026-03-02 12:46:19.480000','2026-03-02 12:46:19.901000',1,1,'en',NULL),(25,'tlo3s4wxwwu901cfk9i8adyz','Dubai','dubai-power-tools','2026-03-02 13:00:55.381000','2026-03-02 13:00:55.381000',NULL,1,1,'en',NULL),(26,'tlo3s4wxwwu901cfk9i8adyz','Dubai','dubai-power-tools','2026-03-02 13:00:55.381000','2026-03-02 13:00:55.381000','2026-03-02 13:00:55.760000',1,1,'en',NULL),(27,'gvjeh71dbtp5115g14y8wdlf','Sharjah','sharjah-power-tools','2026-03-02 13:01:28.431000','2026-03-02 13:01:28.431000',NULL,1,1,'en',NULL),(28,'gvjeh71dbtp5115g14y8wdlf','Sharjah','sharjah-power-tools','2026-03-02 13:01:28.431000','2026-03-02 13:01:28.431000','2026-03-02 13:01:28.778000',1,1,'en',NULL),(29,'naikwsc1f4mpcn7rzvgkardd','Workshop Test Equipment','workshop-test-equipment','2026-04-01 06:56:55.281000','2026-04-01 09:37:29.884000',NULL,1,1,'en',1),(31,'naikwsc1f4mpcn7rzvgkardd','Workshop Test Equipment','workshop-test-equipment','2026-04-01 06:56:55.281000','2026-04-01 09:37:29.884000','2026-04-01 09:37:30.342000',1,1,'en',1),(32,'kwgqfi8yi24b3nkk6h0kofsu','Bosch Car Service','bosch-car-service','2026-01-21 04:49:18.968000','2026-04-01 09:37:43.527000','2026-04-01 09:37:43.913000',1,1,'en',2),(33,'vfmpry05l50efx3pxz7crt30','Bosch Diesel Service','bosch-diesel-service','2026-01-19 09:58:11.196000','2026-04-01 09:37:51.077000','2026-04-01 09:37:51.453000',1,1,'en',3);
/*!40000 ALTER TABLE `branch_locations` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `branches`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `branches` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `document_id` varchar(255) DEFAULT NULL,
  `title` varchar(255) DEFAULT NULL,
  `slug` varchar(255) DEFAULT NULL,
  `address` longtext,
  `embeded_map_url` longtext,
  `map_url` longtext,
  `created_at` datetime(6) DEFAULT NULL,
  `updated_at` datetime(6) DEFAULT NULL,
  `published_at` datetime(6) DEFAULT NULL,
  `created_by_id` int unsigned DEFAULT NULL,
  `updated_by_id` int unsigned DEFAULT NULL,
  `locale` varchar(255) DEFAULT NULL,
  `is_featured` tinyint(1) DEFAULT NULL,
  `type` varchar(255) DEFAULT NULL,
  `location_sort_order` int DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `branches_documents_idx` (`document_id`,`locale`,`published_at`),
  KEY `branches_created_by_id_fk` (`created_by_id`),
  KEY `branches_updated_by_id_fk` (`updated_by_id`),
  CONSTRAINT `branches_created_by_id_fk` FOREIGN KEY (`created_by_id`) REFERENCES `admin_users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `branches_updated_by_id_fk` FOREIGN KEY (`updated_by_id`) REFERENCES `admin_users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=332 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

LOCK TABLES `branches` WRITE;
/*!40000 ALTER TABLE `branches` DISABLE KEYS */;
INSERT INTO `branches` VALUES (1,'pqc40p7zxv2233qi2y6f74kh','CME Branch Office - Dubai','central-motors-and-equipment-dubai-branch','No.17, 14b Street Al Quoz Industrial Area 1 – 364, Hadaeq Mohammed Bin Rashid, Dubai','https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3611.9836922389777!2d55.22472622526102!3d25.136242184167262!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3e5f697da5fc80e5%3A0x110be5ae66636227!2sCentral%20Motors%20%26%20Equipment%20-%20Dubai%20Branch!5e0!3m2!1sen!2sin!4v1767876337162!5m2!1sen!2sin\" width=\"600\" height=\"450\" style=\"border:0;\" allowfullscreen=\"\" loading=\"lazy\" referrerpolicy=\"no-referrer-when-downgrade','https://www.google.com/maps/','2025-12-12 06:00:16.228000','2026-04-08 10:47:47.500000',NULL,1,1,'en',1,'CME Branch Office',2),(5,'qrmazqgnqrqfeux66p1jxsdu','Central Motors and Equipment – Central Warehouse Dubai ','central-motors-and-equipment-central-warehouse-dubai','Address: Al Quoz Industrial Area 4, Dubai – 26255 \n','https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3611.9836922389777!2d55.22472622526102!3d25.136242184167262!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3e5f697da5fc80e5%3A0x110be5ae66636227!2sCentral%20Motors%20%26%20Equipment%20-%20Dubai%20Branch!5e0!3m2!1sen!2sin!4v1767876146874!5m2!1sen!2sin\" width=\"600\" height=\"450\" style=\"border:0;\" allowfullscreen=\"\" loading=\"lazy\" referrerpolicy=\"no-referrer-when-downgrade',NULL,'2025-12-12 06:02:35.089000','2026-03-30 14:39:49.060000',NULL,1,1,'en',0,'Ware houses',NULL),(17,'is45vbdrifkfjeqk6oxpqel9','CME Head Office - Abu Dhabi ','central-motors-and-equipment-abudhabi-branch','Street 8 - behind Premier Motor - Musaffah - M15 - Abu Dhabi','https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3634.2264568938617!2d54.485062675239355!3d24.37342436457341!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3e5e4152bc4cc43d%3A0x1198e64599eddbd!2sCentral%20Motors%20%26%20Equipment%20-%20Abu%20Dhabi%20Branch!5e0!3m2!1sen!2sin!4v1767875960115!5m2!1sen!2sin\" width=\"600\" height=\"450\" style=\"border:0;\" allowfullscreen=\"\" loading=\"lazy\" referrerpolicy=\"no-referrer-when-downgrade','https://share.google/FkK157KWc8yilSe8T','2026-01-08 11:07:41.413000','2026-04-08 10:47:12.024000',NULL,1,1,'en',1,'CME Branch Office',1),(21,'l1pe3kiqppp8jbpiyujrsrf7','Bosch DIESEL Car Service – Bosch Diesel Service – Dubai','bosch-car-service-bosch-diesel-service-dubai','\nAddress: 17, 14b Street, Al Quoz Industrial Area 2, Dubai - 26255\n','https://www.google.com/maps/embed?pb=!1m16!1m12!1m3!1d14449.530707740309!2d55.22211084533813!3d25.12275011025281!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!2m1!1sBosch%20Car%20Service%20%E2%80%93%20Bosch%20Diesel%20Service%20%E2%80%93%20Dubai%20Address%3A%2017%2C%2014b%20Street%2C%20Al%20Quoz%20Industrial%20Area%202%2C%20Dubai%20-%2026255%20Tel%3A%20%2B971%204%20309%200900!5e0!3m2!1sen!2sin!4v1767875619923!5m2!1sen!2sin\" width=\"600\" height=\"450\" style=\"border:0;\" allowfullscreen=\"\" loading=\"lazy\" referrerpolicy=\"no-referrer-when-downgrade',NULL,'2026-01-08 11:16:07.450000','2026-03-30 14:29:32.532000',NULL,1,1,'en',0,'Service Locations',NULL),(25,'w4sbhlmmjgce36ch8z11tb2g','CME Bosch Car Service ','cme-bosch-car-service-embassy','No.17, 14b Street Al Quoz Industrial Area 1 – 364, Hadaeq Mohammed Bin Rashid, Dubai\n\n','https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d1816.3201144771936!2d54.429462038646705!3d24.428563336646658!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3e5e69d670761fdf%3A0x8c68441801b1bdec!2sBosch%20Car%20Service%20-%20CME%20-%20Embassy!5e0!3m2!1sen!2sin!4v1767876639458!5m2!1sen!2sin\" width=\"600\" height=\"450\" style=\"border:0;\" allowfullscreen=\"\" loading=\"lazy\" referrerpolicy=\"no-referrer-when-downgrade','https://share.google/xsFpWqzcwCZfBVW0E','2026-01-08 11:31:40.929000','2026-04-08 10:55:17.922000',NULL,1,1,'en',NULL,'Service Locations',13),(27,'bdlnapyhrxyt5jfd8jv37b4o','CME BOSCH Diesel Service','cme-diesel-car-service','No.17, 14b Street Al Quoz Industrial Area 1 – 364, Hadaeq Mohammed Bin Rashid, Dubai \n','https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2817.176433006417!2d55.22510467537966!3d25.135493277750786!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3e5f697da5fc80e5%3A0x110be5ae66636227!2sCentral%20Motors%20%26%20Equipment%20-%20Dubai%20Branch!5e1!3m2!1sen!2sin!4v1770874871527!5m2!1sen!2sin\" width=\"600\" height=\"450\" style=\"border:0;\" allowfullscreen=\"\" loading=\"lazy\" referrerpolicy=\"no-referrer-when-downgrade','https://share.google/xsFpWqzcwCZfBVW0E','2026-01-08 11:35:09.195000','2026-04-08 10:55:43.338000',NULL,1,1,'en',NULL,'Service Locations',12),(29,'xlc5mzazk1kuw6hwwzylye2r','CME Tyre Plus - ADNOC Shakhbout Station ','tyreplus-cme-adnoc-shakhbout-station','ADNOC - Shakhbout City - MSH10 - Abu Dhabi. ','https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d58154.0455350317!2d54.55131928022917!3d24.359453077577673!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3e5e482173fe9ec5%3A0x88b974587458d012!2sShakhbout%20City%20-%20Abu%20Dhabi%20-%20United%20Arab%20Emirates!5e0!3m2!1sen!2sin!4v1767876797842!5m2!1sen!2sin\" width=\"600\" height=\"450\" style=\"border:0;\" allowfullscreen=\"\" loading=\"lazy\" referrerpolicy=\"no-referrer-when-downgrade','https://share.google/MjjU8wXBg0EPc4hYP','2026-01-08 11:39:38.091000','2026-04-08 10:52:50.923000',NULL,1,1,'en',0,'Service Locations',7),(31,'vfdarffnc0b9hshpv6yhiyif','CME Branch Office - Sharjah','central-motors-and-equipment-sharjah-branch','Warehouse no 23, 24 Maliha Street, Sharjah – 1984 ','https://www.google.com/maps/embed?pb=!1m12!1m8!1m3!1d57714.24141615909!2d55.379857!3d25.299497!3m2!1i1024!2i768!4f13.1!2m1!1sWarehouse%20no%2023%2024%20Maliha%20Street%20Sharjah%201984%20Tel%20971%2065932777!5e0!3m2!1sen!2sin!4v1772195255102!5m2!1sen!2sin','https://maps.app.goo.gl/QX2iy3SJKWB3cpzXA','2026-01-08 11:48:43.715000','2026-04-08 10:51:14.917000',NULL,1,1,'en',1,'CME Branch Office',3),(86,'z7kox30x9nfdo5mkbos77bwm','CME Tyre Plus - Mussafah','mussafah',' Street 8 - behind Premier Motor - Musaffah - M15 - Abu Dhabi','https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2834.5116011105265!2d54.4847950740496!3d24.37323486458313!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3e5e4104980e74c9%3A0x6ad866f6ef9e457!2sTYREPLUS%20CME%20-%20Central%20Motor%20Equipment%20-%20Musaffah%20M15!5e1!3m2!1sen!2sin!4v1770028906708!5m2!1sen!2sin\" width=\"600\" height=\"450\" style=\"border:0;\" allowfullscreen=\"\" loading=\"lazy\" referrerpolicy=\"no-referrer-when-downgrade','https://share.google/xkRk6marik5WDmFdK ','2026-02-02 10:27:07.933000','2026-04-08 10:51:46.371000',NULL,1,1,'en',0,'Service Locations',4),(88,'lpiq97cqjr5omxx1u4nfrqe4','CME Tyre Plus - ADNOC Bateen Station ','bateen','ADNOC Souq - Zone 2, 32nd St cor - 27st St - Al Bateen - Abu Dhabi ','https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d45326.95966234054!2d54.349424912701686!3d24.443482560089237!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3e5e6768daf9fa01%3A0xeb1357e732a1cfd6!2sTYREPLUS%20CME%20-%20Central%20Motor%20Equipment%20-%20Al%20Bateen!5e1!3m2!1sen!2sin!4v1770028998682!5m2!1sen!2sin\" width=\"600\" height=\"450\" style=\"border:0;\" allowfullscreen=\"\" loading=\"lazy\" referrerpolicy=\"no-referrer-when-downgrade','https://share.google/jvBv0dO8FO14AAEva','2026-02-02 10:27:59.878000','2026-04-08 10:52:10.832000',NULL,1,1,'en',0,'Service Locations',5),(90,'wb49fb3roz6ub0akub8frto3','CME Tyre Plus - ADNOC Embassy Station ','embassy','ADNOC Embassy Station - Airport Rd - Al Sa`Adah - Zone 1 - Abu Dhabi ','https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d45326.95966234053!2d54.34942491270167!3d24.443482560089233!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3e5e69d6708a720d%3A0xa811d8820907237!2sTYREPLUS%20CME%20-Central%20Motor%20Equipment-%20ADNOC%20Embassy%20Station!5e1!3m2!1sen!2sin!4v1770028266666!5m2!1sen!2sin\" width=\"600\" height=\"450\" style=\"border:0;\" allowfullscreen=\"\" loading=\"lazy\" referrerpolicy=\"no-referrer-when-downgrade','https://share.google/Idmppqpbe1nkbJI2O','2026-02-02 10:31:47.294000','2026-04-08 10:52:33.096000',NULL,1,1,'en',0,'Service Locations',6),(103,'jjoju2mg5e56qe3rgmwqpoy3','CME MTSC - Mafraq ','mafraq','Mafraq Industrial City 1, \nGate # 111\n','https://www.google.com/maps/embed?pb=!1m24!1m12!1m3!1d116336.29329240658!2d54.458452037630856!3d24.32875025676231!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!4m9!3e0!4m3!3m2!1d24.373846!2d54.487679!4m3!3m2!1d24.290806!2d54.593083!5e0!3m2!1sen!2sin!4v1770029745944!5m2!1sen!2sin\" width=\"600\" height=\"450\" style=\"border:0;\" allowfullscreen=\"\" loading=\"lazy\" referrerpolicy=\"no-referrer-when-downgrade',NULL,'2026-02-02 10:57:36.804000','2026-04-08 10:53:11.526000',NULL,1,1,'en',0,'Service Locations',8),(106,'yd0p5t3vduf85a3dx1lmt5o5','CME PT Service - Abu Dhabi ','ptservice',' Street 8 - behind Premier Motor - Musaffah - M15 - Abu Dhabi \n','https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d927631.4504975791!2d54.195700137568636!3d24.74196953560712!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3e5f6be3288499d9%3A0x67e82e59cb04aeaa!2sCME%20Bosch%20Power%20Tools%20Service%20Center!5e0!3m2!1sen!2sin!4v1770030192004!5m2!1sen!2sin\" width=\"600\" height=\"450\" style=\"border:0;\" allowfullscreen=\"\" loading=\"lazy\" referrerpolicy=\"no-referrer-when-downgrade','https://share.google/FkK157KWc8yilSe8T','2026-02-02 11:04:14.002000','2026-04-08 10:54:03.249000',NULL,1,1,'en',0,'Service Locations',9),(108,'xgqmsn3nxf2380gpv17r1gq5','CME PT Service - Dubai ','ptdubai','Al Quoz Industrial Area 4, Dubai – 26255 \n\n','https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2817.74330974765!2d55.22025397537906!3d25.110909577766563!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3e5f6be3288499d9%3A0x67e82e59cb04aeaa!2sCME%20Bosch%20Power%20Tools%20Service%20Center!5e1!3m2!1sen!2sin!4v1770875636929!5m2!1sen!2sin\" width=\"600\" height=\"450\" style=\"border:0;\" allowfullscreen=\"\" loading=\"lazy\" referrerpolicy=\"no-referrer-when-downgrade','https://share.google/w1kv2jJktcMRzOdpK','2026-02-02 11:07:27.018000','2026-04-08 10:54:24.598000',NULL,1,1,'en',0,'Service Locations',10),(113,'vl0fb9ldtwpgn56a91ztj0h8','CME Workshop Test Equipment','workshop','Al Quoz Industrial Area 4, Dubai – 26255 \n','https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2817.74330974765!2d55.22025397537906!3d25.110909577766563!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3e5f6be3288499d9%3A0x67e82e59cb04aeaa!2sCME%20Bosch%20Power%20Tools%20Service%20Center!5e1!3m2!1sen!2sin!4v1770875705547!5m2!1sen!2sin\" width=\"600\" height=\"450\" style=\"border:0;\" allowfullscreen=\"\" loading=\"lazy\" referrerpolicy=\"no-referrer-when-downgrade','https://share.google/w1kv2jJktcMRzOdpK','2026-02-02 11:14:02.855000','2026-04-08 10:55:03.193000',NULL,1,1,'en',0,'Service Locations',11),(118,'ltf9b8zwf9edwf7l3zvz9qvz','CME Al Qouz Warehouse ','alqouz','Al Quoz Industrial Area 4, Dubai – 26255\n','https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2817.74330974765!2d55.22025397537906!3d25.110909577766563!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3e5f6be3288499d9%3A0x67e82e59cb04aeaa!2sCME%20Bosch%20Power%20Tools%20Service%20Center!5e1!3m2!1sen!2sin!4v1770875809508!5m2!1sen!2sin\" width=\"600\" height=\"450\" style=\"border:0;\" allowfullscreen=\"\" loading=\"lazy\" referrerpolicy=\"no-referrer-when-downgrade','https://share.google/w1kv2jJktcMRzOdpK','2026-02-02 11:19:14.158000','2026-04-08 10:57:27.827000',NULL,1,1,'en',0,'Ware houses',16),(121,'m50znna6mzc3nhkc6v03unak','CME Mafraq Warehouse','mafraqwarehouse','Mafraq Industrial City 1, \nGate # 111\n','https://www.google.com/maps/embed?pb=!1m24!1m12!1m3!1d90736.24958613481!2d54.458452037630856!3d24.32875025676231!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!4m9!3e0!4m3!3m2!1d24.373846!2d54.487679!4m3!3m2!1d24.290806!2d54.593083!5e1!3m2!1sen!2sin!4v1770031249192!5m2!1sen!2sin\" width=\"600\" height=\"450\" style=\"border:0;\" allowfullscreen=\"\" loading=\"lazy\" referrerpolicy=\"no-referrer-when-downgrade',NULL,'2026-02-02 11:30:15.149000','2026-04-08 10:56:09.419000',NULL,1,1,'en',0,'Ware houses',14),(123,'zebw4v32p0q2lxdrrzftsicj','CME Mussafah Warehouse','mussafahwarehouse',' Street 8 - behind Premier Motor - Musaffah - M15 - Abu Dhabi\n','https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2834.507463269323!2d54.48506267535539!3d24.37341947825036!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3e5e4152bc4cc43d%3A0x1198e64599eddbd!2sCentral%20Motors%20%26%20Equipment%20-%20Abu%20Dhabi%20Branch!5e1!3m2!1sen!2sin!4v1770875879871!5m2!1sen!2sin\" width=\"600\" height=\"450\" style=\"border:0;\" allowfullscreen=\"\" loading=\"lazy\" referrerpolicy=\"no-referrer-when-downgrade','https://share.google/FkK157KWc8yilSe8T','2026-02-02 11:32:11.045000','2026-04-08 10:57:04.547000',NULL,1,1,'en',0,'Ware houses',15),(125,'a0ydsn8tsbeon3p866a1o2th','CME Sharjah Warehouse ','sharjahwarehouse','Warehouse no 23, 24 Maliha Street, Sharjah – 1984\n\n','https://www.google.com/maps/embed?pb=!1m17!1m12!1m3!1d2814.257065910017!2d55.501529!3d25.261743!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m2!1m1!2zMjXCsDE1JzQyLjMiTiA1NcKwMzAnMDUuNSJF!5e1!3m2!1sen!2sin!4v1770032038210!5m2!1sen!2sin\" width=\"600\" height=\"450\" style=\"border:0;\" allowfullscreen=\"\" loading=\"lazy\" referrerpolicy=\"no-referrer-when-downgrade','https://maps.app.goo.gl/QX2iy3SJKWB3cpzXA','2026-02-02 11:35:09.682000','2026-04-08 10:57:49.151000',NULL,1,1,'en',0,'Ware houses',17),(144,'i34b83zy5qwld38q5n0cmcb9','CME Branch Office - Sharjah','powertools-sharjah','Warehouse no 23, 24 Maliha Street, Sharjah – 1984 \n\n','https://www.google.com/maps/embed?pb=!1m17!1m12!1m3!1d2814.257065910017!2d55.501529!3d25.261743!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m2!1m1!2zMjXCsDE1JzQyLjMiTiA1NcKwMzAnMDUuNSJF!5e1!3m2!1sen!2sin!4v1770875274558!5m2!1sen!2sin\" width=\"600\" height=\"450\" style=\"border:0;\" allowfullscreen=\"\" loading=\"lazy\" referrerpolicy=\"no-referrer-when-downgrade','https://maps.app.goo.gl/QX2iy3SJKWB3cpzXA','2026-02-12 05:48:18.915000','2026-04-08 10:54:44.125000',NULL,1,1,'en',0,'Service Locations',NULL),(173,'dx6c5tyqnqrkqv9pid719mmu','CME MTSC - Mafraq','CME-MTSC-Mafraq','Mafraq Industrial City 1, \nGate # 111',NULL,NULL,'2026-03-04 08:40:08.622000','2026-04-07 12:06:40.869000',NULL,1,1,'en',0,'Service Locations',8),(198,'l1pe3kiqppp8jbpiyujrsrf7','Bosch DIESEL Car Service – Bosch Diesel Service – Dubai','bosch-car-service-bosch-diesel-service-dubai','\nAddress: 17, 14b Street, Al Quoz Industrial Area 2, Dubai - 26255\n','https://www.google.com/maps/embed?pb=!1m16!1m12!1m3!1d14449.530707740309!2d55.22211084533813!3d25.12275011025281!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!2m1!1sBosch%20Car%20Service%20%E2%80%93%20Bosch%20Diesel%20Service%20%E2%80%93%20Dubai%20Address%3A%2017%2C%2014b%20Street%2C%20Al%20Quoz%20Industrial%20Area%202%2C%20Dubai%20-%2026255%20Tel%3A%20%2B971%204%20309%200900!5e0!3m2!1sen!2sin!4v1767875619923!5m2!1sen!2sin\" width=\"600\" height=\"450\" style=\"border:0;\" allowfullscreen=\"\" loading=\"lazy\" referrerpolicy=\"no-referrer-when-downgrade',NULL,'2026-01-08 11:16:07.450000','2026-03-30 14:29:32.532000','2026-03-30 14:29:33.116000',1,1,'en',0,'Service Locations',NULL),(273,'trger5nz2n0kcnv17tcr8wnm','CME Workshop Test Equipment','workshop-test-equipment','Al Quoz Industrial Area 4, Dubai – 26255','https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3612.7326575729476!2d55.22025397537906!3d25.110909577766563!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3e5f6be3288499d9%3A0x67e82e59cb04aeaa!2sCME%20Bosch%20Power%20Tools%20Service%20Center!5e0!3m2!1sen!2sin!4v1775026530460!5m2!1sen!2sin','https://share.google/w1kv2jJktcMRzOdpK','2026-04-01 06:55:58.094000','2026-04-01 11:49:59.305000',NULL,1,1,'en',NULL,'Service Locations',NULL),(313,'dx6c5tyqnqrkqv9pid719mmu','CME MTSC - Mafraq','CME-MTSC-Mafraq','Mafraq Industrial City 1, \nGate # 111',NULL,NULL,'2026-03-04 08:40:08.622000','2026-04-07 12:06:40.869000','2026-04-07 12:06:41.487000',1,1,'en',0,'Service Locations',8),(314,'is45vbdrifkfjeqk6oxpqel9','CME Head Office - Abu Dhabi ','central-motors-and-equipment-abudhabi-branch','Street 8 - behind Premier Motor - Musaffah - M15 - Abu Dhabi','https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3634.2264568938617!2d54.485062675239355!3d24.37342436457341!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3e5e4152bc4cc43d%3A0x1198e64599eddbd!2sCentral%20Motors%20%26%20Equipment%20-%20Abu%20Dhabi%20Branch!5e0!3m2!1sen!2sin!4v1767875960115!5m2!1sen!2sin\" width=\"600\" height=\"450\" style=\"border:0;\" allowfullscreen=\"\" loading=\"lazy\" referrerpolicy=\"no-referrer-when-downgrade','https://share.google/FkK157KWc8yilSe8T','2026-01-08 11:07:41.413000','2026-04-08 10:47:12.024000','2026-04-08 10:47:12.862000',1,1,'en',1,'CME Branch Office',1),(315,'pqc40p7zxv2233qi2y6f74kh','CME Branch Office - Dubai','central-motors-and-equipment-dubai-branch','No.17, 14b Street Al Quoz Industrial Area 1 – 364, Hadaeq Mohammed Bin Rashid, Dubai','https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3611.9836922389777!2d55.22472622526102!3d25.136242184167262!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3e5f697da5fc80e5%3A0x110be5ae66636227!2sCentral%20Motors%20%26%20Equipment%20-%20Dubai%20Branch!5e0!3m2!1sen!2sin!4v1767876337162!5m2!1sen!2sin\" width=\"600\" height=\"450\" style=\"border:0;\" allowfullscreen=\"\" loading=\"lazy\" referrerpolicy=\"no-referrer-when-downgrade','https://www.google.com/maps/','2025-12-12 06:00:16.228000','2026-04-08 10:47:47.500000','2026-04-08 10:47:48.205000',1,1,'en',1,'CME Branch Office',2),(316,'vfdarffnc0b9hshpv6yhiyif','CME Branch Office - Sharjah','central-motors-and-equipment-sharjah-branch','Warehouse no 23, 24 Maliha Street, Sharjah – 1984 ','https://www.google.com/maps/embed?pb=!1m12!1m8!1m3!1d57714.24141615909!2d55.379857!3d25.299497!3m2!1i1024!2i768!4f13.1!2m1!1sWarehouse%20no%2023%2024%20Maliha%20Street%20Sharjah%201984%20Tel%20971%2065932777!5e0!3m2!1sen!2sin!4v1772195255102!5m2!1sen!2sin','https://maps.app.goo.gl/QX2iy3SJKWB3cpzXA','2026-01-08 11:48:43.715000','2026-04-08 10:51:14.917000','2026-04-08 10:51:15.745000',1,1,'en',1,'CME Branch Office',3),(317,'z7kox30x9nfdo5mkbos77bwm','CME Tyre Plus - Mussafah','mussafah',' Street 8 - behind Premier Motor - Musaffah - M15 - Abu Dhabi','https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2834.5116011105265!2d54.4847950740496!3d24.37323486458313!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3e5e4104980e74c9%3A0x6ad866f6ef9e457!2sTYREPLUS%20CME%20-%20Central%20Motor%20Equipment%20-%20Musaffah%20M15!5e1!3m2!1sen!2sin!4v1770028906708!5m2!1sen!2sin\" width=\"600\" height=\"450\" style=\"border:0;\" allowfullscreen=\"\" loading=\"lazy\" referrerpolicy=\"no-referrer-when-downgrade','https://share.google/xkRk6marik5WDmFdK ','2026-02-02 10:27:07.933000','2026-04-08 10:51:46.371000','2026-04-08 10:51:47.098000',1,1,'en',0,'Service Locations',4),(318,'lpiq97cqjr5omxx1u4nfrqe4','CME Tyre Plus - ADNOC Bateen Station ','bateen','ADNOC Souq - Zone 2, 32nd St cor - 27st St - Al Bateen - Abu Dhabi ','https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d45326.95966234054!2d54.349424912701686!3d24.443482560089237!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3e5e6768daf9fa01%3A0xeb1357e732a1cfd6!2sTYREPLUS%20CME%20-%20Central%20Motor%20Equipment%20-%20Al%20Bateen!5e1!3m2!1sen!2sin!4v1770028998682!5m2!1sen!2sin\" width=\"600\" height=\"450\" style=\"border:0;\" allowfullscreen=\"\" loading=\"lazy\" referrerpolicy=\"no-referrer-when-downgrade','https://share.google/jvBv0dO8FO14AAEva','2026-02-02 10:27:59.878000','2026-04-08 10:52:10.832000','2026-04-08 10:52:11.560000',1,1,'en',0,'Service Locations',5),(319,'wb49fb3roz6ub0akub8frto3','CME Tyre Plus - ADNOC Embassy Station ','embassy','ADNOC Embassy Station - Airport Rd - Al Sa`Adah - Zone 1 - Abu Dhabi ','https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d45326.95966234053!2d54.34942491270167!3d24.443482560089233!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3e5e69d6708a720d%3A0xa811d8820907237!2sTYREPLUS%20CME%20-Central%20Motor%20Equipment-%20ADNOC%20Embassy%20Station!5e1!3m2!1sen!2sin!4v1770028266666!5m2!1sen!2sin\" width=\"600\" height=\"450\" style=\"border:0;\" allowfullscreen=\"\" loading=\"lazy\" referrerpolicy=\"no-referrer-when-downgrade','https://share.google/Idmppqpbe1nkbJI2O','2026-02-02 10:31:47.294000','2026-04-08 10:52:33.096000','2026-04-08 10:52:33.812000',1,1,'en',0,'Service Locations',6),(320,'xlc5mzazk1kuw6hwwzylye2r','CME Tyre Plus - ADNOC Shakhbout Station ','tyreplus-cme-adnoc-shakhbout-station','ADNOC - Shakhbout City - MSH10 - Abu Dhabi. ','https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d58154.0455350317!2d54.55131928022917!3d24.359453077577673!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3e5e482173fe9ec5%3A0x88b974587458d012!2sShakhbout%20City%20-%20Abu%20Dhabi%20-%20United%20Arab%20Emirates!5e0!3m2!1sen!2sin!4v1767876797842!5m2!1sen!2sin\" width=\"600\" height=\"450\" style=\"border:0;\" allowfullscreen=\"\" loading=\"lazy\" referrerpolicy=\"no-referrer-when-downgrade','https://share.google/MjjU8wXBg0EPc4hYP','2026-01-08 11:39:38.091000','2026-04-08 10:52:50.923000','2026-04-08 10:52:51.644000',1,1,'en',0,'Service Locations',7),(321,'jjoju2mg5e56qe3rgmwqpoy3','CME MTSC - Mafraq ','mafraq','Mafraq Industrial City 1, \nGate # 111\n','https://www.google.com/maps/embed?pb=!1m24!1m12!1m3!1d116336.29329240658!2d54.458452037630856!3d24.32875025676231!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!4m9!3e0!4m3!3m2!1d24.373846!2d54.487679!4m3!3m2!1d24.290806!2d54.593083!5e0!3m2!1sen!2sin!4v1770029745944!5m2!1sen!2sin\" width=\"600\" height=\"450\" style=\"border:0;\" allowfullscreen=\"\" loading=\"lazy\" referrerpolicy=\"no-referrer-when-downgrade',NULL,'2026-02-02 10:57:36.804000','2026-04-08 10:53:11.526000','2026-04-08 10:53:12.252000',1,1,'en',0,'Service Locations',8),(322,'yd0p5t3vduf85a3dx1lmt5o5','CME PT Service - Abu Dhabi ','ptservice',' Street 8 - behind Premier Motor - Musaffah - M15 - Abu Dhabi \n','https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d927631.4504975791!2d54.195700137568636!3d24.74196953560712!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3e5f6be3288499d9%3A0x67e82e59cb04aeaa!2sCME%20Bosch%20Power%20Tools%20Service%20Center!5e0!3m2!1sen!2sin!4v1770030192004!5m2!1sen!2sin\" width=\"600\" height=\"450\" style=\"border:0;\" allowfullscreen=\"\" loading=\"lazy\" referrerpolicy=\"no-referrer-when-downgrade','https://share.google/FkK157KWc8yilSe8T','2026-02-02 11:04:14.002000','2026-04-08 10:54:03.249000','2026-04-08 10:54:03.972000',1,1,'en',0,'Service Locations',9),(323,'xgqmsn3nxf2380gpv17r1gq5','CME PT Service - Dubai ','ptdubai','Al Quoz Industrial Area 4, Dubai – 26255 \n\n','https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2817.74330974765!2d55.22025397537906!3d25.110909577766563!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3e5f6be3288499d9%3A0x67e82e59cb04aeaa!2sCME%20Bosch%20Power%20Tools%20Service%20Center!5e1!3m2!1sen!2sin!4v1770875636929!5m2!1sen!2sin\" width=\"600\" height=\"450\" style=\"border:0;\" allowfullscreen=\"\" loading=\"lazy\" referrerpolicy=\"no-referrer-when-downgrade','https://share.google/w1kv2jJktcMRzOdpK','2026-02-02 11:07:27.018000','2026-04-08 10:54:24.598000','2026-04-08 10:54:25.335000',1,1,'en',0,'Service Locations',10),(324,'i34b83zy5qwld38q5n0cmcb9','CME Branch Office - Sharjah','powertools-sharjah','Warehouse no 23, 24 Maliha Street, Sharjah – 1984 \n\n','https://www.google.com/maps/embed?pb=!1m17!1m12!1m3!1d2814.257065910017!2d55.501529!3d25.261743!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m2!1m1!2zMjXCsDE1JzQyLjMiTiA1NcKwMzAnMDUuNSJF!5e1!3m2!1sen!2sin!4v1770875274558!5m2!1sen!2sin\" width=\"600\" height=\"450\" style=\"border:0;\" allowfullscreen=\"\" loading=\"lazy\" referrerpolicy=\"no-referrer-when-downgrade','https://maps.app.goo.gl/QX2iy3SJKWB3cpzXA','2026-02-12 05:48:18.915000','2026-04-08 10:54:44.125000','2026-04-08 10:54:44.715000',1,1,'en',0,'Service Locations',NULL),(325,'vl0fb9ldtwpgn56a91ztj0h8','CME Workshop Test Equipment','workshop','Al Quoz Industrial Area 4, Dubai – 26255 \n','https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2817.74330974765!2d55.22025397537906!3d25.110909577766563!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3e5f6be3288499d9%3A0x67e82e59cb04aeaa!2sCME%20Bosch%20Power%20Tools%20Service%20Center!5e1!3m2!1sen!2sin!4v1770875705547!5m2!1sen!2sin\" width=\"600\" height=\"450\" style=\"border:0;\" allowfullscreen=\"\" loading=\"lazy\" referrerpolicy=\"no-referrer-when-downgrade','https://share.google/w1kv2jJktcMRzOdpK','2026-02-02 11:14:02.855000','2026-04-08 10:55:03.193000','2026-04-08 10:55:03.913000',1,1,'en',0,'Service Locations',11),(326,'w4sbhlmmjgce36ch8z11tb2g','CME Bosch Car Service ','cme-bosch-car-service-embassy','No.17, 14b Street Al Quoz Industrial Area 1 – 364, Hadaeq Mohammed Bin Rashid, Dubai\n\n','https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d1816.3201144771936!2d54.429462038646705!3d24.428563336646658!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3e5e69d670761fdf%3A0x8c68441801b1bdec!2sBosch%20Car%20Service%20-%20CME%20-%20Embassy!5e0!3m2!1sen!2sin!4v1767876639458!5m2!1sen!2sin\" width=\"600\" height=\"450\" style=\"border:0;\" allowfullscreen=\"\" loading=\"lazy\" referrerpolicy=\"no-referrer-when-downgrade','https://share.google/xsFpWqzcwCZfBVW0E','2026-01-08 11:31:40.929000','2026-04-08 10:55:17.922000','2026-04-08 10:55:18.616000',1,1,'en',NULL,'Service Locations',13),(327,'bdlnapyhrxyt5jfd8jv37b4o','CME BOSCH Diesel Service','cme-diesel-car-service','No.17, 14b Street Al Quoz Industrial Area 1 – 364, Hadaeq Mohammed Bin Rashid, Dubai \n','https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2817.176433006417!2d55.22510467537966!3d25.135493277750786!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3e5f697da5fc80e5%3A0x110be5ae66636227!2sCentral%20Motors%20%26%20Equipment%20-%20Dubai%20Branch!5e1!3m2!1sen!2sin!4v1770874871527!5m2!1sen!2sin\" width=\"600\" height=\"450\" style=\"border:0;\" allowfullscreen=\"\" loading=\"lazy\" referrerpolicy=\"no-referrer-when-downgrade','https://share.google/xsFpWqzcwCZfBVW0E','2026-01-08 11:35:09.195000','2026-04-08 10:55:43.338000','2026-04-08 10:55:44.028000',1,1,'en',NULL,'Service Locations',12),(328,'m50znna6mzc3nhkc6v03unak','CME Mafraq Warehouse','mafraqwarehouse','Mafraq Industrial City 1, \nGate # 111\n','https://www.google.com/maps/embed?pb=!1m24!1m12!1m3!1d90736.24958613481!2d54.458452037630856!3d24.32875025676231!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!4m9!3e0!4m3!3m2!1d24.373846!2d54.487679!4m3!3m2!1d24.290806!2d54.593083!5e1!3m2!1sen!2sin!4v1770031249192!5m2!1sen!2sin\" width=\"600\" height=\"450\" style=\"border:0;\" allowfullscreen=\"\" loading=\"lazy\" referrerpolicy=\"no-referrer-when-downgrade',NULL,'2026-02-02 11:30:15.149000','2026-04-08 10:56:09.419000','2026-04-08 10:56:10.159000',1,1,'en',0,'Ware houses',14),(329,'zebw4v32p0q2lxdrrzftsicj','CME Mussafah Warehouse','mussafahwarehouse',' Street 8 - behind Premier Motor - Musaffah - M15 - Abu Dhabi\n','https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2834.507463269323!2d54.48506267535539!3d24.37341947825036!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3e5e4152bc4cc43d%3A0x1198e64599eddbd!2sCentral%20Motors%20%26%20Equipment%20-%20Abu%20Dhabi%20Branch!5e1!3m2!1sen!2sin!4v1770875879871!5m2!1sen!2sin\" width=\"600\" height=\"450\" style=\"border:0;\" allowfullscreen=\"\" loading=\"lazy\" referrerpolicy=\"no-referrer-when-downgrade','https://share.google/FkK157KWc8yilSe8T','2026-02-02 11:32:11.045000','2026-04-08 10:57:04.547000','2026-04-08 10:57:05.237000',1,1,'en',0,'Ware houses',15),(330,'ltf9b8zwf9edwf7l3zvz9qvz','CME Al Qouz Warehouse ','alqouz','Al Quoz Industrial Area 4, Dubai – 26255\n','https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2817.74330974765!2d55.22025397537906!3d25.110909577766563!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3e5f6be3288499d9%3A0x67e82e59cb04aeaa!2sCME%20Bosch%20Power%20Tools%20Service%20Center!5e1!3m2!1sen!2sin!4v1770875809508!5m2!1sen!2sin\" width=\"600\" height=\"450\" style=\"border:0;\" allowfullscreen=\"\" loading=\"lazy\" referrerpolicy=\"no-referrer-when-downgrade','https://share.google/w1kv2jJktcMRzOdpK','2026-02-02 11:19:14.158000','2026-04-08 10:57:27.827000','2026-04-08 10:57:28.608000',1,1,'en',0,'Ware houses',16),(331,'a0ydsn8tsbeon3p866a1o2th','CME Sharjah Warehouse ','sharjahwarehouse','Warehouse no 23, 24 Maliha Street, Sharjah – 1984\n\n','https://www.google.com/maps/embed?pb=!1m17!1m12!1m3!1d2814.257065910017!2d55.501529!3d25.261743!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m2!1m1!2zMjXCsDE1JzQyLjMiTiA1NcKwMzAnMDUuNSJF!5e1!3m2!1sen!2sin!4v1770032038210!5m2!1sen!2sin\" width=\"600\" height=\"450\" style=\"border:0;\" allowfullscreen=\"\" loading=\"lazy\" referrerpolicy=\"no-referrer-when-downgrade','https://maps.app.goo.gl/QX2iy3SJKWB3cpzXA','2026-02-02 11:35:09.682000','2026-04-08 10:57:49.151000','2026-04-08 10:57:49.837000',1,1,'en',0,'Ware houses',17);
/*!40000 ALTER TABLE `branches` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `branches_branch_location_lnk`
--

DROP TABLE IF EXISTS `branches_branch_location_lnk`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `branches_branch_location_lnk` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `branch_id` int unsigned DEFAULT NULL,
  `branch_location_id` int unsigned DEFAULT NULL,
  `branch_location_ord` double unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `branches_branch_location_lnk_uq` (`branch_id`,`branch_location_id`),
  KEY `branches_branch_location_lnk_fk` (`branch_id`),
  KEY `branches_branch_location_lnk_ifk` (`branch_location_id`),
  KEY `branches_branch_location_lnk_ofk` (`branch_location_ord`),
  CONSTRAINT `branches_branch_location_lnk_fk` FOREIGN KEY (`branch_id`) REFERENCES `branches` (`id`) ON DELETE CASCADE,
  CONSTRAINT `branches_branch_location_lnk_ifk` FOREIGN KEY (`branch_location_id`) REFERENCES `branch_locations` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=521 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `branches_branch_location_lnk`
--

LOCK TABLES `branches_branch_location_lnk` WRITE;
/*!40000 ALTER TABLE `branches_branch_location_lnk` DISABLE KEYS */;
INSERT INTO `branches_branch_location_lnk` VALUES (5,1,1,1),(18,5,1,1),(20,17,4,1),(34,31,7,1),(87,17,17,2),(90,1,17,2),(93,31,17,2),(99,5,21,2),(119,86,4,1),(121,88,4,1),(123,90,4,1),(136,103,4,0),(138,29,4,1),(140,106,4,1),(145,108,1,1),(147,113,1,1),(149,27,1,1),(151,25,1,1),(156,121,4,0),(158,125,7,0),(160,118,1,1),(167,88,15,2),(170,90,15,2),(173,86,15,2),(176,29,15,2),(189,144,7,1),(193,123,4,1),(222,27,11,2),(231,106,23,2),(234,108,25,2),(237,144,27,2),(246,173,15,0),(433,273,1,1),(439,25,13,2),(443,273,29,2),(482,113,29,2),(489,313,16,1),(490,314,6,1),(491,314,18,2),(492,315,3,1),(493,315,18,2),(494,316,8,1),(495,316,18,2),(496,317,6,1),(497,317,16,2),(498,318,6,1),(499,318,16,2),(500,319,6,1),(501,319,16,2),(502,320,6,1),(503,320,16,2),(504,321,6,1),(505,322,6,1),(506,322,24,2),(507,323,3,1),(508,323,26,2),(509,324,8,1),(510,324,28,2),(511,325,3,1),(512,325,31,2),(513,326,3,1),(514,326,32,2),(515,327,3,1),(516,327,33,2),(517,328,6,1),(518,329,6,1),(519,330,3,1),(520,331,8,1);
/*!40000 ALTER TABLE `branches_branch_location_lnk` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `branches_cmps`
--

DROP TABLE IF EXISTS `branches_cmps`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `branches_cmps` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `entity_id` int unsigned DEFAULT NULL,
  `cmp_id` int unsigned DEFAULT NULL,
  `component_type` varchar(255) DEFAULT NULL,
  `field` varchar(255) DEFAULT NULL,
  `order` double unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `branches_uq` (`entity_id`,`cmp_id`,`field`,`component_type`),
  KEY `branches_field_idx` (`field`),
  KEY `branches_component_type_idx` (`component_type`),
  KEY `branches_entity_fk` (`entity_id`),
  CONSTRAINT `branches_entity_fk` FOREIGN KEY (`entity_id`) REFERENCES `branches` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=979 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `branches_cmps`
--

LOCK TABLES `branches_cmps` WRITE;
/*!40000 ALTER TABLE `branches_cmps` DISABLE KEYS */;
INSERT INTO `branches_cmps` VALUES (1,1,11,'common.phone','phoneNumbers',1),(13,5,18,'common.phone','phoneNumbers',1),(15,17,20,'common.phone','phoneNumbers',1),(21,21,24,'common.phone','phoneNumbers',1),(23,17,26,'common.phone','phoneNumbers',2),(29,25,30,'common.phone','phoneNumbers',1),(36,27,37,'common.phone','phoneNumbers',1),(39,29,40,'common.phone','phoneNumbers',1),(40,29,41,'common.phone','phoneNumbers',2),(45,31,46,'common.phone','phoneNumbers',1),(215,86,136,'common.phone','phoneNumbers',1),(217,88,138,'common.phone','phoneNumbers',1),(225,90,143,'common.phone','phoneNumbers',1),(226,90,144,'common.phone','phoneNumbers',2),(229,86,147,'common.phone','phoneNumbers',2),(233,88,150,'common.phone','phoneNumbers',2),(247,103,157,'common.phone','phoneNumbers',1),(248,103,158,'common.phone','phoneNumbers',2),(257,106,164,'common.phone','phoneNumbers',1),(259,108,166,'common.phone','phoneNumbers',1),(260,108,167,'common.phone','phoneNumbers',2),(271,113,174,'common.phone','phoneNumbers',1),(285,118,182,'common.phone','phoneNumbers',1),(286,118,183,'common.phone','phoneNumbers',2),(287,118,184,'common.phone','phoneNumbers',3),(293,121,190,'common.phone','phoneNumbers',1),(294,121,191,'common.phone','phoneNumbers',2),(297,123,194,'common.phone','phoneNumbers',1),(299,125,196,'common.phone','phoneNumbers',1),(387,144,240,'common.phone','phoneNumbers',1),(473,173,284,'common.phone','phoneNumbers',1),(474,173,285,'common.phone','phoneNumbers',2),(556,198,327,'common.phone','phoneNumbers',1),(745,17,422,'common.phone','phoneNumbers',3),(815,273,458,'common.phone','phoneNumbers',1),(919,313,509,'common.phone','phoneNumbers',1),(920,313,510,'common.phone','phoneNumbers',2),(924,314,511,'common.phone','phoneNumbers',1),(925,314,512,'common.phone','phoneNumbers',2),(926,314,513,'common.phone','phoneNumbers',3),(928,315,514,'common.phone','phoneNumbers',1),(930,316,515,'common.phone','phoneNumbers',1),(933,317,516,'common.phone','phoneNumbers',1),(934,317,517,'common.phone','phoneNumbers',2),(937,318,518,'common.phone','phoneNumbers',1),(938,318,519,'common.phone','phoneNumbers',2),(941,319,520,'common.phone','phoneNumbers',1),(942,319,521,'common.phone','phoneNumbers',2),(945,320,522,'common.phone','phoneNumbers',1),(946,320,523,'common.phone','phoneNumbers',2),(949,321,524,'common.phone','phoneNumbers',1),(950,321,525,'common.phone','phoneNumbers',2),(952,322,526,'common.phone','phoneNumbers',1),(955,323,527,'common.phone','phoneNumbers',1),(956,323,528,'common.phone','phoneNumbers',2),(958,324,529,'common.phone','phoneNumbers',1),(960,325,530,'common.phone','phoneNumbers',1),(962,326,531,'common.phone','phoneNumbers',1),(964,327,532,'common.phone','phoneNumbers',1),(967,328,533,'common.phone','phoneNumbers',1),(968,328,534,'common.phone','phoneNumbers',2),(970,329,535,'common.phone','phoneNumbers',1),(974,330,536,'common.phone','phoneNumbers',1),(975,330,537,'common.phone','phoneNumbers',2),(976,330,538,'common.phone','phoneNumbers',3),(978,331,539,'common.phone','phoneNumbers',1);
/*!40000 ALTER TABLE `branches_cmps` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `branches_products_lnk`
--

DROP TABLE IF EXISTS `branches_products_lnk`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `branches_products_lnk` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `branch_id` int unsigned DEFAULT NULL,
  `business_stream_id` int unsigned DEFAULT NULL,
  `business_stream_ord` double unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `branches_products_lnk_uq` (`branch_id`,`business_stream_id`),
  KEY `branches_products_lnk_fk` (`branch_id`),
  KEY `branches_products_lnk_ifk` (`business_stream_id`),
  KEY `branches_products_lnk_ofk` (`business_stream_ord`),
  CONSTRAINT `branches_products_lnk_fk` FOREIGN KEY (`branch_id`) REFERENCES `branches` (`id`) ON DELETE CASCADE,
  CONSTRAINT `branches_products_lnk_ifk` FOREIGN KEY (`business_stream_id`) REFERENCES `business_streams` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=53 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `branches_products_lnk`
--

LOCK TABLES `branches_products_lnk` WRITE;
/*!40000 ALTER TABLE `branches_products_lnk` DISABLE KEYS */;
INSERT INTO `branches_products_lnk` VALUES (1,17,1,1),(2,17,3,2),(3,17,6,3),(4,314,43,1),(5,314,44,2),(6,314,42,3),(7,1,1,1),(8,1,3,2),(9,315,43,1),(10,315,44,2),(11,31,1,1),(12,31,3,2),(13,316,43,1),(14,316,44,2),(15,86,6,1),(16,317,42,1),(17,88,6,1),(18,318,42,1),(19,90,6,1),(20,319,42,1),(21,29,6,1),(22,320,42,1),(23,103,6,1),(24,321,42,1),(25,106,3,1),(26,322,44,1),(27,108,3,1),(28,323,44,1),(29,144,3,1),(30,324,44,1),(31,113,1,1),(32,325,43,1),(33,25,1,1),(34,326,43,1),(35,27,1,1),(36,327,43,1),(37,121,6,1),(38,328,42,1),(39,123,1,1),(40,123,3,2),(41,123,6,3),(42,329,43,1),(43,329,44,2),(44,329,42,3),(45,118,1,1),(46,118,3,2),(47,330,43,1),(48,330,44,2),(49,125,1,1),(50,125,3,2),(51,331,43,1),(52,331,44,2);
/*!40000 ALTER TABLE `branches_products_lnk` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `brands`
--

DROP TABLE IF EXISTS `brands`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `brands` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `document_id` varchar(255) DEFAULT NULL,
  `title` varchar(255) DEFAULT NULL,
  `created_at` datetime(6) DEFAULT NULL,
  `updated_at` datetime(6) DEFAULT NULL,
  `published_at` datetime(6) DEFAULT NULL,
  `created_by_id` int unsigned DEFAULT NULL,
  `updated_by_id` int unsigned DEFAULT NULL,
  `locale` varchar(255) DEFAULT NULL,
  `common_url` longtext,
  `enable_common_url` tinyint(1) DEFAULT NULL,
  `automotive_url` longtext,
  `enable_automotive_url` tinyint(1) DEFAULT NULL,
  `power_tool_url` longtext,
  `enable_power_tool_url` tinyint(1) DEFAULT NULL,
  `tyre_url` longtext,
  `enable_tyre_url` tinyint(1) DEFAULT NULL,
  `is_featured` tinyint(1) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `brands_documents_idx` (`document_id`,`locale`,`published_at`),
  KEY `brands_created_by_id_fk` (`created_by_id`),
  KEY `brands_updated_by_id_fk` (`updated_by_id`),
  CONSTRAINT `brands_created_by_id_fk` FOREIGN KEY (`created_by_id`) REFERENCES `admin_users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `brands_updated_by_id_fk` FOREIGN KEY (`updated_by_id`) REFERENCES `admin_users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=162 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `brands`
--

LOCK TABLES `brands` WRITE;
/*!40000 ALTER TABLE `brands` DISABLE KEYS */;
INSERT INTO `brands` VALUES (14,'n9gt88bkyk17osl5dpg0gzfu','Michelin','2026-01-21 07:02:55.412000','2026-02-05 11:51:19.841000',NULL,1,1,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16,'q8w465abn879jdhys84s67q0','cyclo','2026-01-21 07:04:12.011000','2026-01-21 09:49:01.854000',NULL,1,1,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(18,'s7a4l0meuzwakqhimpikwqfp','car go','2026-01-21 07:05:04.460000','2026-01-21 10:28:52.628000',NULL,1,1,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(20,'xrykpx56ixcerdh4etv7xssq','bridge stone','2026-01-21 07:05:44.072000','2026-02-05 11:47:27.188000',NULL,1,1,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(22,'paydf8yd8sfv2rwi9i68rbhe','Optima','2026-01-21 07:06:18.095000','2026-01-21 07:06:18.095000',NULL,1,1,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24,'kjr2sfyhldpuxprhp1qixscx','knorr-bremse','2026-01-21 07:07:34.838000','2026-01-21 10:29:00.786000',NULL,1,1,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(28,'kglawfbw52b3j6lzyzpjj00s','Tyre Plus','2026-01-21 09:08:24.007000','2026-02-05 11:16:30.212000',NULL,1,1,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(30,'zf0ykpcq16dhi8y791i2ra3j','Michelin','2026-01-21 09:10:15.898000','2026-02-18 06:07:29.960000',NULL,1,1,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(34,'uizxpc8g5mfb7zuwa401ovz6','sicam','2026-01-21 09:20:37.148000','2026-03-06 10:13:30.823000',NULL,1,1,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(36,'a24wm087ru1fx6vjqwj6lt5b','osram','2026-01-21 09:21:01.479000','2026-01-21 09:21:01.479000',NULL,1,1,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(38,'n1jpa7y9lx7n4ddey6lt17g5','grantex','2026-01-21 09:21:27.338000','2026-02-05 11:47:41.915000',NULL,1,1,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(40,'vrocse3wnomun5t46br0vf5k','AZPI','2026-01-21 09:21:47.206000','2026-01-21 09:36:19.347000',NULL,1,1,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44,'fgfkoncx79tw2m0jepdtzsvl','bosch','2026-01-21 09:23:57.652000','2026-02-18 06:03:17.319000',NULL,1,1,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(47,'vrocse3wnomun5t46br0vf5k','AZPI','2026-01-21 09:21:47.206000','2026-01-21 09:36:19.347000','2026-01-21 09:36:19.677000',1,1,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(53,'q8w465abn879jdhys84s67q0','cyclo','2026-01-21 07:04:12.011000','2026-01-21 09:49:01.854000','2026-01-21 09:49:02.266000',1,1,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(54,'f0o7hr9kqdz1ptycmc7c87ip','bosch','2026-01-21 10:21:21.918000','2026-01-21 10:21:21.918000',NULL,1,1,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(55,'f0o7hr9kqdz1ptycmc7c87ip','bosch','2026-01-21 10:21:21.918000','2026-01-21 10:21:21.918000','2026-01-21 10:21:22.293000',1,1,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(56,'eyz4jl7obr9jgwlgfz9g7mej','Azpi','2026-01-21 10:23:04.864000','2026-02-05 11:47:06.670000',NULL,1,1,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(58,'ry7hcveftvo8a57h1zbiow15','osram','2026-01-21 10:23:26.683000','2026-02-18 06:07:47.496000',NULL,1,1,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(60,'g9vbvowxeuqigmc9m1hvfrct','Asnu','2026-01-21 10:23:43.514000','2026-03-13 06:09:08.598000',NULL,1,1,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(63,'s7a4l0meuzwakqhimpikwqfp','car go','2026-01-21 07:05:04.460000','2026-01-21 10:28:52.628000','2026-01-21 10:28:53.018000',1,1,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(64,'kjr2sfyhldpuxprhp1qixscx','knorr-bremse','2026-01-21 07:07:34.838000','2026-01-21 10:29:00.786000','2026-01-21 10:29:01.201000',1,1,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(73,'kglawfbw52b3j6lzyzpjj00s','Tyre Plus','2026-01-21 09:08:24.007000','2026-02-05 11:16:30.212000','2026-02-05 11:16:30.714000',1,1,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(78,'n1jpa7y9lx7n4ddey6lt17g5','grantex','2026-01-21 09:21:27.338000','2026-02-05 11:47:41.915000','2026-02-05 11:47:42.312000',1,1,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(80,'fgfkoncx79tw2m0jepdtzsvl','bosch','2026-01-21 09:23:57.652000','2026-02-18 06:03:17.319000','2026-02-18 06:03:17.682000',1,1,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(81,'zf0ykpcq16dhi8y791i2ra3j','Michelin','2026-01-21 09:10:15.898000','2026-02-18 06:07:29.960000','2026-02-18 06:07:30.433000',1,1,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(82,'ry7hcveftvo8a57h1zbiow15','osram','2026-01-21 10:23:26.683000','2026-02-18 06:07:47.496000','2026-02-18 06:07:47.835000',1,1,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(83,'yxe2n9us8mnwmmp6w8691k7a','Bosch blue','2026-03-06 06:45:37.438000','2026-03-06 10:02:41.705000',NULL,1,1,'en',NULL,0,NULL,0,NULL,0,NULL,0,0),(85,'j0d1isggo94gqpod0tp21e70','Bosch green','2026-03-06 06:47:17.323000','2026-03-06 10:01:11.508000',NULL,1,1,'en',NULL,0,NULL,0,NULL,0,NULL,0,0),(87,'hy2fm3xfnsn1ben80a6ms7ds','Dremel blue','2026-03-06 06:48:23.106000','2026-03-06 10:03:27.225000',NULL,1,1,'en',NULL,0,NULL,0,NULL,0,NULL,0,0),(89,'u7f7jlmf7mn6k0wl9odu67od','Bf good rich tires','2026-03-06 06:51:43.771000','2026-03-06 10:05:01.758000',NULL,1,1,'en',NULL,0,NULL,0,NULL,0,NULL,0,0),(91,'r6j6oa2hv8dweui4sbucqoyr','Michelin','2026-03-06 06:53:15.741000','2026-03-06 06:53:15.741000',NULL,1,1,'en',NULL,0,NULL,0,NULL,0,NULL,0,0),(92,'r6j6oa2hv8dweui4sbucqoyr','Michelin','2026-03-06 06:53:15.741000','2026-03-06 06:53:15.741000','2026-03-06 06:53:16.097000',1,1,'en',NULL,0,NULL,0,NULL,0,NULL,0,0),(93,'dwnov4yhx4i33bjx0upssjy9','Bosch diesel service','2026-03-06 06:56:03.521000','2026-03-06 10:06:30.777000',NULL,1,1,'en',NULL,0,NULL,0,NULL,0,NULL,0,0),(95,'a86vmfxmfkky9nmt42rl07gk','Bosch car service','2026-03-06 06:59:19.228000','2026-03-06 06:59:19.228000',NULL,1,1,'en',NULL,0,NULL,0,NULL,0,NULL,0,0),(96,'a86vmfxmfkky9nmt42rl07gk','Bosch car service','2026-03-06 06:59:19.228000','2026-03-06 06:59:19.228000','2026-03-06 06:59:19.513000',1,1,'en',NULL,0,NULL,0,NULL,0,NULL,0,0),(97,'nov1tq3irri2ewn15ip95exi','Clas','2026-03-06 07:03:03.107000','2026-03-13 09:47:45.192000',NULL,1,1,'en',NULL,0,NULL,0,NULL,0,NULL,0,0),(99,'hd8txznuhzmzyudm3xhcnrbw','Eveready logo','2026-03-06 07:05:37.833000','2026-03-13 06:09:46.527000',NULL,1,1,'en',NULL,0,NULL,0,NULL,0,NULL,0,0),(101,'gxgib4pfy19brbmwpdh3a7m5','JP Group Automotive','2026-03-06 07:09:16.934000','2026-03-06 10:10:36.636000',NULL,1,1,'en',NULL,0,NULL,0,NULL,0,NULL,0,0),(103,'mwq8lkkfove6qh1rhwnmb7zb','JP Group Automotive pos','2026-03-06 07:10:47.589000','2026-03-06 10:09:07.430000',NULL,1,1,'en',NULL,0,NULL,0,NULL,0,NULL,0,0),(105,'q1wxkvxhnlcu78uoq1f10i20','KB logo left RGB','2026-03-06 07:12:35.395000','2026-03-06 10:10:52.651000',NULL,1,1,'en',NULL,0,NULL,0,NULL,0,NULL,0,0),(107,'wjbmc7tcw6bjgp7wpgsq95zm','Manatec','2026-03-06 07:15:58.648000','2026-03-13 06:10:21.547000',NULL,1,1,'en',NULL,0,NULL,0,NULL,0,NULL,0,0),(109,'gzzwiflegzyui5vh8xcg240f','Optima by clarios','2026-03-06 07:17:42.385000','2026-03-06 07:17:42.385000',NULL,1,1,'en',NULL,0,NULL,0,NULL,0,NULL,0,0),(110,'gzzwiflegzyui5vh8xcg240f','Optima by clarios','2026-03-06 07:17:42.385000','2026-03-06 07:17:42.385000','2026-03-06 07:17:42.691000',1,1,'en',NULL,0,NULL,0,NULL,0,NULL,0,0),(111,'zfrdrjvzvwu9pde7ymtxst9b','Sicam','2026-03-06 07:18:45.763000','2026-03-06 07:18:45.763000',NULL,1,1,'en',NULL,0,NULL,0,NULL,0,NULL,0,0),(113,'j0d1isggo94gqpod0tp21e70','Bosch green','2026-03-06 06:47:17.323000','2026-03-06 10:01:11.508000','2026-03-06 10:01:11.957000',1,1,'en',NULL,0,NULL,0,NULL,0,NULL,0,0),(114,'yxe2n9us8mnwmmp6w8691k7a','Bosch blue','2026-03-06 06:45:37.438000','2026-03-06 10:02:41.705000','2026-03-06 10:02:42.103000',1,1,'en',NULL,0,NULL,0,NULL,0,NULL,0,0),(115,'hy2fm3xfnsn1ben80a6ms7ds','Dremel blue','2026-03-06 06:48:23.106000','2026-03-06 10:03:27.225000','2026-03-06 10:03:27.628000',1,1,'en',NULL,0,NULL,0,NULL,0,NULL,0,0),(116,'u7f7jlmf7mn6k0wl9odu67od','Bf good rich tires','2026-03-06 06:51:43.771000','2026-03-06 10:05:01.758000','2026-03-06 10:05:02.269000',1,1,'en',NULL,0,NULL,0,NULL,0,NULL,0,0),(117,'dwnov4yhx4i33bjx0upssjy9','Bosch diesel service','2026-03-06 06:56:03.521000','2026-03-06 10:06:30.777000','2026-03-06 10:06:31.166000',1,1,'en',NULL,0,NULL,0,NULL,0,NULL,0,0),(121,'mwq8lkkfove6qh1rhwnmb7zb','JP Group Automotive pos','2026-03-06 07:10:47.589000','2026-03-06 10:09:07.430000','2026-03-06 10:09:07.835000',1,1,'en',NULL,0,NULL,0,NULL,0,NULL,0,0),(122,'gxgib4pfy19brbmwpdh3a7m5','JP Group Automotive','2026-03-06 07:09:16.934000','2026-03-06 10:10:36.636000','2026-03-06 10:10:37.022000',1,1,'en',NULL,0,NULL,0,NULL,0,NULL,0,0),(123,'q1wxkvxhnlcu78uoq1f10i20','KB logo left RGB','2026-03-06 07:12:35.395000','2026-03-06 10:10:52.651000','2026-03-06 10:10:53.056000',1,1,'en',NULL,0,NULL,0,NULL,0,NULL,0,0),(126,'uizxpc8g5mfb7zuwa401ovz6','sicam','2026-01-21 09:20:37.148000','2026-03-06 10:13:30.823000','2026-03-06 10:13:31.233000',1,1,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(128,'g9vbvowxeuqigmc9m1hvfrct','Asnu','2026-01-21 10:23:43.514000','2026-03-13 06:09:08.598000','2026-03-13 06:09:08.955000',1,1,'en',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(129,'hd8txznuhzmzyudm3xhcnrbw','Eveready logo','2026-03-06 07:05:37.833000','2026-03-13 06:09:46.527000','2026-03-13 06:09:46.868000',1,1,'en',NULL,0,NULL,0,NULL,0,NULL,0,0),(130,'wjbmc7tcw6bjgp7wpgsq95zm','Manatec','2026-03-06 07:15:58.648000','2026-03-13 06:10:21.547000','2026-03-13 06:10:21.895000',1,1,'en',NULL,0,NULL,0,NULL,0,NULL,0,0),(131,'m8zihl17z32by4hdhkf3nge7','Zexel','2026-03-13 06:11:06.683000','2026-03-13 06:11:06.683000',NULL,1,1,'en',NULL,0,NULL,0,NULL,0,NULL,0,0),(132,'m8zihl17z32by4hdhkf3nge7','Zexel','2026-03-13 06:11:06.683000','2026-03-13 06:11:06.683000','2026-03-13 06:11:06.969000',1,1,'en',NULL,0,NULL,0,NULL,0,NULL,0,0),(133,'pa84vx9ihg55rf8drcq1fn1r','NRF','2026-03-13 06:11:23.486000','2026-03-13 06:12:06.788000',NULL,1,1,'en',NULL,0,NULL,0,NULL,0,NULL,0,0),(135,'kjch4f9x106n854z7jys3hwf','Valeo','2026-03-13 06:11:49.016000','2026-03-13 06:11:49.016000',NULL,1,1,'en',NULL,0,NULL,0,NULL,0,NULL,0,0),(136,'kjch4f9x106n854z7jys3hwf','Valeo','2026-03-13 06:11:49.016000','2026-03-13 06:11:49.016000','2026-03-13 06:11:49.291000',1,1,'en',NULL,0,NULL,0,NULL,0,NULL,0,0),(137,'pa84vx9ihg55rf8drcq1fn1r','NRF','2026-03-13 06:11:23.486000','2026-03-13 06:12:06.788000','2026-03-13 06:12:07.218000',1,1,'en',NULL,0,NULL,0,NULL,0,NULL,0,0),(138,'tug7ukxz2qmqb5ud92zg6cmk','HC Cargo','2026-03-13 06:12:28.771000','2026-03-13 06:13:31.133000',NULL,1,1,'en',NULL,0,NULL,0,NULL,0,NULL,0,0),(141,'n3n6hb12tar080ker4etskk7','Cyclo','2026-03-13 06:12:58.381000','2026-03-13 06:13:17.379000',NULL,1,1,'en',NULL,0,NULL,0,NULL,0,NULL,0,0),(143,'n3n6hb12tar080ker4etskk7','Cyclo','2026-03-13 06:12:58.381000','2026-03-13 06:13:17.379000','2026-03-13 06:13:17.796000',1,1,'en',NULL,0,NULL,0,NULL,0,NULL,0,0),(144,'tug7ukxz2qmqb5ud92zg6cmk','HC Cargo','2026-03-13 06:12:28.771000','2026-03-13 06:13:31.133000','2026-03-13 06:13:31.464000',1,1,'en',NULL,0,NULL,0,NULL,0,NULL,0,0),(145,'mawkhhvukp8c9dilultoinkn','Optima','2026-03-13 06:13:56.771000','2026-03-13 06:13:56.771000',NULL,1,1,'en',NULL,0,NULL,0,NULL,0,NULL,0,0),(146,'mawkhhvukp8c9dilultoinkn','Optima','2026-03-13 06:13:56.771000','2026-03-13 06:13:56.771000','2026-03-13 06:13:57.041000',1,1,'en',NULL,0,NULL,0,NULL,0,NULL,0,0),(147,'ap8xcbpncn7i8kkdsnpjvmbb','Autopart Battery','2026-03-13 06:14:24.611000','2026-03-13 06:14:33.096000',NULL,1,1,'en',NULL,0,NULL,0,NULL,0,NULL,0,0),(149,'ap8xcbpncn7i8kkdsnpjvmbb','Autopart Battery','2026-03-13 06:14:24.611000','2026-03-13 06:14:33.096000','2026-03-13 06:14:33.528000',1,1,'en',NULL,0,NULL,0,NULL,0,NULL,0,0),(153,'naxhzh9icj7zdt2e4ayc4i3s','Sicam','2026-03-13 06:15:18.764000','2026-03-13 06:15:23.368000',NULL,1,1,'en',NULL,0,NULL,0,NULL,0,NULL,0,0),(155,'naxhzh9icj7zdt2e4ayc4i3s','Sicam','2026-03-13 06:15:18.764000','2026-03-13 06:15:23.368000','2026-03-13 06:15:23.778000',1,1,'en',NULL,0,NULL,0,NULL,0,NULL,0,0),(156,'zt77vel4geqx9tqvbb2l73pu','HPA Faip','2026-03-13 06:15:49.362000','2026-03-13 06:15:54.564000',NULL,1,1,'en',NULL,0,NULL,0,NULL,0,NULL,0,0),(158,'zt77vel4geqx9tqvbb2l73pu','HPA Faip','2026-03-13 06:15:49.362000','2026-03-13 06:15:54.564000','2026-03-13 06:15:54.970000',1,1,'en',NULL,0,NULL,0,NULL,0,NULL,0,0),(159,'nov1tq3irri2ewn15ip95exi','Clas','2026-03-06 07:03:03.107000','2026-03-13 09:47:45.192000','2026-03-13 09:47:45.571000',1,1,'en',NULL,0,NULL,0,NULL,0,NULL,0,0),(160,'kaqtmxkxbgg19gc7n9slwigc','Osram','2026-03-13 10:46:12.174000','2026-03-13 10:46:12.174000',NULL,1,1,'en',NULL,0,NULL,0,NULL,0,NULL,0,0),(161,'kaqtmxkxbgg19gc7n9slwigc','Osram','2026-03-13 10:46:12.174000','2026-03-13 10:46:12.174000','2026-03-13 10:46:12.452000',1,1,'en',NULL,0,NULL,0,NULL,0,NULL,0,0);
/*!40000 ALTER TABLE `brands` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `brands_types_lnk`
--

DROP TABLE IF EXISTS `brands_types_lnk`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `brands_types_lnk` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `brand_id` int unsigned DEFAULT NULL,
  `type_id` int unsigned DEFAULT NULL,
  `type_ord` double unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `brands_types_lnk_uq` (`brand_id`,`type_id`),
  KEY `brands_types_lnk_fk` (`brand_id`),
  KEY `brands_types_lnk_ifk` (`type_id`),
  KEY `brands_types_lnk_ofk` (`type_ord`),
  CONSTRAINT `brands_types_lnk_fk` FOREIGN KEY (`brand_id`) REFERENCES `brands` (`id`) ON DELETE CASCADE,
  CONSTRAINT `brands_types_lnk_ifk` FOREIGN KEY (`type_id`) REFERENCES `types` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=135 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `brands_types_lnk`
--

LOCK TABLES `brands_types_lnk` WRITE;
/*!40000 ALTER TABLE `brands_types_lnk` DISABLE KEYS */;
INSERT INTO `brands_types_lnk` VALUES (1,44,5,1),(3,30,5,1),(5,58,5,1),(7,28,5,1),(11,44,3,2),(14,28,7,2),(15,73,6,1),(16,73,8,2),(17,30,7,2),(20,60,3,1),(22,56,3,1),(24,20,7,1),(26,38,3,1),(27,78,4,1),(28,14,7,1),(30,80,6,1),(31,80,4,2),(32,81,6,1),(33,81,8,2),(34,82,6,1),(35,83,5,1),(37,85,5,1),(39,87,5,1),(41,89,5,1),(43,91,5,0),(44,92,6,1),(45,93,5,1),(47,95,5,0),(48,96,6,1),(49,97,5,1),(51,99,5,1),(53,101,5,1),(55,103,5,1),(57,105,5,1),(59,107,5,1),(61,109,5,0),(62,110,6,1),(63,111,5,0),(65,85,1,2),(66,113,6,1),(67,113,9,2),(68,83,1,2),(69,114,6,1),(70,114,9,2),(71,87,1,2),(72,115,6,1),(73,115,9,2),(74,89,7,2),(75,116,6,1),(76,116,8,2),(77,93,3,2),(78,117,6,1),(79,117,4,2),(80,97,3,2),(83,99,3,2),(89,103,3,2),(90,121,6,1),(91,121,4,2),(92,122,6,1),(93,105,3,2),(94,123,6,1),(95,123,4,2),(96,107,3,2),(99,34,3,1),(101,34,5,2),(102,126,4,1),(103,126,6,2),(105,128,4,1),(106,129,6,1),(107,129,4,2),(108,130,6,1),(109,130,4,2),(110,131,3,0),(111,132,4,1),(112,135,3,0),(113,136,4,1),(114,133,3,1),(115,137,4,1),(116,138,3,1),(118,141,3,1),(119,143,4,1),(120,144,4,1),(121,145,3,0),(122,146,4,1),(123,147,3,1),(124,149,4,1),(127,153,3,1),(128,155,4,1),(129,156,3,1),(130,158,4,1),(131,159,6,1),(132,159,4,2),(133,160,3,0),(134,161,4,1);
/*!40000 ALTER TABLE `brands_types_lnk` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `business_streams`
--

DROP TABLE IF EXISTS `business_streams`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `business_streams` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `document_id` varchar(255) DEFAULT NULL,
  `title` varchar(255) DEFAULT NULL,
  `slug` varchar(255) DEFAULT NULL,
  `small_description` longtext,
  `created_at` datetime(6) DEFAULT NULL,
  `updated_at` datetime(6) DEFAULT NULL,
  `published_at` datetime(6) DEFAULT NULL,
  `created_by_id` int unsigned DEFAULT NULL,
  `updated_by_id` int unsigned DEFAULT NULL,
  `locale` varchar(255) DEFAULT NULL,
  `home_page_sort_order` int DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `business_streams_documents_idx` (`document_id`,`locale`,`published_at`),
  KEY `business_streams_created_by_id_fk` (`created_by_id`),
  KEY `business_streams_updated_by_id_fk` (`updated_by_id`),
  CONSTRAINT `business_streams_created_by_id_fk` FOREIGN KEY (`created_by_id`) REFERENCES `admin_users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `business_streams_updated_by_id_fk` FOREIGN KEY (`updated_by_id`) REFERENCES `admin_users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=45 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `business_streams`
--

LOCK TABLES `business_streams` WRITE;
/*!40000 ALTER TABLE `business_streams` DISABLE KEYS */;
INSERT INTO `business_streams` VALUES (1,'semdayauouae374mkamo72yl','Automotive Aftermarket','automotive-aftermarket','Representing Bosch Automotive, Osram, Knorr-Bremse, Valeo and many more. From spare parts to workshop equipment, we cover your complete aftermarket needs.','2026-01-12 09:26:08.434000','2026-03-27 09:28:56.720000',NULL,1,1,'en',2),(3,'dglhxwmayfeota23fl2yd0t8','Power Tools','power-tools','The authorized BOSCH Power Tools Dealer in the UAE. With the full range of professional tools covering all trades. Representing also its state-of-the-art after-sales service network. ','2026-01-12 09:27:04.552000','2026-03-27 09:29:05.804000',NULL,1,1,'en',3),(6,'dnsii2cxp3ugenaunb2dixyu','Tyres','tyres','At CME, We provide premium quality tyres designed to deliver exceptional performance, superior safety, and long-lasting value for every drive. ','2026-01-13 09:12:52.655000','2026-03-27 09:28:45.732000',NULL,1,1,'en',1),(8,'pp9najkpda2ntigsifskhfnv','Services','services','We sepecialize in providing expert solutions across Automotive Aftermarket Services, Tyre Services and Power Tools Services. ','2026-01-13 09:14:07.257000','2026-03-26 13:47:49.346000',NULL,1,1,'en',4),(41,'pp9najkpda2ntigsifskhfnv','Services','services','We sepecialize in providing expert solutions across Automotive Aftermarket Services, Tyre Services and Power Tools Services. ','2026-01-13 09:14:07.257000','2026-03-26 13:47:49.346000','2026-03-26 13:47:49.726000',1,1,'en',4),(42,'dnsii2cxp3ugenaunb2dixyu','Tyres','tyres','At CME, We provide premium quality tyres designed to deliver exceptional performance, superior safety, and long-lasting value for every drive. ','2026-01-13 09:12:52.655000','2026-03-27 09:28:45.732000','2026-03-27 09:28:46.122000',1,1,'en',1),(43,'semdayauouae374mkamo72yl','Automotive Aftermarket','automotive-aftermarket','Representing Bosch Automotive, Osram, Knorr-Bremse, Valeo and many more. From spare parts to workshop equipment, we cover your complete aftermarket needs.','2026-01-12 09:26:08.434000','2026-03-27 09:28:56.720000','2026-03-27 09:28:57.303000',1,1,'en',2),(44,'dglhxwmayfeota23fl2yd0t8','Power Tools','power-tools','The authorized BOSCH Power Tools Dealer in the UAE. With the full range of professional tools covering all trades. Representing also its state-of-the-art after-sales service network. ','2026-01-12 09:27:04.552000','2026-03-27 09:29:05.804000','2026-03-27 09:29:06.179000',1,1,'en',3);
/*!40000 ALTER TABLE `business_streams` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `business_streams_cmps`
--

DROP TABLE IF EXISTS `business_streams_cmps`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `business_streams_cmps` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `entity_id` int unsigned DEFAULT NULL,
  `cmp_id` int unsigned DEFAULT NULL,
  `component_type` varchar(255) DEFAULT NULL,
  `field` varchar(255) DEFAULT NULL,
  `order` double unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `business_streams_uq` (`entity_id`,`cmp_id`,`field`,`component_type`),
  KEY `business_streams_field_idx` (`field`),
  KEY `business_streams_component_type_idx` (`component_type`),
  KEY `business_streams_entity_fk` (`entity_id`),
  CONSTRAINT `business_streams_entity_fk` FOREIGN KEY (`entity_id`) REFERENCES `business_streams` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `business_streams_cmps`
--

LOCK TABLES `business_streams_cmps` WRITE;
/*!40000 ALTER TABLE `business_streams_cmps` DISABLE KEYS */;
INSERT INTO `business_streams_cmps` VALUES (1,1,93,'common.seo','seo',NULL),(10,43,147,'common.seo','seo',NULL);
/*!40000 ALTER TABLE `business_streams_cmps` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `components_common_banners`
--

DROP TABLE IF EXISTS `components_common_banners`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `components_common_banners` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(255) DEFAULT NULL,
  `subtitle` varchar(255) DEFAULT NULL,
  `type` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=320 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `components_common_banners`
--

LOCK TABLES `components_common_banners` WRITE;
/*!40000 ALTER TABLE `components_common_banners` DISABLE KEYS */;
INSERT INTO `components_common_banners` VALUES (15,'Contact Us',NULL,NULL),(19,'Contact Us',NULL,NULL),(20,'Contact Us','At your service. We would love to hear from you!','image'),(24,'Everything  You Need to Keep Moving',NULL,'image'),(26,'Everything  You Need to Keep Moving',NULL,'image'),(31,'Everything  You Need to Keep Moving',NULL,'image'),(35,'Quality Aftermarket Parts for Every Drive.',NULL,'image'),(37,'test',NULL,'image'),(40,'test',NULL,'image'),(41,'test',NULL,'image'),(42,'test',NULL,'image'),(43,'Quality Aftermarket Parts for Every Drive.',NULL,'image'),(44,'Everything  You Need to Keep Moving',NULL,'image'),(59,'Quality Aftermarket Parts for Every Drive.',NULL,'image'),(80,'Everything  You Need to Keep Moving',NULL,'image'),(101,NULL,NULL,'image'),(102,NULL,NULL,'image'),(107,NULL,NULL,'image'),(109,NULL,NULL,'image'),(111,NULL,NULL,'image'),(124,NULL,NULL,'image'),(128,NULL,NULL,'image'),(141,NULL,NULL,'image'),(177,'Everything  You Need to Keep Moving',NULL,'image'),(184,NULL,NULL,'image'),(193,NULL,NULL,'image'),(194,NULL,NULL,'image'),(227,'Everything  You Need to Keep Moving',NULL,'image'),(228,'Everything  You Need to Keep Moving',NULL,'image'),(232,NULL,NULL,'video'),(235,NULL,NULL,'video'),(236,NULL,NULL,'video'),(241,NULL,NULL,'image'),(258,NULL,NULL,'image'),(260,NULL,NULL,'image'),(265,NULL,NULL,'image'),(266,'Contact Us','At your service. We would love to hear from you!','image'),(273,NULL,NULL,'image'),(279,NULL,NULL,'image'),(280,NULL,NULL,'video'),(281,NULL,NULL,'video'),(282,NULL,NULL,'video'),(283,NULL,NULL,'image'),(284,NULL,NULL,'image'),(285,NULL,NULL,'image'),(286,NULL,NULL,'image'),(287,NULL,NULL,'image'),(288,NULL,NULL,'image'),(290,NULL,NULL,'image'),(291,NULL,NULL,'image'),(292,NULL,NULL,'image'),(300,'Quality Aftermarket Parts for Every Drive.',NULL,'image'),(301,NULL,NULL,'image'),(313,NULL,NULL,'image'),(314,NULL,NULL,'image'),(315,NULL,NULL,'image'),(316,NULL,NULL,'image'),(317,NULL,NULL,'image'),(318,NULL,NULL,'image'),(319,NULL,NULL,'image');
/*!40000 ALTER TABLE `components_common_banners` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `components_common_banners_cmps`
--

DROP TABLE IF EXISTS `components_common_banners_cmps`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `components_common_banners_cmps` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `entity_id` int unsigned DEFAULT NULL,
  `cmp_id` int unsigned DEFAULT NULL,
  `component_type` varchar(255) DEFAULT NULL,
  `field` varchar(255) DEFAULT NULL,
  `order` double unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `components_common_banners_uq` (`entity_id`,`cmp_id`,`field`,`component_type`),
  KEY `components_common_banners_field_idx` (`field`),
  KEY `components_common_banners_component_type_idx` (`component_type`),
  KEY `components_common_banners_entity_fk` (`entity_id`),
  CONSTRAINT `components_common_banners_entity_fk` FOREIGN KEY (`entity_id`) REFERENCES `components_common_banners` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `components_common_banners_cmps`
--

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

--
-- Table structure for table `components_common_box_components`
--

DROP TABLE IF EXISTS `components_common_box_components`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `components_common_box_components` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(255) DEFAULT NULL,
  `description` varchar(255) DEFAULT NULL,
  `phone` varchar(255) DEFAULT NULL,
  `latitude` varchar(255) DEFAULT NULL,
  `longitude` varchar(255) DEFAULT NULL,
  `sub_title` longtext,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `components_common_box_components`
--

LOCK TABLES `components_common_box_components` WRITE;
/*!40000 ALTER TABLE `components_common_box_components` DISABLE KEYS */;
INSERT INTO `components_common_box_components` VALUES (1,'Automotive Aftermarket - Power Tools - Tyres','Tell us your requirement and our team will get back to you.',NULL,NULL,NULL,'Reach out to us for'),(11,'Automotive Aftermarket - Power Tools - Tyres','Tell us your requirement and our team will get back to you.',NULL,NULL,NULL,'Reach out to us for');
/*!40000 ALTER TABLE `components_common_box_components` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `components_common_box_components_cmps`
--

DROP TABLE IF EXISTS `components_common_box_components_cmps`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `components_common_box_components_cmps` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `entity_id` int unsigned DEFAULT NULL,
  `cmp_id` int unsigned DEFAULT NULL,
  `component_type` varchar(255) DEFAULT NULL,
  `field` varchar(255) DEFAULT NULL,
  `order` double unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `components_common_box_components_uq` (`entity_id`,`cmp_id`,`field`,`component_type`),
  KEY `components_common_box_components_field_idx` (`field`),
  KEY `components_common_box_components_component_type_idx` (`component_type`),
  KEY `components_common_box_components_entity_fk` (`entity_id`),
  CONSTRAINT `components_common_box_components_entity_fk` FOREIGN KEY (`entity_id`) REFERENCES `components_common_box_components` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=101 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `components_common_box_components_cmps`
--

LOCK TABLES `components_common_box_components_cmps` WRITE;
/*!40000 ALTER TABLE `components_common_box_components_cmps` DISABLE KEYS */;
INSERT INTO `components_common_box_components_cmps` VALUES (3,1,3,'common.list','listItem',1),(4,1,4,'common.list','listItem',2),(49,1,29,'common.list','listItem',3),(50,1,30,'common.list','listItem',4),(51,1,31,'common.list','listItem',5),(96,11,54,'common.list','listItem',1),(97,11,55,'common.list','listItem',2),(98,11,56,'common.list','listItem',3),(99,11,57,'common.list','listItem',4),(100,11,58,'common.list','listItem',5);
/*!40000 ALTER TABLE `components_common_box_components_cmps` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `components_common_buttons`
--

DROP TABLE IF EXISTS `components_common_buttons`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `components_common_buttons` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(255) DEFAULT NULL,
  `url` varchar(255) DEFAULT NULL,
  `type_external` tinyint(1) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `components_common_buttons`
--

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

--
-- Table structure for table `components_common_content_block_variants`
--

DROP TABLE IF EXISTS `components_common_content_block_variants`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `components_common_content_block_variants` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(255) DEFAULT NULL,
  `sub_title` varchar(255) DEFAULT NULL,
  `description` longtext,
  `show_gradient_bg` tinyint(1) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=392 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `components_common_content_block_variants`
--

LOCK TABLES `components_common_content_block_variants` WRITE;
/*!40000 ALTER TABLE `components_common_content_block_variants` DISABLE KEYS */;
INSERT INTO `components_common_content_block_variants` VALUES (1,NULL,NULL,NULL,1),(10,NULL,NULL,NULL,NULL),(45,'When Should You Rotate Your Tyres?',NULL,'<p>We recommend rotating your tyres <strong>every 8,000-10,000 kilometers or every 6 months</strong>, whichever comes first. However, you should consider more frequent rotation if you notice uneven wear patterns, experience vibrations while driving, or frequently drive in demanding conditions.</p>',NULL),(63,NULL,NULL,NULL,NULL),(67,NULL,NULL,NULL,NULL),(96,NULL,NULL,NULL,NULL),(113,NULL,NULL,NULL,1),(132,NULL,NULL,NULL,1),(138,NULL,NULL,NULL,NULL),(154,NULL,NULL,NULL,1),(155,NULL,NULL,NULL,NULL),(158,NULL,NULL,NULL,NULL),(199,NULL,NULL,NULL,NULL),(200,NULL,NULL,NULL,NULL),(215,NULL,NULL,NULL,0),(223,NULL,NULL,'<p>Proper tyre fitting and balancing are crucial for your vehicle\'s maintenance. Poorly fitted tyres can lead to a rough, uneven, and potentially unsafe ride. When fitting new tyres, make sure they\'re mounted correctly, are the right type for your vehicle, and are balanced accurately to ensure a smooth, safe drive and extend tyre lifespan.</p>',1),(226,'What is a tyre change and wheel balancing service?',NULL,NULL,NULL),(235,NULL,NULL,NULL,NULL),(253,'Technical services from industry experts',NULL,'<p>Loerem ipsum is a dummy text that commonly used among designers</p>',1),(256,'Technical services from industry experts',NULL,'<p>Loerem ipsum is a dummy text that commonly used among designers</p>',1),(257,'Technical services from industry experts',NULL,'<p>Loerem ipsum is a dummy text that commonly used among designers</p>',1),(320,NULL,NULL,NULL,1),(321,NULL,NULL,NULL,NULL),(355,NULL,NULL,NULL,1),(356,NULL,NULL,NULL,NULL),(366,NULL,NULL,NULL,1),(367,NULL,NULL,NULL,NULL),(371,NULL,NULL,NULL,1),(372,NULL,NULL,NULL,NULL),(373,NULL,NULL,NULL,0),(377,NULL,NULL,NULL,NULL),(378,NULL,NULL,NULL,NULL),(379,NULL,NULL,NULL,1),(380,NULL,NULL,NULL,NULL),(381,NULL,NULL,'<p>Proper tyre fitting and balancing are crucial for your vehicle\'s maintenance. Poorly fitted tyres can lead to a rough, uneven, and potentially unsafe ride. When fitting new tyres, make sure they\'re mounted correctly, are the right type for your vehicle, and are balanced accurately to ensure a smooth, safe drive and extend tyre lifespan.</p>',1),(382,'What is a tyre change and wheel balancing service?',NULL,NULL,NULL),(383,NULL,NULL,NULL,NULL),(384,'When Should You Rotate Your Tyres?',NULL,'<p>We recommend rotating your tyres <strong>every 8,000-10,000 kilometers or every 6 months</strong>, whichever comes first. However, you should consider more frequent rotation if you notice uneven wear patterns, experience vibrations while driving, or frequently drive in demanding conditions.</p>',NULL),(385,NULL,NULL,NULL,1),(386,NULL,NULL,NULL,NULL),(388,NULL,NULL,NULL,NULL),(389,NULL,NULL,NULL,NULL),(390,'Technical services from industry experts',NULL,'<p>Loerem ipsum is a dummy text that commonly used among designers</p>',1),(391,NULL,NULL,NULL,NULL);
/*!40000 ALTER TABLE `components_common_content_block_variants` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `components_common_content_block_variants_cmps`
--

DROP TABLE IF EXISTS `components_common_content_block_variants_cmps`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `components_common_content_block_variants_cmps` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `entity_id` int unsigned DEFAULT NULL,
  `cmp_id` int unsigned DEFAULT NULL,
  `component_type` varchar(255) DEFAULT NULL,
  `field` varchar(255) DEFAULT NULL,
  `order` double unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `components_common_content_block_variants_uq` (`entity_id`,`cmp_id`,`field`,`component_type`),
  KEY `components_common_content_block_variants_field_idx` (`field`),
  KEY `components_common_content_block780de_component_type_idx` (`component_type`),
  KEY `components_common_content_block_variants_entity_fk` (`entity_id`),
  CONSTRAINT `components_common_content_block_variants_entity_fk` FOREIGN KEY (`entity_id`) REFERENCES `components_common_content_block_variants` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=873 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `components_common_content_block_variants_cmps`
--

LOCK TABLES `components_common_content_block_variants_cmps` WRITE;
/*!40000 ALTER TABLE `components_common_content_block_variants_cmps` DISABLE KEYS */;
INSERT INTO `components_common_content_block_variants_cmps` VALUES (1,1,1,'common.title-desc-img-position','items',1),(33,10,19,'common.title-desc-img-position','items',1),(109,45,59,'common.title-desc-img-position','items',1),(143,63,77,'common.title-desc-img-position','items',1),(149,67,81,'common.title-desc-img-position','items',1),(182,67,98,'common.title-desc-img-position','items',2),(212,96,116,'common.title-desc-img-position','items',1),(243,113,133,'common.title-desc-img-position','items',1),(283,132,153,'common.title-desc-img-position','items',1),(294,138,159,'common.title-desc-img-position','items',1),(315,138,171,'common.title-desc-img-position','items',2),(321,10,175,'common.title-desc-img-position','items',2),(326,154,179,'common.title-desc-img-position','items',1),(327,155,180,'common.title-desc-img-position','items',1),(330,158,183,'common.title-desc-img-position','items',1),(331,158,184,'common.title-desc-img-position','items',2),(444,199,242,'common.title-desc-img-position','items',1),(445,200,243,'common.title-desc-img-position','items',1),(477,215,259,'common.title-desc-img-position','items',1),(492,223,267,'common.title-desc-img-position','items',1),(497,226,270,'common.title-desc-img-position','items',1),(515,235,281,'common.title-desc-img-position','items',1),(545,253,299,'common.title-desc-img-position','items',1),(549,256,302,'common.title-desc-img-position','items',1),(550,257,303,'common.title-desc-img-position','items',1),(643,235,349,'common.title-desc-img-position','items',2),(644,235,350,'common.title-desc-img-position','items',3),(707,320,386,'common.title-desc-img-position','items',1),(708,321,387,'common.title-desc-img-position','items',1),(780,355,421,'common.title-desc-img-position','items',1),(781,356,422,'common.title-desc-img-position','items',1),(782,356,423,'common.title-desc-img-position','items',2),(810,366,436,'common.title-desc-img-position','items',1),(811,367,437,'common.title-desc-img-position','items',1),(812,367,438,'common.title-desc-img-position','items',2),(823,371,443,'common.title-desc-img-position','items',1),(824,372,444,'common.title-desc-img-position','items',1),(826,373,445,'common.title-desc-img-position','items',1),(837,377,450,'common.title-desc-img-position','items',1),(838,378,451,'common.title-desc-img-position','items',1),(841,379,452,'common.title-desc-img-position','items',1),(842,380,453,'common.title-desc-img-position','items',1),(848,381,454,'common.title-desc-img-position','items',1),(849,382,455,'common.title-desc-img-position','items',1),(850,383,456,'common.title-desc-img-position','items',1),(851,383,457,'common.title-desc-img-position','items',2),(852,383,458,'common.title-desc-img-position','items',3),(854,384,459,'common.title-desc-img-position','items',1),(858,385,460,'common.title-desc-img-position','items',1),(859,386,461,'common.title-desc-img-position','items',1),(860,386,462,'common.title-desc-img-position','items',2),(866,388,464,'common.title-desc-img-position','items',1),(867,389,465,'common.title-desc-img-position','items',1),(868,389,466,'common.title-desc-img-position','items',2),(870,390,467,'common.title-desc-img-position','items',1),(872,391,468,'common.title-desc-img-position','items',1);
/*!40000 ALTER TABLE `components_common_content_block_variants_cmps` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `components_common_content_blocks`
--

DROP TABLE IF EXISTS `components_common_content_blocks`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `components_common_content_blocks` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(255) DEFAULT NULL,
  `sub_title` varchar(255) DEFAULT NULL,
  `show_gradient_bg` tinyint(1) DEFAULT NULL,
  `service_card_variant` tinyint(1) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=225 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `components_common_content_blocks`
--

LOCK TABLES `components_common_content_blocks` WRITE;
/*!40000 ALTER TABLE `components_common_content_blocks` DISABLE KEYS */;
INSERT INTO `components_common_content_blocks` VALUES (1,'Michelin Tyre Plus in Abu Dhabi and Al Ain','Taking care of your car\'s tyres is crucial for safe driving, especially with the challenging road conditions in the UAE.',NULL,NULL),(9,'Why Timely Tyre Repair Matters','A quick fix today prevents costly damage tomorrow. Drive smoother and safer.. Keep your tyres in top condition for smoother, safer rides.',NULL,NULL),(20,'Wide Range of Bosch Power Tools Services in UAE','As the authorized distributor of Bosch Power Tools across Dubai, Sharjah, and the UAE, Central Motors & Equipment (CME) offers a complete range of professional tools and accessories for every trade — making us your trusted destination for genuine Bosch pr',NULL,NULL),(26,'Wide Range of Bosch Power Tools Services in UAE','As the authorized distributor of Bosch Power Tools across Dubai, Sharjah, and the UAE, Central Motors & Equipment (CME) offers a complete range of professional tools and accessories for every trade — making us your trusted destination for genuine Bosch pr',NULL,NULL),(31,'Why Do You Need Regular Tyre Puncture Repair Services?',NULL,NULL,NULL),(98,'Michelin Tyre Plus in Abu Dhabi and Al Ain','Taking care of your car\'s tyres is crucial for safe driving, especially with the challenging road conditions in the UAE.',NULL,NULL),(99,'Why Timely Tyre Repair Matters','A quick fix today prevents costly damage tomorrow. Drive smoother and safer.. Keep your tyres in top condition for smoother, safer rides.',NULL,NULL),(103,'Our Comprehensive Car Brakes Repair Services',NULL,NULL,NULL),(119,'Ultimate Oil Change Solutions','Our Ultimate Oil Change Solutions package keeps your ride in top shape . We change your oil with top-quality oil and filters, check and top-up coolant, brake fluid, and transmission fluid, and conduct a thorough engine inspection to spot potential issues.',NULL,NULL),(121,'Why is Wheel Alignment Important','The proper alignment of the wheels plays a vital role in your vehicle\'s overall performance and safety. Here are a few reasons why you should not ignore it',NULL,NULL),(123,'Service & Support','A quick fix today prevents costly damage tomorrow. Drive smoother and safer.. Keep your tyres in top condition for smoother, safer rides.',NULL,1),(138,NULL,NULL,NULL,NULL),(152,'Why do I need wheel balancing after a tyre change?',NULL,NULL,NULL),(168,'Service & Support','A quick fix today prevents costly damage tomorrow. Drive smoother and safer.. Keep your tyres in top condition for smoother, safer rides.',NULL,NULL),(169,'Service & Support','A quick fix today prevents costly damage tomorrow. Drive smoother and safer.. Keep your tyres in top condition for smoother, safer rides.',NULL,NULL),(194,'Our Car Battery Services','At CME TyrePlus, we specialized in all things related to car batteries. Our experts provide a comprehensive range of car battery services designed to meet the unique needs of every vehicle. Whether you\'re facing an issue with sudden battery failure',NULL,NULL),(211,'Our Comprehensive Car Brakes Repair Services',NULL,NULL,NULL),(216,'Why Do You Need Regular Tyre Puncture Repair Services?',NULL,NULL,NULL),(218,'Our Car Battery Services','At CME TyrePlus, we specialized in all things related to car batteries. Our experts provide a comprehensive range of car battery services designed to meet the unique needs of every vehicle. Whether you\'re facing an issue with sudden battery failure',NULL,NULL),(220,NULL,NULL,NULL,NULL),(221,'Ultimate Oil Change Solutions','Our Ultimate Oil Change Solutions package keeps your ride in top shape . We change your oil with top-quality oil and filters, check and top-up coolant, brake fluid, and transmission fluid, and conduct a thorough engine inspection to spot potential issues.',NULL,NULL),(222,'Why do I need wheel balancing after a tyre change?',NULL,NULL,NULL),(223,'Why is Wheel Alignment Important','The proper alignment of the wheels plays a vital role in your vehicle\'s overall performance and safety. Here are a few reasons why you should not ignore it',NULL,NULL),(224,'Service & Support','A quick fix today prevents costly damage tomorrow. Drive smoother and safer.. Keep your tyres in top condition for smoother, safer rides.',NULL,1);
/*!40000 ALTER TABLE `components_common_content_blocks` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `components_common_content_blocks_cmps`
--

DROP TABLE IF EXISTS `components_common_content_blocks_cmps`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `components_common_content_blocks_cmps` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `entity_id` int unsigned DEFAULT NULL,
  `cmp_id` int unsigned DEFAULT NULL,
  `component_type` varchar(255) DEFAULT NULL,
  `field` varchar(255) DEFAULT NULL,
  `order` double unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `components_common_content_blocks_uq` (`entity_id`,`cmp_id`,`field`,`component_type`),
  KEY `components_common_content_blocks_field_idx` (`field`),
  KEY `components_common_content_blocks_component_type_idx` (`component_type`),
  KEY `components_common_content_blocks_entity_fk` (`entity_id`),
  CONSTRAINT `components_common_content_blocks_entity_fk` FOREIGN KEY (`entity_id`) REFERENCES `components_common_content_blocks` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=1417 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `components_common_content_blocks_cmps`
--

LOCK TABLES `components_common_content_blocks_cmps` WRITE;
/*!40000 ALTER TABLE `components_common_content_blocks_cmps` DISABLE KEYS */;
INSERT INTO `components_common_content_blocks_cmps` VALUES (17,1,11,'common.title-desc-with-img','items',1),(19,1,13,'common.title-desc-with-img','items',2),(25,9,16,'common.title-desc-with-img','items',1),(26,9,17,'common.title-desc-with-img','items',2),(27,9,18,'common.title-desc-with-img','items',3),(28,9,19,'common.title-desc-with-img','items',4),(29,9,20,'common.title-desc-with-img','items',5),(93,20,121,'common.title-desc-with-img','items',1),(100,26,125,'common.title-desc-with-img','items',1),(136,31,166,'common.title-desc-with-img','items',1),(137,31,167,'common.title-desc-with-img','items',2),(316,31,258,'common.title-desc-with-img','items',3),(317,31,259,'common.title-desc-with-img','items',4),(318,31,260,'common.title-desc-with-img','items',5),(319,31,261,'common.title-desc-with-img','items',6),(634,98,418,'common.title-desc-with-img','items',1),(635,98,419,'common.title-desc-with-img','items',2),(636,99,420,'common.title-desc-with-img','items',1),(637,99,421,'common.title-desc-with-img','items',2),(638,99,422,'common.title-desc-with-img','items',3),(639,99,423,'common.title-desc-with-img','items',4),(640,99,424,'common.title-desc-with-img','items',5),(671,103,443,'common.title-desc-with-img','items',1),(673,103,445,'common.title-desc-with-img','items',2),(674,103,446,'common.title-desc-with-img','items',3),(721,103,471,'common.title-desc-with-img','items',4),(722,103,472,'common.title-desc-with-img','items',5),(793,119,509,'common.title-desc-with-img','items',1),(794,119,510,'common.title-desc-with-img','items',2),(795,119,511,'common.title-desc-with-img','items',3),(799,121,515,'common.title-desc-with-img','items',1),(800,121,516,'common.title-desc-with-img','items',2),(801,121,517,'common.title-desc-with-img','items',3),(802,121,518,'common.title-desc-with-img','items',4),(807,123,523,'common.title-desc-with-img','items',1),(808,123,524,'common.title-desc-with-img','items',2),(809,123,525,'common.title-desc-with-img','items',3),(932,138,586,'common.title-desc-with-img','items',1),(933,138,587,'common.title-desc-with-img','items',2),(975,152,613,'common.title-desc-with-img','items',1),(976,152,614,'common.title-desc-with-img','items',2),(977,152,615,'common.title-desc-with-img','items',3),(1057,168,657,'common.title-desc-with-img','items',1),(1058,168,658,'common.title-desc-with-img','items',2),(1059,168,659,'common.title-desc-with-img','items',3),(1060,169,660,'common.title-desc-with-img','items',1),(1061,169,661,'common.title-desc-with-img','items',2),(1062,169,662,'common.title-desc-with-img','items',3),(1251,194,760,'common.title-desc-with-img','items',1),(1252,194,761,'common.title-desc-with-img','items',2),(1328,211,805,'common.title-desc-with-img','items',1),(1329,211,806,'common.title-desc-with-img','items',2),(1330,211,807,'common.title-desc-with-img','items',3),(1331,211,808,'common.title-desc-with-img','items',4),(1332,211,809,'common.title-desc-with-img','items',5),(1363,216,822,'common.title-desc-with-img','items',1),(1364,216,823,'common.title-desc-with-img','items',2),(1365,216,824,'common.title-desc-with-img','items',3),(1366,216,825,'common.title-desc-with-img','items',4),(1367,216,826,'common.title-desc-with-img','items',5),(1368,216,827,'common.title-desc-with-img','items',6),(1379,218,834,'common.title-desc-with-img','items',1),(1380,218,835,'common.title-desc-with-img','items',2),(1389,220,839,'common.title-desc-with-img','items',1),(1390,220,840,'common.title-desc-with-img','items',2),(1394,221,841,'common.title-desc-with-img','items',1),(1395,221,842,'common.title-desc-with-img','items',2),(1396,221,843,'common.title-desc-with-img','items',3),(1400,222,844,'common.title-desc-with-img','items',1),(1401,222,845,'common.title-desc-with-img','items',2),(1402,222,846,'common.title-desc-with-img','items',3),(1407,223,847,'common.title-desc-with-img','items',1),(1408,223,848,'common.title-desc-with-img','items',2),(1409,223,849,'common.title-desc-with-img','items',3),(1410,223,850,'common.title-desc-with-img','items',4),(1414,224,851,'common.title-desc-with-img','items',1),(1415,224,852,'common.title-desc-with-img','items',2),(1416,224,853,'common.title-desc-with-img','items',3);
/*!40000 ALTER TABLE `components_common_content_blocks_cmps` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `components_common_content_with_links`
--

DROP TABLE IF EXISTS `components_common_content_with_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `components_common_content_with_links` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(255) DEFAULT NULL,
  `sub_title` varchar(255) DEFAULT NULL,
  `description` longtext,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=36 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `components_common_content_with_links`
--

LOCK TABLES `components_common_content_with_links` WRITE;
/*!40000 ALTER TABLE `components_common_content_with_links` DISABLE KEYS */;
INSERT INTO `components_common_content_with_links` VALUES (1,'Driving Growth, Shaping  the Future of the UAE',NULL,'<p>ALFAHIM Group is a multi-industry company that is privately held, guided by a steadfast vision and mission, we relentlessly pursue excellence, driving growth and prosperity across diverse sectors.</p>'),(35,'Driving Growth, Shaping  the Future of the UAE',NULL,'<p>ALFAHIM Group is a multi-industry company that is privately held, guided by a steadfast vision and mission, we relentlessly pursue excellence, driving growth and prosperity across diverse sectors.</p>');
/*!40000 ALTER TABLE `components_common_content_with_links` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `components_common_content_with_links_cmps`
--

DROP TABLE IF EXISTS `components_common_content_with_links_cmps`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `components_common_content_with_links_cmps` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `entity_id` int unsigned DEFAULT NULL,
  `cmp_id` int unsigned DEFAULT NULL,
  `component_type` varchar(255) DEFAULT NULL,
  `field` varchar(255) DEFAULT NULL,
  `order` double unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `components_common_content_with_links_uq` (`entity_id`,`cmp_id`,`field`,`component_type`),
  KEY `components_common_content_with_links_field_idx` (`field`),
  KEY `components_common_content_with_links_component_type_idx` (`component_type`),
  KEY `components_common_content_with_links_entity_fk` (`entity_id`),
  CONSTRAINT `components_common_content_with_links_entity_fk` FOREIGN KEY (`entity_id`) REFERENCES `components_common_content_with_links` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=71 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `components_common_content_with_links_cmps`
--

LOCK TABLES `components_common_content_with_links_cmps` WRITE;
/*!40000 ALTER TABLE `components_common_content_with_links_cmps` DISABLE KEYS */;
INSERT INTO `components_common_content_with_links_cmps` VALUES (1,1,1,'common.link-item','callToAction',NULL),(70,35,858,'common.link-item','callToAction',NULL);
/*!40000 ALTER TABLE `components_common_content_with_links_cmps` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `components_common_faqs`
--

DROP TABLE IF EXISTS `components_common_faqs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `components_common_faqs` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(255) DEFAULT NULL,
  `sub_title` longtext,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=46 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `components_common_faqs`
--

LOCK TABLES `components_common_faqs` WRITE;
/*!40000 ALTER TABLE `components_common_faqs` DISABLE KEYS */;
INSERT INTO `components_common_faqs` VALUES (1,'Got Questions? We’ve Got Answers','Find quick answers to common questions about our services.'),(45,'Got Questions? We’ve Got Answers','Find quick answers to common questions about our services.');
/*!40000 ALTER TABLE `components_common_faqs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `components_common_faqs_cmps`
--

DROP TABLE IF EXISTS `components_common_faqs_cmps`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `components_common_faqs_cmps` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `entity_id` int unsigned DEFAULT NULL,
  `cmp_id` int unsigned DEFAULT NULL,
  `component_type` varchar(255) DEFAULT NULL,
  `field` varchar(255) DEFAULT NULL,
  `order` double unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `components_common_faqs_uq` (`entity_id`,`cmp_id`,`field`,`component_type`),
  KEY `components_common_faqs_field_idx` (`field`),
  KEY `components_common_faqs_component_type_idx` (`component_type`),
  KEY `components_common_faqs_entity_fk` (`entity_id`),
  CONSTRAINT `components_common_faqs_entity_fk` FOREIGN KEY (`entity_id`) REFERENCES `components_common_faqs` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=233 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `components_common_faqs_cmps`
--

LOCK TABLES `components_common_faqs_cmps` WRITE;
/*!40000 ALTER TABLE `components_common_faqs_cmps` DISABLE KEYS */;
INSERT INTO `components_common_faqs_cmps` VALUES (1,1,11,'common.title-with-desc','items',1),(2,1,12,'common.title-with-desc','items',2),(3,1,13,'common.title-with-desc','items',3),(230,45,201,'common.title-with-desc','items',1),(231,45,202,'common.title-with-desc','items',2),(232,45,203,'common.title-with-desc','items',3);
/*!40000 ALTER TABLE `components_common_faqs_cmps` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `components_common_link_items`
--

DROP TABLE IF EXISTS `components_common_link_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `components_common_link_items` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `label` varchar(255) DEFAULT NULL,
  `url` varchar(255) DEFAULT NULL,
  `new_tab` tinyint(1) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=935 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `components_common_link_items`
--

LOCK TABLES `components_common_link_items` WRITE;
/*!40000 ALTER TABLE `components_common_link_items` DISABLE KEYS */;
INSERT INTO `components_common_link_items` VALUES (1,'Visit Website','/en/about-us',0),(11,'Discover','/automotive-aftermarket',0),(13,'Discover','/power-tools',0),(14,'Discover','/tyres',0),(21,'Discover','/services',0),(26,'Read about CME','/about-us',0),(115,'Home','/',0),(116,'Services','/services',0),(123,'Tyre','/services/tyre',0),(184,'Home','/',0),(185,'Services','/services',0),(186,'Tyre','/services/tyre',0),(187,'Tyre Rotation',NULL,0),(192,'Tyre Repair',NULL,0),(197,'Home','/',0),(198,'Services','/services',0),(199,'Automotive Aftermarket','/services/automotive-aftermarket',0),(200,'Bosch Car Service',NULL,0),(265,'Home','/',0),(266,'Services','/services',0),(267,'Automotive Aftermarket','/services/automotive-aftermarket',0),(268,'Bosch Diesel Service',NULL,0),(281,'Home','/',0),(282,'Services','/services',0),(283,'Automotive Aftermarket','/services/automotive-aftermarket',0),(284,'Workshop Test Equipment Services',NULL,0),(357,'Home','/',0),(358,'Services','/services',0),(359,'Tyre','/services/tyre',0),(360,'Wheel Alilgnment',NULL,0),(393,'Home','/',0),(394,'Services','/services',0),(395,'Tyre','/services/tyre',0),(396,'Break Pads',NULL,0),(449,'Home','/',0),(450,'Services','/services',0),(451,'Tyre','/services/tyre',0),(452,'Nitrogen Inflation',NULL,0),(477,'Home','/',0),(478,'Services','/services',0),(479,'Tyre','/services/tyre',0),(480,'Tyre Change and Balancing / Tyre Replacement',NULL,0),(481,'Home','/',0),(482,'Services','/services',0),(483,'Tyres','/services/tyres',0),(484,'AC Maintenance',NULL,0),(569,'Home','/',0),(570,'Services','/services',0),(571,'Automotive Aftermarket','/services/automotive-aftermarket',0),(572,'Bosch Diesel Service',NULL,0),(573,'Home','/',0),(574,'Services','/services',0),(575,'Automotive Aftermarket','/services/automotive-aftermarket',0),(576,'Bosch Diesel Service',NULL,0),(613,'Home','/',0),(614,'Services','/services',0),(615,'Tyre','/services/tyre',0),(616,'Oil Change',NULL,0),(681,'Home','/',0),(682,'Services','/services',0),(683,'Power Tools','/services/power-tools',0),(684,'Spare Parts Service',NULL,0),(701,'Home','/',0),(702,'Services','/services',0),(703,'Power Tools','/services/power-tools',0),(704,'Callibration Service',NULL,0),(739,'Home','/',0),(740,'Services','/services',0),(741,'Tyre','/services/tyre',0),(742,' Battery Replacement',NULL,0),(811,'Discover','/tyres',0),(812,'Discover','/automotive-aftermarket',0),(813,'Discover','/power-tools',0),(814,'Discover','/services',0),(823,'Home','/',0),(824,'Services','/services',0),(825,'Tyre','/services/tyre',0),(826,'Break Pads',NULL,0),(843,'Home','/',0),(844,'Services','/services',0),(845,'Tyre','/services/tyre',0),(846,'Tyre Repair',NULL,0),(857,'Read about CME','/about-us',0),(858,'Visit Website','/en/about-us',0),(859,'Home','/',0),(860,'Services','/services',0),(861,'Tyre','/services/tyre',0),(862,' Battery Replacement',NULL,0),(863,'Home','/',0),(864,'Services','/services',0),(865,'Tyres','/services/tyres',0),(866,'AC Maintenance',NULL,0),(879,'Home','/',0),(880,'Services','/services',0),(881,'Tyre','/services/tyre',0),(882,'Nitrogen Inflation',NULL,0),(883,'Home','/',0),(884,'Services','/services',0),(885,'Tyre','/services/tyre',0),(886,'Oil Change',NULL,0),(891,'Home','/',0),(892,'Services','/services',0),(893,'Tyre','/services/tyre',0),(894,'Tyre Change and Balancing / Tyre Replacement',NULL,0),(895,'Home','/',0),(896,'Services','/services',0),(897,'Tyre','/services/tyre',0),(898,'Tyre Rotation',NULL,0),(899,'Home','/',0),(900,'Services','/services',0),(901,'Tyre','/services/tyre',0),(902,'Wheel Alilgnment',NULL,0),(907,'Home','/',0),(908,'Services','/services',0),(909,'Automotive Aftermarket','/services/automotive-aftermarket',0),(910,'Bosch Car Service',NULL,0),(911,'Home','/',0),(912,'Services','/services',0),(913,'Automotive Aftermarket','/services/automotive-aftermarket',0),(914,'Bosch Diesel Service',NULL,0),(915,'Home','/',0),(916,'Services','/services',0),(917,'Automotive Aftermarket','/services/automotive-aftermarket',0),(918,'Workshop Test Equipment Services',NULL,0),(927,'Home','/',0),(928,'Services','/services',0),(929,'Power Tools','/services/power-tools',0),(930,'Spare Parts Service',NULL,0),(931,'Home','/',0),(932,'Services','/services',0),(933,'Power Tools','/services/power-tools',0),(934,'Callibration Service',NULL,0);
/*!40000 ALTER TABLE `components_common_link_items` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `components_common_lists`
--

DROP TABLE IF EXISTS `components_common_lists`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `components_common_lists` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `item` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=59 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `components_common_lists`
--

LOCK TABLES `components_common_lists` WRITE;
/*!40000 ALTER TABLE `components_common_lists` DISABLE KEYS */;
INSERT INTO `components_common_lists` VALUES (3,'General Enquiry'),(4,'Request a Quote'),(29,'Product Information'),(30,'Service Booking'),(31,'Complaint / Support'),(54,'General Enquiry'),(55,'Request a Quote'),(56,'Product Information'),(57,'Service Booking'),(58,'Complaint / Support');
/*!40000 ALTER TABLE `components_common_lists` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `components_common_location_cards`
--

DROP TABLE IF EXISTS `components_common_location_cards`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `components_common_location_cards` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(255) DEFAULT NULL,
  `address` longtext,
  `embeded_map_url` longtext,
  `map_url` longtext,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `components_common_location_cards`
--

LOCK TABLES `components_common_location_cards` WRITE;
/*!40000 ALTER TABLE `components_common_location_cards` DISABLE KEYS */;
INSERT INTO `components_common_location_cards` VALUES (1,'CME – Dubai Branch','17, 14b Street, Al Quoz Industrial Area 2, Dubai - 26255','https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3929.0751182426834!2d76.36143617469948!3d10.010653990095298!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3b080d0134489a65%3A0x12902e6bd8824d01!2sWipro%20Limited!5e0!3m2!1sen!2sin!4v1765689571353!5m2!1sen!2sin','https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3929.0751182426834!2d76.36143617469948!3d10.010653990095298!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3b080d0134489a65%3A0x12902e6bd8824d01!2sWipro%20Limited!5e0!3m2!1sen!2sin!4v1765689571353!5m2!1sen!2sin'),(3,'Bosch Car Service – Bosch Diesel Service – Dubai','17, 14b Street, Al Quoz Industrial Area 2, Dubai - 26255','https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3929.0751182426834!2d76.36143617469948!3d10.010653990095298!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3b080d0134489a65%3A0x12902e6bd8824d01!2sWipro%20Limited!5e0!3m2!1sen!2sin!4v1765689571353!5m2!1sen!2sin','https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3929.0751182426834!2d76.36143617469948!3d10.010653990095298!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3b080d0134489a65%3A0x12902e6bd8824d01!2sWipro%20Limited!5e0!3m2!1sen!2sin!4v1765689571353!5m2!1sen!2sin'),(4,'CME – Dubai Branch','17, 14b Street, Al Quoz Industrial Area 2, Dubai - 26255','https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3929.0751182426834!2d76.36143617469948!3d10.010653990095298!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3b080d0134489a65%3A0x12902e6bd8824d01!2sWipro%20Limited!5e0!3m2!1sen!2sin!4v1765689571353!5m2!1sen!2sin','https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3929.0751182426834!2d76.36143617469948!3d10.010653990095298!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3b080d0134489a65%3A0x12902e6bd8824d01!2sWipro%20Limited!5e0!3m2!1sen!2sin!4v1765689571353!5m2!1sen!2sin'),(11,'CME – Dubai Branch','17, 14b Street, Al Quoz Industrial Area 2, Dubai - 26255','https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3929.0751182426834!2d76.36143617469948!3d10.010653990095298!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3b080d0134489a65%3A0x12902e6bd8824d01!2sWipro%20Limited!5e0!3m2!1sen!2sin!4v1765689571353!5m2!1sen!2sin','https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3929.0751182426834!2d76.36143617469948!3d10.010653990095298!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3b080d0134489a65%3A0x12902e6bd8824d01!2sWipro%20Limited!5e0!3m2!1sen!2sin!4v1765689571353!5m2!1sen!2sin'),(12,'Bosch Car Service – Bosch Diesel Service – Dubai','17, 14b Street, Al Quoz Industrial Area 2, Dubai - 26255','https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3929.0751182426834!2d76.36143617469948!3d10.010653990095298!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3b080d0134489a65%3A0x12902e6bd8824d01!2sWipro%20Limited!5e0!3m2!1sen!2sin!4v1765689571353!5m2!1sen!2sin','https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3929.0751182426834!2d76.36143617469948!3d10.010653990095298!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3b080d0134489a65%3A0x12902e6bd8824d01!2sWipro%20Limited!5e0!3m2!1sen!2sin!4v1765689571353!5m2!1sen!2sin'),(13,'CME – Dubai Branch','17, 14b Street, Al Quoz Industrial Area 2, Dubai - 26255','https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3929.0751182426834!2d76.36143617469948!3d10.010653990095298!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3b080d0134489a65%3A0x12902e6bd8824d01!2sWipro%20Limited!5e0!3m2!1sen!2sin!4v1765689571353!5m2!1sen!2sin','https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3929.0751182426834!2d76.36143617469948!3d10.010653990095298!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3b080d0134489a65%3A0x12902e6bd8824d01!2sWipro%20Limited!5e0!3m2!1sen!2sin!4v1765689571353!5m2!1sen!2sin');
/*!40000 ALTER TABLE `components_common_location_cards` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `components_common_location_cards_branch_location_lnk`
--

DROP TABLE IF EXISTS `components_common_location_cards_branch_location_lnk`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `components_common_location_cards_branch_location_lnk` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `location_card_id` int unsigned DEFAULT NULL,
  `branch_location_id` int unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `components_common_location_cards_branch_location_lnk_uq` (`location_card_id`,`branch_location_id`),
  KEY `components_common_location_cards_branch_location_lnk_fk` (`location_card_id`),
  KEY `components_common_location_cards_branch_locati6432b_ifk` (`branch_location_id`),
  CONSTRAINT `components_common_location_cards_branch_locati6432b_ifk` FOREIGN KEY (`branch_location_id`) REFERENCES `branch_locations` (`id`) ON DELETE CASCADE,
  CONSTRAINT `components_common_location_cards_branch_location_lnk_fk` FOREIGN KEY (`location_card_id`) REFERENCES `components_common_location_cards` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `components_common_location_cards_branch_location_lnk`
--

LOCK TABLES `components_common_location_cards_branch_location_lnk` WRITE;
/*!40000 ALTER TABLE `components_common_location_cards_branch_location_lnk` DISABLE KEYS */;
INSERT INTO `components_common_location_cards_branch_location_lnk` VALUES (1,1,1),(3,3,1),(4,4,4),(11,11,3),(12,12,3),(13,13,6);
/*!40000 ALTER TABLE `components_common_location_cards_branch_location_lnk` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `components_common_location_cards_cmps`
--

DROP TABLE IF EXISTS `components_common_location_cards_cmps`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `components_common_location_cards_cmps` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `entity_id` int unsigned DEFAULT NULL,
  `cmp_id` int unsigned DEFAULT NULL,
  `component_type` varchar(255) DEFAULT NULL,
  `field` varchar(255) DEFAULT NULL,
  `order` double unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `components_common_location_cards_uq` (`entity_id`,`cmp_id`,`field`,`component_type`),
  KEY `components_common_location_cards_field_idx` (`field`),
  KEY `components_common_location_cards_component_type_idx` (`component_type`),
  KEY `components_common_location_cards_entity_fk` (`entity_id`),
  CONSTRAINT `components_common_location_cards_entity_fk` FOREIGN KEY (`entity_id`) REFERENCES `components_common_location_cards` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `components_common_location_cards_cmps`
--

LOCK TABLES `components_common_location_cards_cmps` WRITE;
/*!40000 ALTER TABLE `components_common_location_cards_cmps` DISABLE KEYS */;
INSERT INTO `components_common_location_cards_cmps` VALUES (1,1,1,'common.phone','phoneNumbers',1),(3,3,3,'common.phone','phoneNumbers',1),(4,4,4,'common.phone','phoneNumbers',1),(18,11,71,'common.phone','phoneNumbers',1),(19,12,72,'common.phone','phoneNumbers',1),(20,13,73,'common.phone','phoneNumbers',1);
/*!40000 ALTER TABLE `components_common_location_cards_cmps` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `components_common_locations`
--

DROP TABLE IF EXISTS `components_common_locations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `components_common_locations` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `components_common_locations`
--

LOCK TABLES `components_common_locations` WRITE;
/*!40000 ALTER TABLE `components_common_locations` DISABLE KEYS */;
INSERT INTO `components_common_locations` VALUES (1,'Service Locations'),(5,'Service Locations');
/*!40000 ALTER TABLE `components_common_locations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `components_common_locations_cmps`
--

DROP TABLE IF EXISTS `components_common_locations_cmps`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `components_common_locations_cmps` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `entity_id` int unsigned DEFAULT NULL,
  `cmp_id` int unsigned DEFAULT NULL,
  `component_type` varchar(255) DEFAULT NULL,
  `field` varchar(255) DEFAULT NULL,
  `order` double unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `components_common_locations_uq` (`entity_id`,`cmp_id`,`field`,`component_type`),
  KEY `components_common_locations_field_idx` (`field`),
  KEY `components_common_locations_component_type_idx` (`component_type`),
  KEY `components_common_locations_entity_fk` (`entity_id`),
  CONSTRAINT `components_common_locations_entity_fk` FOREIGN KEY (`entity_id`) REFERENCES `components_common_locations` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `components_common_locations_cmps`
--

LOCK TABLES `components_common_locations_cmps` WRITE;
/*!40000 ALTER TABLE `components_common_locations_cmps` DISABLE KEYS */;
INSERT INTO `components_common_locations_cmps` VALUES (1,1,1,'common.location-card','items',1),(3,1,3,'common.location-card','items',2),(4,1,4,'common.location-card','items',3),(18,5,11,'common.location-card','items',1),(19,5,12,'common.location-card','items',2),(20,5,13,'common.location-card','items',3);
/*!40000 ALTER TABLE `components_common_locations_cmps` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `components_common_menu_item_w_services`
--

DROP TABLE IF EXISTS `components_common_menu_item_w_services`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `components_common_menu_item_w_services` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(255) DEFAULT NULL,
  `url` varchar(255) DEFAULT NULL,
  `content` longtext,
  `link_text` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `components_common_menu_item_w_services`
--

LOCK TABLES `components_common_menu_item_w_services` WRITE;
/*!40000 ALTER TABLE `components_common_menu_item_w_services` DISABLE KEYS */;
INSERT INTO `components_common_menu_item_w_services` VALUES (1,'Services','/services','<p>Delivering expert solutions across Automotive, Tyre, &amp; Power Tools Services.</p>','Explore Services'),(10,'Services','/services','<p>Delivering expert solutions across Automotive, Tyre, &amp; Power Tools Services.</p>','Explore Services');
/*!40000 ALTER TABLE `components_common_menu_item_w_services` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `components_common_menu_item_w_subs`
--

DROP TABLE IF EXISTS `components_common_menu_item_w_subs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `components_common_menu_item_w_subs` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(255) DEFAULT NULL,
  `url` varchar(255) DEFAULT NULL,
  `new_tab` tinyint(1) DEFAULT NULL,
  `is_active` tinyint(1) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=60 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `components_common_menu_item_w_subs`
--

LOCK TABLES `components_common_menu_item_w_subs` WRITE;
/*!40000 ALTER TABLE `components_common_menu_item_w_subs` DISABLE KEYS */;
INSERT INTO `components_common_menu_item_w_subs` VALUES (1,'Company',NULL,NULL,1),(2,'Divisions',NULL,NULL,1),(58,'Company',NULL,NULL,1),(59,'Divisions',NULL,NULL,1);
/*!40000 ALTER TABLE `components_common_menu_item_w_subs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `components_common_menu_item_w_subs_cmps`
--

DROP TABLE IF EXISTS `components_common_menu_item_w_subs_cmps`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `components_common_menu_item_w_subs_cmps` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `entity_id` int unsigned DEFAULT NULL,
  `cmp_id` int unsigned DEFAULT NULL,
  `component_type` varchar(255) DEFAULT NULL,
  `field` varchar(255) DEFAULT NULL,
  `order` double unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `components_common_menu_item_w_subs_uq` (`entity_id`,`cmp_id`,`field`,`component_type`),
  KEY `components_common_menu_item_w_subs_field_idx` (`field`),
  KEY `components_common_menu_item_w_subs_component_type_idx` (`component_type`),
  KEY `components_common_menu_item_w_subs_entity_fk` (`entity_id`),
  CONSTRAINT `components_common_menu_item_w_subs_entity_fk` FOREIGN KEY (`entity_id`) REFERENCES `components_common_menu_item_w_subs` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=369 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `components_common_menu_item_w_subs_cmps`
--

LOCK TABLES `components_common_menu_item_w_subs_cmps` WRITE;
/*!40000 ALTER TABLE `components_common_menu_item_w_subs_cmps` DISABLE KEYS */;
INSERT INTO `components_common_menu_item_w_subs_cmps` VALUES (1,1,13,'common.menu-item','submenu',1),(2,1,14,'common.menu-item','submenu',2),(3,1,15,'common.menu-item','submenu',3),(4,1,16,'common.menu-item','submenu',4),(5,2,17,'common.menu-item','submenu',2),(6,2,18,'common.menu-item','submenu',3),(7,2,19,'common.menu-item','submenu',1),(8,2,20,'common.menu-item','submenu',4),(361,58,308,'common.menu-item','submenu',1),(362,58,309,'common.menu-item','submenu',2),(363,58,310,'common.menu-item','submenu',3),(364,58,311,'common.menu-item','submenu',4),(365,59,312,'common.menu-item','submenu',1),(366,59,313,'common.menu-item','submenu',2),(367,59,314,'common.menu-item','submenu',3),(368,59,315,'common.menu-item','submenu',4);
/*!40000 ALTER TABLE `components_common_menu_item_w_subs_cmps` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `components_common_menu_items`
--

DROP TABLE IF EXISTS `components_common_menu_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `components_common_menu_items` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(255) DEFAULT NULL,
  `url` varchar(255) DEFAULT NULL,
  `new_tab` tinyint(1) DEFAULT NULL,
  `is_active` tinyint(1) DEFAULT NULL,
  `key` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=316 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `components_common_menu_items`
--

LOCK TABLES `components_common_menu_items` WRITE;
/*!40000 ALTER TABLE `components_common_menu_items` DISABLE KEYS */;
INSERT INTO `components_common_menu_items` VALUES (1,'About Us','/en/about-us',NULL,1,NULL),(6,'Locations','/en/locations',NULL,1,NULL),(7,'Contact Us','/en/contact-us',NULL,1,NULL),(11,'Privacy Policy',NULL,0,0,NULL),(12,'Terms','/en/terms-and-conditions',0,0,NULL),(13,'About Us','/en/about-us',NULL,1,NULL),(14,'Newsroom','/en/news',NULL,1,NULL),(15,'Locations','/en/locations',NULL,1,NULL),(16,'Contact Us','/en/contact-us',NULL,1,NULL),(17,'Automotive Aftermarket','/en/automotive-aftermarket',NULL,1,NULL),(18,'Power Tools','/en/power-tools',NULL,1,NULL),(19,'Tyres','/en/tyres',NULL,1,NULL),(20,'Services','/en/services',NULL,1,NULL),(202,'Automotive Aftermarket','/en/automotive-aftermarket',0,1,'automotive'),(203,'Power Tools','/en/power-tools',0,1,'power-tools'),(204,'Tyres','/en/tyres',0,1,'tyres'),(234,'Automotive Aftermarket','/en/automotive-aftermarket',0,1,'automotive'),(235,'Power Tools','/en/power-tools',0,1,'power-tools'),(236,'Tyres','/en/tyres',0,1,'tyres'),(237,'About Us','/en/about-us',NULL,1,NULL),(238,'Locations','/en/locations',NULL,1,NULL),(239,'Contact Us','/en/contact-us',NULL,1,NULL),(306,'Privacy Policy',NULL,0,0,NULL),(307,'Terms','/en/terms-and-conditions',0,0,NULL),(308,'About Us','/en/about-us',NULL,1,NULL),(309,'Newsroom','/en/news',NULL,1,NULL),(310,'Locations','/en/locations',NULL,1,NULL),(311,'Contact Us','/en/contact-us',NULL,1,NULL),(312,'Tyres','/en/tyres',NULL,1,NULL),(313,'Automotive Aftermarket','/en/automotive-aftermarket',NULL,1,NULL),(314,'Power Tools','/en/power-tools',NULL,1,NULL),(315,'Services','/en/services',NULL,1,NULL);
/*!40000 ALTER TABLE `components_common_menu_items` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `components_common_metas`
--

DROP TABLE IF EXISTS `components_common_metas`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `components_common_metas` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `content` longtext,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `components_common_metas`
--

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

--
-- Table structure for table `components_common_phones`
--

DROP TABLE IF EXISTS `components_common_phones`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `components_common_phones` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `phone` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=540 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `components_common_phones`
--

LOCK TABLES `components_common_phones` WRITE;
/*!40000 ALTER TABLE `components_common_phones` DISABLE KEYS */;
INSERT INTO `components_common_phones` VALUES (1,'+971 4 309 0900'),(3,'+971 4 309 0900'),(4,'+971 4 309 0900'),(11,'02 309 0904'),(18,'Tel: +971 43090930'),(20,'02-4017710'),(24,'Tel: +971 4 309 0900'),(26,'02-4017745'),(30,'04-309 0900'),(37,'04-3090911'),(40,' 02-4017765'),(41,'056-4123339'),(46,'06 5932777'),(71,'+971 4 309 0900'),(72,'+971 4 309 0900'),(73,'+971 4 309 0900'),(136,'02-4017753'),(138,'02-6819101'),(143,'02-4017775'),(144,'056-4123337'),(147,' 056-5384480 (Mobile Van Service)'),(150,' 056-4123338'),(157,'02 - 401 7708'),(158,' 056 998 1383'),(164,'02-4017753'),(166,'04 3090930'),(167,'04 3090920'),(174,'04 3090905'),(182,'04 3090905'),(183,' 04 3090930'),(184,' 04 309 0932'),(190,'02 - 401 7708'),(191,' 056 998 1383'),(194,'02-4017753'),(196,'06 5932777'),(240,'06 5932777'),(284,'02 - 401 7708'),(285,'056 998 1383'),(327,'Tel: +971 4 309 0900'),(422,'02-4017753'),(458,'04 3090905'),(509,'02 - 401 7708'),(510,'056 998 1383'),(511,'02-4017710'),(512,'02-4017745'),(513,'02-4017753'),(514,'02 309 0904'),(515,'06 5932777'),(516,'02-4017753'),(517,' 056-5384480 (Mobile Van Service)'),(518,'02-6819101'),(519,' 056-4123338'),(520,'02-4017775'),(521,'056-4123337'),(522,' 02-4017765'),(523,'056-4123339'),(524,'02 - 401 7708'),(525,' 056 998 1383'),(526,'02-4017753'),(527,'04 3090930'),(528,'04 3090920'),(529,'06 5932777'),(530,'04 3090905'),(531,'04-309 0900'),(532,'04-3090911'),(533,'02 - 401 7708'),(534,' 056 998 1383'),(535,'02-4017753'),(536,'04 3090905'),(537,' 04 3090930'),(538,' 04 309 0932'),(539,'06 5932777');
/*!40000 ALTER TABLE `components_common_phones` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `components_common_seos`
--

DROP TABLE IF EXISTS `components_common_seos`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `components_common_seos` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `meta_title` longtext,
  `meta_description` longtext,
  `prevent_indexing` tinyint(1) DEFAULT NULL,
  `keywords` longtext,
  `canonical_url` longtext,
  `meta_head` longtext,
  `word_description` longtext,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=174 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `components_common_seos`
--

LOCK TABLES `components_common_seos` WRITE;
/*!40000 ALTER TABLE `components_common_seos` DISABLE KEYS */;
INSERT INTO `components_common_seos` VALUES (1,'test','test',NULL,NULL,NULL,NULL,NULL),(3,'test','test',NULL,NULL,NULL,NULL,NULL),(4,'test','test',NULL,NULL,NULL,NULL,NULL),(5,'test','test',NULL,NULL,NULL,NULL,NULL),(6,'Alfahim - About Us','Alfahim - About Us',NULL,NULL,NULL,NULL,NULL),(8,'test','test',NULL,NULL,NULL,NULL,NULL),(9,'test','test',NULL,NULL,NULL,NULL,NULL),(10,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(11,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(12,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(13,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(14,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(15,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(18,'test','test',NULL,NULL,NULL,NULL,NULL),(20,'test','test',NULL,NULL,NULL,NULL,NULL),(22,'test','test',NULL,NULL,NULL,NULL,NULL),(24,'test','test',NULL,NULL,NULL,NULL,NULL),(25,'test','test',NULL,NULL,NULL,NULL,NULL),(26,'test','test',NULL,NULL,NULL,NULL,NULL),(34,'Alfahim - About Us','Alfahim - About Us',NULL,NULL,NULL,NULL,NULL),(35,'A HISTORIC MOMENT FOR CENTRAL MOTORS & & EQUIPMENT! & WE ARE BEYOND EXCITED TO SHARE TRULY E',NULL,NULL,NULL,NULL,NULL,NULL),(37,'A HISTORIC MOMENT FOR CENTRAL MOTORS & & EQUIPMENT! & WE ARE BEYOND EXCITED TO SHARE TRULY EXTRA ORDINARY NEWS!',NULL,NULL,NULL,NULL,NULL,NULL),(39,'Newsroom',NULL,NULL,NULL,NULL,NULL,NULL),(41,'Locations','location',NULL,NULL,NULL,NULL,NULL),(63,'Locations','location',NULL,NULL,NULL,NULL,NULL),(64,'About Us',NULL,NULL,NULL,NULL,NULL,NULL),(66,'Contact Us',NULL,NULL,NULL,NULL,NULL,NULL),(69,'Newsroom',NULL,NULL,NULL,NULL,NULL,NULL),(72,'Services',NULL,NULL,NULL,NULL,NULL,NULL),(73,'Services',NULL,NULL,NULL,NULL,NULL,NULL),(74,'Tyres',NULL,NULL,NULL,NULL,NULL,NULL),(76,'A HISTORIC MOMENT FOR CENTRAL MOTORS & & EQUIPMENT! & WE ARE BEYOND EXCITED TO SHARE TRULY E',NULL,NULL,NULL,NULL,NULL,NULL),(77,'A HISTORIC MOMENT FOR CENTRAL MOTORS & & EQUIPMENT! & WE ARE BEYOND EXCITED TO SHARE TRULY EXTRA ORDINARY NEWS!',NULL,NULL,NULL,NULL,NULL,NULL),(78,'Central Motors and Equipment proudly congratulates Fine Tools on the Grand Opening of their New Experience Center.',NULL,NULL,NULL,NULL,NULL,NULL),(79,'Central Motors and Equipment proudly congratulates Fine Tools on the Grand Opening of their New Experience Center.',NULL,NULL,NULL,NULL,NULL,NULL),(80,'CME Tyre Division- Michelin collaborated with EMC – Mercedes for Track Day Event',NULL,NULL,NULL,NULL,NULL,NULL),(81,'CME Tyre Division- Michelin collaborated with EMC – Mercedes for Track Day Event',NULL,NULL,NULL,NULL,NULL,NULL),(82,'MICHELIN GUIDE Abu Dhabi 2026 ceremony held in October 2025.',NULL,NULL,NULL,NULL,NULL,NULL),(83,'MICHELIN GUIDE Abu Dhabi 2026 ceremony held in October 2025.',NULL,NULL,NULL,NULL,NULL,NULL),(84,'Tyre Repair',NULL,NULL,NULL,NULL,NULL,NULL),(86,'Automotive Aftermarket',NULL,NULL,NULL,NULL,NULL,NULL),(88,'Central Motors Equipment (CME)',NULL,NULL,NULL,NULL,NULL,NULL),(90,'Power Tools Services',NULL,NULL,NULL,NULL,NULL,NULL),(93,'Automotive Aftermarket',NULL,NULL,NULL,NULL,NULL,NULL),(129,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(130,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(131,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(132,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(133,'Services',NULL,NULL,NULL,NULL,NULL,NULL),(134,'Services',NULL,NULL,NULL,NULL,NULL,NULL),(147,'Automotive Aftermarket',NULL,NULL,NULL,NULL,NULL,NULL),(151,'About Us',NULL,NULL,NULL,NULL,NULL,NULL),(157,'Power Tools Services',NULL,NULL,NULL,NULL,NULL,NULL),(158,'Tyre Repair',NULL,NULL,NULL,NULL,NULL,NULL),(159,'Contact Us',NULL,NULL,NULL,NULL,NULL,NULL),(163,'Central Motors Equipment (CME)',NULL,NULL,NULL,NULL,NULL,NULL),(164,'Automotive Aftermarket',NULL,NULL,NULL,NULL,NULL,NULL),(166,'Terms & Conditions  ','Terms & Conditions  ',NULL,NULL,NULL,NULL,NULL),(168,'Privacy Policy','Privacy Policy',NULL,NULL,NULL,NULL,NULL),(172,'Tyres',NULL,NULL,NULL,NULL,NULL,NULL),(173,'Terms & Conditions  ','Terms & Conditions  ',NULL,NULL,NULL,NULL,NULL);
/*!40000 ALTER TABLE `components_common_seos` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `components_common_seos_cmps`
--

DROP TABLE IF EXISTS `components_common_seos_cmps`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `components_common_seos_cmps` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `entity_id` int unsigned DEFAULT NULL,
  `cmp_id` int unsigned DEFAULT NULL,
  `component_type` varchar(255) DEFAULT NULL,
  `field` varchar(255) DEFAULT NULL,
  `order` double unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `components_common_seos_uq` (`entity_id`,`cmp_id`,`field`,`component_type`),
  KEY `components_common_seos_field_idx` (`field`),
  KEY `components_common_seos_component_type_idx` (`component_type`),
  KEY `components_common_seos_entity_fk` (`entity_id`),
  CONSTRAINT `components_common_seos_entity_fk` FOREIGN KEY (`entity_id`) REFERENCES `components_common_seos` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `components_common_seos_cmps`
--

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

--
-- Table structure for table `components_common_social_links`
--

DROP TABLE IF EXISTS `components_common_social_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `components_common_social_links` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(255) DEFAULT NULL,
  `link` varchar(255) DEFAULT NULL,
  `is_active` tinyint(1) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=91 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `components_common_social_links`
--

LOCK TABLES `components_common_social_links` WRITE;
/*!40000 ALTER TABLE `components_common_social_links` DISABLE KEYS */;
INSERT INTO `components_common_social_links` VALUES (1,'Facebook','https://www.facebook.com/ALFAHIMCME',1),(4,'Linkedin',' https://www.linkedin.com/company/central-motors-&-equipment',1),(5,NULL,NULL,0),(6,'Instagram','https://www.instagram.com/centralmotorsandequipment/ ',1),(87,'Facebook','https://www.facebook.com/ALFAHIMCME',1),(88,'Linkedin',' https://www.linkedin.com/company/central-motors-&-equipment',1),(89,NULL,NULL,0),(90,'Instagram','https://www.instagram.com/centralmotorsandequipment/ ',1);
/*!40000 ALTER TABLE `components_common_social_links` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `components_common_tags`
--

DROP TABLE IF EXISTS `components_common_tags`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `components_common_tags` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(255) DEFAULT NULL,
  `key` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=300 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `components_common_tags`
--

LOCK TABLES `components_common_tags` WRITE;
/*!40000 ALTER TABLE `components_common_tags` DISABLE KEYS */;
INSERT INTO `components_common_tags` VALUES (1,'Commercial Vehicles','Commercial-Vehicles'),(2,'Passenger Cars','Passenger-Cars'),(5,'Trade','Trade'),(6,'Projects','Projects'),(7,'Retail','Retail'),(8,'Commercial Vehicles','Commercial-Vehicles'),(9,'Passenger Cars','Passenger-Cars'),(24,'Tyreplus Network','Tyreplus-Network'),(25,'Bosch Car Services','Bosch-Car-Services'),(71,'Industrial Segments','Industrial-Segments'),(72,'Workshop Test Equipment','Workshop-Test-Equipment'),(73,'Service Concepts Franchiser','Service-Concepts-Franchiser'),(74,'Technical Support','Technical-Support'),(75,'Trainings','Trainings'),(90,'Aftersales','Aftersales'),(106,'Military segments','Military-segments'),(107,'Industrial operations','Industrial-operations'),(108,'Fitment Centers','Fitment-Centers'),(109,'Fleet Services','Fleet-Services'),(110,'Service Concepts Franchiser','Service-Concepts-Franchiser'),(131,'Bosch Diesel Services','Bosch-Diesel-Services'),(279,'Commercial Vehicles','Commercial-Vehicles'),(280,'Passenger Cars','Passenger-Cars'),(281,'Military segments','Military-segments'),(282,'Industrial operations','Industrial-operations'),(283,'Fitment Centers','Fitment-Centers'),(284,'Fleet Services','Fleet-Services'),(285,'Service Concepts Franchiser','Service-Concepts-Franchiser'),(286,'Commercial Vehicles','Commercial-Vehicles'),(287,'Passenger Cars','Passenger-Cars'),(288,'Industrial Segments','Industrial-Segments'),(289,'Workshop Test Equipment','Workshop-Test-Equipment'),(290,'Service Concepts Franchiser','Service-Concepts-Franchiser'),(291,'Technical Support','Technical-Support'),(292,'Trainings','Trainings'),(293,'Trade','Trade'),(294,'Projects','Projects'),(295,'Retail','Retail'),(296,'Aftersales','Aftersales'),(297,'Tyreplus Network','Tyreplus-Network'),(298,'Bosch Car Services','Bosch-Car-Services'),(299,'Bosch Diesel Services','Bosch-Diesel-Services');
/*!40000 ALTER TABLE `components_common_tags` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `components_common_title_desc_btn_imgs`
--

DROP TABLE IF EXISTS `components_common_title_desc_btn_imgs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `components_common_title_desc_btn_imgs` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(255) DEFAULT NULL,
  `description` longtext,
  `image_position` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=80 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `components_common_title_desc_btn_imgs`
--

LOCK TABLES `components_common_title_desc_btn_imgs` WRITE;
/*!40000 ALTER TABLE `components_common_title_desc_btn_imgs` DISABLE KEYS */;
INSERT INTO `components_common_title_desc_btn_imgs` VALUES (1,'Automotive Aftermarket','<p>Automotive Aftermarket (AA) synonym of “Complete solutions”, representing Bosch Automotive, Osram, Knorr-Bremse, Valeo, Cyclo, ASNU and many more, operates in the following channels to cater to the specific requirements of the clients to exceed always customer expectations:</p>','right'),(7,'Power Tools','<p>Famous for empowering with governor represents brands such as Bosch and Dremel and nationwide through its state of the art after-sales service network. In order to cater the diversified need of the cliental, it operates through following channels:</p>','left'),(8,'Tyres','<p>Tyres division offers wide range of tyres in the capital of United Arab Emirates, representing world renowned brands i.e. Michelin, Tyreplus and BFGoodrich in the following:</p>','left'),(15,'Services','<p>Known for service excellence and always exceeding customer expectations, Services Division is engaged in catering to the dynamic needs of the automotive service industry with its years of experience through its facilities in both Abu Dhabi and Dubai under the following franchisee :</p>','right'),(76,'Tyres','<p>Tyres division offers wide range of tyres in the capital of United Arab Emirates, representing world renowned brands i.e. Michelin, Tyreplus and BFGoodrich in the following:</p>','left'),(77,'Automotive Aftermarket','<p>Automotive Aftermarket (AA) synonym of “Complete solutions”, representing Bosch Automotive, Osram, Knorr-Bremse, Valeo, Cyclo, ASNU and many more, operates in the following channels to cater to the specific requirements of the clients to exceed always customer expectations:</p>','right'),(78,'Power Tools','<p>Famous for empowering with governor represents brands such as Bosch and Dremel and nationwide through its state of the art after-sales service network. In order to cater the diversified need of the cliental, it operates through following channels:</p>','left'),(79,'Services','<p>Known for service excellence and always exceeding customer expectations, Services Division is engaged in catering to the dynamic needs of the automotive service industry with its years of experience through its facilities in both Abu Dhabi and Dubai under the following franchisee :</p>','right');
/*!40000 ALTER TABLE `components_common_title_desc_btn_imgs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `components_common_title_desc_btn_imgs_cmps`
--

DROP TABLE IF EXISTS `components_common_title_desc_btn_imgs_cmps`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `components_common_title_desc_btn_imgs_cmps` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `entity_id` int unsigned DEFAULT NULL,
  `cmp_id` int unsigned DEFAULT NULL,
  `component_type` varchar(255) DEFAULT NULL,
  `field` varchar(255) DEFAULT NULL,
  `order` double unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `components_common_title_desc_btn_imgs_uq` (`entity_id`,`cmp_id`,`field`,`component_type`),
  KEY `components_common_title_desc_btn_imgs_field_idx` (`field`),
  KEY `components_common_title_desc_btfd575_component_type_idx` (`component_type`),
  KEY `components_common_title_desc_btn_imgs_entity_fk` (`entity_id`),
  CONSTRAINT `components_common_title_desc_btn_imgs_entity_fk` FOREIGN KEY (`entity_id`) REFERENCES `components_common_title_desc_btn_imgs` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=699 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `components_common_title_desc_btn_imgs_cmps`
--

LOCK TABLES `components_common_title_desc_btn_imgs_cmps` WRITE;
/*!40000 ALTER TABLE `components_common_title_desc_btn_imgs_cmps` DISABLE KEYS */;
INSERT INTO `components_common_title_desc_btn_imgs_cmps` VALUES (1,1,1,'common.tag','tags',1),(2,1,2,'common.tag','tags',2),(3,1,11,'common.link-item','button',1),(7,7,5,'common.tag','tags',1),(8,7,6,'common.tag','tags',2),(9,7,7,'common.tag','tags',4),(10,8,8,'common.tag','tags',1),(11,8,9,'common.tag','tags',2),(12,7,13,'common.link-item','button',1),(13,8,14,'common.link-item','button',1),(47,15,24,'common.tag','tags',2),(48,15,25,'common.tag','tags',3),(49,15,21,'common.link-item','button',1),(177,1,71,'common.tag','tags',4),(178,1,72,'common.tag','tags',5),(179,1,73,'common.tag','tags',6),(180,1,74,'common.tag','tags',7),(181,1,75,'common.tag','tags',8),(220,7,90,'common.tag','tags',5),(262,8,106,'common.tag','tags',4),(263,8,107,'common.tag','tags',5),(264,8,108,'common.tag','tags',6),(265,8,109,'common.tag','tags',7),(266,8,110,'common.tag','tags',8),(317,15,131,'common.tag','tags',4),(674,76,279,'common.tag','tags',1),(675,76,280,'common.tag','tags',2),(676,76,281,'common.tag','tags',3),(677,76,282,'common.tag','tags',4),(678,76,283,'common.tag','tags',5),(679,76,284,'common.tag','tags',6),(680,76,285,'common.tag','tags',7),(681,77,286,'common.tag','tags',1),(682,77,287,'common.tag','tags',2),(683,77,288,'common.tag','tags',3),(684,77,289,'common.tag','tags',4),(685,77,290,'common.tag','tags',5),(686,77,291,'common.tag','tags',6),(687,77,292,'common.tag','tags',7),(688,78,293,'common.tag','tags',1),(689,78,294,'common.tag','tags',2),(690,78,295,'common.tag','tags',3),(691,78,296,'common.tag','tags',4),(692,79,297,'common.tag','tags',1),(693,79,298,'common.tag','tags',2),(694,79,299,'common.tag','tags',3),(695,76,811,'common.link-item','button',1),(696,77,812,'common.link-item','button',1),(697,78,813,'common.link-item','button',1),(698,79,814,'common.link-item','button',1);
/*!40000 ALTER TABLE `components_common_title_desc_btn_imgs_cmps` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `components_common_title_desc_img_positions`
--

DROP TABLE IF EXISTS `components_common_title_desc_img_positions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `components_common_title_desc_img_positions` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(255) DEFAULT NULL,
  `description` longtext,
  `image_position` varchar(255) DEFAULT NULL,
  `show_image_border_radius` tinyint(1) DEFAULT NULL,
  `custom_img_class` varchar(255) DEFAULT NULL,
  `custom_img_parent_class` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=469 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `components_common_title_desc_img_positions`
--

LOCK TABLES `components_common_title_desc_img_positions` WRITE;
/*!40000 ALTER TABLE `components_common_title_desc_img_positions` DISABLE KEYS */;
INSERT INTO `components_common_title_desc_img_positions` VALUES (1,NULL,'<p>A flat tyre has the potential to completely disrupt your day, however, it doesn\'t necessarily mean you\'ll be stuck off the road for an extended period! Our tyre repair services are designed to be swift, budget-friendly, and reliable, ensuring you\'re back on track in no time.</p><p>Maintaining properly inflated and intact tyres is crucial for optimal vehicle performance, which is why prompt tyre puncture repairs are essential at the first sign of trouble, such as bubbles or other issues. Given the significant cost of tyres, frequent replacements can be a considerable expense, but rest assured, we\'re here to provide comprehensive solutions for all your tyre-related problems. Whether you\'re dealing with a puncture, a flat tyre, or a slow leak, our skilled technicians are equipped to offer effective solutions that\'ll have you back driving safely and efficiently</p>','left',1,NULL,NULL),(19,'What To Expect in a Tyre Repair?','<p>It may be tempting to Google, “how to repair tyre puncture” and try to fix your bad tyre(s) yourself. However, unless know a lot about car mechanics, don’t do it! Take your car to a repair shop. But you should not search for a shop doing “tyre puncture repair near me or tyre repair near me online.” Take your car to CME TyrePlus for tyre servicing. Our technicians are professional.</p><p>We will look at your tyres to see if they can repair them. We can repair them if the damage is within the repairable puncture area. The affected area must also be ¼ of an inch in diameter or less and the damaged area is isolated. If we can repair it, we will follow these steps:</p><ul><li>Remove the tyre from the rim.</li><li>Inspect the entire tyre.</li><li>Trim and stabilize damaged cables.</li><li>Seal and patch the puncture.</li><li>Buff the puncture area from inside the tyre.</li><li>Put a vulcanizing glue on the affected area.</li><li>Patch the puncture area’s inner lining - A chemical reaction will occur immediately after the patch is placed which will permanently suture the patch to the affected area’s inner lining</li><li>Re-mount and inflate the tyre.</li><li>Check for leaks.</li></ul>','left',1,NULL,NULL),(59,NULL,'<h3>Tyre Rotation Process</h3><ul><li><strong>Visual Inspection:</strong> Checking for damage, foreign objects, and wear patterns</li><li><strong>Pressure Check:</strong> Adjusting pressures to manufacturer specs</li><li>Professional Rotation: Rotating tyres according to your vehicle\'s drive type</li><li>Torque Specification: Tightening wheel nuts to exact specs</li><li>Final Balance Check: Ensuring tyres are properly balanced post-rotation</li><li>Maintenance Record: Documenting your service for warranty and tracking</li></ul><h3>Tyre Rotation Patterns We Use</h3><p><strong>Different vehicles require different rotation patterns. Our technicians select the appropriate method based on your vehicle\'s drive system and tyre type:</strong></p><ul><li>Forward Cross (Front-Wheel Drive)</li><li>Rearward Cross (Rear-Wheel and 4x4 Vehicles)</li><li>X-Pattern (All-Wheel Drive)</li><li>Side-to-Side (Directional Tyres)<br>&nbsp;</li></ul>','left',1,NULL,NULL),(77,'CENTRAL MOTORS & EQUIPMENT','<p>Many people think that the easiest place to go is the nearest manufacturer’s dealership. CM&amp;E Bosch Car Service workshops are a real alternative, offering quality, affordable servicing, and fitting manufacturer quality parts.</p><p>The headache of finding a good workshop is removed with the national network of CM&amp;E Bosch Car Service workshops:</p><p>Use the workshop locator to find the workshop nearest to you.<br>Have the peace of mind that all CM&amp;E Bosch workshops employ experienced, qualified technicians with the right diagnostic equipment to find and correct faults, cost-effectively. &nbsp;<br>A ‘cheap’ workshop is not a guarantee of value for money in the long run. They often keep their prices down by fitting cheap parts, which may wear out or fail sooner. At CM&amp;E Bosch Car Services, the Bosch parts fitted are made to the same specification as those that we make for car manufacturers.<br>Modern cars are highly sophisticated and a significant proportion of the manufacturing costs go into the electronics and computers. As CM&amp;E Bosch Car Service workshops all have up to date diagnostic equipment, they will be able to diagnose any faults quickly and accurately, getting it right the first time.<br>All CM&amp;E Bosch Car Service workshops are established, independent workshops that we audit annually to ensure that they continue to meet the high standards that we expect.</p>','right',1,NULL,NULL),(81,'Diagnostics from Bosch','<p>Workshop solutions for the future. For professional service on modern vehicles, Bosch provides test and workshop equipment, software and expertise perfectly coordinated from a single source.</p><ul><li>ECU Diagnostic Tools</li><li>ESI[tronic] Diagnostic Software</li><li>Air Conditioning Service</li><li>Battery Service</li><li>Test Benches and Tools</li><li>Calibration of Advanced Driver Assistance Systems</li><li>Emissions Inspections</li><li>Vehicle Systems Analyzers</li><li>Bosch Augmented Reality</li><li>Bosch Connected Repair<br>&nbsp;</li></ul>','left',1,NULL,NULL),(98,'Technical services from industry experts','<p>A wide range of services, partners of the Bosch network can benefit from access to all of Bosch’s knowledge, technological expertise and comprehensive practical experience from decades of workshop support.&nbsp;</p><p>What we offer:</p><ul><li>Service Training</li><li>Technical Support</li><li>Equipment Service</li></ul>','right',1,NULL,NULL),(116,NULL,'<p>Central Motors &amp; Equipment brings the latest state-of-the-art workshop equipment services</p><ul><li>Software</li><li>ECU Diagnostics</li><li>Diagnostic Control Units</li><li>Vehicle System Analyzers</li><li>Battery Service Equipment</li><li>On board Diagnosis</li><li>Air Conditioning Service</li><li>Tyre Changing Equipment</li><li>Wheel Balancing Equipment</li><li>Wheel Alignments</li><li>Nitrogen Inflators</li><li>Emission Analyzers</li><li>Vehicle Inspection Lanes</li><li>Diesel Component Calibration</li><li>Tools &amp; Testers</li></ul>','right',1,NULL,NULL),(133,NULL,'<p>Having your car reliable when you need it isn\'t just a convenience – it\'s a necessity, especially in our scorching summers where temps soar above 50 degrees Celsius. This extreme heat takes a toll on your car brakes, wearing them out faster. That\'s where CME comes in – our premium brake pad services are specifically designed to withstand the harsh UAE climate and road conditions. We\'ll not only get you back on the road but also extend your vehicle\'s lifespan with top-quality components. Ditching the \"brake repair near me\" search? Come to CME – we\'ve built a solid reputation for giving cars the care they deserve.</p>','left',1,NULL,NULL),(153,NULL,'<p>If your vehicle pulls to one side, has uneven tyre wear, or vibrations while driving, it might be an alignment issue. At CME, our expert technicians use advanced equipment to adjust your wheels to manufacturer specs, ensuring smooth and safe driving. Our wheel alignment services across the Abu Dhabi, help improve driving efficiency and safety, extend tyre life, and enhance overall vehicle performance. Book your appointment with CME today!</p>','left',1,NULL,NULL),(159,'Why Your Car Benefits From Routine Brake Pads Repair Services','<p>Keep your ride safe and smooth with regular brake repairs. Here\'s what you get:</p><ol><li><strong>Better Fuel Efficiency:</strong> Optimal brake pads = less fuel wasted = more savings</li><li><strong>Less Frequent Replacements:</strong> Quality parts = longer lifespan = less money spent on repairs</li><li><strong>Higher Car Value:</strong> Regular maintenance = more value when you sell</li><li><strong>Quieter Rides:</strong> No more squealing brakes = more peaceful drives</li><li><strong>Pass Inspections with Ease:</strong> Stay on top of annual checks with a well-maintained brake system.</li></ol>','left',1,NULL,NULL),(171,'Why Your Car Benefits From Routine Brake Pads Repair Services','<p>Keep your ride safe and smooth with regular brake repairs. Here\'s what you get:</p><ol><li><strong>Better Fuel Efficiency:</strong> Optimal brake pads = less fuel wasted = more savings</li><li><strong>Less Frequent Replacements: </strong>Quality parts = longer lifespan = less money spent on repairs</li><li><strong>Higher Car Value: </strong>Regular maintenance = more value when you sell</li><li><strong>Quieter Rides:</strong> No more squealing brakes = more peaceful drives</li><li><strong>Pass Inspections with Ease:</strong> Stay on top of annual checks with a well-maintained brake system.</li></ol>','right',1,NULL,NULL),(175,'Why Choose CME for Tyre Repairing?','<p>For Tyre Repairing or any sort of tyre and car-related services you can count on our skilled technicians. We have the best experts in the industry to execute safe and long-lasting repairs. Any damages are assessed by us to determine if repairs are okay or if replacement methods are required.</p><p><strong>Advanced Equipment: </strong>Using state-of-the-art equipment, we execute a quick repair of every tyre puncture so that your tyres can perform at their best. Many Locations Across Abu Dhabi, UAE and with mobile tyre repair options, we\'re always near you. Whether you are stuck on the road or need a quick fix at home, we can be there.</p><p><strong>Affordable and Transparent Pricing: </strong>Tyre repair terms don\'t have to be expensive. Since TyrePlus asks for reasonable prices, you\'ll be sure that our tyre repair services in Dubai will give you excellent value for your money.</p><p><strong>Wide Range of Services: </strong>Apart from tyre repairing, we provide tyre replacement, wheel balancing, and alignment services, all to maintain your vehicle\'s good condition.</p><p><strong>Mobile Tyre Repairs:</strong> Can\'t reach the workshop? Not to worry! Our mobile car service brings tyre puncture repair to wherever you are, be it at home, in the office, or on the roadside.</p>','right',1,NULL,NULL),(179,NULL,'<p>Oil is the lifeblood of your car\'s engine, playing a crucial role in its performance and longevity. It lubricates engine parts, reduces friction, and helps dissipate heat, ensuring smooth operation. Over time, oil gets contaminated and loses its effectiveness, leading to increased wear and tear on the engine. If left unchecked, this can cause parts to score, resulting in costly repairs. Regular oil changes are essential to prevent this, keeping your engine healthy and running smoothly. Our oil change service uses top-quality oils and filters, meeting or exceeding manufacturer specs, to give your car the best care.</p>','left',1,NULL,NULL),(180,'Why Choose CME for Oil Change?','<p>At CME, we know regular oil changes are crucial for your vehicle\'s health. Here\'s why we\'re the top choice for oil change services in the UAE:</p><ul><li>Multi-Brand Engine Oil Options: Top-quality oils from trusted brands like Castrol and Mobil, tailored to your engine\'s needs</li><li>Expert Technicians: Highly trained team providing best-in-class oil change services</li><li>Convenient Locations: Multiple service centers across the UAE, in Dubai, Sharjah, and more</li><li>State-of-the-Art Equipment: Latest tools and tech for accurate, quick oil changes and engine health checks</li><li>Genuine and High-Quality Oil: Premium engine oil for peak performance</li><li>Fast and Efficient Service: Quick turnaround times to fit your busy schedule</li><li>Affordable and Transparent Pricing: Competitive prices with special offers on oil change services</li></ul>','left',1,NULL,NULL),(183,'What Our Wheel Alignment Service Includes ','<p>At CME, our wheel alignment service includes:</p><ul><li><strong>General Inspection:</strong> We use advanced equipment to check your vehicle\'s alignment and identify potential issues affecting handling or tyre wear.</li><li><strong>Precision Alignment: </strong>We adjust the wheel angles to match your manufacturer\'s specs for optimal performance.</li><li><strong>Tire Rotation:</strong> We rotate your tyres to ensure even wear and extend their lifespan.</li><li><strong>Alignment Report:</strong> You\'ll receive a detailed report outlining the condition of your wheels and the adjustments made.</li></ul>','left',1,NULL,NULL),(184,'Why choose TyrePlus for your wheel alignment services','<p>CME emphasizes the importance of correct wheel alignment for optimal vehicle performance. Our well-trained technicians use state-of-the-art equipment to deliver precise alignments for various vehicle types, ensuring optimal performance. We offer competitive rates across the UAE, with transparent pricing and no hidden charges. Our services include:</p><p><strong>Specialist Personnel:</strong> CME employs qualified technicians whose expertise allows them to carry out accurate wheel alignments of all types of vehicles and therefore deliver optimal performance.</p><p><strong>State-of-the-Art Equipment:</strong> We service vehicles using the latest alignment technology and diagnostic tools, assuring you wheel alignment with precise specifications from the manufacturer.</p><p><strong>Competitive Prices:</strong> Our wheel alignment charges are kept to a minimum without compromising the quality of the service. We\'ve taken care of hidden costs.</p><p><strong>Convenience and Accessibility:</strong> CME has several service centers in major location of Abu Dhabi making it convenient to the customer for better service.</p>','right',1,NULL,NULL),(242,'What is Nitrogen Tyre Inflation?','<p>Tyre inflation is undoubtedly a key element in ensuring tyre longevity. The pressure recommended by the manufacturers is different for each vehicle and must be scrupulously respected for your safety. But did you know that to reach the right pressure level, your tyres can be inflated with either air or nitrogen ?&nbsp;</p><p>Nitrogen tyre inflation uses pure nitrogen gas (typically 95-99% pure) instead of regular compressed air to fill your tyres. Unlike compressed air, which contains approximately 78% nitrogen, 21% oxygen, and trace amounts of water vapor and other gases, pure nitrogen inflation eliminates oxygen and moisture from inside your tyres. This seemingly simple change delivers measurable benefits for your vehicle\'s performance and safety.</p>','left',1,NULL,NULL),(243,'Our Nitrogen Inflation Process','<ul><li><strong>Complete Deflation and Purging:</strong> We fully deflate your current tyres and purge all existing air and moisture from the system.</li><li><strong>High-Purity Nitrogen Fill:</strong> Your tyres are refilled with high-purity nitrogen to your vehicle manufacturer\'s recommended pressure specifications.</li><li><strong>Pressure Verification:</strong> Each tyre receives a pressure check using calibrated gauges to ensure accuracy.</li><li><strong>Identification Markers:</strong> We apply nitrogen valve cap indicators to identify nitrogen-filled tyres for future reference.</li><li><strong>Service Documentation:</strong> You receive complete documentation of your service and recommendations for maintenance intervals<br>&nbsp;</li></ul>','left',1,NULL,NULL),(259,'Signs Your AC Needs Service','<ol><li>Weak or Warm Airflow</li><li>Unusual Noises</li><li>Unpleasant Odors</li><li>Water Leaks Inside the Cabin</li><li>Reduced Cooling Over Time</li><li>AC Takes Longer to Cool</li><li>Visible Refrigerant Leaks</li><li>Dashboard Warning Lights</li></ol>','left',1,NULL,NULL),(267,'What is the tyre change process ?','<p>A tyre change involves replacing a worn or damaged tyre with a new one. Our technicians will remove the old tyre, inspect the rim, and mount a new tyre using specialized equipment, ensuring a safe and smooth ride.</p>','left',1,NULL,NULL),(270,'What is the wheel balancing process ?','<p>Tyre balancing is a precision process that ensures the tyre-wheel assembly is evenly weighted. We use a certified balancing machine to attach small counterweights, eliminating heavy spots that cause vibration, uneven wear, and reduced fuel efficiency. This improves handling, extends tyre life, and enhances safety. Proper balancing prevents premature wear, reduces accident risk, and gives you a smoother, quieter ride. Combined with tyre changes, balancing delivers a safer, more economical driving experience.</p>','left',1,NULL,NULL),(281,'How Often do you Need to Change Tyres?','<ul><li>Replace tyres before they wear out, especially in Middle Eastern heat</li><li>Check tread, damage, and punctures regularly; replace if below 1.6 mm</li><li>Inspect tyres annually after five years; check manufacturing date for age</li><li>Replace all four tyres at once, or put two new ones on the rear axle</li><li>Use professional advice from CME to choose the right tyres</li></ul><p>Tyres are very important as they greatly affect how the car accelerates, handles, and brakes. As the tyres become old and start wearing out they start losing their performance in certain areas. It’s right before this that you need to start looking to invest in a new set of tyres. In a region like the Middle East, the extreme heat of summer can expose the fragility of&nbsp;worn old tyres making them extra prone to blowouts. It is, therefore, important to know when it’s the right time to change your tyres. Read on to know more about how often you need to change tyres, how long do tyres last and much more.</p>','left',1,NULL,NULL),(299,NULL,'<p><img src=\"https://d1i031whgqu7f4.cloudfront.net/image_602_eb6dce2f14.png\" alt=\"image 602.png\" width=\"134\" height=\"75\"></p><p>A wide range of services, partners of the Bosch network can benefit from access to all of Bosch’s knowledge, technological expertise and comprehensive practical experience from decades of workshop support. What we offer:</p>','left',1,NULL,NULL),(302,NULL,'<p><img src=\"https://d1i031whgqu7f4.cloudfront.net/image_602_eb6dce2f14.png\" alt=\"image 602.png\" width=\"134\" height=\"75\"></p><p>A wide range of services, partners of the Bosch network can benefit from access to all of Bosch’s knowledge, technological expertise and comprehensive practical experience from decades of workshop support. What we offer:</p>','left',1,NULL,NULL),(303,NULL,'<p><img src=\"https://d1i031whgqu7f4.cloudfront.net/image_602_eb6dce2f14.png\" alt=\"image 602.png\" width=\"134\" height=\"75\"></p><p>A wide range of services, partners of the Bosch network can benefit from access to all of Bosch’s knowledge, technological expertise and comprehensive practical experience from decades of workshop support. What we offer:</p>','left',1,NULL,NULL),(349,'Choosing Car Tyres - How to Do it Right?','<ul><li>UAE heat and terrain need high-quality, heat-resistant tyres</li><li>Match tyres to driving style, car type, and road conditions</li><li>Regular maintenance like tyre inflation checks and alignment extends tyre life</li><li>Choose quality over price to avoid poor performance</li></ul>','right',1,NULL,NULL),(350,'Know the Difference between Wheel Alignment and Wheel Balancing','<ul><li>Wheel alignment adjusts suspension to ensure optimal tyre positioning, improving handling and tyre life.</li><li>Wheel balancing ensures even weight distribution, reducing vibrations for a smoother ride.</li><li>Misalignment causes pulling to one side and uneven tyre wear; imbalance leads to vibrations.</li><li>Regular checks enhance safety, extend tyre life, and improve fuel efficiency.</li><li>Costs vary, but regular maintenance prevents expensive repairs.</li></ul><p>Visit&nbsp;TYREPLUS&nbsp;for professional alignment and balancing services.</p>','left',1,NULL,NULL),(386,NULL,'<p>Dead battery got you stuck? &nbsp;Need a reliable car battery replacement in the UAE? CME TyrePlushas you covered! We offer fast, affordable, and top-notch battery replacement services across Dubai, Abu Dhabi, and the UAE. Our pros will come to you –whether you\'re at home, work, or stranded. Get back on the road pronto!</p>','left',1,NULL,NULL),(387,'Why Choose CME for Car Battery Replacement','<p data-pm-slice=\"0 0 []\">With years of experience in the industry, CME is a trusted name when it comes to car battery replacement services or any other services related to car maintenance. Here’s why our customers choose us and keep coming back to us:</p><p><strong>Fast &amp; Reliable Service:</strong> We understand how important it is to get your vehicle back on the road quickly. Our team works quickly, but never compromises on the quality of service.</p><p><strong>Certified Technicians:</strong> Our technicians are certified and have extensive experience with all types of car batteries, ensuring the replacement is done correctly and efficiently.</p><p><strong>Convenient Location-Based Service:</strong> We provide car battery replacement in Dubai, Abu Dhabi, and throughout the UAE. Wherever you are, we are just a call &nbsp; &nbsp; &nbsp; &nbsp;away.</p><p><strong>Wide Range of Batteries:</strong> We offer an extensive selection of car batteries suitable for various vehicle models and needs, from budget-friendly options to premium brands.</p>','left',1,NULL,NULL),(421,NULL,'<p>Having your car reliable when you need it isn\'t just a convenience – it\'s a necessity, especially in our scorching summers where temps soar above 50 degrees Celsius. This extreme heat takes a toll on your car brakes, wearing them out faster. That\'s where CME comes in – our premium brake pad services are specifically designed to withstand the harsh UAE climate and road conditions. We\'ll not only get you back on the road but also extend your vehicle\'s lifespan with top-quality components. Ditching the \"brake repair near me\" search? Come to CME – we\'ve built a solid reputation for giving cars the care they deserve.</p>','left',1,NULL,NULL),(422,'Why Your Car Benefits From Routine Brake Pads Repair Services','<p>Keep your ride safe and smooth with regular brake repairs. Here\'s what you get:</p><ol><li><strong>Better Fuel Efficiency:</strong> Optimal brake pads = less fuel wasted = more savings</li><li><strong>Less Frequent Replacements:</strong> Quality parts = longer lifespan = less money spent on repairs</li><li><strong>Higher Car Value:</strong> Regular maintenance = more value when you sell</li><li><strong>Quieter Rides:</strong> No more squealing brakes = more peaceful drives</li><li><strong>Pass Inspections with Ease:</strong> Stay on top of annual checks with a well-maintained brake system.</li></ol>','left',1,NULL,NULL),(423,'Why Your Car Benefits From Routine Brake Pads Repair Services','<p>Keep your ride safe and smooth with regular brake repairs. Here\'s what you get:</p><ol><li><strong>Better Fuel Efficiency:</strong> Optimal brake pads = less fuel wasted = more savings</li><li><strong>Less Frequent Replacements: </strong>Quality parts = longer lifespan = less money spent on repairs</li><li><strong>Higher Car Value: </strong>Regular maintenance = more value when you sell</li><li><strong>Quieter Rides:</strong> No more squealing brakes = more peaceful drives</li><li><strong>Pass Inspections with Ease:</strong> Stay on top of annual checks with a well-maintained brake system.</li></ol>','right',1,NULL,NULL),(436,NULL,'<p>A flat tyre has the potential to completely disrupt your day, however, it doesn\'t necessarily mean you\'ll be stuck off the road for an extended period! Our tyre repair services are designed to be swift, budget-friendly, and reliable, ensuring you\'re back on track in no time.</p><p>Maintaining properly inflated and intact tyres is crucial for optimal vehicle performance, which is why prompt tyre puncture repairs are essential at the first sign of trouble, such as bubbles or other issues. Given the significant cost of tyres, frequent replacements can be a considerable expense, but rest assured, we\'re here to provide comprehensive solutions for all your tyre-related problems. Whether you\'re dealing with a puncture, a flat tyre, or a slow leak, our skilled technicians are equipped to offer effective solutions that\'ll have you back driving safely and efficiently</p>','left',1,NULL,NULL),(437,'What To Expect in a Tyre Repair?','<p>It may be tempting to Google, “how to repair tyre puncture” and try to fix your bad tyre(s) yourself. However, unless know a lot about car mechanics, don’t do it! Take your car to a repair shop. But you should not search for a shop doing “tyre puncture repair near me or tyre repair near me online.” Take your car to CME TyrePlus for tyre servicing. Our technicians are professional.</p><p>We will look at your tyres to see if they can repair them. We can repair them if the damage is within the repairable puncture area. The affected area must also be ¼ of an inch in diameter or less and the damaged area is isolated. If we can repair it, we will follow these steps:</p><ul><li>Remove the tyre from the rim.</li><li>Inspect the entire tyre.</li><li>Trim and stabilize damaged cables.</li><li>Seal and patch the puncture.</li><li>Buff the puncture area from inside the tyre.</li><li>Put a vulcanizing glue on the affected area.</li><li>Patch the puncture area’s inner lining - A chemical reaction will occur immediately after the patch is placed which will permanently suture the patch to the affected area’s inner lining</li><li>Re-mount and inflate the tyre.</li><li>Check for leaks.</li></ul>','left',1,NULL,NULL),(438,'Why Choose CME for Tyre Repairing?','<p>For Tyre Repairing or any sort of tyre and car-related services you can count on our skilled technicians. We have the best experts in the industry to execute safe and long-lasting repairs. Any damages are assessed by us to determine if repairs are okay or if replacement methods are required.</p><p><strong>Advanced Equipment: </strong>Using state-of-the-art equipment, we execute a quick repair of every tyre puncture so that your tyres can perform at their best. Many Locations Across Abu Dhabi, UAE and with mobile tyre repair options, we\'re always near you. Whether you are stuck on the road or need a quick fix at home, we can be there.</p><p><strong>Affordable and Transparent Pricing: </strong>Tyre repair terms don\'t have to be expensive. Since TyrePlus asks for reasonable prices, you\'ll be sure that our tyre repair services in Dubai will give you excellent value for your money.</p><p><strong>Wide Range of Services: </strong>Apart from tyre repairing, we provide tyre replacement, wheel balancing, and alignment services, all to maintain your vehicle\'s good condition.</p><p><strong>Mobile Tyre Repairs:</strong> Can\'t reach the workshop? Not to worry! Our mobile car service brings tyre puncture repair to wherever you are, be it at home, in the office, or on the roadside.</p>','right',1,NULL,NULL),(443,NULL,'<p>Dead battery got you stuck? &nbsp;Need a reliable car battery replacement in the UAE? CME TyrePlushas you covered! We offer fast, affordable, and top-notch battery replacement services across Dubai, Abu Dhabi, and the UAE. Our pros will come to you –whether you\'re at home, work, or stranded. Get back on the road pronto!</p>','left',1,NULL,NULL),(444,'Why Choose CME for Car Battery Replacement','<p data-pm-slice=\"0 0 []\">With years of experience in the industry, CME is a trusted name when it comes to car battery replacement services or any other services related to car maintenance. Here’s why our customers choose us and keep coming back to us:</p><p><strong>Fast &amp; Reliable Service:</strong> We understand how important it is to get your vehicle back on the road quickly. Our team works quickly, but never compromises on the quality of service.</p><p><strong>Certified Technicians:</strong> Our technicians are certified and have extensive experience with all types of car batteries, ensuring the replacement is done correctly and efficiently.</p><p><strong>Convenient Location-Based Service:</strong> We provide car battery replacement in Dubai, Abu Dhabi, and throughout the UAE. Wherever you are, we are just a call &nbsp; &nbsp; &nbsp; &nbsp;away.</p><p><strong>Wide Range of Batteries:</strong> We offer an extensive selection of car batteries suitable for various vehicle models and needs, from budget-friendly options to premium brands.</p>','left',1,NULL,NULL),(445,'Signs Your AC Needs Service','<ol><li>Weak or Warm Airflow</li><li>Unusual Noises</li><li>Unpleasant Odors</li><li>Water Leaks Inside the Cabin</li><li>Reduced Cooling Over Time</li><li>AC Takes Longer to Cool</li><li>Visible Refrigerant Leaks</li><li>Dashboard Warning Lights</li></ol>','left',1,NULL,NULL),(450,'What is Nitrogen Tyre Inflation?','<p>Tyre inflation is undoubtedly a key element in ensuring tyre longevity. The pressure recommended by the manufacturers is different for each vehicle and must be scrupulously respected for your safety. But did you know that to reach the right pressure level, your tyres can be inflated with either air or nitrogen ?&nbsp;</p><p>Nitrogen tyre inflation uses pure nitrogen gas (typically 95-99% pure) instead of regular compressed air to fill your tyres. Unlike compressed air, which contains approximately 78% nitrogen, 21% oxygen, and trace amounts of water vapor and other gases, pure nitrogen inflation eliminates oxygen and moisture from inside your tyres. This seemingly simple change delivers measurable benefits for your vehicle\'s performance and safety.</p>','left',1,NULL,NULL),(451,'Our Nitrogen Inflation Process','<ul><li><strong>Complete Deflation and Purging:</strong> We fully deflate your current tyres and purge all existing air and moisture from the system.</li><li><strong>High-Purity Nitrogen Fill:</strong> Your tyres are refilled with high-purity nitrogen to your vehicle manufacturer\'s recommended pressure specifications.</li><li><strong>Pressure Verification:</strong> Each tyre receives a pressure check using calibrated gauges to ensure accuracy.</li><li><strong>Identification Markers:</strong> We apply nitrogen valve cap indicators to identify nitrogen-filled tyres for future reference.</li><li><strong>Service Documentation:</strong> You receive complete documentation of your service and recommendations for maintenance intervals<br>&nbsp;</li></ul>','left',1,NULL,NULL),(452,NULL,'<p>Oil is the lifeblood of your car\'s engine, playing a crucial role in its performance and longevity. It lubricates engine parts, reduces friction, and helps dissipate heat, ensuring smooth operation. Over time, oil gets contaminated and loses its effectiveness, leading to increased wear and tear on the engine. If left unchecked, this can cause parts to score, resulting in costly repairs. Regular oil changes are essential to prevent this, keeping your engine healthy and running smoothly. Our oil change service uses top-quality oils and filters, meeting or exceeding manufacturer specs, to give your car the best care.</p>','left',1,NULL,NULL),(453,'Why Choose CME for Oil Change?','<p>At CME, we know regular oil changes are crucial for your vehicle\'s health. Here\'s why we\'re the top choice for oil change services in the UAE:</p><ul><li>Multi-Brand Engine Oil Options: Top-quality oils from trusted brands like Castrol and Mobil, tailored to your engine\'s needs</li><li>Expert Technicians: Highly trained team providing best-in-class oil change services</li><li>Convenient Locations: Multiple service centers across the UAE, in Dubai, Sharjah, and more</li><li>State-of-the-Art Equipment: Latest tools and tech for accurate, quick oil changes and engine health checks</li><li>Genuine and High-Quality Oil: Premium engine oil for peak performance</li><li>Fast and Efficient Service: Quick turnaround times to fit your busy schedule</li><li>Affordable and Transparent Pricing: Competitive prices with special offers on oil change services</li></ul>','left',1,NULL,NULL),(454,'What is the tyre change process ?','<p>A tyre change involves replacing a worn or damaged tyre with a new one. Our technicians will remove the old tyre, inspect the rim, and mount a new tyre using specialized equipment, ensuring a safe and smooth ride.</p>','left',1,NULL,NULL),(455,'What is the wheel balancing process ?','<p>Tyre balancing is a precision process that ensures the tyre-wheel assembly is evenly weighted. We use a certified balancing machine to attach small counterweights, eliminating heavy spots that cause vibration, uneven wear, and reduced fuel efficiency. This improves handling, extends tyre life, and enhances safety. Proper balancing prevents premature wear, reduces accident risk, and gives you a smoother, quieter ride. Combined with tyre changes, balancing delivers a safer, more economical driving experience.</p>','left',1,NULL,NULL),(456,'How Often do you Need to Change Tyres?','<ul><li>Replace tyres before they wear out, especially in Middle Eastern heat</li><li>Check tread, damage, and punctures regularly; replace if below 1.6 mm</li><li>Inspect tyres annually after five years; check manufacturing date for age</li><li>Replace all four tyres at once, or put two new ones on the rear axle</li><li>Use professional advice from CME to choose the right tyres</li></ul><p>Tyres are very important as they greatly affect how the car accelerates, handles, and brakes. As the tyres become old and start wearing out they start losing their performance in certain areas. It’s right before this that you need to start looking to invest in a new set of tyres. In a region like the Middle East, the extreme heat of summer can expose the fragility of&nbsp;worn old tyres making them extra prone to blowouts. It is, therefore, important to know when it’s the right time to change your tyres. Read on to know more about how often you need to change tyres, how long do tyres last and much more.</p>','left',1,NULL,NULL),(457,'Choosing Car Tyres - How to Do it Right?','<ul><li>UAE heat and terrain need high-quality, heat-resistant tyres</li><li>Match tyres to driving style, car type, and road conditions</li><li>Regular maintenance like tyre inflation checks and alignment extends tyre life</li><li>Choose quality over price to avoid poor performance</li></ul>','right',1,NULL,NULL),(458,'Know the Difference between Wheel Alignment and Wheel Balancing','<ul><li>Wheel alignment adjusts suspension to ensure optimal tyre positioning, improving handling and tyre life.</li><li>Wheel balancing ensures even weight distribution, reducing vibrations for a smoother ride.</li><li>Misalignment causes pulling to one side and uneven tyre wear; imbalance leads to vibrations.</li><li>Regular checks enhance safety, extend tyre life, and improve fuel efficiency.</li><li>Costs vary, but regular maintenance prevents expensive repairs.</li></ul><p>Visit&nbsp;TYREPLUS&nbsp;for professional alignment and balancing services.</p>','left',1,NULL,NULL),(459,NULL,'<h3>Tyre Rotation Process</h3><ul><li><strong>Visual Inspection:</strong> Checking for damage, foreign objects, and wear patterns</li><li><strong>Pressure Check:</strong> Adjusting pressures to manufacturer specs</li><li>Professional Rotation: Rotating tyres according to your vehicle\'s drive type</li><li>Torque Specification: Tightening wheel nuts to exact specs</li><li>Final Balance Check: Ensuring tyres are properly balanced post-rotation</li><li>Maintenance Record: Documenting your service for warranty and tracking</li></ul><h3>Tyre Rotation Patterns We Use</h3><p><strong>Different vehicles require different rotation patterns. Our technicians select the appropriate method based on your vehicle\'s drive system and tyre type:</strong></p><ul><li>Forward Cross (Front-Wheel Drive)</li><li>Rearward Cross (Rear-Wheel and 4x4 Vehicles)</li><li>X-Pattern (All-Wheel Drive)</li><li>Side-to-Side (Directional Tyres)<br>&nbsp;</li></ul>','left',1,NULL,NULL),(460,NULL,'<p>If your vehicle pulls to one side, has uneven tyre wear, or vibrations while driving, it might be an alignment issue. At CME, our expert technicians use advanced equipment to adjust your wheels to manufacturer specs, ensuring smooth and safe driving. Our wheel alignment services across the Abu Dhabi, help improve driving efficiency and safety, extend tyre life, and enhance overall vehicle performance. Book your appointment with CME today!</p>','left',1,NULL,NULL),(461,'What Our Wheel Alignment Service Includes ','<p>At CME, our wheel alignment service includes:</p><ul><li><strong>General Inspection:</strong> We use advanced equipment to check your vehicle\'s alignment and identify potential issues affecting handling or tyre wear.</li><li><strong>Precision Alignment: </strong>We adjust the wheel angles to match your manufacturer\'s specs for optimal performance.</li><li><strong>Tire Rotation:</strong> We rotate your tyres to ensure even wear and extend their lifespan.</li><li><strong>Alignment Report:</strong> You\'ll receive a detailed report outlining the condition of your wheels and the adjustments made.</li></ul>','left',1,NULL,NULL),(462,'Why choose TyrePlus for your wheel alignment services','<p>CME emphasizes the importance of correct wheel alignment for optimal vehicle performance. Our well-trained technicians use state-of-the-art equipment to deliver precise alignments for various vehicle types, ensuring optimal performance. We offer competitive rates across the UAE, with transparent pricing and no hidden charges. Our services include:</p><p><strong>Specialist Personnel:</strong> CME employs qualified technicians whose expertise allows them to carry out accurate wheel alignments of all types of vehicles and therefore deliver optimal performance.</p><p><strong>State-of-the-Art Equipment:</strong> We service vehicles using the latest alignment technology and diagnostic tools, assuring you wheel alignment with precise specifications from the manufacturer.</p><p><strong>Competitive Prices:</strong> Our wheel alignment charges are kept to a minimum without compromising the quality of the service. We\'ve taken care of hidden costs.</p><p><strong>Convenience and Accessibility:</strong> CME has several service centers in major location of Abu Dhabi making it convenient to the customer for better service.</p>','right',1,NULL,NULL),(464,'CENTRAL MOTORS & EQUIPMENT','<p>Many people think that the easiest place to go is the nearest manufacturer’s dealership. CM&amp;E Bosch Car Service workshops are a real alternative, offering quality, affordable servicing, and fitting manufacturer quality parts.</p><p>The headache of finding a good workshop is removed with the national network of CM&amp;E Bosch Car Service workshops:</p><p>Use the workshop locator to find the workshop nearest to you.<br>Have the peace of mind that all CM&amp;E Bosch workshops employ experienced, qualified technicians with the right diagnostic equipment to find and correct faults, cost-effectively. &nbsp;<br>A ‘cheap’ workshop is not a guarantee of value for money in the long run. They often keep their prices down by fitting cheap parts, which may wear out or fail sooner. At CM&amp;E Bosch Car Services, the Bosch parts fitted are made to the same specification as those that we make for car manufacturers.<br>Modern cars are highly sophisticated and a significant proportion of the manufacturing costs go into the electronics and computers. As CM&amp;E Bosch Car Service workshops all have up to date diagnostic equipment, they will be able to diagnose any faults quickly and accurately, getting it right the first time.<br>All CM&amp;E Bosch Car Service workshops are established, independent workshops that we audit annually to ensure that they continue to meet the high standards that we expect.</p>','right',1,NULL,NULL),(465,'Diagnostics from Bosch','<p>Workshop solutions for the future. For professional service on modern vehicles, Bosch provides test and workshop equipment, software and expertise perfectly coordinated from a single source.</p><ul><li>ECU Diagnostic Tools</li><li>ESI[tronic] Diagnostic Software</li><li>Air Conditioning Service</li><li>Battery Service</li><li>Test Benches and Tools</li><li>Calibration of Advanced Driver Assistance Systems</li><li>Emissions Inspections</li><li>Vehicle Systems Analyzers</li><li>Bosch Augmented Reality</li><li>Bosch Connected Repair<br>&nbsp;</li></ul>','left',1,NULL,NULL),(466,'Technical services from industry experts','<p>A wide range of services, partners of the Bosch network can benefit from access to all of Bosch’s knowledge, technological expertise and comprehensive practical experience from decades of workshop support.&nbsp;</p><p>What we offer:</p><ul><li>Service Training</li><li>Technical Support</li><li>Equipment Service</li></ul>','right',1,NULL,NULL),(467,NULL,'<p><img src=\"https://d1i031whgqu7f4.cloudfront.net/image_602_eb6dce2f14.png\" alt=\"image 602.png\" width=\"134\" height=\"75\"></p><p>A wide range of services, partners of the Bosch network can benefit from access to all of Bosch’s knowledge, technological expertise and comprehensive practical experience from decades of workshop support. What we offer:</p>','left',1,NULL,NULL),(468,NULL,'<p>Central Motors &amp; Equipment brings the latest state-of-the-art workshop equipment services</p><ul><li>Software</li><li>ECU Diagnostics</li><li>Diagnostic Control Units</li><li>Vehicle System Analyzers</li><li>Battery Service Equipment</li><li>On board Diagnosis</li><li>Air Conditioning Service</li><li>Tyre Changing Equipment</li><li>Wheel Balancing Equipment</li><li>Wheel Alignments</li><li>Nitrogen Inflators</li><li>Emission Analyzers</li><li>Vehicle Inspection Lanes</li><li>Diesel Component Calibration</li><li>Tools &amp; Testers</li></ul>','right',1,NULL,NULL);
/*!40000 ALTER TABLE `components_common_title_desc_img_positions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `components_common_title_desc_with_imgs`
--

DROP TABLE IF EXISTS `components_common_title_desc_with_imgs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `components_common_title_desc_with_imgs` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(255) DEFAULT NULL,
  `description` longtext,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=854 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `components_common_title_desc_with_imgs`
--

LOCK TABLES `components_common_title_desc_with_imgs` WRITE;
/*!40000 ALTER TABLE `components_common_title_desc_with_imgs` DISABLE KEYS */;
INSERT INTO `components_common_title_desc_with_imgs` VALUES (11,NULL,'<p>At CME, we know how important good tyres are for smooth handling, better fuel efficiency, and overall road safety. Whether you\'re driving through the busy streets of Abu Dhabi or taking a long trip across Al Ain, keeping your tyres in good shape ensures a safe and comfortable ride.</p><p>Tyre services include important tasks like tyre rotation, fixing punctures, nitrogen filling, and proper fitting. Rotating your tyres regularly helps them wear evenly and last longer. Fixing punctures quickly prevents bigger problems, while nitrogen filling keeps your tyre pressure stable, which improves fuel efficiency. With our complete tyre care services, you can be confident that your car is ready to handle the tough weather and road conditions in the UAE.</p><p>At Tire.ae, we offer professional tyre services across Dubai, Abu Dhabi, and other locations. Our skilled team uses the latest tools to make sure your tyres are always in top condition. Whether you need a quick tyre check or a full replacement, we’re here to help you stay safe and worry-free on the road.</p>'),(13,NULL,'<p>Established in 2002 and certified by Michelin, Tyre Plus is a one-stop shop service that provides a broad range of leading tyre brands, lubricants, batteries, suspension and braking systems.</p><p>Central Motors &amp; Equipment is proud to be the sole licensee of Tyre Plus in Abu Dhabi and Al Ain, enabling us to capitalize upon our entrepreneurship while benefiting from strong manufacturer support.</p><p>Through Central Motors &amp; Equipment-managed service centres in Abu Dhabi and Al Ain, Tyre Plus also delivers wheel alignment, air conditioning refilling and nitrogen inflation – with every service using a unique combination of local knowledge and international expertise.</p><p>Available in 15 countries and has 1,500 branches worldwide, TyrePlus is renowned for offering services that excel in technical capability and competitive pricing with the benefit of a strong brand. All Central Motors &amp; Equipment Tyre Plus centres have professionally trained staff and a comfortable customer environment.</p>'),(16,'Safer Driving','<p>Proper tyre care and timely repairs improve grip, stability, and braking, reducing the risk of accidents.</p>'),(17,'No Flat Tyres','<p><meta charset=\"utf-8\">Tyre maintenance and timely repairs help prevent flat tyres by addressing punctures and weak spots early.</p>'),(18,'Better Driving','<p>Proper tyre care improves handling, traction, and control for a smoother, safer drive.</p>'),(19,'Longer Lifespan','<p>Maintenance and timely repairs help tyres last longer by preventing uneven wear, punctures, and damage.</p>'),(20,'Better Fuel Efficiency','<p>Well-maintained tyres help your engine work more efficiently, leading to better fuel economy.</p>'),(49,NULL,NULL),(56,NULL,'<p>As one of the UAE’s foremost providers of Automotive parts and equipments, Central Motors &amp; Equipment offers a diverse range of brands, products and services to its customers. Working in both wholesale and retail markets, the company comprises of four major divisions: Tyres; Automotive Parts, Power Tools and Tyreplus Services.<br>A member of ALFAHIM automotive division, Central Motors &amp; Equipment embodies the four corporate values of its parent company: humanity, honesty, substance and foresight.<br>Since its inception, Central Motors &amp; Equipment has become exclusive distributor of Michelin in Abu Dhabi and Al Ain, and a distributor of Bosch Automotive Aftermarket &amp; Power Tools solutions across the UAE. In addition, the company represents industry leading brands such as Tyreplus, Knorr-Bremse, Dremel, Osram, Valeo, Zexel, NRF, JP Group, Cyclo, HC Cargo, Grantex, CLAS, ASNU, Sicam, Manatec, HPA, Optima, Eveready, Autopart, Bosch Diesel Service, Bosch Car Service.</p>'),(58,'Our Vision','<p>To be the best in class in all that we do for, and in, our community.</p>'),(59,'Our Mission','<p>Deliver a superior suite of products and services with limitless passion that exceeds expectations every time.</p>'),(121,NULL,'<p>Bosch power tools services for Callibration are renowned for their quality, durability, and innovative cordless technology. As the authorized distributor of Bosch Power Tools across Dubai, Sharjah, and the UAE, Central Motors &amp; Equipment (CME) offers a complete range of professional tools and accessories for every trade — making us your trusted destination for genuine Bosch products.<br><br>Ensure precision, safety, and compliance with our professional <strong data-start=\"294\" data-end=\"330\">Power Tools Calibration Services</strong>. We specialize in accurate calibration of measuring and alignment tools used in construction, engineering, and industrial environments to guarantee reliable performance and consistent results.</p><p data-start=\"525\" data-end=\"672\">Our calibration services help reduce errors, improve operational efficiency, and ensure your tools meet international quality and safety standards.<br><br>We provide calibration for a wide range of power and measurement tools, including:</p><ul><li>Laser levels &amp; line lasers</li><li>Distance meters</li><li>Torque tools</li><li>Electrical testing instruments</li><li>Measurement and alignment tools</li></ul><p>Each tool is tested using certified reference standards to ensure accuracy and repeatability.</p>'),(125,NULL,'<p>Bosch power tools services for Callibration are renowned for their quality, durability, and innovative cordless technology. As the authorized distributor of Bosch Power Tools across Dubai, Sharjah, and the UAE, Central Motors &amp; Equipment (CME) offers a complete range of professional tools and accessories for every trade — making us your trusted destination for genuine Bosch products.<br><br>Ensure precision, safety, and compliance with our professional <strong data-start=\"294\" data-end=\"330\">Power Tools Calibration Services</strong>. We specialize in accurate calibration of measuring and alignment tools used in construction, engineering, and industrial environments to guarantee reliable performance and consistent results.</p><p data-start=\"525\" data-end=\"672\">Our calibration services help reduce errors, improve operational efficiency, and ensure your tools meet international quality and safety standards.<br><br>We provide calibration for a wide range of power and measurement tools, including:</p><ul><li>Laser levels &amp; line lasers</li><li>Distance meters</li><li>Torque tools</li><li>Electrical testing instruments</li><li>Measurement and alignment tools</li></ul><p>Each tool is tested using certified reference standards to ensure accuracy and repeatability.</p>'),(166,'Safer Stops, Safer Streets','<p>Properly maintained tyres with the right air pressure can significantly reduce stopping distances, helping prevent accidents and protect pedestrians.</p>'),(167,'No Sudden Surprises','<p>A blowout on a busy Dubai highway is a nightmare scenario. Well-maintained tyres drastically reduce this risk, keeping you in control and safe from the dangers of a sudden tyre explosion.</p>'),(258,'Better Driving','<p>Tyres in good condition provide better grip, making driving safer and more controlled.</p>'),(259,'Extend Your Tyre’s Lifespan','<p>Regular repairs and maintenance extend the life of your tyres, saving you money.</p>'),(260,'Improve Fuel Efficiency','<p>Properly inflated tyres reduce friction, decreasing fuel consumption and costs.</p>'),(261,'Fewer Repair Shop Visits','<p>Regular tyre checks help identify issues early, reducing costly repairs down the line</p>'),(418,NULL,'<p>At CME, we know how important good tyres are for smooth handling, better fuel efficiency, and overall road safety. Whether you\'re driving through the busy streets of Abu Dhabi or taking a long trip across Al Ain, keeping your tyres in good shape ensures a safe and comfortable ride.</p><p>Tyre services include important tasks like tyre rotation, fixing punctures, nitrogen filling, and proper fitting. Rotating your tyres regularly helps them wear evenly and last longer. Fixing punctures quickly prevents bigger problems, while nitrogen filling keeps your tyre pressure stable, which improves fuel efficiency. With our complete tyre care services, you can be confident that your car is ready to handle the tough weather and road conditions in the UAE.</p><p>At Tire.ae, we offer professional tyre services across Dubai, Abu Dhabi, and other locations. Our skilled team uses the latest tools to make sure your tyres are always in top condition. Whether you need a quick tyre check or a full replacement, we’re here to help you stay safe and worry-free on the road.</p>'),(419,NULL,'<p>Established in 2002 and certified by Michelin, Tyre Plus is a one-stop shop service that provides a broad range of leading tyre brands, lubricants, batteries, suspension and braking systems.</p><p>Central Motors &amp; Equipment is proud to be the sole licensee of Tyre Plus in Abu Dhabi and Al Ain, enabling us to capitalize upon our entrepreneurship while benefiting from strong manufacturer support.</p><p>Through Central Motors &amp; Equipment-managed service centres in Abu Dhabi and Al Ain, Tyre Plus also delivers wheel alignment, air conditioning refilling and nitrogen inflation – with every service using a unique combination of local knowledge and international expertise.</p><p>Available in 15 countries and has 1,500 branches worldwide, TyrePlus is renowned for offering services that excel in technical capability and competitive pricing with the benefit of a strong brand. All Central Motors &amp; Equipment Tyre Plus centres have professionally trained staff and a comfortable customer environment.</p>'),(420,'Safer Driving','<p>Proper tyre care and timely repairs improve grip, stability, and braking, reducing the risk of accidents.</p>'),(421,'No Flat Tyres','<p><meta charset=\"utf-8\">Tyre maintenance and timely repairs help prevent flat tyres by addressing punctures and weak spots early.</p>'),(422,'Better Driving','<p>Proper tyre care improves handling, traction, and control for a smoother, safer drive.</p>'),(423,'Longer Lifespan','<p>Maintenance and timely repairs help tyres last longer by preventing uneven wear, punctures, and damage.</p>'),(424,'Better Fuel Efficiency','<p>Well-maintained tyres help your engine work more efficiently, leading to better fuel economy.</p>'),(443,'Brake Inspection','<p>Our regional climate is no joke – scorching temps and sandy roads take a toll on your brake pads, wearing them out fast. That\'s why our skilled mechanics and technicians start with a thorough inspection to catch any potential brake issues before they escalate. Here\'s what we check:</p><ul><li>Brake pads and shoes for damage and wear</li><li>Rotors and drums for damage</li><li>Brake lines and hoses for leaks and cracks</li><li>Brake fluid levels and condition</li><li>Overall braking system performance.<br>&nbsp;</li></ul>'),(445,'Break Pad Replacement','<p>Faulty brake pads = compromised safety. That\'s why we check for these signs:</p><ul><li>Squealing or grinding noise when braking</li><li>Reduced braking power</li><li>Brake pad warning light on the dashboard</li><li>If they\'re due for a swap, our standard brake pad replacement includes:</li><li>Removing the old pads</li><li>Inspecting rotors and calipers for damage</li><li>Fitting new, top-quality brake pads</li><li>Testing the brakes for optimal performance.</li></ul>'),(446,'Rotor Resurfacing or Replacement','<p>Your car\'s brake pads rely on rotors to get you to a stop. Over time, these rotors can get damaged or worn out, needing either resurfacing or replacement.</p><p><strong>Rotor Resurfacing:&nbsp;</strong></p><p>We remove a thin layer to restore a smooth surface.</p><p><strong>Rotor Replacement:</strong></p><p>If damage is too severe, we\'ll swap them out:- Remove the old rotors</p><ul><li>Install new, top-notch rotors</li><li>Check alignment and function for safe braking.</li></ul>'),(471,'Brake Fluid Replacement','<p>Dirty or low brake fluid? That\'s a recipe for brake failure. Over time, brake fluid gets contaminated, losing its effectiveness. Stick to your car\'s maintenance schedule and replace it when needed. Our brake fluid exchange service covers:</p><ul><li>Draining the old fluid</li><li>Flushing the reservoir and lines</li><li>Refilling with fresh, clean fluid</li><li>Bleeding the brakes for optimal pressure and air bubble removal.</li></ul>'),(472,'Full Brake System Overhaul','<p>Got complex brake issues? Our comprehensive brake system repair is here to save the day. We go all out:</p><ul><li>Thorough check of brake pads, rotors, calipers, lines, and master cylinder</li><li>Repair or replace components as needed</li><li>System-wide inspection for seamless performance</li><li>Full system test for optimal safety and performance</li></ul><p>Your safety\'s our priority – we\'ll get you stopping smoothly and driving safely.</p>'),(509,'Engine Oil Replacement','<p>Our expert team swaps out your engine oil with top-notch oils, specifically chosen for your vehicle\'s make and model. From compact cars to larger vehicles, we pick the perfect oil to keep your engine purring smoothly.</p>'),(510,'Replacement of Oil Filter','<p>We replace your oil filter as part of our oil change service, ensuring your engine stays clean and runs at peak performance by keeping contaminants out.</p>'),(511,'Check and Top-Up Fluids','<p>With every oil change, we check and top up your vehicle\'s vital fluids, including brake fluid, power steering fluid, and transmission fluid, to keep your ride running smoothly.</p>'),(515,'Increase Grip & Stability','<p>Misaligned wheels can make your vehicle pull to one side or feel unstable, but proper alignment lets your car drive straight and handle smoothly, making it easier to steer.</p>'),(516,'Longer Life for Tyres','<p>Misalignment usually leads to uneven tire wear, thus you have to replace your tires much sooner. A regular check-up for wheel alignment will prevent premature tire wear, saving you bucks.</p>'),(517,'Improve Fuel Efficiency','<p>When properly aligned, a vehicle needs less energy to move forward, which improves fuel economy and, in effect, lowers fuel consumption.</p>'),(518,'Safety Is Top Priority','<p>Misaligned wheels can compromise brake grip, cornering, and overall handling, putting you at risk. Proper alignment keeps you and your passengers safer by ensuring your car responds predictably to your inputs.</p>'),(523,'Turbo Service','<p>Proper tyre care and timely repairs improve grip, stability, and braking, reducing the risk of accidents.</p>'),(524,'Engine Service','<p>Tyre maintenance and timely repairs help prevent flat tyres by addressing punctures and weak spots early.</p>'),(525,'Engine Service','<p>Proper tyre care improves handling, traction, and control for a smoother, safer drive.</p>'),(586,'What Is The Difference Between Nitrogen and Air in Tyres?','<p>Nitrogen-filled tyres maintain consistent pressure longer, reduce internal moisture/corrosion, and offer better stability, while normal air is cheaper and readily available. Nitrogen molecules are larger and leak slower (1-3 PSI loss/month for air vs. almost none for nitrogen). Nitrogen is ideal for high-speed/long-distance, while normal air is fine for daily driving</p>'),(587,'How To Find The Correct Tyre Pressure','<p>Air pressure can be easily checked with the help of a calibrated accurate air pressure gauge. An air gauge is fairly cheap and a handy device that helps you easily check your car tyre pressure yourself.&nbsp;<br>To check the air pressure, take the cap off the valve and put the gauge on the valve. The gauge will show the pressure reading. If it doesn’t match the one mentioned on your placard or owner’s manual then you might have to add or remove air until it reaches the recommended number. Once that is done check the air pressure again with the gauge to make sure your tyres are inflated correctly. At the end do not forget to place the cap back to the valve stem. Check all your tyres including the spare if your car has one. In case the spare is a space saver type, follow the recommended pressure posted on its rim.</p>'),(613,'Smooth driving','<p>Balanced wheels mean no wobble or vibrations, making long drives smoother and more comfortable.</p>'),(614,'Longer tyre life','<p>Even weight distribution reduces uneven tread wear, meaning you get the full value out of&nbsp;your new tyre.</p>'),(615,'Fuel efficiency & safety','<p>Balanced wheels keep brakes and suspension in check, boosting braking performance and reliability.</p>'),(657,'Turbo Service','<p>Proper tyre care and timely repairs improve grip, stability, and braking, reducing the risk of accidents.</p>'),(658,'Engine Service','<p>Tyre maintenance and timely repairs help prevent flat tyres by addressing punctures and weak spots early.</p>'),(659,'Engine Service','<p>Proper tyre care improves handling, traction, and control for a smoother, safer drive.</p>'),(660,'Turbo Service','<p>Proper tyre care and timely repairs improve grip, stability, and braking, reducing the risk of accidents.</p>'),(661,'Engine Service','<p>Tyre maintenance and timely repairs help prevent flat tyres by addressing punctures and weak spots early.</p>'),(662,'Engine Service','<p>Proper tyre care improves handling, traction, and control for a smoother, safer drive.</p>'),(760,'Battery Testing & Diagnostics','<p>We don\'t just jump to conclusions. Our expert technicians run a thorough diagnostic check to assess your battery\'s health, checking for corrosion, leaks, and charge performance. We\'ll give you the lowdown and recommend the best solution for your ride. Fast, reliable, and hassle-free –that\'s how we roll</p>'),(761,'Premium Car Batteries','<p>We\'ve got a massive selection of high-quality car batteries from top brands, so you\'ll find the perfect fit for your ride. From standard replacements to high-performance batteries for specialized vehicles, we\'re sorted. And with transparent, competitive pricing across Dubai, Abu Dhabi, and the UAE, you know you\'re getting the best deal for top-notch products and service.</p>'),(800,NULL,'<p>As one of the UAE’s foremost providers of Automotive parts and equipments, Central Motors &amp; Equipment offers a diverse range of brands, products and services to its customers. Working in both wholesale and retail markets, the company comprises of four major divisions: Tyres; Automotive Parts, Power Tools and Tyreplus Services.<br>A member of ALFAHIM automotive division, Central Motors &amp; Equipment embodies the four corporate values of its parent company: humanity, honesty, substance and foresight.<br>Since its inception, Central Motors &amp; Equipment has become exclusive distributor of Michelin in Abu Dhabi and Al Ain, and a distributor of Bosch Automotive Aftermarket &amp; Power Tools solutions across the UAE. In addition, the company represents industry leading brands such as Tyreplus, Knorr-Bremse, Dremel, Osram, Valeo, Zexel, NRF, JP Group, Cyclo, HC Cargo, Grantex, CLAS, ASNU, Sicam, Manatec, HPA, Optima, Eveready, Autopart, Bosch Diesel Service, Bosch Car Service.</p>'),(801,'Our Vision','<p>To be the best in class in all that we do for, and in, our community.</p>'),(802,'Our Mission','<p>Deliver a superior suite of products and services with limitless passion that exceeds expectations every time.</p>'),(805,'Brake Inspection','<p>Our regional climate is no joke – scorching temps and sandy roads take a toll on your brake pads, wearing them out fast. That\'s why our skilled mechanics and technicians start with a thorough inspection to catch any potential brake issues before they escalate. Here\'s what we check:</p><ul><li>Brake pads and shoes for damage and wear</li><li>Rotors and drums for damage</li><li>Brake lines and hoses for leaks and cracks</li><li>Brake fluid levels and condition</li><li>Overall braking system performance.<br>&nbsp;</li></ul>'),(806,'Break Pad Replacement','<p>Faulty brake pads = compromised safety. That\'s why we check for these signs:</p><ul><li>Squealing or grinding noise when braking</li><li>Reduced braking power</li><li>Brake pad warning light on the dashboard</li><li>If they\'re due for a swap, our standard brake pad replacement includes:</li><li>Removing the old pads</li><li>Inspecting rotors and calipers for damage</li><li>Fitting new, top-quality brake pads</li><li>Testing the brakes for optimal performance.</li></ul>'),(807,'Rotor Resurfacing or Replacement','<p>Your car\'s brake pads rely on rotors to get you to a stop. Over time, these rotors can get damaged or worn out, needing either resurfacing or replacement.</p><p><strong>Rotor Resurfacing:&nbsp;</strong></p><p>We remove a thin layer to restore a smooth surface.</p><p><strong>Rotor Replacement:</strong></p><p>If damage is too severe, we\'ll swap them out:- Remove the old rotors</p><ul><li>Install new, top-notch rotors</li><li>Check alignment and function for safe braking.</li></ul>'),(808,'Brake Fluid Replacement','<p>Dirty or low brake fluid? That\'s a recipe for brake failure. Over time, brake fluid gets contaminated, losing its effectiveness. Stick to your car\'s maintenance schedule and replace it when needed. Our brake fluid exchange service covers:</p><ul><li>Draining the old fluid</li><li>Flushing the reservoir and lines</li><li>Refilling with fresh, clean fluid</li><li>Bleeding the brakes for optimal pressure and air bubble removal.</li></ul>'),(809,'Full Brake System Overhaul','<p>Got complex brake issues? Our comprehensive brake system repair is here to save the day. We go all out:</p><ul><li>Thorough check of brake pads, rotors, calipers, lines, and master cylinder</li><li>Repair or replace components as needed</li><li>System-wide inspection for seamless performance</li><li>Full system test for optimal safety and performance</li></ul><p>Your safety\'s our priority – we\'ll get you stopping smoothly and driving safely.</p>'),(822,'Safer Stops, Safer Streets','<p>Properly maintained tyres with the right air pressure can significantly reduce stopping distances, helping prevent accidents and protect pedestrians.</p>'),(823,'No Sudden Surprises','<p>A blowout on a busy Dubai highway is a nightmare scenario. Well-maintained tyres drastically reduce this risk, keeping you in control and safe from the dangers of a sudden tyre explosion.</p>'),(824,'Better Driving','<p>Tyres in good condition provide better grip, making driving safer and more controlled.</p>'),(825,'Extend Your Tyre’s Lifespan','<p>Regular repairs and maintenance extend the life of your tyres, saving you money.</p>'),(826,'Improve Fuel Efficiency','<p>Properly inflated tyres reduce friction, decreasing fuel consumption and costs.</p>'),(827,'Fewer Repair Shop Visits','<p>Regular tyre checks help identify issues early, reducing costly repairs down the line</p>'),(833,NULL,NULL),(834,'Battery Testing & Diagnostics','<p>We don\'t just jump to conclusions. Our expert technicians run a thorough diagnostic check to assess your battery\'s health, checking for corrosion, leaks, and charge performance. We\'ll give you the lowdown and recommend the best solution for your ride. Fast, reliable, and hassle-free –that\'s how we roll</p>'),(835,'Premium Car Batteries','<p>We\'ve got a massive selection of high-quality car batteries from top brands, so you\'ll find the perfect fit for your ride. From standard replacements to high-performance batteries for specialized vehicles, we\'re sorted. And with transparent, competitive pricing across Dubai, Abu Dhabi, and the UAE, you know you\'re getting the best deal for top-notch products and service.</p>'),(839,'What Is The Difference Between Nitrogen and Air in Tyres?','<p>Nitrogen-filled tyres maintain consistent pressure longer, reduce internal moisture/corrosion, and offer better stability, while normal air is cheaper and readily available. Nitrogen molecules are larger and leak slower (1-3 PSI loss/month for air vs. almost none for nitrogen). Nitrogen is ideal for high-speed/long-distance, while normal air is fine for daily driving</p>'),(840,'How To Find The Correct Tyre Pressure','<p>Air pressure can be easily checked with the help of a calibrated accurate air pressure gauge. An air gauge is fairly cheap and a handy device that helps you easily check your car tyre pressure yourself.&nbsp;<br>To check the air pressure, take the cap off the valve and put the gauge on the valve. The gauge will show the pressure reading. If it doesn’t match the one mentioned on your placard or owner’s manual then you might have to add or remove air until it reaches the recommended number. Once that is done check the air pressure again with the gauge to make sure your tyres are inflated correctly. At the end do not forget to place the cap back to the valve stem. Check all your tyres including the spare if your car has one. In case the spare is a space saver type, follow the recommended pressure posted on its rim.</p>'),(841,'Engine Oil Replacement','<p>Our expert team swaps out your engine oil with top-notch oils, specifically chosen for your vehicle\'s make and model. From compact cars to larger vehicles, we pick the perfect oil to keep your engine purring smoothly.</p>'),(842,'Replacement of Oil Filter','<p>We replace your oil filter as part of our oil change service, ensuring your engine stays clean and runs at peak performance by keeping contaminants out.</p>'),(843,'Check and Top-Up Fluids','<p>With every oil change, we check and top up your vehicle\'s vital fluids, including brake fluid, power steering fluid, and transmission fluid, to keep your ride running smoothly.</p>'),(844,'Smooth driving','<p>Balanced wheels mean no wobble or vibrations, making long drives smoother and more comfortable.</p>'),(845,'Longer tyre life','<p>Even weight distribution reduces uneven tread wear, meaning you get the full value out of&nbsp;your new tyre.</p>'),(846,'Fuel efficiency & safety','<p>Balanced wheels keep brakes and suspension in check, boosting braking performance and reliability.</p>'),(847,'Increase Grip & Stability','<p>Misaligned wheels can make your vehicle pull to one side or feel unstable, but proper alignment lets your car drive straight and handle smoothly, making it easier to steer.</p>'),(848,'Longer Life for Tyres','<p>Misalignment usually leads to uneven tire wear, thus you have to replace your tires much sooner. A regular check-up for wheel alignment will prevent premature tire wear, saving you bucks.</p>'),(849,'Improve Fuel Efficiency','<p>When properly aligned, a vehicle needs less energy to move forward, which improves fuel economy and, in effect, lowers fuel consumption.</p>'),(850,'Safety Is Top Priority','<p>Misaligned wheels can compromise brake grip, cornering, and overall handling, putting you at risk. Proper alignment keeps you and your passengers safer by ensuring your car responds predictably to your inputs.</p>'),(851,'Turbo Service','<p>Proper tyre care and timely repairs improve grip, stability, and braking, reducing the risk of accidents.</p>'),(852,'Engine Service','<p>Tyre maintenance and timely repairs help prevent flat tyres by addressing punctures and weak spots early.</p>'),(853,'Engine Service','<p>Proper tyre care improves handling, traction, and control for a smoother, safer drive.</p>');
/*!40000 ALTER TABLE `components_common_title_desc_with_imgs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `components_common_title_descs`
--

DROP TABLE IF EXISTS `components_common_title_descs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `components_common_title_descs` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(255) DEFAULT NULL,
  `description` longtext,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=407 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `components_common_title_descs`
--

LOCK TABLES `components_common_title_descs` WRITE;
/*!40000 ALTER TABLE `components_common_title_descs` DISABLE KEYS */;
INSERT INTO `components_common_title_descs` VALUES (1,'Book a Service','TyrePlus is known for quality service, technical expertise, and competitive pricing.'),(2,'Mobile Service','TyrePlus is known for quality service, technical expertise, and competitive pricing.'),(17,'Service Enquiry','Tell us what you need, and our service team will assist you promptly.'),(18,'Mobile Service','Tell us what you need, and our service team will assist you promptly.'),(37,'Service Enquiry','Tell us what you need, and our service team will assist you promptly.'),(38,'Mobile Service','Tell us what you need, and our service team will assist you promptly.'),(67,'Service Enquiry','Tell us what you need, and our service team will assist you promptly.'),(68,'Mobile Service','Tell us what you need, and our service team will assist you promptly.'),(99,'Service Enquiry','Tell us what you need, and our service team will assist you promptly.'),(100,'Mobile Service','Tell us what you need, and our service team will assist you promptly.'),(107,'Service Enquiry','Tell us what you need, and our service team will assist you promptly.'),(108,'Mobile Service','Tell us what you need, and our service team will assist you promptly.'),(145,'Service Enquiry','Tell us what you need, and our service team will assist you promptly.'),(146,'Mobile Service','Tell us what you need, and our service team will assist you promptly.'),(165,'Service Enquiry','Tell us what you need, and our service team will assist you promptly.'),(166,'Mobile Service','Tell us what you need, and our service team will assist you promptly.'),(171,'Service Enquiry','Tell us what you need, and our service team will assist you promptly.'),(172,'Mobile Service','Tell us what you need, and our service team will assist you promptly.'),(193,'Service Enquiry','Tell us what you need, and our service team will assist you promptly.'),(194,'Mobile Service','Tell us what you need, and our service team will assist you promptly.'),(207,'Service Enquiry','Tell us what you need, and our service team will assist you promptly.'),(208,'Mobile Service','Tell us what you need, and our service team will assist you promptly.'),(209,'Service Enquiry','Tell us what you need, and our service team will assist you promptly.'),(210,'Mobile Service','Tell us what you need, and our service team will assist you promptly.'),(253,'Service Enquiry','Tell us what you need, and our service team will assist you promptly.'),(254,'Mobile Service','Tell us what you need, and our service team will assist you promptly.'),(255,'Service Enquiry','Tell us what you need, and our service team will assist you promptly.'),(256,'Mobile Service','Tell us what you need, and our service team will assist you promptly.'),(319,'Service Enquiry','Tell us what you need, and our service team will assist you promptly.'),(320,'Mobile Service','Tell us what you need, and our service team will assist you promptly.'),(355,'Service Enquiry','Tell us what you need, and our service team will assist you promptly.'),(356,'Mobile Service','Tell us what you need, and our service team will assist you promptly.'),(365,'Service Enquiry','Tell us what you need, and our service team will assist you promptly.'),(366,'Mobile Service','Tell us what you need, and our service team will assist you promptly.'),(373,'Service Enquiry','Tell us what you need, and our service team will assist you promptly.'),(374,'Mobile Service','Tell us what you need, and our service team will assist you promptly.'),(375,'Service Enquiry','Tell us what you need, and our service team will assist you promptly.'),(376,'Mobile Service','Tell us what you need, and our service team will assist you promptly.'),(381,'Service Enquiry','Tell us what you need, and our service team will assist you promptly.'),(382,'Mobile Service','Tell us what you need, and our service team will assist you promptly.'),(383,'Service Enquiry','Tell us what you need, and our service team will assist you promptly.'),(384,'Mobile Service','Tell us what you need, and our service team will assist you promptly.'),(385,'Service Enquiry','Tell us what you need, and our service team will assist you promptly.'),(386,'Mobile Service','Tell us what you need, and our service team will assist you promptly.'),(387,'Service Enquiry','Tell us what you need, and our service team will assist you promptly.'),(388,'Mobile Service','Tell us what you need, and our service team will assist you promptly.'),(389,'Service Enquiry','Tell us what you need, and our service team will assist you promptly.'),(390,'Mobile Service','Tell us what you need, and our service team will assist you promptly.'),(393,'Service Enquiry','Tell us what you need, and our service team will assist you promptly.'),(394,'Mobile Service','Tell us what you need, and our service team will assist you promptly.'),(395,'Service Enquiry','Tell us what you need, and our service team will assist you promptly.'),(396,'Mobile Service','Tell us what you need, and our service team will assist you promptly.'),(397,'Service Enquiry','Tell us what you need, and our service team will assist you promptly.'),(398,'Mobile Service','Tell us what you need, and our service team will assist you promptly.'),(401,'Book a Service','TyrePlus is known for quality service, technical expertise, and competitive pricing.'),(402,'Mobile Service','TyrePlus is known for quality service, technical expertise, and competitive pricing.'),(403,'Service Enquiry','Tell us what you need, and our service team will assist you promptly.'),(404,'Service Enquiry','Tell us what you need, and our service team will assist you promptly.'),(405,'Service Enquiry','Tell us what you need, and our service team will assist you promptly.'),(406,'Service Enquiry','Tell us what you need, and our service team will assist you promptly.');
/*!40000 ALTER TABLE `components_common_title_descs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `components_common_title_with_descs`
--

DROP TABLE IF EXISTS `components_common_title_with_descs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `components_common_title_with_descs` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `title` longtext,
  `sub_title` varchar(255) DEFAULT NULL,
  `description` longtext,
  `horizontal_alignment` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=430 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `components_common_title_with_descs`
--

LOCK TABLES `components_common_title_with_descs` WRITE;
/*!40000 ALTER TABLE `components_common_title_with_descs` DISABLE KEYS */;
INSERT INTO `components_common_title_with_descs` VALUES (1,'Your One-Stop Destination for Tyre Services','Your Trusted Partner Across the UAE','<p>We provides expert tyre services in Dubai, Abu Dhabi, and the UAE, offering tyre fitting, rotation, and puncture repair services. Our experienced team guarantees that your tyres are properly maintained for enhanced safety, longevity, and performance on the road.</p>',NULL),(11,'How often should I get my tyres checked or serviced?',NULL,'<p><meta charset=\"utf-8\"><span style=\"white-space:pre-wrap;\">Regularly check tyre pressure, rotate your tyres every 8,000–10,000 km, ensure proper wheel alignment, and avoid sudden braking or speeding. Routine inspections and timely repairs also help extend tyre life.</span></p>',NULL),(12,'How can I extend the lifespan of my tyres?',NULL,'<p><meta charset=\"utf-8\"><span style=\"white-space:pre-wrap;\">Regularly check tyre pressure, rotate your tyres every 8,000–10,000 km, ensure proper wheel alignment, and avoid sudden braking or speeding. Routine inspections and timely repairs also help extend tyre life.</span></p>',NULL),(13,'What are the signs that my tyres need replacement or repair?',NULL,'<p><meta charset=\"utf-8\"><span style=\"white-space:pre-wrap;\">Regularly check tyre pressure, rotate your tyres every 8,000–10,000 km, ensure proper wheel alignment, and avoid sudden braking or speeding. Routine inspections and timely repairs also help extend tyre life.</span></p>',NULL),(18,'Complete Tyre Care','Professional fitting, balancing, repairs, and maintenance to keep your tyres performing at their best.',NULL,NULL),(24,'Your Trusted Partner Across the UAE',NULL,NULL,NULL),(25,'Your Trusted Partner Across the UAE',NULL,NULL,NULL),(32,'Your one destination for Callibration Services','Your Trusted Partner Across the UAE','<p>We provides expert tyre services in Dubai, Abu Dhabi, and the UAE, offering calliberation services</p>',NULL),(38,'Your one destination for Callibration Services','Your Trusted Partner Across the UAE','<p>We provides expert tyre services in Dubai, Abu Dhabi, and the UAE, offering calliberation services</p>',NULL),(175,'What Is Tyre Rotation?',NULL,'<p>Tyre rotation is a simple yet effective way to extend the life of your tyres and ensure even wear. By moving tyres from one position to another, we balance wear patterns and reduce stress on individual tyres. Front tyres typically wear faster due to steering and braking forces, while weight distribution affects wear rates. Our technicians conduct thorough wheel tracking and rotation, moving tyres from rear to front and front to rear, ensuring proper steering and handling of your vehicle. This simple process can make a big difference in your vehicle\'s performance and tyre lifespan.</p>','left'),(176,'Enhanced Vehicle Performance & Safety',NULL,'<ul><li><strong>Extended Tyre Life: </strong>Rotate every 8,000-10,000 km to extend lifespan by up to 25%</li><li><strong>Improved Performance:</strong> Even wear ensures consistent handling, braking, and traction</li><li><strong>Enhanced Safety: </strong>Uniform wear reduces blowout risk and improves stability</li><li><strong>Better Fuel Efficiency:</strong> Evenly worn tyres reduce rolling resistance, saving fuel costs</li><li><strong>Warranty Protection:</strong> Regular rotation required by many tyre manufacturers to maintain warranty</li></ul>','left'),(200,'Your One-Stop Destination for Tyre Services','Your Trusted Partner Across the UAE','<p>We provides expert tyre services in Dubai, Abu Dhabi, and the UAE, offering tyre fitting, rotation, and puncture repair services. Our experienced team guarantees that your tyres are properly maintained for enhanced safety, longevity, and performance on the road.</p>',NULL),(201,'How often should I get my tyres checked or serviced?',NULL,'<p><meta charset=\"utf-8\"><span style=\"white-space:pre-wrap;\">Regularly check tyre pressure, rotate your tyres every 8,000–10,000 km, ensure proper wheel alignment, and avoid sudden braking or speeding. Routine inspections and timely repairs also help extend tyre life.</span></p>',NULL),(202,'How can I extend the lifespan of my tyres?',NULL,'<p><meta charset=\"utf-8\"><span style=\"white-space:pre-wrap;\">Regularly check tyre pressure, rotate your tyres every 8,000–10,000 km, ensure proper wheel alignment, and avoid sudden braking or speeding. Routine inspections and timely repairs also help extend tyre life.</span></p>',NULL),(203,'What are the signs that my tyres need replacement or repair?',NULL,'<p><meta charset=\"utf-8\"><span style=\"white-space:pre-wrap;\">Regularly check tyre pressure, rotate your tyres every 8,000–10,000 km, ensure proper wheel alignment, and avoid sudden braking or speeding. Routine inspections and timely repairs also help extend tyre life.</span></p>',NULL),(215,NULL,NULL,'<p><img src=\"https://d1i031whgqu7f4.cloudfront.net/Group_10_bbe0a4aed5.png\" alt=\"Group 10.png\" srcset=\"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Group_10_bbe0a4aed5.png 212w,https://d1i031whgqu7f4.cloudfront.net/small_Group_10_bbe0a4aed5.png 500w,https://d1i031whgqu7f4.cloudfront.net/medium_Group_10_bbe0a4aed5.png 750w,https://d1i031whgqu7f4.cloudfront.net/large_Group_10_bbe0a4aed5.png 1000w,\" sizes=\"100vw\" width=\"1768\" height=\"1302\"></p>','left'),(229,'Benefits of Nitrogen Inflation',NULL,'<ul><li><strong>Better Pressure Retention: </strong>Nitrogen molecules escape 3-4 times slower than regular air, keeping your tyres properly inflated longer between checks.</li><li><strong>Temperature Stability: </strong>Nitrogen provides consistent pressure despite UAE\'s extreme heat, with less variation between cool mornings and scorching afternoons when road temperatures exceed 70°C.</li><li><strong>Prevents Corrosion:</strong> Moisture-free nitrogen prevents internal wheel corrosion and protects TPMS sensors, extending wheel lifespan.</li><li><strong>Reduced Heat Buildup: </strong>Nitrogen runs cooler during extended highway driving, reducing thermal degradation and extending tyre life.</li><li><strong>Better Performance: </strong>Consistent pressure improves fuel efficiency, handling, braking, and overall safety.</li></ul>','left'),(230,'Why Choose Nitrogen Over Regular Air?',NULL,'<p>Regular compressed air contains oxygen molecules that are smaller than nitrogen molecules, allowing them to permeate through tyre rubber more quickly. This leads to faster pressure loss over time. Additionally, the moisture in compressed air can cause internal corrosion of wheels and pressure fluctuations as temperatures change. Nitrogen addresses these issues by providing a more stable, dry inflation medium.</p>','left'),(231,'Is Nitrogen Right for Your Vehicle?',NULL,'<p>Nitrogen inflation benefits all vehicles but proves particularly valuable for high-performance cars, luxury vehicles, SUVs used for long-distance highway driving, commercial vehicles requiring consistent performance, and any vehicle operating in the UAE\'s demanding climate. Vehicles with TPMS systems especially benefit from nitrogen\'s stability, as it reduces false pressure warnings caused by temperature fluctuations.</p>','left'),(238,'Maintaining Nitrogen-Filled Tyres',NULL,'<p>Even with nitrogen, regular pressure checks are a must. Check your tyre pressure monthly and before long trips - nitrogen-filled tyres just need less frequent top-ups. If you need air and nitrogen\'s not available, regular air\'s fine to top up with, but it\'ll dilute the nitrogen benefits. For optimal results, hit up CME for nitrogen top-ups and keep those tyres in top shape.</p>','left'),(239,'Nitrogen Inflation Myths vs. Facts',NULL,'<p>Think nitrogen\'s just for race cars or planes? Think again! Modern equipment makes it a practical choice for everyday vehicles. Nitrogen reduces pressure loss, but doesn\'t mean you can skip pressure checks - punctures, valve leaks, or bead issues can still cause problems. The benefits are real, though: better pressure retention and temperature stability.</p>','left'),(265,'Air Conditioning Service',NULL,'<p>Maintaining your vehicle\'s air conditioning system is crucial for a comfortable driving experience, particularly during extreme temperatures. The AC system not only regulates temperature but also controls humidity, contributing to a healthier in-cab environment. Regular maintenance is essential to ensure optimal performance. It\'s worth noting that incorrect refrigerant gas levels can lead to system failure, increased fuel consumption, and reduced efficiency.</p><p>Approximately up to 20% of air conditioning gas is lost from a car air conditioning system each year which is why we recommend you have your system checked on a regular basis Benefits</p><ul><li>Cooler drives, happier rides</li><li>Safer with a demisted windscreen</li><li>Boost your car\'s performance &amp; fuel efficiency</li><li>Breathe easy – AC checks remove airborne contaminants</li></ul>','left'),(266,'What is Car AC Maintenance?',NULL,'<p>Car AC maintenance includes a thorough inspection, cleaning, and servicing of your vehicle\'s air conditioning system. We check refrigerant levels, test system pressure, inspect for leaks or damage, clean filters, and fine-tune performance for optimal cooling. Regular maintenance prevents breakdowns and keeps your AC running strong.</p>','left'),(267,'Why AC Maintenance is Critical in the UAE',NULL,'<p>The UAE\'s scorching climate is tough on car AC systems. With temps soaring above 40°C and cabins hitting 70°C in direct sun, your AC works overtime. This leads to faster wear, quicker refrigerant loss, and potential system failures if neglected. Skipping AC maintenance isn\'t just uncomfortable – it can impact your focus, hike fuel costs, and bring pricey repairs. Regular checks keep your ride cool, safe, and comfy.</p>','left'),(268,'What Our AC Service Includes',NULL,'<ol><li>Complete system diagnostic and pressure testing</li><li>Refrigerant recovery and recharge to manufacturer specifications</li><li>Leak detection and repair</li><li>Cabin air filter inspection and replacement</li><li>Evaporator and ventilation system cleaning</li><li>Compressor operation check</li><li>Condenser cleaning and inspection</li><li>Belt and pulley inspection</li><li>Temperature output verification</li><li>Full system performance report</li></ol>','left'),(269,'Benefits of Regular AC Maintenance',NULL,'<p>Regular AC servicing ensures optimal performance in UAE\'s extreme temperatures, improving fuel efficiency by up to 10% and extending the lifespan of AC components. This maintenance also promotes healthier cabin air quality, crucial for families and individuals with allergies. Early issue detection prevents costly repairs, while a well-maintained system enhances overall driving comfort and adds value to your vehicle in the UAE market.</p>','left'),(308,'Accurate wheel balancing with CME experts',NULL,'<ul><li><strong>Precision Detection:</strong> We use advanced 6-axis wheel balancers and weighing systems to detect even the slightest imbalance.</li><li><strong>Advanced Analysis:</strong> Our sensor-driven analysis identifies problem areas.</li><li><strong>Accurate Balancing:</strong> We apply counterweights or high-quality mastic as needed to achieve perfect balance.</li><li><strong>Quality Check:</strong> We double-check the wheel\'s vibration levels against OEM specs after balancing.</li></ul>','left'),(311,'What is the typical turnaround time?',NULL,'<ul><li>For a Standard Tyre Change + Wheel Balancing –&nbsp;30‑45 minutes</li><li>Entirety of Heavy Duty / SUV Kit –&nbsp;45‑60 minutes&nbsp;</li></ul><p>We announce the exact ETA during booking, so your schedule stays intact.</p>','left'),(312,'Will I receive a balancing tag or data sheet?',NULL,'<p>A Balancing Report Card shows the cross‑wheel and in‑wheel values pre‑ and post‑balance. We “caption” each wheel with a permanent label containing the balancing points, useful for any&nbsp;future checks or repairs.</p>','left'),(328,NULL,NULL,NULL,NULL),(329,NULL,NULL,NULL,NULL),(353,NULL,NULL,'<p>Bosch offers you the appropriate spare parts for your tools, such as angle grinders or drills: from the armature, to the carbon brushes, through to the batteries and chargers.</p><p>Here you can access our spare parts catalogue and identify the parts of your requirements.</p><p>&nbsp;</p>','left'),(357,'MEASURING TOOL CALIBRATION',NULL,'<p>We take on the job of calibrating your measuring tools so that you can work reliably.</p><p>The Bosch calibration service is fast, precise and reliable.</p>','left'),(358,'Our calibration services:',NULL,'<ul><li>Cleaning the tool</li><li>Checking the measuring accuracy</li><li>If required: Adjusting of the tool</li><li>Documenting all measured values</li></ul>','left'),(379,'Complete Automotive Spareparts Care','lorem ipsum dolor sit amet',NULL,'center'),(381,'Complete Powertools Care','lorem ipsum dolor sit amet',NULL,'left'),(386,'Complete Powertools Care','lorem ipsum dolor sit amet',NULL,'left'),(402,'Complete Tyre Care','Professional fitting, balancing, repairs, and maintenance to keep your tyres performing at their best.',NULL,NULL),(403,'Complete Automotive Spareparts Care','lorem ipsum dolor sit amet',NULL,'center'),(404,'Air Conditioning Service',NULL,'<p>Maintaining your vehicle\'s air conditioning system is crucial for a comfortable driving experience, particularly during extreme temperatures. The AC system not only regulates temperature but also controls humidity, contributing to a healthier in-cab environment. Regular maintenance is essential to ensure optimal performance. It\'s worth noting that incorrect refrigerant gas levels can lead to system failure, increased fuel consumption, and reduced efficiency.</p><p>Approximately up to 20% of air conditioning gas is lost from a car air conditioning system each year which is why we recommend you have your system checked on a regular basis Benefits</p><ul><li>Cooler drives, happier rides</li><li>Safer with a demisted windscreen</li><li>Boost your car\'s performance &amp; fuel efficiency</li><li>Breathe easy – AC checks remove airborne contaminants</li></ul>','left'),(405,'What is Car AC Maintenance?',NULL,'<p>Car AC maintenance includes a thorough inspection, cleaning, and servicing of your vehicle\'s air conditioning system. We check refrigerant levels, test system pressure, inspect for leaks or damage, clean filters, and fine-tune performance for optimal cooling. Regular maintenance prevents breakdowns and keeps your AC running strong.</p>','left'),(406,'Why AC Maintenance is Critical in the UAE',NULL,'<p>The UAE\'s scorching climate is tough on car AC systems. With temps soaring above 40°C and cabins hitting 70°C in direct sun, your AC works overtime. This leads to faster wear, quicker refrigerant loss, and potential system failures if neglected. Skipping AC maintenance isn\'t just uncomfortable – it can impact your focus, hike fuel costs, and bring pricey repairs. Regular checks keep your ride cool, safe, and comfy.</p>','left'),(407,'What Our AC Service Includes',NULL,'<ol><li>Complete system diagnostic and pressure testing</li><li>Refrigerant recovery and recharge to manufacturer specifications</li><li>Leak detection and repair</li><li>Cabin air filter inspection and replacement</li><li>Evaporator and ventilation system cleaning</li><li>Compressor operation check</li><li>Condenser cleaning and inspection</li><li>Belt and pulley inspection</li><li>Temperature output verification</li><li>Full system performance report</li></ol>','left'),(408,'Benefits of Regular AC Maintenance',NULL,'<p>Regular AC servicing ensures optimal performance in UAE\'s extreme temperatures, improving fuel efficiency by up to 10% and extending the lifespan of AC components. This maintenance also promotes healthier cabin air quality, crucial for families and individuals with allergies. Early issue detection prevents costly repairs, while a well-maintained system enhances overall driving comfort and adds value to your vehicle in the UAE market.</p>','left'),(411,'Benefits of Nitrogen Inflation',NULL,'<ul><li><strong>Better Pressure Retention: </strong>Nitrogen molecules escape 3-4 times slower than regular air, keeping your tyres properly inflated longer between checks.</li><li><strong>Temperature Stability: </strong>Nitrogen provides consistent pressure despite UAE\'s extreme heat, with less variation between cool mornings and scorching afternoons when road temperatures exceed 70°C.</li><li><strong>Prevents Corrosion:</strong> Moisture-free nitrogen prevents internal wheel corrosion and protects TPMS sensors, extending wheel lifespan.</li><li><strong>Reduced Heat Buildup: </strong>Nitrogen runs cooler during extended highway driving, reducing thermal degradation and extending tyre life.</li><li><strong>Better Performance: </strong>Consistent pressure improves fuel efficiency, handling, braking, and overall safety.</li></ul>','left'),(412,'Why Choose Nitrogen Over Regular Air?',NULL,'<p>Regular compressed air contains oxygen molecules that are smaller than nitrogen molecules, allowing them to permeate through tyre rubber more quickly. This leads to faster pressure loss over time. Additionally, the moisture in compressed air can cause internal corrosion of wheels and pressure fluctuations as temperatures change. Nitrogen addresses these issues by providing a more stable, dry inflation medium.</p>','left'),(413,'Is Nitrogen Right for Your Vehicle?',NULL,'<p>Nitrogen inflation benefits all vehicles but proves particularly valuable for high-performance cars, luxury vehicles, SUVs used for long-distance highway driving, commercial vehicles requiring consistent performance, and any vehicle operating in the UAE\'s demanding climate. Vehicles with TPMS systems especially benefit from nitrogen\'s stability, as it reduces false pressure warnings caused by temperature fluctuations.</p>','left'),(414,'Maintaining Nitrogen-Filled Tyres',NULL,'<p>Even with nitrogen, regular pressure checks are a must. Check your tyre pressure monthly and before long trips - nitrogen-filled tyres just need less frequent top-ups. If you need air and nitrogen\'s not available, regular air\'s fine to top up with, but it\'ll dilute the nitrogen benefits. For optimal results, hit up CME for nitrogen top-ups and keep those tyres in top shape.</p>','left'),(415,'Nitrogen Inflation Myths vs. Facts',NULL,'<p>Think nitrogen\'s just for race cars or planes? Think again! Modern equipment makes it a practical choice for everyday vehicles. Nitrogen reduces pressure loss, but doesn\'t mean you can skip pressure checks - punctures, valve leaks, or bead issues can still cause problems. The benefits are real, though: better pressure retention and temperature stability.</p>','left'),(417,'Accurate wheel balancing with CME experts',NULL,'<ul><li><strong>Precision Detection:</strong> We use advanced 6-axis wheel balancers and weighing systems to detect even the slightest imbalance.</li><li><strong>Advanced Analysis:</strong> Our sensor-driven analysis identifies problem areas.</li><li><strong>Accurate Balancing:</strong> We apply counterweights or high-quality mastic as needed to achieve perfect balance.</li><li><strong>Quality Check:</strong> We double-check the wheel\'s vibration levels against OEM specs after balancing.</li></ul>','left'),(418,'What is the typical turnaround time?',NULL,'<ul><li>For a Standard Tyre Change + Wheel Balancing –&nbsp;30‑45 minutes</li><li>Entirety of Heavy Duty / SUV Kit –&nbsp;45‑60 minutes&nbsp;</li></ul><p>We announce the exact ETA during booking, so your schedule stays intact.</p>','left'),(419,'Will I receive a balancing tag or data sheet?',NULL,'<p>A Balancing Report Card shows the cross‑wheel and in‑wheel values pre‑ and post‑balance. We “caption” each wheel with a permanent label containing the balancing points, useful for any&nbsp;future checks or repairs.</p>','left'),(420,'What Is Tyre Rotation?',NULL,'<p>Tyre rotation is a simple yet effective way to extend the life of your tyres and ensure even wear. By moving tyres from one position to another, we balance wear patterns and reduce stress on individual tyres. Front tyres typically wear faster due to steering and braking forces, while weight distribution affects wear rates. Our technicians conduct thorough wheel tracking and rotation, moving tyres from rear to front and front to rear, ensuring proper steering and handling of your vehicle. This simple process can make a big difference in your vehicle\'s performance and tyre lifespan.</p>','left'),(421,'Enhanced Vehicle Performance & Safety',NULL,'<ul><li><strong>Extended Tyre Life: </strong>Rotate every 8,000-10,000 km to extend lifespan by up to 25%</li><li><strong>Improved Performance:</strong> Even wear ensures consistent handling, braking, and traction</li><li><strong>Enhanced Safety: </strong>Uniform wear reduces blowout risk and improves stability</li><li><strong>Better Fuel Efficiency:</strong> Evenly worn tyres reduce rolling resistance, saving fuel costs</li><li><strong>Warranty Protection:</strong> Regular rotation required by many tyre manufacturers to maintain warranty</li></ul>','left'),(423,NULL,NULL,'<p><img src=\"https://d1i031whgqu7f4.cloudfront.net/Group_10_bbe0a4aed5.png\" alt=\"Group 10.png\" srcset=\"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Group_10_bbe0a4aed5.png 212w,https://d1i031whgqu7f4.cloudfront.net/small_Group_10_bbe0a4aed5.png 500w,https://d1i031whgqu7f4.cloudfront.net/medium_Group_10_bbe0a4aed5.png 750w,https://d1i031whgqu7f4.cloudfront.net/large_Group_10_bbe0a4aed5.png 1000w,\" sizes=\"100vw\" width=\"1768\" height=\"1302\"></p>','left'),(427,NULL,NULL,'<p>Bosch offers you the appropriate spare parts for your tools, such as angle grinders or drills: from the armature, to the carbon brushes, through to the batteries and chargers.</p><p>Here you can access our spare parts catalogue and identify the parts of your requirements.</p><p>&nbsp;</p>','left'),(428,'MEASURING TOOL CALIBRATION',NULL,'<p>We take on the job of calibrating your measuring tools so that you can work reliably.</p><p>The Bosch calibration service is fast, precise and reliable.</p>','left'),(429,'Our calibration services:',NULL,'<ul><li>Cleaning the tool</li><li>Checking the measuring accuracy</li><li>If required: Adjusting of the tool</li><li>Documenting all measured values</li></ul>','left');
/*!40000 ALTER TABLE `components_common_title_with_descs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `components_home_about_cmes`
--

DROP TABLE IF EXISTS `components_home_about_cmes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `components_home_about_cmes` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `title` longtext,
  `sub_title` varchar(255) DEFAULT NULL,
  `description` longtext,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=34 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `components_home_about_cmes`
--

LOCK TABLES `components_home_about_cmes` WRITE;
/*!40000 ALTER TABLE `components_home_about_cmes` DISABLE KEYS */;
INSERT INTO `components_home_about_cmes` VALUES (1,'<p><meta charset=\"utf-8\"><span style=\"white-space:pre-wrap;\">A proud member of the<strong> ALFAHIM</strong> Group</span><br>&nbsp;</p>','Central Motors Equipment (CME)','<p><meta charset=\"utf-8\"><span style=\"white-space:pre-wrap;\">Leading provider of premium Automotive Aftermarket, Power Tools, Tyres and their services across the UAE.&nbsp;</span><br>&nbsp;</p>'),(33,'<p><meta charset=\"utf-8\"><span style=\"white-space:pre-wrap;\">A proud member of the<strong> ALFAHIM</strong> Group</span><br>&nbsp;</p>','Central Motors Equipment (CME)','<p><meta charset=\"utf-8\"><span style=\"white-space:pre-wrap;\">Leading provider of premium Automotive Aftermarket, Power Tools, Tyres and their services across the UAE.&nbsp;</span><br>&nbsp;</p>');
/*!40000 ALTER TABLE `components_home_about_cmes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `components_home_about_cmes_cmps`
--

DROP TABLE IF EXISTS `components_home_about_cmes_cmps`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `components_home_about_cmes_cmps` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `entity_id` int unsigned DEFAULT NULL,
  `cmp_id` int unsigned DEFAULT NULL,
  `component_type` varchar(255) DEFAULT NULL,
  `field` varchar(255) DEFAULT NULL,
  `order` double unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `components_home_about_cmes_uq` (`entity_id`,`cmp_id`,`field`,`component_type`),
  KEY `components_home_about_cmes_field_idx` (`field`),
  KEY `components_home_about_cmes_component_type_idx` (`component_type`),
  KEY `components_home_about_cmes_entity_fk` (`entity_id`),
  CONSTRAINT `components_home_about_cmes_entity_fk` FOREIGN KEY (`entity_id`) REFERENCES `components_home_about_cmes` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=53 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `components_home_about_cmes_cmps`
--

LOCK TABLES `components_home_about_cmes_cmps` WRITE;
/*!40000 ALTER TABLE `components_home_about_cmes_cmps` DISABLE KEYS */;
INSERT INTO `components_home_about_cmes_cmps` VALUES (1,1,26,'common.link-item','callToAction',NULL),(52,33,857,'common.link-item','callToAction',NULL);
/*!40000 ALTER TABLE `components_home_about_cmes_cmps` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `components_home_business_streams`
--

DROP TABLE IF EXISTS `components_home_business_streams`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `components_home_business_streams` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(255) DEFAULT NULL,
  `sub_title` longtext,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=34 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `components_home_business_streams`
--

LOCK TABLES `components_home_business_streams` WRITE;
/*!40000 ALTER TABLE `components_home_business_streams` DISABLE KEYS */;
INSERT INTO `components_home_business_streams` VALUES (1,'Explore our key areas  of business expertise and operations','Business Streams'),(33,'Explore our key areas  of business expertise and operations','Business Streams');
/*!40000 ALTER TABLE `components_home_business_streams` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `components_home_business_streams_cmps`
--

DROP TABLE IF EXISTS `components_home_business_streams_cmps`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `components_home_business_streams_cmps` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `entity_id` int unsigned DEFAULT NULL,
  `cmp_id` int unsigned DEFAULT NULL,
  `component_type` varchar(255) DEFAULT NULL,
  `field` varchar(255) DEFAULT NULL,
  `order` double unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `components_home_business_streams_uq` (`entity_id`,`cmp_id`,`field`,`component_type`),
  KEY `components_home_business_streams_field_idx` (`field`),
  KEY `components_home_business_streams_component_type_idx` (`component_type`),
  KEY `components_home_business_streams_entity_fk` (`entity_id`),
  CONSTRAINT `components_home_business_streams_entity_fk` FOREIGN KEY (`entity_id`) REFERENCES `components_home_business_streams` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=65 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `components_home_business_streams_cmps`
--

LOCK TABLES `components_home_business_streams_cmps` WRITE;
/*!40000 ALTER TABLE `components_home_business_streams_cmps` DISABLE KEYS */;
INSERT INTO `components_home_business_streams_cmps` VALUES (1,1,49,'common.title-desc-with-img','serviceData',NULL),(64,33,833,'common.title-desc-with-img','serviceData',NULL);
/*!40000 ALTER TABLE `components_home_business_streams_cmps` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `components_home_content_sections`
--

DROP TABLE IF EXISTS `components_home_content_sections`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `components_home_content_sections` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(255) DEFAULT NULL,
  `sub_title` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=113 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `components_home_content_sections`
--

LOCK TABLES `components_home_content_sections` WRITE;
/*!40000 ALTER TABLE `components_home_content_sections` DISABLE KEYS */;
INSERT INTO `components_home_content_sections` VALUES (1,'Live from Our Socials','Catch the latest updates, stories, and moments as they happen.'),(2,'Our Locations','Locate our branches across the regions'),(5,'Trusted Brand','We partner with industry-leading brands to deliver exceptional quality and reliability'),(84,'Live from Our Socials','Catch the latest updates, stories, and moments as they happen.'),(86,'Live from Our Socials','Catch the latest updates, stories, and moments as they happen.'),(87,'Live from Our Socials','Catch the latest updates, stories, and moments as they happen.'),(88,'Live from Our Socials','Catch the latest updates, stories, and moments as they happen.'),(106,'Trusted Brand','We partner with industry-leading brands to deliver exceptional quality and reliability'),(107,'Live from Our Socials','Catch the latest updates, stories, and moments as they happen.'),(108,'Our Locations','Locate our branches across the regions'),(109,'Live from Our Socials','Catch the latest updates, stories, and moments as they happen.'),(112,'Live from Our Socials','Catch the latest updates, stories, and moments as they happen.');
/*!40000 ALTER TABLE `components_home_content_sections` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `components_home_logos`
--

DROP TABLE IF EXISTS `components_home_logos`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `components_home_logos` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=219 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `components_home_logos`
--

LOCK TABLES `components_home_logos` WRITE;
/*!40000 ALTER TABLE `components_home_logos` DISABLE KEYS */;
INSERT INTO `components_home_logos` VALUES (1,NULL),(24,NULL),(52,'AZPI'),(53,'SICAM'),(54,NULL),(55,NULL),(56,NULL),(57,NULL),(58,NULL),(210,NULL),(211,NULL),(212,'AZPI'),(213,'SICAM'),(214,NULL),(215,NULL),(216,NULL),(217,NULL),(218,NULL);
/*!40000 ALTER TABLE `components_home_logos` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `components_home_trusted_sections`
--

DROP TABLE IF EXISTS `components_home_trusted_sections`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `components_home_trusted_sections` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(255) DEFAULT NULL,
  `sub_title` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=34 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `components_home_trusted_sections`
--

LOCK TABLES `components_home_trusted_sections` WRITE;
/*!40000 ALTER TABLE `components_home_trusted_sections` DISABLE KEYS */;
INSERT INTO `components_home_trusted_sections` VALUES (1,'Trusted Brand',NULL),(33,'Trusted Brand',NULL);
/*!40000 ALTER TABLE `components_home_trusted_sections` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `components_home_trusted_sections_cmps`
--

DROP TABLE IF EXISTS `components_home_trusted_sections_cmps`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `components_home_trusted_sections_cmps` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `entity_id` int unsigned DEFAULT NULL,
  `cmp_id` int unsigned DEFAULT NULL,
  `component_type` varchar(255) DEFAULT NULL,
  `field` varchar(255) DEFAULT NULL,
  `order` double unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `components_home_trusted_sections_uq` (`entity_id`,`cmp_id`,`field`,`component_type`),
  KEY `components_home_trusted_sections_field_idx` (`field`),
  KEY `components_home_trusted_sections_component_type_idx` (`component_type`),
  KEY `components_home_trusted_sections_entity_fk` (`entity_id`),
  CONSTRAINT `components_home_trusted_sections_entity_fk` FOREIGN KEY (`entity_id`) REFERENCES `components_home_trusted_sections` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=422 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `components_home_trusted_sections_cmps`
--

LOCK TABLES `components_home_trusted_sections_cmps` WRITE;
/*!40000 ALTER TABLE `components_home_trusted_sections_cmps` DISABLE KEYS */;
INSERT INTO `components_home_trusted_sections_cmps` VALUES (1,1,1,'home.logos','items',1),(35,1,24,'home.logos','items',2),(92,1,52,'home.logos','items',3),(93,1,53,'home.logos','items',4),(94,1,54,'home.logos','items',5),(95,1,55,'home.logos','items',6),(96,1,56,'home.logos','items',7),(97,1,57,'home.logos','items',8),(98,1,58,'home.logos','items',9),(413,33,210,'home.logos','items',1),(414,33,211,'home.logos','items',2),(415,33,212,'home.logos','items',3),(416,33,213,'home.logos','items',4),(417,33,214,'home.logos','items',5),(418,33,215,'home.logos','items',6),(419,33,216,'home.logos','items',7),(420,33,217,'home.logos','items',8),(421,33,218,'home.logos','items',9);
/*!40000 ALTER TABLE `components_home_trusted_sections_cmps` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `components_service_landing_our_services`
--

DROP TABLE IF EXISTS `components_service_landing_our_services`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `components_service_landing_our_services` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(255) DEFAULT NULL,
  `description` longtext,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `components_service_landing_our_services`
--

LOCK TABLES `components_service_landing_our_services` WRITE;
/*!40000 ALTER TABLE `components_service_landing_our_services` DISABLE KEYS */;
INSERT INTO `components_service_landing_our_services` VALUES (1,'Complete Tyre Care','Professional fitting, balancing, repairs, and maintenance to keep your tyres performing at their best.'),(4,NULL,NULL),(8,NULL,NULL),(10,'ar service',NULL),(13,'ar service',NULL),(14,NULL,NULL),(15,'Complete Tyre Care','Professional fitting, balancing, repairs, and maintenance to keep your tyres performing at their best.'),(16,NULL,NULL);
/*!40000 ALTER TABLE `components_service_landing_our_services` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `components_service_landing_ser54cca_branch_location_lnk`
--

DROP TABLE IF EXISTS `components_service_landing_ser54cca_branch_location_lnk`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `components_service_landing_ser54cca_branch_location_lnk` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `service_locations_id` int unsigned DEFAULT NULL,
  `branch_location_id` int unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `components_service_landing_ser54cca_branch_loca44487_uq` (`service_locations_id`,`branch_location_id`),
  KEY `components_service_landing_ser54cca_branch_loca44487_fk` (`service_locations_id`),
  KEY `components_service_landing_ser54cca_branch_loc44487_ifk` (`branch_location_id`),
  CONSTRAINT `components_service_landing_ser54cca_branch_loc44487_ifk` FOREIGN KEY (`branch_location_id`) REFERENCES `branch_locations` (`id`) ON DELETE CASCADE,
  CONSTRAINT `components_service_landing_ser54cca_branch_loca44487_fk` FOREIGN KEY (`service_locations_id`) REFERENCES `components_service_landing_service_locations` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=24 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `components_service_landing_ser54cca_branch_location_lnk`
--

LOCK TABLES `components_service_landing_ser54cca_branch_location_lnk` WRITE;
/*!40000 ALTER TABLE `components_service_landing_ser54cca_branch_location_lnk` DISABLE KEYS */;
INSERT INTO `components_service_landing_ser54cca_branch_location_lnk` VALUES (10,1,1),(11,4,4),(22,23,3),(23,24,6);
/*!40000 ALTER TABLE `components_service_landing_ser54cca_branch_location_lnk` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `components_service_landing_service_form_blks`
--

DROP TABLE IF EXISTS `components_service_landing_service_form_blks`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `components_service_landing_service_form_blks` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `title` longtext,
  `sub_heading` varchar(255) DEFAULT NULL,
  `description` longtext,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `components_service_landing_service_form_blks`
--

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

--
-- Table structure for table `components_service_landing_service_form_blks_cmps`
--

DROP TABLE IF EXISTS `components_service_landing_service_form_blks_cmps`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `components_service_landing_service_form_blks_cmps` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `entity_id` int unsigned DEFAULT NULL,
  `cmp_id` int unsigned DEFAULT NULL,
  `component_type` varchar(255) DEFAULT NULL,
  `field` varchar(255) DEFAULT NULL,
  `order` double unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `components_service_landing_service_form_blks_uq` (`entity_id`,`cmp_id`,`field`,`component_type`),
  KEY `components_service_landing_service_form_blks_field_idx` (`field`),
  KEY `components_service_landing_serve2d51_component_type_idx` (`component_type`),
  KEY `components_service_landing_service_form_blks_entity_fk` (`entity_id`),
  CONSTRAINT `components_service_landing_service_form_blks_entity_fk` FOREIGN KEY (`entity_id`) REFERENCES `components_service_landing_service_form_blks` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `components_service_landing_service_form_blks_cmps`
--

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

--
-- Table structure for table `components_service_landing_service_locations`
--

DROP TABLE IF EXISTS `components_service_landing_service_locations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `components_service_landing_service_locations` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(255) DEFAULT NULL,
  `slug` varchar(255) DEFAULT NULL,
  `address` longtext,
  `embeded_map_url` longtext,
  `map_url` longtext,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=29 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `components_service_landing_service_locations`
--

LOCK TABLES `components_service_landing_service_locations` WRITE;
/*!40000 ALTER TABLE `components_service_landing_service_locations` DISABLE KEYS */;
INSERT INTO `components_service_landing_service_locations` VALUES (1,'Bosch Car Service – Bosch Diesel Service – Dubai',NULL,'Address: 17, 14b Street, Al Quoz Industrial Area 2, Dubai - 26255\nTel: +971 4 309 0900','https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d5634.436073124786!2d55.22934783762082!3d25.13368982406819!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3e5f69106833a325%3A0xb6f44bfa012414d3!2sCME%20Bosch%20Car%20Service!5e1!3m2!1sen!2sin!4v1768397496806!5m2!1sen!2sin',NULL),(4,'Central Motors and Equipment – AbuDhabi Branch',NULL,'Address: 37/1, 16 Street, M 15, Mussafah, Abu Dhabi - 71343\nTel: +971 2401 7753/ +971 2 401 7719','https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2834.507353749197!2d54.4850626740497!3d24.373424364575673!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3e5e4152bc4cc43d%3A0x1198e64599eddbd!2sCentral%20Motors%20%26%20Equipment%20-%20Abu%20Dhabi%20Branch!5e1!3m2!1sen!2sin!4v1768397377151!5m2!1sen!2sin',NULL),(23,'Bosch Car Service – Bosch Diesel Service – Dubai',NULL,'Address: 17, 14b Street, Al Quoz Industrial Area 2, Dubai - 26255\nTel: +971 4 309 0900','https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d5634.436073124786!2d55.22934783762082!3d25.13368982406819!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3e5f69106833a325%3A0xb6f44bfa012414d3!2sCME%20Bosch%20Car%20Service!5e1!3m2!1sen!2sin!4v1768397496806!5m2!1sen!2sin',NULL),(24,'Central Motors and Equipment – AbuDhabi Branch',NULL,'Address: 37/1, 16 Street, M 15, Mussafah, Abu Dhabi - 71343\nTel: +971 2401 7753/ +971 2 401 7719','https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2834.507353749197!2d54.4850626740497!3d24.373424364575673!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3e5e4152bc4cc43d%3A0x1198e64599eddbd!2sCentral%20Motors%20%26%20Equipment%20-%20Abu%20Dhabi%20Branch!5e1!3m2!1sen!2sin!4v1768397377151!5m2!1sen!2sin',NULL),(25,'Bosch Car Service – Bosch Diesel Service – Dubai',NULL,'Address: 17, 14b Street, Al Quoz Industrial Area 2, Dubai - 26255\nTel: +971 4 309 0900','https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d5634.436073124786!2d55.22934783762082!3d25.13368982406819!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3e5f69106833a325%3A0xb6f44bfa012414d3!2sCME%20Bosch%20Car%20Service!5e1!3m2!1sen!2sin!4v1768397496806!5m2!1sen!2sin',NULL),(26,'Central Motors and Equipment – AbuDhabi Branch',NULL,'Address: 37/1, 16 Street, M 15, Mussafah, Abu Dhabi - 71343\nTel: +971 2401 7753/ +971 2 401 7719','https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2834.507353749197!2d54.4850626740497!3d24.373424364575673!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3e5e4152bc4cc43d%3A0x1198e64599eddbd!2sCentral%20Motors%20%26%20Equipment%20-%20Abu%20Dhabi%20Branch!5e1!3m2!1sen!2sin!4v1768397377151!5m2!1sen!2sin',NULL),(27,'Bosch Car Service – Bosch Diesel Service – Dubai',NULL,'Address: 17, 14b Street, Al Quoz Industrial Area 2, Dubai - 26255\nTel: +971 4 309 0900','https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d5634.436073124786!2d55.22934783762082!3d25.13368982406819!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3e5f69106833a325%3A0xb6f44bfa012414d3!2sCME%20Bosch%20Car%20Service!5e1!3m2!1sen!2sin!4v1768397496806!5m2!1sen!2sin',NULL),(28,'Central Motors and Equipment – AbuDhabi Branch',NULL,'Address: 37/1, 16 Street, M 15, Mussafah, Abu Dhabi - 71343\nTel: +971 2401 7753/ +971 2 401 7719','https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2834.507353749197!2d54.4850626740497!3d24.373424364575673!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3e5e4152bc4cc43d%3A0x1198e64599eddbd!2sCentral%20Motors%20%26%20Equipment%20-%20Abu%20Dhabi%20Branch!5e1!3m2!1sen!2sin!4v1768397377151!5m2!1sen!2sin',NULL);
/*!40000 ALTER TABLE `components_service_landing_service_locations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `components_service_landing_service_locations_cmps`
--

DROP TABLE IF EXISTS `components_service_landing_service_locations_cmps`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `components_service_landing_service_locations_cmps` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `entity_id` int unsigned DEFAULT NULL,
  `cmp_id` int unsigned DEFAULT NULL,
  `component_type` varchar(255) DEFAULT NULL,
  `field` varchar(255) DEFAULT NULL,
  `order` double unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `components_service_landing_service_locations_uq` (`entity_id`,`cmp_id`,`field`,`component_type`),
  KEY `components_service_landing_service_locations_field_idx` (`field`),
  KEY `components_service_landing_serv54cca_component_type_idx` (`component_type`),
  KEY `components_service_landing_service_locations_entity_fk` (`entity_id`),
  CONSTRAINT `components_service_landing_service_locations_entity_fk` FOREIGN KEY (`entity_id`) REFERENCES `components_service_landing_service_locations` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `components_service_landing_service_locations_cmps`
--

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

--
-- Table structure for table `contact_enquiries`
--

DROP TABLE IF EXISTS `contact_enquiries`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `contact_enquiries` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `document_id` varchar(255) DEFAULT NULL,
  `full_name` varchar(255) DEFAULT NULL,
  `email` varchar(255) DEFAULT NULL,
  `phone_number` varchar(255) DEFAULT NULL,
  `message` longtext,
  `created_at` datetime(6) DEFAULT NULL,
  `updated_at` datetime(6) DEFAULT NULL,
  `published_at` datetime(6) DEFAULT NULL,
  `created_by_id` int unsigned DEFAULT NULL,
  `updated_by_id` int unsigned DEFAULT NULL,
  `locale` varchar(255) DEFAULT NULL,
  `enquiry_type` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `contact_enquiries_documents_idx` (`document_id`,`locale`,`published_at`),
  KEY `contact_enquiries_created_by_id_fk` (`created_by_id`),
  KEY `contact_enquiries_updated_by_id_fk` (`updated_by_id`),
  CONSTRAINT `contact_enquiries_created_by_id_fk` FOREIGN KEY (`created_by_id`) REFERENCES `admin_users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `contact_enquiries_updated_by_id_fk` FOREIGN KEY (`updated_by_id`) REFERENCES `admin_users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=29 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `contact_enquiries`
--

LOCK TABLES `contact_enquiries` WRITE;
/*!40000 ALTER TABLE `contact_enquiries` DISABLE KEYS */;
INSERT INTO `contact_enquiries` VALUES (19,'tklk6p7iwlq2w8rep07pffsg','Neeraj N','neeraj@ispgweb.com','971506632012','Test','2026-02-25 10:53:33.472000','2026-02-25 10:53:33.472000',NULL,NULL,NULL,'en','automotive'),(20,'tklk6p7iwlq2w8rep07pffsg','Neeraj N','neeraj@ispgweb.com','971506632012','Test','2026-02-25 10:53:33.472000','2026-02-25 10:53:33.472000','2026-02-25 10:53:33.560000',NULL,NULL,'en','automotive'),(21,'tmv9rmq27mytbjq7idlt8ouz','Neeraj N','neeraj@ispgweb.com','971506632310','asfaf','2026-03-09 09:58:11.879000','2026-03-09 09:58:11.879000',NULL,NULL,NULL,'en','automotive'),(22,'tmv9rmq27mytbjq7idlt8ouz','Neeraj N','neeraj@ispgweb.com','971506632310','asfaf','2026-03-09 09:58:11.879000','2026-03-09 09:58:11.879000','2026-03-09 09:58:11.965000',NULL,NULL,'en','automotive'),(23,'j7lvxrw5l7dc07k0q9hljv4n','Nimisha Raichel Varghese','nimisha@ispgweb.com','971908989890','testr','2026-03-20 07:37:51.509000','2026-03-20 07:37:51.509000',NULL,NULL,NULL,'en','power-tools'),(24,'j7lvxrw5l7dc07k0q9hljv4n','Nimisha Raichel Varghese','nimisha@ispgweb.com','971908989890','testr','2026-03-20 07:37:51.509000','2026-03-20 07:37:51.509000','2026-03-20 07:37:51.641000',NULL,NULL,'en','power-tools'),(25,'oyf43pj8cpc6g9vm9746qx6b','Nimisha Raichel Varghese','nimisha@ispgweb.com','971999677990','test','2026-03-20 09:15:16.291000','2026-03-20 09:15:16.291000',NULL,NULL,NULL,'en','tyres'),(26,'oyf43pj8cpc6g9vm9746qx6b','Nimisha Raichel Varghese','nimisha@ispgweb.com','971999677990','test','2026-03-20 09:15:16.291000','2026-03-20 09:15:16.291000','2026-03-20 09:15:16.402000',NULL,NULL,'en','tyres'),(27,'s4fb0v8vqmihqf3ffopuyv0j','Nimisha Raichel Varghese','nimisha@ispgweb.com','971909098989','test','2026-03-27 09:16:24.850000','2026-03-27 09:16:24.850000',NULL,NULL,NULL,'en','automotive'),(28,'s4fb0v8vqmihqf3ffopuyv0j','Nimisha Raichel Varghese','nimisha@ispgweb.com','971909098989','test','2026-03-27 09:16:24.850000','2026-03-27 09:16:24.850000','2026-03-27 09:16:24.940000',NULL,NULL,'en','automotive');
/*!40000 ALTER TABLE `contact_enquiries` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `contact_uses`
--

DROP TABLE IF EXISTS `contact_uses`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `contact_uses` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `document_id` varchar(255) DEFAULT NULL,
  `form_title` varchar(255) DEFAULT NULL,
  `created_at` datetime(6) DEFAULT NULL,
  `updated_at` datetime(6) DEFAULT NULL,
  `published_at` datetime(6) DEFAULT NULL,
  `created_by_id` int unsigned DEFAULT NULL,
  `updated_by_id` int unsigned DEFAULT NULL,
  `locale` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `contact_uses_documents_idx` (`document_id`,`locale`,`published_at`),
  KEY `contact_uses_created_by_id_fk` (`created_by_id`),
  KEY `contact_uses_updated_by_id_fk` (`updated_by_id`),
  CONSTRAINT `contact_uses_created_by_id_fk` FOREIGN KEY (`created_by_id`) REFERENCES `admin_users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `contact_uses_updated_by_id_fk` FOREIGN KEY (`updated_by_id`) REFERENCES `admin_users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=18 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `contact_uses`
--

LOCK TABLES `contact_uses` WRITE;
/*!40000 ALTER TABLE `contact_uses` DISABLE KEYS */;
INSERT INTO `contact_uses` VALUES (1,'n131z89l7hx88bwzwn5verb4','At your Service. We would like to hear from you!','2025-12-12 06:37:52.481000','2026-04-01 09:39:44.625000',NULL,1,1,'en'),(17,'n131z89l7hx88bwzwn5verb4','At your Service. We would like to hear from you!','2025-12-12 06:37:52.481000','2026-04-01 09:39:44.625000','2026-04-01 09:39:46.072000',1,1,'en');
/*!40000 ALTER TABLE `contact_uses` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `contact_uses_cmps`
--

DROP TABLE IF EXISTS `contact_uses_cmps`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `contact_uses_cmps` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `entity_id` int unsigned DEFAULT NULL,
  `cmp_id` int unsigned DEFAULT NULL,
  `component_type` varchar(255) DEFAULT NULL,
  `field` varchar(255) DEFAULT NULL,
  `order` double unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `contact_uses_uq` (`entity_id`,`cmp_id`,`field`,`component_type`),
  KEY `contact_uses_field_idx` (`field`),
  KEY `contact_uses_component_type_idx` (`component_type`),
  KEY `contact_uses_entity_fk` (`entity_id`),
  CONSTRAINT `contact_uses_entity_fk` FOREIGN KEY (`entity_id`) REFERENCES `contact_uses` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=63 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `contact_uses_cmps`
--

LOCK TABLES `contact_uses_cmps` WRITE;
/*!40000 ALTER TABLE `contact_uses_cmps` DISABLE KEYS */;
INSERT INTO `contact_uses_cmps` VALUES (1,1,20,'common.banner','banner',1),(14,1,1,'common.box-component','boxComponent',3),(35,1,66,'common.seo','seo',2),(60,17,266,'common.banner','banner',1),(61,17,11,'common.box-component','boxComponent',NULL),(62,17,159,'common.seo','seo',NULL);
/*!40000 ALTER TABLE `contact_uses_cmps` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `contact_uses_locations_lnk`
--

DROP TABLE IF EXISTS `contact_uses_locations_lnk`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `contact_uses_locations_lnk` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `contact_us_id` int unsigned DEFAULT NULL,
  `branch_location_id` int unsigned DEFAULT NULL,
  `branch_location_ord` double unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `contact_uses_locations_lnk_uq` (`contact_us_id`,`branch_location_id`),
  KEY `contact_uses_locations_lnk_fk` (`contact_us_id`),
  KEY `contact_uses_locations_lnk_ifk` (`branch_location_id`),
  KEY `contact_uses_locations_lnk_ofk` (`branch_location_ord`),
  CONSTRAINT `contact_uses_locations_lnk_fk` FOREIGN KEY (`contact_us_id`) REFERENCES `contact_uses` (`id`) ON DELETE CASCADE,
  CONSTRAINT `contact_uses_locations_lnk_ifk` FOREIGN KEY (`branch_location_id`) REFERENCES `branch_locations` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `contact_uses_locations_lnk`
--

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

--
-- Table structure for table `files`
--

DROP TABLE IF EXISTS `files`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `files` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `document_id` varchar(255) DEFAULT NULL,
  `name` varchar(255) DEFAULT NULL,
  `alternative_text` varchar(255) DEFAULT NULL,
  `caption` varchar(255) DEFAULT NULL,
  `width` int DEFAULT NULL,
  `height` int DEFAULT NULL,
  `formats` json DEFAULT NULL,
  `hash` varchar(255) DEFAULT NULL,
  `ext` varchar(255) DEFAULT NULL,
  `mime` varchar(255) DEFAULT NULL,
  `size` decimal(10,2) DEFAULT NULL,
  `url` varchar(255) DEFAULT NULL,
  `preview_url` varchar(255) DEFAULT NULL,
  `provider` varchar(255) DEFAULT NULL,
  `provider_metadata` json DEFAULT NULL,
  `folder_path` varchar(255) DEFAULT NULL,
  `created_at` datetime(6) DEFAULT NULL,
  `updated_at` datetime(6) DEFAULT NULL,
  `published_at` datetime(6) DEFAULT NULL,
  `created_by_id` int unsigned DEFAULT NULL,
  `updated_by_id` int unsigned DEFAULT NULL,
  `locale` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `upload_files_folder_path_index` (`folder_path`),
  KEY `upload_files_created_at_index` (`created_at`),
  KEY `upload_files_updated_at_index` (`updated_at`),
  KEY `upload_files_name_index` (`name`),
  KEY `upload_files_size_index` (`size`),
  KEY `upload_files_ext_index` (`ext`),
  KEY `files_documents_idx` (`document_id`,`locale`,`published_at`),
  KEY `files_created_by_id_fk` (`created_by_id`),
  KEY `files_updated_by_id_fk` (`updated_by_id`),
  CONSTRAINT `files_created_by_id_fk` FOREIGN KEY (`created_by_id`) REFERENCES `admin_users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `files_updated_by_id_fk` FOREIGN KEY (`updated_by_id`) REFERENCES `admin_users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=455 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `files`
--

LOCK TABLES `files` WRITE;
/*!40000 ALTER TABLE `files` DISABLE KEYS */;
INSERT INTO `files` VALUES (8,'e29e38hv2bmc6y1mk5ktkxs8','logo-color.svg',NULL,NULL,143,38,NULL,'logo_color_dc7e90da27','.svg','image/svg+xml',19.29,'https://d1i031whgqu7f4.cloudfront.net/logo_color_dc7e90da27.svg',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2025-11-22 09:15:43.149000','2026-01-05 09:39:27.290000','2025-11-22 09:15:43.149000',1,1,NULL),(9,'py47hd22dx8byzeolq2fh8yi','logo.svg',NULL,NULL,146,69,NULL,'logo_4be44a42d7','.svg','image/svg+xml',27.64,'https://d1i031whgqu7f4.cloudfront.net/logo_4be44a42d7.svg',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2025-11-22 09:15:43.152000','2025-11-22 09:15:43.152000','2025-11-22 09:15:43.152000',1,1,NULL),(10,'djfhr970468a7fkbhchzl5bf','instagram.svg',NULL,NULL,24,24,NULL,'instagram_3c186eb14e','.svg','image/svg+xml',0.90,'https://d1i031whgqu7f4.cloudfront.net/instagram_3c186eb14e.svg',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2025-11-22 09:17:04.805000','2025-11-22 09:17:04.805000','2025-11-22 09:17:04.806000',1,1,NULL),(11,'jw5ay949xzarb2au0eyo295m','facebook.svg',NULL,NULL,24,24,NULL,'facebook_05c62758df','.svg','image/svg+xml',0.73,'https://d1i031whgqu7f4.cloudfront.net/facebook_05c62758df.svg',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2025-11-22 09:17:04.829000','2025-11-22 09:17:04.829000','2025-11-22 09:17:04.830000',1,1,NULL),(12,'wxsr5fl0jsdr5gl34nobi7o2','youtube.svg',NULL,NULL,24,24,NULL,'youtube_0680ee06de','.svg','image/svg+xml',0.66,'https://d1i031whgqu7f4.cloudfront.net/youtube_0680ee06de.svg',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2025-11-22 09:17:04.832000','2025-11-22 09:17:04.832000','2025-11-22 09:17:04.832000',1,1,NULL),(13,'tuvzylzy6ve1fkegz1ky809n','linkedin.svg',NULL,NULL,24,24,NULL,'linkedin_0755cc7977','.svg','image/svg+xml',0.83,'https://d1i031whgqu7f4.cloudfront.net/linkedin_0755cc7977.svg',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2025-11-22 09:17:04.837000','2025-11-22 09:17:04.837000','2025-11-22 09:17:04.837000',1,1,NULL),(14,'gzbr26fblyss28xrflrqax3j','cme-banner-video.mp4',NULL,NULL,NULL,NULL,NULL,'cme_banner_video_bb72bbcbb9','.mp4','video/mp4',18225.25,'https://d1i031whgqu7f4.cloudfront.net/cme_banner_video_bb72bbcbb9.mp4',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/1','2025-11-22 09:20:04.656000','2025-11-22 09:20:04.656000','2025-11-22 09:20:04.656000',1,1,NULL),(15,'cb3ln94tontlolgfjo73s64l','footer-logo.svg',NULL,NULL,128,61,NULL,'footer_logo_8d23faf0eb','.svg','image/svg+xml',27.65,'https://d1i031whgqu7f4.cloudfront.net/footer_logo_8d23faf0eb.svg',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2025-11-22 09:35:53.534000','2025-11-22 09:35:53.534000','2025-11-22 09:35:53.534000',1,1,NULL),(16,'qgpjvw1dqnsotqsbg1u111ct','about-alfahim.avif',NULL,NULL,NULL,NULL,NULL,'about_alfahim_53120b3eb5','.avif','image/avif',264.82,'https://d1i031whgqu7f4.cloudfront.net/about_alfahim_53120b3eb5.avif',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/1','2025-11-22 10:39:42.158000','2025-11-22 10:39:42.158000','2025-11-22 10:39:42.159000',1,1,NULL),(19,'x4oy2yym77yc1haes3xqgu49','power-tools.avif',NULL,NULL,NULL,NULL,NULL,'power_tools_469a095b1f','.avif','image/avif',87.21,'https://d1i031whgqu7f4.cloudfront.net/power_tools_469a095b1f.avif',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/3','2025-11-22 11:03:49.851000','2026-02-28 04:22:18.820000','2025-11-22 11:03:49.852000',1,1,NULL),(20,'rg8drre9in93ov5wbpwc3jeb','tyres.avif',NULL,NULL,NULL,NULL,NULL,'tyres_ab92df1396','.avif','image/avif',102.64,'https://d1i031whgqu7f4.cloudfront.net/tyres_ab92df1396.avif',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/4','2025-11-22 11:05:47.572000','2026-01-06 12:03:47.338000','2025-11-22 11:05:47.573000',1,1,NULL),(21,'b7s4q5lnm2pnavfj738kp4je','services.avif',NULL,NULL,NULL,NULL,NULL,'services_b443b5b6b8','.avif','image/avif',65.41,'https://d1i031whgqu7f4.cloudfront.net/services_b443b5b6b8.avif',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/5','2025-11-22 11:42:47.901000','2026-02-28 04:29:42.683000','2025-11-22 11:42:47.902000',1,1,NULL),(22,'ov390b44f96kdpx70nxqbbci','cargo.svg',NULL,NULL,83,33,NULL,'cargo_5f4c3fd26d','.svg','image/svg+xml',4.16,'https://d1i031whgqu7f4.cloudfront.net/cargo_5f4c3fd26d.svg',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/6','2025-11-22 11:43:58.656000','2025-11-22 11:43:58.656000','2025-11-22 11:43:58.656000',1,1,NULL),(23,'vxj10gra8ss84jhbtkjgj508','valeo.svg',NULL,NULL,73,36,NULL,'valeo_01c17cd62c','.svg','image/svg+xml',2.59,'https://d1i031whgqu7f4.cloudfront.net/valeo_01c17cd62c.svg',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/6','2025-11-22 11:43:58.676000','2025-11-22 11:43:58.676000','2025-11-22 11:43:58.677000',1,1,NULL),(24,'n6anq11o88vps7jgzqkxgzc8','cyclo.svg',NULL,NULL,64,35,NULL,'cyclo_2329d36d32','.svg','image/svg+xml',4.92,'https://d1i031whgqu7f4.cloudfront.net/cyclo_2329d36d32.svg',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/6','2025-11-22 11:43:58.692000','2025-11-22 11:43:58.692000','2025-11-22 11:43:58.693000',1,1,NULL),(25,'qyjb36p8vlazne91wtsxc7ls','eveready.svg',NULL,NULL,116,29,NULL,'eveready_b61a7d5479','.svg','image/svg+xml',3.11,'https://d1i031whgqu7f4.cloudfront.net/eveready_b61a7d5479.svg',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/6','2025-11-22 11:43:58.725000','2025-11-22 11:43:58.725000','2025-11-22 11:43:58.726000',1,1,NULL),(26,'jtvgti4uemmxhdjskbtokcyy','bosch.svg',NULL,NULL,132,29,NULL,'bosch_21002ec94a','.svg','image/svg+xml',4.89,'https://d1i031whgqu7f4.cloudfront.net/bosch_21002ec94a.svg',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/6','2025-11-22 11:43:58.824000','2026-01-13 08:33:06.411000','2025-11-22 11:43:58.824000',1,1,NULL),(27,'f68v3e9xh213g0sda768jmmr','clas.svg',NULL,NULL,80,25,NULL,'clas_e7d8e79981','.svg','image/svg+xml',40.28,'https://d1i031whgqu7f4.cloudfront.net/clas_e7d8e79981.svg',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/6','2025-11-22 11:43:58.828000','2025-11-22 11:43:58.828000','2025-11-22 11:43:58.828000',1,1,NULL),(28,'dnkqgcx22iw1lft5y9dlwrjr','osram.svg',NULL,NULL,98,26,NULL,'osram_fe1ff70170','.svg','image/svg+xml',38.80,'https://d1i031whgqu7f4.cloudfront.net/osram_fe1ff70170.svg',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/6','2025-11-22 11:43:58.907000','2025-11-22 11:43:58.907000','2025-11-22 11:43:58.907000',1,1,NULL),(29,'oc3rix6rshv4fa2x208ybp4y','michelin.svg',NULL,NULL,208,47,NULL,'michelin_f45f574d1c','.svg','image/svg+xml',20.32,'https://d1i031whgqu7f4.cloudfront.net/michelin_f45f574d1c.svg',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/6','2025-11-22 11:43:58.910000','2025-11-22 11:43:58.910000','2025-11-22 11:43:58.910000',1,1,NULL),(30,'draqskl38uwdp43xqj6g14f3','bridgestone.svg',NULL,NULL,218,28,NULL,'bridgestone_9b859b6130','.svg','image/svg+xml',4.85,'https://d1i031whgqu7f4.cloudfront.net/bridgestone_9b859b6130.svg',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/6','2025-11-22 11:54:59.233000','2025-11-22 11:54:59.233000','2025-11-22 11:54:59.233000',1,1,NULL),(31,'jn7x0llhledna2e5bymhcxel','alfahim-building.avif',NULL,NULL,NULL,NULL,NULL,'alfahim_building_e1cb6d3094','.avif','image/avif',271.72,'https://d1i031whgqu7f4.cloudfront.net/alfahim_building_e1cb6d3094.avif',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/1','2025-11-22 12:16:49.290000','2025-11-22 12:17:00.551000','2025-11-22 12:16:49.290000',1,1,NULL),(32,'neud28889zgf15buegsg47pz','News04.avif',NULL,NULL,NULL,NULL,NULL,'News04_a14df1996e','.avif','image/avif',127.99,'https://d1i031whgqu7f4.cloudfront.net/News04_a14df1996e.avif',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/7','2025-11-22 13:31:24.410000','2025-11-22 13:31:24.410000','2025-11-22 13:31:24.411000',1,1,NULL),(33,'f1et8d89rpautniacwcya8ev','News01.avif',NULL,NULL,NULL,NULL,NULL,'News01_d50bca7076','.avif','image/avif',116.84,'https://d1i031whgqu7f4.cloudfront.net/News01_d50bca7076.avif',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/7','2025-11-22 13:31:24.431000','2025-11-22 13:31:24.431000','2025-11-22 13:31:24.431000',1,1,NULL),(34,'ixb7cy75fr9zcjdsn01y87ar','News06.avif',NULL,NULL,NULL,NULL,NULL,'News06_e4d58ce3c9','.avif','image/avif',166.84,'https://d1i031whgqu7f4.cloudfront.net/News06_e4d58ce3c9.avif',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/7','2025-11-22 13:31:24.434000','2025-11-22 13:31:24.434000','2025-11-22 13:31:24.435000',1,1,NULL),(35,'e74bgwnsoqw5th8us6dcnpy6','News02.avif',NULL,NULL,NULL,NULL,NULL,'News02_f57039b733','.avif','image/avif',111.98,'https://d1i031whgqu7f4.cloudfront.net/News02_f57039b733.avif',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/7','2025-11-22 13:31:24.462000','2025-11-22 13:31:24.462000','2025-11-22 13:31:24.463000',1,1,NULL),(36,'ccro7qtlicm3xnvni585jw45','News05.avif',NULL,NULL,NULL,NULL,NULL,'News05_d553c837ac','.avif','image/avif',172.83,'https://d1i031whgqu7f4.cloudfront.net/News05_d553c837ac.avif',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/7','2025-11-22 13:31:24.472000','2025-11-22 13:31:24.472000','2025-11-22 13:31:24.472000',1,1,NULL),(37,'bajhm2bbwvlsanmjyi3cc0de','News03.avif',NULL,NULL,NULL,NULL,NULL,'News03_fad64ee363','.avif','image/avif',195.25,'https://d1i031whgqu7f4.cloudfront.net/News03_fad64ee363.avif',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/7','2025-11-22 13:31:24.475000','2026-01-13 09:19:22.905000','2025-11-22 13:31:24.476000',1,1,NULL),(38,'k9rh8livi0yfod1049fgzrgn','Location03.avif',NULL,NULL,NULL,NULL,NULL,'Location03_e04d62bf6e','.avif','image/avif',111.83,'https://d1i031whgqu7f4.cloudfront.net/Location03_e04d62bf6e.avif',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/8','2025-11-22 14:28:24.970000','2025-11-22 14:28:24.970000','2025-11-22 14:28:24.971000',1,1,NULL),(39,'o3vxwxdf9ye5p3nlzb1xynh7','Location01.avif',NULL,NULL,NULL,NULL,NULL,'Location01_c9a1e45d48','.avif','image/avif',99.04,'https://d1i031whgqu7f4.cloudfront.net/Location01_c9a1e45d48.avif',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/8','2025-11-22 14:28:25.177000','2025-11-22 14:28:25.177000','2025-11-22 14:28:25.177000',1,1,NULL),(40,'or20hc2tznc094dpwqxg5mb5','Location02.avif',NULL,NULL,NULL,NULL,NULL,'Location02_76d58c1c8e','.avif','image/avif',77.71,'https://d1i031whgqu7f4.cloudfront.net/Location02_76d58c1c8e.avif',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/8','2025-11-22 14:28:25.223000','2025-11-22 14:28:25.223000','2025-11-22 14:28:25.223000',1,1,NULL),(41,'llvlds7tmsyutckolu2wvtt1','alfahim-building-2.jpg',NULL,NULL,1100,580,'{\"large\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/large_alfahim_building_2_4ad2b182d6.jpg\", \"hash\": \"large_alfahim_building_2_4ad2b182d6\", \"mime\": \"image/jpeg\", \"name\": \"large_alfahim-building-2.jpg\", \"path\": null, \"size\": 77.92, \"width\": 1000, \"height\": 527, \"sizeInBytes\": 77924}, \"small\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_alfahim_building_2_4ad2b182d6.jpg\", \"hash\": \"small_alfahim_building_2_4ad2b182d6\", \"mime\": \"image/jpeg\", \"name\": \"small_alfahim-building-2.jpg\", \"path\": null, \"size\": 25.6, \"width\": 500, \"height\": 264, \"sizeInBytes\": 25600}, \"medium\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_alfahim_building_2_4ad2b182d6.jpg\", \"hash\": \"medium_alfahim_building_2_4ad2b182d6\", \"mime\": \"image/jpeg\", \"name\": \"medium_alfahim-building-2.jpg\", \"path\": null, \"size\": 50.26, \"width\": 750, \"height\": 395, \"sizeInBytes\": 50257}, \"thumbnail\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_alfahim_building_2_4ad2b182d6.jpg\", \"hash\": \"thumbnail_alfahim_building_2_4ad2b182d6\", \"mime\": \"image/jpeg\", \"name\": \"thumbnail_alfahim-building-2.jpg\", \"path\": null, \"size\": 7.95, \"width\": 245, \"height\": 129, \"sizeInBytes\": 7950}}','alfahim_building_2_4ad2b182d6','.jpg','image/jpeg',92.45,'https://d1i031whgqu7f4.cloudfront.net/alfahim_building_2_4ad2b182d6.jpg',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/1','2025-11-22 16:54:11.243000','2025-11-22 16:54:11.243000','2025-11-22 16:54:11.244000',1,1,NULL),(44,'p1h8yksoy7tukp5difk1iv01','tyre-services-menu.png',NULL,NULL,264,136,'{\"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_tyre_services_menu_3bfc588739.png\", \"hash\": \"thumbnail_tyre_services_menu_3bfc588739\", \"mime\": \"image/png\", \"name\": \"thumbnail_tyre-services-menu.png\", \"path\": null, \"size\": 71.58, \"width\": 245, \"height\": 126, \"sizeInBytes\": 71584}}','tyre_services_menu_3bfc588739','.png','image/png',27.11,'https://d1i031whgqu7f4.cloudfront.net/tyre_services_menu_3bfc588739.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/5/10','2025-11-24 14:51:15.844000','2025-11-24 14:51:15.844000','2025-11-24 14:51:15.845000',1,1,NULL),(45,'hjrssl6eo7pr6c7udyfhsra7','automotive-aftermarket-services-menu.png',NULL,NULL,264,136,'{\"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_automotive_aftermarket_services_menu_4ddb36c643.png\", \"hash\": \"thumbnail_automotive_aftermarket_services_menu_4ddb36c643\", \"mime\": \"image/png\", \"name\": \"thumbnail_automotive-aftermarket-services-menu.png\", \"path\": null, \"size\": 80.23, \"width\": 245, \"height\": 126, \"sizeInBytes\": 80230}}','automotive_aftermarket_services_menu_4ddb36c643','.png','image/png',26.82,'https://d1i031whgqu7f4.cloudfront.net/automotive_aftermarket_services_menu_4ddb36c643.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/5/9','2025-11-24 14:52:20.179000','2025-11-24 14:52:20.179000','2025-11-24 14:52:20.179000',1,1,NULL),(46,'ujb4tvkauln4caeznvanvpig','contact-banner-mobile.png',NULL,NULL,393,524,'{\"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_contact_banner_mobile_2c40ee5380.png\", \"hash\": \"small_contact_banner_mobile_2c40ee5380\", \"mime\": \"image/png\", \"name\": \"small_contact-banner-mobile.png\", \"path\": null, \"size\": 305.5, \"width\": 375, \"height\": 500, \"sizeInBytes\": 305502}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_contact_banner_mobile_2c40ee5380.png\", \"hash\": \"thumbnail_contact_banner_mobile_2c40ee5380\", \"mime\": \"image/png\", \"name\": \"thumbnail_contact-banner-mobile.png\", \"path\": null, \"size\": 39.33, \"width\": 117, \"height\": 156, \"sizeInBytes\": 39333}}','contact_banner_mobile_2c40ee5380','.png','image/png',82.41,'https://d1i031whgqu7f4.cloudfront.net/contact_banner_mobile_2c40ee5380.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/11/12','2025-11-25 09:15:30.626000','2025-11-25 09:15:30.626000','2025-11-25 09:15:30.627000',1,1,NULL),(48,'o2rt4rcw2xdyqkd8zd6laqni','bosch-logo.png',NULL,NULL,214,48,NULL,'bosch_logo_0c54863c85','.png','image/png',1.58,'https://d1i031whgqu7f4.cloudfront.net/bosch_logo_0c54863c85.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/11','2025-11-25 09:17:28.080000','2025-11-25 09:17:28.080000','2025-11-25 09:17:28.080000',1,1,NULL),(49,'mjv7h79xtctzqrrrd5s4ifsd','contact-us-banner-web.png',NULL,NULL,1440,400,'{\"large\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/large_contact_us_banner_web_1eeaa31c22.png\", \"hash\": \"large_contact_us_banner_web_1eeaa31c22\", \"mime\": \"image/png\", \"name\": \"large_contact-us-banner-web.png\", \"path\": null, \"size\": 273.86, \"width\": 1000, \"height\": 278, \"sizeInBytes\": 273857}, \"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_contact_us_banner_web_1eeaa31c22.png\", \"hash\": \"small_contact_us_banner_web_1eeaa31c22\", \"mime\": \"image/png\", \"name\": \"small_contact-us-banner-web.png\", \"path\": null, \"size\": 77.71, \"width\": 500, \"height\": 139, \"sizeInBytes\": 77712}, \"medium\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_contact_us_banner_web_1eeaa31c22.png\", \"hash\": \"medium_contact_us_banner_web_1eeaa31c22\", \"mime\": \"image/png\", \"name\": \"medium_contact-us-banner-web.png\", \"path\": null, \"size\": 161.61, \"width\": 750, \"height\": 208, \"sizeInBytes\": 161607}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_contact_us_banner_web_1eeaa31c22.png\", \"hash\": \"thumbnail_contact_us_banner_web_1eeaa31c22\", \"mime\": \"image/png\", \"name\": \"thumbnail_contact-us-banner-web.png\", \"path\": null, \"size\": 22.77, \"width\": 245, \"height\": 68, \"sizeInBytes\": 22774}}','contact_us_banner_web_1eeaa31c22','.png','image/png',113.77,'https://d1i031whgqu7f4.cloudfront.net/contact_us_banner_web_1eeaa31c22.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/11/12','2025-11-26 13:33:14.597000','2025-11-26 13:33:14.597000','2025-11-26 13:33:14.598000',1,1,NULL),(50,'gyseogtbgfrim1x2oyqxglcn','Our Vision - Mobile.webp',NULL,NULL,450,298,'{\"thumbnail\": {\"ext\": \".webp\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Our_Vision_Mobile_0f6705a492.webp\", \"hash\": \"thumbnail_Our_Vision_Mobile_0f6705a492\", \"mime\": \"image/webp\", \"name\": \"thumbnail_Our Vision - Mobile.webp\", \"path\": null, \"size\": 6.51, \"width\": 236, \"height\": 156, \"sizeInBytes\": 6508}}','Our_Vision_Mobile_0f6705a492','.webp','image/webp',15.83,'https://d1i031whgqu7f4.cloudfront.net/Our_Vision_Mobile_0f6705a492.webp',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/13','2025-12-02 17:01:19.826000','2025-12-02 17:01:19.826000','2025-12-02 17:01:19.827000',1,1,NULL),(51,'vxdbquwqejr2u2rz2on2l1b7','Our Mission - Mobile.webp',NULL,NULL,450,298,'{\"thumbnail\": {\"ext\": \".webp\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Our_Mission_Mobile_0a84730ee3.webp\", \"hash\": \"thumbnail_Our_Mission_Mobile_0a84730ee3\", \"mime\": \"image/webp\", \"name\": \"thumbnail_Our Mission - Mobile.webp\", \"path\": null, \"size\": 6.82, \"width\": 236, \"height\": 156, \"sizeInBytes\": 6822}}','Our_Mission_Mobile_0a84730ee3','.webp','image/webp',17.15,'https://d1i031whgqu7f4.cloudfront.net/Our_Mission_Mobile_0a84730ee3.webp',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/13','2025-12-02 17:01:19.851000','2025-12-02 17:01:19.851000','2025-12-02 17:01:19.851000',1,1,NULL),(52,'jzinutgtx6tk7uiflvpmchyi','CME Building - Mobile.webp',NULL,NULL,450,298,'{\"thumbnail\": {\"ext\": \".webp\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_CME_Building_Mobile_b757d7319a.webp\", \"hash\": \"thumbnail_CME_Building_Mobile_b757d7319a\", \"mime\": \"image/webp\", \"name\": \"thumbnail_CME Building - Mobile.webp\", \"path\": null, \"size\": 9.88, \"width\": 236, \"height\": 156, \"sizeInBytes\": 9880}}','CME_Building_Mobile_b757d7319a','.webp','image/webp',33.04,'https://d1i031whgqu7f4.cloudfront.net/CME_Building_Mobile_b757d7319a.webp',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/13','2025-12-02 17:01:23.392000','2025-12-02 17:01:23.392000','2025-12-02 17:01:23.393000',1,1,NULL),(53,'kmuycl614v2w0xpcy5h16g6u','Our Vision.webp',NULL,NULL,1280,526,'{\"large\": {\"ext\": \".webp\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/large_Our_Vision_8a438a31ba.webp\", \"hash\": \"large_Our_Vision_8a438a31ba\", \"mime\": \"image/webp\", \"name\": \"large_Our Vision.webp\", \"path\": null, \"size\": 26.71, \"width\": 1000, \"height\": 411, \"sizeInBytes\": 26714}, \"small\": {\"ext\": \".webp\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_Our_Vision_8a438a31ba.webp\", \"hash\": \"small_Our_Vision_8a438a31ba\", \"mime\": \"image/webp\", \"name\": \"small_Our Vision.webp\", \"path\": null, \"size\": 12.72, \"width\": 500, \"height\": 205, \"sizeInBytes\": 12716}, \"medium\": {\"ext\": \".webp\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_Our_Vision_8a438a31ba.webp\", \"hash\": \"medium_Our_Vision_8a438a31ba\", \"mime\": \"image/webp\", \"name\": \"medium_Our Vision.webp\", \"path\": null, \"size\": 20.51, \"width\": 750, \"height\": 308, \"sizeInBytes\": 20512}, \"thumbnail\": {\"ext\": \".webp\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Our_Vision_8a438a31ba.webp\", \"hash\": \"thumbnail_Our_Vision_8a438a31ba\", \"mime\": \"image/webp\", \"name\": \"thumbnail_Our Vision.webp\", \"path\": null, \"size\": 5.2, \"width\": 245, \"height\": 101, \"sizeInBytes\": 5200}}','Our_Vision_8a438a31ba','.webp','image/webp',37.84,'https://d1i031whgqu7f4.cloudfront.net/Our_Vision_8a438a31ba.webp',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/13','2025-12-02 17:01:24.238000','2026-01-06 11:30:26.891000','2025-12-02 17:01:24.239000',1,1,NULL),(54,'y2y2rpil6zevuvdk1h7ln888','Our Mission.webp',NULL,NULL,1280,526,'{\"large\": {\"ext\": \".webp\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/large_Our_Mission_68823a9cc0.webp\", \"hash\": \"large_Our_Mission_68823a9cc0\", \"mime\": \"image/webp\", \"name\": \"large_Our Mission.webp\", \"path\": null, \"size\": 29.69, \"width\": 1000, \"height\": 411, \"sizeInBytes\": 29692}, \"small\": {\"ext\": \".webp\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_Our_Mission_68823a9cc0.webp\", \"hash\": \"small_Our_Mission_68823a9cc0\", \"mime\": \"image/webp\", \"name\": \"small_Our Mission.webp\", \"path\": null, \"size\": 13.48, \"width\": 500, \"height\": 205, \"sizeInBytes\": 13476}, \"medium\": {\"ext\": \".webp\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_Our_Mission_68823a9cc0.webp\", \"hash\": \"medium_Our_Mission_68823a9cc0\", \"mime\": \"image/webp\", \"name\": \"medium_Our Mission.webp\", \"path\": null, \"size\": 22.34, \"width\": 750, \"height\": 308, \"sizeInBytes\": 22344}, \"thumbnail\": {\"ext\": \".webp\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Our_Mission_68823a9cc0.webp\", \"hash\": \"thumbnail_Our_Mission_68823a9cc0\", \"mime\": \"image/webp\", \"name\": \"thumbnail_Our Mission.webp\", \"path\": null, \"size\": 5.16, \"width\": 245, \"height\": 101, \"sizeInBytes\": 5164}}','Our_Mission_68823a9cc0','.webp','image/webp',42.22,'https://d1i031whgqu7f4.cloudfront.net/Our_Mission_68823a9cc0.webp',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/13','2025-12-02 17:01:24.350000','2026-01-06 11:32:20.194000','2025-12-02 17:01:24.351000',1,1,NULL),(55,'fgn4zf5pjm85dwyslf61939a','CME Building.webp',NULL,NULL,1600,620,'{\"large\": {\"ext\": \".webp\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/large_CME_Building_216ffdf416.webp\", \"hash\": \"large_CME_Building_216ffdf416\", \"mime\": \"image/webp\", \"name\": \"large_CME Building.webp\", \"path\": null, \"size\": 66.72, \"width\": 1000, \"height\": 388, \"sizeInBytes\": 66718}, \"small\": {\"ext\": \".webp\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_CME_Building_216ffdf416.webp\", \"hash\": \"small_CME_Building_216ffdf416\", \"mime\": \"image/webp\", \"name\": \"small_CME Building.webp\", \"path\": null, \"size\": 22.58, \"width\": 500, \"height\": 194, \"sizeInBytes\": 22576}, \"medium\": {\"ext\": \".webp\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_CME_Building_216ffdf416.webp\", \"hash\": \"medium_CME_Building_216ffdf416\", \"mime\": \"image/webp\", \"name\": \"medium_CME Building.webp\", \"path\": null, \"size\": 43.31, \"width\": 750, \"height\": 291, \"sizeInBytes\": 43306}, \"thumbnail\": {\"ext\": \".webp\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_CME_Building_216ffdf416.webp\", \"hash\": \"thumbnail_CME_Building_216ffdf416\", \"mime\": \"image/webp\", \"name\": \"thumbnail_CME Building.webp\", \"path\": null, \"size\": 6.29, \"width\": 245, \"height\": 95, \"sizeInBytes\": 6288}}','CME_Building_216ffdf416','.webp','image/webp',134.91,'https://d1i031whgqu7f4.cloudfront.net/CME_Building_216ffdf416.webp',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/13','2025-12-02 17:01:24.577000','2025-12-02 17:01:24.577000','2025-12-02 17:01:24.577000',1,1,NULL),(56,'d6q2joo3vmra1rgnu3ai78wl','Mask group (3).png',NULL,NULL,1440,400,'{\"large\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/large_Mask_group_3_e02f1e9639.png\", \"hash\": \"large_Mask_group_3_e02f1e9639\", \"mime\": \"image/png\", \"name\": \"large_Mask group (3).png\", \"path\": null, \"size\": 399.81, \"width\": 1000, \"height\": 278, \"sizeInBytes\": 399811}, \"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_Mask_group_3_e02f1e9639.png\", \"hash\": \"small_Mask_group_3_e02f1e9639\", \"mime\": \"image/png\", \"name\": \"small_Mask group (3).png\", \"path\": null, \"size\": 114.87, \"width\": 500, \"height\": 139, \"sizeInBytes\": 114871}, \"medium\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_Mask_group_3_e02f1e9639.png\", \"hash\": \"medium_Mask_group_3_e02f1e9639\", \"mime\": \"image/png\", \"name\": \"medium_Mask group (3).png\", \"path\": null, \"size\": 238.74, \"width\": 750, \"height\": 208, \"sizeInBytes\": 238738}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Mask_group_3_e02f1e9639.png\", \"hash\": \"thumbnail_Mask_group_3_e02f1e9639\", \"mime\": \"image/png\", \"name\": \"thumbnail_Mask group (3).png\", \"path\": null, \"size\": 32.21, \"width\": 245, \"height\": 68, \"sizeInBytes\": 32206}}','Mask_group_3_e02f1e9639','.png','image/png',176.81,'https://d1i031whgqu7f4.cloudfront.net/Mask_group_3_e02f1e9639.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/14','2025-12-12 13:02:41.432000','2025-12-12 13:02:41.432000','2025-12-12 13:02:41.433000',1,1,NULL),(58,'ldup0u43h22mzsnk5o1tyfy2','Mask group (4).png',NULL,NULL,1440,400,'{\"large\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/large_Mask_group_4_e2b3b758f0.png\", \"hash\": \"large_Mask_group_4_e2b3b758f0\", \"mime\": \"image/png\", \"name\": \"large_Mask group (4).png\", \"path\": null, \"size\": 393.86, \"width\": 1000, \"height\": 278, \"sizeInBytes\": 393856}, \"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_Mask_group_4_e2b3b758f0.png\", \"hash\": \"small_Mask_group_4_e2b3b758f0\", \"mime\": \"image/png\", \"name\": \"small_Mask group (4).png\", \"path\": null, \"size\": 109.22, \"width\": 500, \"height\": 139, \"sizeInBytes\": 109218}, \"medium\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_Mask_group_4_e2b3b758f0.png\", \"hash\": \"medium_Mask_group_4_e2b3b758f0\", \"mime\": \"image/png\", \"name\": \"medium_Mask group (4).png\", \"path\": null, \"size\": 230.23, \"width\": 750, \"height\": 208, \"sizeInBytes\": 230230}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Mask_group_4_e2b3b758f0.png\", \"hash\": \"thumbnail_Mask_group_4_e2b3b758f0\", \"mime\": \"image/png\", \"name\": \"thumbnail_Mask group (4).png\", \"path\": null, \"size\": 29.66, \"width\": 245, \"height\": 68, \"sizeInBytes\": 29657}}','Mask_group_4_e2b3b758f0','.png','image/png',193.04,'https://d1i031whgqu7f4.cloudfront.net/Mask_group_4_e2b3b758f0.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/14','2025-12-14 07:00:19.048000','2025-12-14 07:00:19.048000','2025-12-14 07:00:19.048000',1,1,NULL),(60,'we119fbe4su06xutzcobsciz','tyre-repair-banner.avif',NULL,NULL,NULL,NULL,NULL,'tyre_repair_banner_0be4da2795','.avif','image/avif',150.41,'https://d1i031whgqu7f4.cloudfront.net/tyre_repair_banner_0be4da2795.avif',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/5/10/15','2025-12-18 10:08:06.980000','2025-12-18 10:08:06.980000','2025-12-18 10:08:06.981000',1,1,NULL),(61,'t2v0wn9jw3z6cgctsekjfwj3','tyre-repaire-banner-mobile.avif',NULL,NULL,NULL,NULL,NULL,'tyre_repaire_banner_mobile_60461d9d2a','.avif','image/avif',67.60,'https://d1i031whgqu7f4.cloudfront.net/tyre_repaire_banner_mobile_60461d9d2a.avif',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/5/10/15','2025-12-18 10:36:04.311000','2025-12-18 10:36:04.311000','2025-12-18 10:36:04.311000',1,1,NULL),(62,'cqshlfbqgbqti3p5k4vb1o0b','about-01.jpg',NULL,NULL,476,480,'{\"thumbnail\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_about_01_647699f9e7.jpg\", \"hash\": \"thumbnail_about_01_647699f9e7\", \"mime\": \"image/jpeg\", \"name\": \"thumbnail_about-01.jpg\", \"path\": null, \"size\": 6.56, \"width\": 155, \"height\": 156, \"sizeInBytes\": 6555}}','about_01_647699f9e7','.jpg','image/jpeg',38.21,'https://d1i031whgqu7f4.cloudfront.net/about_01_647699f9e7.jpg',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/5/10/15','2025-12-18 10:59:11.725000','2025-12-18 10:59:11.725000','2025-12-18 10:59:11.725000',1,1,NULL),(63,'squtc9fc4sppototrft8bqou','about-02.jpg',NULL,NULL,476,480,'{\"thumbnail\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_about_02_4930f62f64.jpg\", \"hash\": \"thumbnail_about_02_4930f62f64\", \"mime\": \"image/jpeg\", \"name\": \"thumbnail_about-02.jpg\", \"path\": null, \"size\": 7.95, \"width\": 155, \"height\": 156, \"sizeInBytes\": 7952}}','about_02_4930f62f64','.jpg','image/jpeg',46.29,'https://d1i031whgqu7f4.cloudfront.net/about_02_4930f62f64.jpg',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/5/10/15','2025-12-18 10:59:11.729000','2025-12-18 10:59:11.729000','2025-12-18 10:59:11.729000',1,1,NULL),(64,'qu6h68l0nwdl85d44jbks4da','better-fuel-efficiency.avif',NULL,NULL,NULL,NULL,NULL,'better_fuel_efficiency_c91dc8cf7b','.avif','image/avif',58.93,'https://d1i031whgqu7f4.cloudfront.net/better_fuel_efficiency_c91dc8cf7b.avif',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/5/10/15/16','2025-12-20 10:21:09.158000','2025-12-20 10:21:09.158000','2025-12-20 10:21:09.158000',1,1,NULL),(65,'ib9alfxlumwrdph4g5k5c4ci','longer-lifespan.avif',NULL,NULL,NULL,NULL,NULL,'longer_lifespan_3c58d090fb','.avif','image/avif',65.55,'https://d1i031whgqu7f4.cloudfront.net/longer_lifespan_3c58d090fb.avif',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/5/10/15/16','2025-12-20 10:21:09.326000','2025-12-20 10:21:09.326000','2025-12-20 10:21:09.327000',1,1,NULL),(66,'ldpd3zlzyyafj9b0jmfdnc9y','better-driving.avif',NULL,NULL,NULL,NULL,NULL,'better_driving_7789fb2235','.avif','image/avif',47.76,'https://d1i031whgqu7f4.cloudfront.net/better_driving_7789fb2235.avif',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/5/10/15/16','2025-12-20 10:21:09.675000','2025-12-20 10:21:09.675000','2025-12-20 10:21:09.675000',1,1,NULL),(67,'yw4vk9y0b28jk6bt87ryneak','safe-driving.avif',NULL,NULL,NULL,NULL,NULL,'safe_driving_e118dda7f9','.avif','image/avif',72.26,'https://d1i031whgqu7f4.cloudfront.net/safe_driving_e118dda7f9.avif',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/5/10/15/16','2025-12-20 10:21:09.724000','2025-12-20 10:21:09.724000','2025-12-20 10:21:09.725000',1,1,NULL),(68,'v28ywe48ifhqr96sfgd485az','no-flat-tyres.avif',NULL,NULL,NULL,NULL,NULL,'no_flat_tyres_50c7d67b93','.avif','image/avif',102.36,'https://d1i031whgqu7f4.cloudfront.net/no_flat_tyres_50c7d67b93.avif',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/5/10/15/16','2025-12-20 10:21:09.741000','2025-12-20 10:21:09.741000','2025-12-20 10:21:09.742000',1,1,NULL),(69,'c3n67pbs5vl3qjnacizf9own','location.png',NULL,NULL,194,124,NULL,'location_6254dfa94f','.png','image/png',18.75,'https://d1i031whgqu7f4.cloudfront.net/location_6254dfa94f.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/5/10/15','2025-12-20 13:04:25.610000','2025-12-20 13:04:25.610000','2025-12-20 13:04:25.611000',1,1,NULL),(70,'ekjmtif115696dbd0q7ojyg9','tyre-service-banner.avif',NULL,NULL,NULL,NULL,NULL,'tyre_service_banner_04df2a8625','.avif','image/avif',194.47,'https://d1i031whgqu7f4.cloudfront.net/tyre_service_banner_04df2a8625.avif',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/5/10','2025-12-21 08:12:52.669000','2025-12-21 08:12:52.669000','2025-12-21 08:12:52.670000',1,1,NULL),(71,'othpw858si5c781nx094fq4s','wheel-alignment.avif',NULL,NULL,NULL,NULL,NULL,'wheel_alignment_a58f2ecb46','.avif','image/avif',65.12,'https://d1i031whgqu7f4.cloudfront.net/wheel_alignment_a58f2ecb46.avif',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/5/10','2025-12-21 08:59:10.292000','2025-12-21 08:59:10.292000','2025-12-21 08:59:10.293000',1,1,NULL),(72,'frm0zloiwjufippfmjnlip03','oil-change.avif',NULL,NULL,NULL,NULL,NULL,'oil_change_a52a63f0d8','.avif','image/avif',67.70,'https://d1i031whgqu7f4.cloudfront.net/oil_change_a52a63f0d8.avif',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/5/10','2025-12-21 08:59:10.524000','2025-12-21 08:59:10.524000','2025-12-21 08:59:10.524000',1,1,NULL),(73,'b2ys3u0266yt8w0z810pcjy3','rotation.avif',NULL,NULL,NULL,NULL,NULL,'rotation_267910980e','.avif','image/avif',63.09,'https://d1i031whgqu7f4.cloudfront.net/rotation_267910980e.avif',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/5/10','2025-12-21 08:59:10.931000','2025-12-21 08:59:10.931000','2025-12-21 08:59:10.931000',1,1,NULL),(74,'xn1k2rnigzo3oyzu9rxrwxeb','break-pads.avif',NULL,NULL,NULL,NULL,NULL,'break_pads_e3d46bb654','.avif','image/avif',59.07,'https://d1i031whgqu7f4.cloudfront.net/break_pads_e3d46bb654.avif',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/5/10','2025-12-21 08:59:10.952000','2025-12-21 08:59:10.952000','2025-12-21 08:59:10.954000',1,1,NULL),(75,'u9x1hr30c61bkfy3r386gxb8','tyre-repair.avif',NULL,NULL,NULL,NULL,NULL,'tyre_repair_ae4095a65b','.avif','image/avif',67.60,'https://d1i031whgqu7f4.cloudfront.net/tyre_repair_ae4095a65b.avif',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/5/10','2025-12-21 08:59:10.964000','2025-12-21 08:59:10.964000','2025-12-21 08:59:10.964000',1,1,NULL),(76,'i9bw8ycescwi8u9oc8iz1dpn','bosch-blue-b- 55PX.png',NULL,NULL,212,55,'{}','bosch_blue_b_55_PX_d465d6a79d','.png','image/png',2.60,'https://d1i031whgqu7f4.cloudfront.net/bosch_blue_b_55_PX_d465d6a79d.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-01-05 09:40:24.649000','2026-01-16 07:02:49.347000','2026-01-05 09:40:24.649000',1,1,NULL),(77,'gd0kq4gmq2fq5yqa9idpapjh','WhatsApp Image 2026-01-05 at 6.29.29 PM.jpeg',NULL,NULL,242,124,NULL,'Whats_App_Image_2026_01_05_at_6_29_29_PM_cb13dc9a9b','.jpeg','image/jpeg',3.21,'https://d1i031whgqu7f4.cloudfront.net/Whats_App_Image_2026_01_05_at_6_29_29_PM_cb13dc9a9b.jpeg',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-01-05 13:05:41.776000','2026-01-05 13:05:41.776000','2026-01-05 13:05:41.776000',1,1,NULL),(78,'e5n8m0mfvig2grfbp3xjidgf','CLAS Logo.jpg',NULL,NULL,347,347,'{\"thumbnail\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_CLAS_Logo_1a8b217518.jpg\", \"hash\": \"thumbnail_CLAS_Logo_1a8b217518\", \"mime\": \"image/jpeg\", \"name\": \"thumbnail_CLAS Logo.jpg\", \"path\": null, \"size\": 2.32, \"width\": 156, \"height\": 156, \"sizeInBytes\": 2322}}','CLAS_Logo_1a8b217518','.jpg','image/jpeg',5.24,'https://d1i031whgqu7f4.cloudfront.net/CLAS_Logo_1a8b217518.jpg',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-01-05 13:09:29.066000','2026-01-05 13:09:29.066000','2026-01-05 13:09:29.067000',1,1,NULL),(79,'d2ql0fqt6k3pdjm9r358120v','KB_Logo_left_RGB.jpg',NULL,NULL,3300,493,'{\"large\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/large_KB_Logo_left_RGB_cff91c68d8.jpg\", \"hash\": \"large_KB_Logo_left_RGB_cff91c68d8\", \"mime\": \"image/jpeg\", \"name\": \"large_KB_Logo_left_RGB.jpg\", \"path\": null, \"size\": 20.18, \"width\": 1000, \"height\": 149, \"sizeInBytes\": 20182}, \"small\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_KB_Logo_left_RGB_cff91c68d8.jpg\", \"hash\": \"small_KB_Logo_left_RGB_cff91c68d8\", \"mime\": \"image/jpeg\", \"name\": \"small_KB_Logo_left_RGB.jpg\", \"path\": null, \"size\": 8.97, \"width\": 500, \"height\": 75, \"sizeInBytes\": 8974}, \"medium\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_KB_Logo_left_RGB_cff91c68d8.jpg\", \"hash\": \"medium_KB_Logo_left_RGB_cff91c68d8\", \"mime\": \"image/jpeg\", \"name\": \"medium_KB_Logo_left_RGB.jpg\", \"path\": null, \"size\": 15.01, \"width\": 750, \"height\": 112, \"sizeInBytes\": 15005}, \"thumbnail\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_KB_Logo_left_RGB_cff91c68d8.jpg\", \"hash\": \"thumbnail_KB_Logo_left_RGB_cff91c68d8\", \"mime\": \"image/jpeg\", \"name\": \"thumbnail_KB_Logo_left_RGB.jpg\", \"path\": null, \"size\": 3.52, \"width\": 245, \"height\": 36, \"sizeInBytes\": 3518}}','KB_Logo_left_RGB_cff91c68d8','.jpg','image/jpeg',79.15,'https://d1i031whgqu7f4.cloudfront.net/KB_Logo_left_RGB_cff91c68d8.jpg',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-01-05 13:10:44.940000','2026-01-05 13:10:44.940000','2026-01-05 13:10:44.943000',1,1,NULL),(80,'a6o95ps5tirveyeikz3utju7','valeo-logo-1.svg',NULL,NULL,2500,1188,NULL,'valeo_logo_1_2f16a8901e','.svg','image/svg+xml',1.94,'https://d1i031whgqu7f4.cloudfront.net/valeo_logo_1_2f16a8901e.svg',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-01-05 13:11:16.986000','2026-01-05 13:11:16.986000','2026-01-05 13:11:16.987000',1,1,NULL),(81,'zpnqghzm0s7nx5xrik042tvf','WhatsApp Image 2026-01-05 at 6.29.29 PM.jpg',NULL,NULL,100,51,NULL,'Whats_App_Image_2026_01_05_at_6_29_29_PM_665a4bbae9','.jpg','image/jpeg',1.09,'https://d1i031whgqu7f4.cloudfront.net/Whats_App_Image_2026_01_05_at_6_29_29_PM_665a4bbae9.jpg',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-01-05 13:31:14.138000','2026-01-05 13:31:22.922000','2026-01-05 13:31:14.139000',1,1,NULL),(82,'jhfh5j3847xle8h3y6y8a88p','eb002714.jpg',NULL,NULL,233,55,'{}','eb002714_8e62726fff','.jpg','image/png',3.59,'https://d1i031whgqu7f4.cloudfront.net/eb002714_8e62726fff.jpg',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-01-06 11:12:59.568000','2026-01-16 07:01:24.157000','2026-01-06 11:12:59.569000',1,1,NULL),(83,'n94ajcy1jcwy94y92r5a48td','Screenshot 2026-01-06 165805.png',NULL,NULL,1064,412,'{\"large\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/large_Screenshot_2026_01_06_165805_1be5f6afe6.png\", \"hash\": \"large_Screenshot_2026_01_06_165805_1be5f6afe6\", \"mime\": \"image/png\", \"name\": \"large_Screenshot 2026-01-06 165805.png\", \"path\": null, \"size\": 725.75, \"width\": 1000, \"height\": 387, \"sizeInBytes\": 725747}, \"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_Screenshot_2026_01_06_165805_1be5f6afe6.png\", \"hash\": \"small_Screenshot_2026_01_06_165805_1be5f6afe6\", \"mime\": \"image/png\", \"name\": \"small_Screenshot 2026-01-06 165805.png\", \"path\": null, \"size\": 201.99, \"width\": 500, \"height\": 194, \"sizeInBytes\": 201988}, \"medium\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_Screenshot_2026_01_06_165805_1be5f6afe6.png\", \"hash\": \"medium_Screenshot_2026_01_06_165805_1be5f6afe6\", \"mime\": \"image/png\", \"name\": \"medium_Screenshot 2026-01-06 165805.png\", \"path\": null, \"size\": 428.09, \"width\": 750, \"height\": 290, \"sizeInBytes\": 428085}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Screenshot_2026_01_06_165805_1be5f6afe6.png\", \"hash\": \"thumbnail_Screenshot_2026_01_06_165805_1be5f6afe6\", \"mime\": \"image/png\", \"name\": \"thumbnail_Screenshot 2026-01-06 165805.png\", \"path\": null, \"size\": 53.58, \"width\": 245, \"height\": 95, \"sizeInBytes\": 53584}}','Screenshot_2026_01_06_165805_1be5f6afe6','.png','image/png',223.58,'https://d1i031whgqu7f4.cloudfront.net/Screenshot_2026_01_06_165805_1be5f6afe6.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-01-06 11:28:18.396000','2026-01-06 11:28:18.396000','2026-01-06 11:28:18.398000',1,1,NULL),(84,'q886d7ugiwtwhyrxn4agt32k','CALIBRATION-SERVICE.png',NULL,NULL,300,300,'{\"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_CALIBRATION_SERVICE_2738a0fe05.png\", \"hash\": \"thumbnail_CALIBRATION_SERVICE_2738a0fe05\", \"mime\": \"image/png\", \"name\": \"thumbnail_CALIBRATION-SERVICE.png\", \"path\": null, \"size\": 54.8, \"width\": 156, \"height\": 156, \"sizeInBytes\": 54796}}','CALIBRATION_SERVICE_2738a0fe05','.png','image/png',57.50,'https://d1i031whgqu7f4.cloudfront.net/CALIBRATION_SERVICE_2738a0fe05.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-01-06 12:00:16.492000','2026-01-06 12:00:16.492000','2026-01-06 12:00:16.493000',1,1,NULL),(85,'xgyi3dsrktt168k7gxyv2uoe','Latest News 1 (Picture 2).JPG',NULL,NULL,6000,4000,'{\"large\": {\"ext\": \".JPG\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/large_Latest_News_1_Picture_2_8ac2d14cf8.JPG\", \"hash\": \"large_Latest_News_1_Picture_2_8ac2d14cf8\", \"mime\": \"image/jpeg\", \"name\": \"large_Latest News 1 (Picture 2).JPG\", \"path\": null, \"size\": 85.91, \"width\": 1000, \"height\": 667, \"sizeInBytes\": 85906}, \"small\": {\"ext\": \".JPG\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_Latest_News_1_Picture_2_8ac2d14cf8.JPG\", \"hash\": \"small_Latest_News_1_Picture_2_8ac2d14cf8\", \"mime\": \"image/jpeg\", \"name\": \"small_Latest News 1 (Picture 2).JPG\", \"path\": null, \"size\": 27.95, \"width\": 500, \"height\": 333, \"sizeInBytes\": 27946}, \"medium\": {\"ext\": \".JPG\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_Latest_News_1_Picture_2_8ac2d14cf8.JPG\", \"hash\": \"medium_Latest_News_1_Picture_2_8ac2d14cf8\", \"mime\": \"image/jpeg\", \"name\": \"medium_Latest News 1 (Picture 2).JPG\", \"path\": null, \"size\": 53.44, \"width\": 750, \"height\": 500, \"sizeInBytes\": 53437}, \"thumbnail\": {\"ext\": \".JPG\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Latest_News_1_Picture_2_8ac2d14cf8.JPG\", \"hash\": \"thumbnail_Latest_News_1_Picture_2_8ac2d14cf8\", \"mime\": \"image/jpeg\", \"name\": \"thumbnail_Latest News 1 (Picture 2).JPG\", \"path\": null, \"size\": 8.94, \"width\": 234, \"height\": 156, \"sizeInBytes\": 8936}}','Latest_News_1_Picture_2_8ac2d14cf8','.JPG','image/jpeg',3509.48,'https://d1i031whgqu7f4.cloudfront.net/Latest_News_1_Picture_2_8ac2d14cf8.JPG',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/7','2026-01-08 09:37:34.488000','2026-01-08 09:37:34.488000','2026-01-08 09:37:34.489000',1,1,NULL),(86,'w9zyz3gd7ourv63qpr8e6egs','Latest News 2 (Group Photo).jpg',NULL,NULL,6000,4000,'{\"large\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/large_Latest_News_2_Group_Photo_378e36ca06.jpg\", \"hash\": \"large_Latest_News_2_Group_Photo_378e36ca06\", \"mime\": \"image/jpeg\", \"name\": \"large_Latest News 2 (Group Photo).jpg\", \"path\": null, \"size\": 109.6, \"width\": 1000, \"height\": 667, \"sizeInBytes\": 109604}, \"small\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_Latest_News_2_Group_Photo_378e36ca06.jpg\", \"hash\": \"small_Latest_News_2_Group_Photo_378e36ca06\", \"mime\": \"image/jpeg\", \"name\": \"small_Latest News 2 (Group Photo).jpg\", \"path\": null, \"size\": 35.59, \"width\": 500, \"height\": 333, \"sizeInBytes\": 35590}, \"medium\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_Latest_News_2_Group_Photo_378e36ca06.jpg\", \"hash\": \"medium_Latest_News_2_Group_Photo_378e36ca06\", \"mime\": \"image/jpeg\", \"name\": \"medium_Latest News 2 (Group Photo).jpg\", \"path\": null, \"size\": 69.04, \"width\": 750, \"height\": 500, \"sizeInBytes\": 69039}, \"thumbnail\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Latest_News_2_Group_Photo_378e36ca06.jpg\", \"hash\": \"thumbnail_Latest_News_2_Group_Photo_378e36ca06\", \"mime\": \"image/jpeg\", \"name\": \"thumbnail_Latest News 2 (Group Photo).jpg\", \"path\": null, \"size\": 10.93, \"width\": 234, \"height\": 156, \"sizeInBytes\": 10929}}','Latest_News_2_Group_Photo_378e36ca06','.jpg','image/jpeg',4399.98,'https://d1i031whgqu7f4.cloudfront.net/Latest_News_2_Group_Photo_378e36ca06.jpg',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/7','2026-01-08 10:29:34.861000','2026-01-08 10:29:34.861000','2026-01-08 10:29:34.861000',1,1,NULL),(87,'dnfgazh5qfez8h4hclh1ygez','Central Motors and Equipment – Dubai Branch.JPG',NULL,NULL,830,594,'{\"small\": {\"ext\": \".JPG\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_Central_Motors_and_Equipment_Dubai_Branch_80f51b42b8.JPG\", \"hash\": \"small_Central_Motors_and_Equipment_Dubai_Branch_80f51b42b8\", \"mime\": \"image/jpeg\", \"name\": \"small_Central Motors and Equipment – Dubai Branch.JPG\", \"path\": null, \"size\": 31.45, \"width\": 500, \"height\": 358, \"sizeInBytes\": 31449}, \"medium\": {\"ext\": \".JPG\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_Central_Motors_and_Equipment_Dubai_Branch_80f51b42b8.JPG\", \"hash\": \"medium_Central_Motors_and_Equipment_Dubai_Branch_80f51b42b8\", \"mime\": \"image/jpeg\", \"name\": \"medium_Central Motors and Equipment – Dubai Branch.JPG\", \"path\": null, \"size\": 57.49, \"width\": 750, \"height\": 537, \"sizeInBytes\": 57488}, \"thumbnail\": {\"ext\": \".JPG\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Central_Motors_and_Equipment_Dubai_Branch_80f51b42b8.JPG\", \"hash\": \"thumbnail_Central_Motors_and_Equipment_Dubai_Branch_80f51b42b8\", \"mime\": \"image/jpeg\", \"name\": \"thumbnail_Central Motors and Equipment – Dubai Branch.JPG\", \"path\": null, \"size\": 8.46, \"width\": 218, \"height\": 156, \"sizeInBytes\": 8462}}','Central_Motors_and_Equipment_Dubai_Branch_80f51b42b8','.JPG','image/jpeg',65.60,'https://d1i031whgqu7f4.cloudfront.net/Central_Motors_and_Equipment_Dubai_Branch_80f51b42b8.JPG',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/17','2026-01-08 10:44:38.038000','2026-01-13 08:20:21.116000','2026-01-08 10:44:38.039000',1,1,NULL),(88,'uywazmm3i6chdz02kiz15yx1','Central Motors and Equipment – AbuDhabi Branch.jpg',NULL,NULL,1600,1204,'{\"large\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/large_Central_Motors_and_Equipment_Abu_Dhabi_Branch_b45fd425b6.jpg\", \"hash\": \"large_Central_Motors_and_Equipment_Abu_Dhabi_Branch_b45fd425b6\", \"mime\": \"image/jpeg\", \"name\": \"large_Central Motors and Equipment – AbuDhabi Branch.jpg\", \"path\": null, \"size\": 142.65, \"width\": 1000, \"height\": 753, \"sizeInBytes\": 142645}, \"small\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_Central_Motors_and_Equipment_Abu_Dhabi_Branch_b45fd425b6.jpg\", \"hash\": \"small_Central_Motors_and_Equipment_Abu_Dhabi_Branch_b45fd425b6\", \"mime\": \"image/jpeg\", \"name\": \"small_Central Motors and Equipment – AbuDhabi Branch.jpg\", \"path\": null, \"size\": 39.19, \"width\": 500, \"height\": 376, \"sizeInBytes\": 39192}, \"medium\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_Central_Motors_and_Equipment_Abu_Dhabi_Branch_b45fd425b6.jpg\", \"hash\": \"medium_Central_Motors_and_Equipment_Abu_Dhabi_Branch_b45fd425b6\", \"mime\": \"image/jpeg\", \"name\": \"medium_Central Motors and Equipment – AbuDhabi Branch.jpg\", \"path\": null, \"size\": 84.99, \"width\": 750, \"height\": 564, \"sizeInBytes\": 84988}, \"thumbnail\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Central_Motors_and_Equipment_Abu_Dhabi_Branch_b45fd425b6.jpg\", \"hash\": \"thumbnail_Central_Motors_and_Equipment_Abu_Dhabi_Branch_b45fd425b6\", \"mime\": \"image/jpeg\", \"name\": \"thumbnail_Central Motors and Equipment – AbuDhabi Branch.jpg\", \"path\": null, \"size\": 8.07, \"width\": 207, \"height\": 156, \"sizeInBytes\": 8070}}','Central_Motors_and_Equipment_Abu_Dhabi_Branch_b45fd425b6','.jpg','image/jpeg',291.29,'https://d1i031whgqu7f4.cloudfront.net/Central_Motors_and_Equipment_Abu_Dhabi_Branch_b45fd425b6.jpg',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/17','2026-01-08 11:07:27.893000','2026-02-02 10:57:26.095000','2026-01-08 11:07:27.896000',1,1,NULL),(89,'w94wtbjd1pgzyacjj6ydmeg1','Bosch Car Service – Bosch Diesel Service – Dubai.png',NULL,NULL,599,711,'{\"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_Bosch_Car_Service_Bosch_Diesel_Service_Dubai_16c1db5428.png\", \"hash\": \"small_Bosch_Car_Service_Bosch_Diesel_Service_Dubai_16c1db5428\", \"mime\": \"image/png\", \"name\": \"small_Bosch Car Service – Bosch Diesel Service – Dubai.png\", \"path\": null, \"size\": 291.87, \"width\": 421, \"height\": 500, \"sizeInBytes\": 291872}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Bosch_Car_Service_Bosch_Diesel_Service_Dubai_16c1db5428.png\", \"hash\": \"thumbnail_Bosch_Car_Service_Bosch_Diesel_Service_Dubai_16c1db5428\", \"mime\": \"image/png\", \"name\": \"thumbnail_Bosch Car Service – Bosch Diesel Service – Dubai.png\", \"path\": null, \"size\": 37.04, \"width\": 131, \"height\": 156, \"sizeInBytes\": 37040}}','Bosch_Car_Service_Bosch_Diesel_Service_Dubai_16c1db5428','.png','image/png',130.00,'https://d1i031whgqu7f4.cloudfront.net/Bosch_Car_Service_Bosch_Diesel_Service_Dubai_16c1db5428.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/17','2026-01-08 11:14:34.449000','2026-01-14 13:33:44.625000','2026-01-08 11:14:34.450000',1,1,NULL),(90,'uxkdy4y4i2w3j6mu93cr1in6','CME Bosch Car Service – Embassy.JPG',NULL,NULL,567,750,'{\"small\": {\"ext\": \".JPG\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_CME_Bosch_Car_Service_Embassy_e805956d93.JPG\", \"hash\": \"small_CME_Bosch_Car_Service_Embassy_e805956d93\", \"mime\": \"image/jpeg\", \"name\": \"small_CME Bosch Car Service – Embassy.JPG\", \"path\": null, \"size\": 35.36, \"width\": 378, \"height\": 500, \"sizeInBytes\": 35363}, \"thumbnail\": {\"ext\": \".JPG\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_CME_Bosch_Car_Service_Embassy_e805956d93.JPG\", \"hash\": \"thumbnail_CME_Bosch_Car_Service_Embassy_e805956d93\", \"mime\": \"image/jpeg\", \"name\": \"thumbnail_CME Bosch Car Service – Embassy.JPG\", \"path\": null, \"size\": 4.98, \"width\": 118, \"height\": 156, \"sizeInBytes\": 4979}}','CME_Bosch_Car_Service_Embassy_e805956d93','.JPG','image/jpeg',70.08,'https://d1i031whgqu7f4.cloudfront.net/CME_Bosch_Car_Service_Embassy_e805956d93.JPG',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/17','2026-01-08 11:31:13.011000','2026-01-08 11:31:13.011000','2026-01-08 11:31:13.012000',1,1,NULL),(91,'td1vavfyrvt8tqihpj1r97u8','CME Bosch Car Service – Bateen.JPG',NULL,NULL,566,753,'{\"small\": {\"ext\": \".JPG\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_CME_Bosch_Car_Service_Bateen_5fb71534d9.JPG\", \"hash\": \"small_CME_Bosch_Car_Service_Bateen_5fb71534d9\", \"mime\": \"image/jpeg\", \"name\": \"small_CME Bosch Car Service – Bateen.JPG\", \"path\": null, \"size\": 36.1, \"width\": 376, \"height\": 500, \"sizeInBytes\": 36100}, \"medium\": {\"ext\": \".JPG\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_CME_Bosch_Car_Service_Bateen_5fb71534d9.JPG\", \"hash\": \"medium_CME_Bosch_Car_Service_Bateen_5fb71534d9\", \"mime\": \"image/jpeg\", \"name\": \"medium_CME Bosch Car Service – Bateen.JPG\", \"path\": null, \"size\": 72.27, \"width\": 564, \"height\": 750, \"sizeInBytes\": 72270}, \"thumbnail\": {\"ext\": \".JPG\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_CME_Bosch_Car_Service_Bateen_5fb71534d9.JPG\", \"hash\": \"thumbnail_CME_Bosch_Car_Service_Bateen_5fb71534d9\", \"mime\": \"image/jpeg\", \"name\": \"thumbnail_CME Bosch Car Service – Bateen.JPG\", \"path\": null, \"size\": 5.12, \"width\": 117, \"height\": 156, \"sizeInBytes\": 5120}}','CME_Bosch_Car_Service_Bateen_5fb71534d9','.JPG','image/jpeg',73.65,'https://d1i031whgqu7f4.cloudfront.net/CME_Bosch_Car_Service_Bateen_5fb71534d9.JPG',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/17','2026-01-08 11:34:55.800000','2026-01-08 11:34:55.800000','2026-01-08 11:34:55.800000',1,1,NULL),(92,'d4f1q3lflbbm8or9frnqlamz','TYREPLUS CME – ADNOC Shakhbout Station.JPG',NULL,NULL,1337,754,'{\"large\": {\"ext\": \".JPG\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/large_TYREPLUS_CME_ADNOC_Shakhbout_Station_15f4932858.JPG\", \"hash\": \"large_TYREPLUS_CME_ADNOC_Shakhbout_Station_15f4932858\", \"mime\": \"image/jpeg\", \"name\": \"large_TYREPLUS CME – ADNOC Shakhbout Station.JPG\", \"path\": null, \"size\": 71.12, \"width\": 1000, \"height\": 564, \"sizeInBytes\": 71116}, \"small\": {\"ext\": \".JPG\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_TYREPLUS_CME_ADNOC_Shakhbout_Station_15f4932858.JPG\", \"hash\": \"small_TYREPLUS_CME_ADNOC_Shakhbout_Station_15f4932858\", \"mime\": \"image/jpeg\", \"name\": \"small_TYREPLUS CME – ADNOC Shakhbout Station.JPG\", \"path\": null, \"size\": 23.09, \"width\": 500, \"height\": 282, \"sizeInBytes\": 23092}, \"medium\": {\"ext\": \".JPG\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_TYREPLUS_CME_ADNOC_Shakhbout_Station_15f4932858.JPG\", \"hash\": \"medium_TYREPLUS_CME_ADNOC_Shakhbout_Station_15f4932858\", \"mime\": \"image/jpeg\", \"name\": \"medium_TYREPLUS CME – ADNOC Shakhbout Station.JPG\", \"path\": null, \"size\": 44.75, \"width\": 750, \"height\": 423, \"sizeInBytes\": 44749}, \"thumbnail\": {\"ext\": \".JPG\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_TYREPLUS_CME_ADNOC_Shakhbout_Station_15f4932858.JPG\", \"hash\": \"thumbnail_TYREPLUS_CME_ADNOC_Shakhbout_Station_15f4932858\", \"mime\": \"image/jpeg\", \"name\": \"thumbnail_TYREPLUS CME – ADNOC Shakhbout Station.JPG\", \"path\": null, \"size\": 6.79, \"width\": 245, \"height\": 138, \"sizeInBytes\": 6793}}','TYREPLUS_CME_ADNOC_Shakhbout_Station_15f4932858','.JPG','image/jpeg',111.21,'https://d1i031whgqu7f4.cloudfront.net/TYREPLUS_CME_ADNOC_Shakhbout_Station_15f4932858.JPG',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/17','2026-01-08 11:39:28.269000','2026-01-08 11:39:28.269000','2026-01-08 11:39:28.269000',1,1,NULL),(93,'n9lq9i9j227jbrpl91ta33ml','tyre-sevice.png',NULL,NULL,310,545,'{\"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_tyre_sevice_4622ddbaea.png\", \"hash\": \"small_tyre_sevice_4622ddbaea\", \"mime\": \"image/png\", \"name\": \"small_tyre-sevice.png\", \"path\": null, \"size\": 309.15, \"width\": 284, \"height\": 500, \"sizeInBytes\": 309153}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_tyre_sevice_4622ddbaea.png\", \"hash\": \"thumbnail_tyre_sevice_4622ddbaea\", \"mime\": \"image/png\", \"name\": \"thumbnail_tyre-sevice.png\", \"path\": null, \"size\": 34.9, \"width\": 89, \"height\": 156, \"sizeInBytes\": 34897}}','tyre_sevice_4622ddbaea','.png','image/png',105.19,'https://d1i031whgqu7f4.cloudfront.net/tyre_sevice_4622ddbaea.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/14','2026-01-12 07:13:12.363000','2026-01-12 07:13:12.363000','2026-01-12 07:13:12.364000',1,1,NULL),(95,'xfi49yrrvv84l28qf9ndo5tb','ASNU Logo Main 1.png',NULL,NULL,75,55,NULL,'ASNU_Logo_Main_1_0e35bfeb8e','.png','image/png',0.93,'https://d1i031whgqu7f4.cloudfront.net/ASNU_Logo_Main_1_0e35bfeb8e.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-01-13 08:30:28.590000','2026-01-13 08:30:28.590000','2026-01-13 08:30:28.591000',1,1,NULL),(96,'oscgq6sk6aj949mi95xc7t80','AZPI Logo 1.png',NULL,NULL,152,55,NULL,'AZPI_Logo_1_aa22ace6b3','.png','image/png',2.40,'https://d1i031whgqu7f4.cloudfront.net/AZPI_Logo_1_aa22ace6b3.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-01-13 08:30:28.658000','2026-01-13 08:30:28.658000','2026-01-13 08:30:28.658000',1,1,NULL),(97,'llitr5f8af30q5176agzap76','BDS Logo 1.png',NULL,NULL,92,55,NULL,'BDS_Logo_1_c3646edabf','.png','image/png',1.29,'https://d1i031whgqu7f4.cloudfront.net/BDS_Logo_1_c3646edabf.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-01-13 08:30:28.687000','2026-01-13 08:30:28.687000','2026-01-13 08:30:28.687000',1,1,NULL),(98,'zkcdtwnhdr4fxysi3hyomhnd','Bosch_Car_Service_Logo_1999.svg 1.png',NULL,NULL,65,55,NULL,'Bosch_Car_Service_Logo_1999_svg_1_08cdc86a3f','.png','image/png',1.13,'https://d1i031whgqu7f4.cloudfront.net/Bosch_Car_Service_Logo_1999_svg_1_08cdc86a3f.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-01-13 08:30:28.703000','2026-01-13 08:30:28.703000','2026-01-13 08:30:28.703000',1,1,NULL),(99,'u761o6pmfttu53tm79rgcb5q','CLAS Logo 1.png',NULL,NULL,63,55,NULL,'CLAS_Logo_1_0cb077155d','.png','image/png',0.38,'https://d1i031whgqu7f4.cloudfront.net/CLAS_Logo_1_0cb077155d.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-01-13 08:30:28.725000','2026-01-13 08:30:28.725000','2026-01-13 08:30:28.725000',1,1,NULL),(100,'rrl3ewlqrqo5xe2vnjevh5n3','Bfgoodrich_logo_new-1024x249 1.png',NULL,NULL,295,55,'{\"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Bfgoodrich_logo_new_1024x249_1_48ff4b5760.png\", \"hash\": \"thumbnail_Bfgoodrich_logo_new_1024x249_1_48ff4b5760\", \"mime\": \"image/png\", \"name\": \"thumbnail_Bfgoodrich_logo_new-1024x249 1.png\", \"path\": null, \"size\": 12.06, \"width\": 245, \"height\": 46, \"sizeInBytes\": 12056}}','Bfgoodrich_logo_new_1024x249_1_48ff4b5760','.png','image/png',3.59,'https://d1i031whgqu7f4.cloudfront.net/Bfgoodrich_logo_new_1024x249_1_48ff4b5760.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-01-13 08:30:28.746000','2026-01-13 08:30:28.746000','2026-01-13 08:30:28.747000',1,1,NULL),(101,'g3gj22dsce3soj5g5r4u1on2','cyclo logo 1.png',NULL,NULL,110,55,NULL,'cyclo_logo_1_896e6e7415','.png','image/png',1.24,'https://d1i031whgqu7f4.cloudfront.net/cyclo_logo_1_896e6e7415.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-01-13 08:30:28.863000','2026-01-13 08:30:28.863000','2026-01-13 08:30:28.864000',1,1,NULL),(102,'lq7ze28ieltpwdd3718a826s','Bosch_symbol_logo_black_red 1.png',NULL,NULL,212,55,NULL,'Bosch_symbol_logo_black_red_1_c9c224040c','.png','image/png',2.60,'https://d1i031whgqu7f4.cloudfront.net/Bosch_symbol_logo_black_red_1_c9c224040c.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-01-13 08:30:28.896000','2026-01-13 08:30:28.896000','2026-01-13 08:30:28.897000',1,1,NULL),(103,'b8jwr9mgg3xdae6kenklcopl','HC-CARGO logo 1.png',NULL,NULL,130,55,NULL,'HC_CARGO_logo_1_70588f6e41','.png','image/png',1.63,'https://d1i031whgqu7f4.cloudfront.net/HC_CARGO_logo_1_70588f6e41.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-01-13 08:30:29.051000','2026-01-13 08:30:29.051000','2026-01-13 08:30:29.051000',1,1,NULL),(104,'uf0vgmskmj3mvf259z1fhv6v','Eveready_Logo_Red 1.png',NULL,NULL,248,55,'{\"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Eveready_Logo_Red_1_dcc13119a0.png\", \"hash\": \"thumbnail_Eveready_Logo_Red_1_dcc13119a0\", \"mime\": \"image/png\", \"name\": \"thumbnail_Eveready_Logo_Red 1.png\", \"path\": null, \"size\": 15.07, \"width\": 245, \"height\": 54, \"sizeInBytes\": 15067}}','Eveready_Logo_Red_1_dcc13119a0','.png','image/png',2.76,'https://d1i031whgqu7f4.cloudfront.net/Eveready_Logo_Red_1_dcc13119a0.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-01-13 08:30:29.110000','2026-01-13 08:30:29.110000','2026-01-13 08:30:29.111000',1,1,NULL),(105,'ejcjf52jdenohvpviqe5mlxh','GRANTEX_LOGO [Pantone] professional 1.png',NULL,NULL,270,55,'{\"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_GRANTEX_LOGO_Pantone_professional_1_3ca168ba3c.png\", \"hash\": \"thumbnail_GRANTEX_LOGO_Pantone_professional_1_3ca168ba3c\", \"mime\": \"image/png\", \"name\": \"thumbnail_GRANTEX_LOGO [Pantone] professional 1.png\", \"path\": null, \"size\": 9.98, \"width\": 245, \"height\": 50, \"sizeInBytes\": 9984}}','GRANTEX_LOGO_Pantone_professional_1_3ca168ba3c','.png','image/png',2.13,'https://d1i031whgqu7f4.cloudfront.net/GRANTEX_LOGO_Pantone_professional_1_3ca168ba3c.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-01-13 08:30:29.118000','2026-01-13 08:30:29.118000','2026-01-13 08:30:29.119000',1,1,NULL),(106,'c2wagiwl719cv0jzom3pc1t8','JP by JP Group Automotive_POS 1.png',NULL,NULL,118,55,NULL,'JP_by_JP_Group_Automotive_POS_1_48301dc07a','.png','image/png',1.76,'https://d1i031whgqu7f4.cloudfront.net/JP_by_JP_Group_Automotive_POS_1_48301dc07a.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-01-13 08:30:29.148000','2026-01-13 08:30:29.148000','2026-01-13 08:30:29.148000',1,1,NULL),(107,'l3dh4g2evqgbzl4w89056zo0','Logo AUTOPART EPS 1.png',NULL,NULL,199,55,NULL,'Logo_AUTOPART_EPS_1_ce38c6ae13','.png','image/png',2.66,'https://d1i031whgqu7f4.cloudfront.net/Logo_AUTOPART_EPS_1_ce38c6ae13.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-01-13 08:30:29.181000','2026-01-13 08:30:29.181000','2026-01-13 08:30:29.181000',1,1,NULL),(108,'zvoa2lpnn73zyruyzj3btlod','OSRAM.png',NULL,NULL,207,55,NULL,'OSRAM_1c1933a538','.png','image/png',3.58,'https://d1i031whgqu7f4.cloudfront.net/OSRAM_1c1933a538.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-01-13 08:30:29.271000','2026-01-13 08:30:29.271000','2026-01-13 08:30:29.271000',1,1,NULL),(109,'kws6vgtstm3b3d5uqoercgvg','KB_Logo_left_RGB 1.png',NULL,NULL,302,55,'{\"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_KB_Logo_left_RGB_1_c8cacb41f5.png\", \"hash\": \"thumbnail_KB_Logo_left_RGB_1_c8cacb41f5\", \"mime\": \"image/png\", \"name\": \"thumbnail_KB_Logo_left_RGB 1.png\", \"path\": null, \"size\": 8.28, \"width\": 245, \"height\": 45, \"sizeInBytes\": 8283}}','KB_Logo_left_RGB_1_c8cacb41f5','.png','image/png',1.70,'https://d1i031whgqu7f4.cloudfront.net/KB_Logo_left_RGB_1_c8cacb41f5.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-01-13 08:30:29.281000','2026-01-21 07:07:23.899000','2026-01-13 08:30:29.282000',1,1,NULL),(110,'ree97v77joblcc9b7cb4dv9m','valeo-logo-1 1.png',NULL,NULL,119,55,NULL,'valeo_logo_1_1_7e31942430','.png','image/png',1.00,'https://d1i031whgqu7f4.cloudfront.net/valeo_logo_1_1_7e31942430.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-01-13 08:30:29.287000','2026-01-13 08:30:29.287000','2026-01-13 08:30:29.287000',1,1,NULL),(111,'xu3sumk22qslkt8hoznyx2u0','OPTIMA_By_CLR_Lockup_RGB_Horiz_Black_Red 1.png',NULL,NULL,163,55,NULL,'OPTIMA_By_CLR_Lockup_RGB_Horiz_Black_Red_1_0036ce6038','.png','image/png',2.52,'https://d1i031whgqu7f4.cloudfront.net/OPTIMA_By_CLR_Lockup_RGB_Horiz_Black_Red_1_0036ce6038.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-01-13 08:30:29.301000','2026-01-21 07:06:07.674000','2026-01-13 08:30:29.302000',1,1,NULL),(112,'jwb1tg0jlq3w0e6gvt0wez4b','NRF.png',NULL,NULL,96,55,NULL,'NRF_c84b557aef','.png','image/png',0.64,'https://d1i031whgqu7f4.cloudfront.net/NRF_c84b557aef.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-01-13 08:30:29.306000','2026-01-21 07:05:36.471000','2026-01-13 08:30:29.306000',1,1,NULL),(113,'hhef3ux8osmt1wy8jqb7fuyg','Manatec Logo 2025 (1) 1.png',NULL,NULL,290,55,'{\"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Manatec_Logo_2025_1_1_cd96f4a51e.png\", \"hash\": \"thumbnail_Manatec_Logo_2025_1_1_cd96f4a51e\", \"mime\": \"image/png\", \"name\": \"thumbnail_Manatec Logo 2025 (1) 1.png\", \"path\": null, \"size\": 12.73, \"width\": 245, \"height\": 46, \"sizeInBytes\": 12734}}','Manatec_Logo_2025_1_1_cd96f4a51e','.png','image/png',3.36,'https://d1i031whgqu7f4.cloudfront.net/Manatec_Logo_2025_1_1_cd96f4a51e.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-01-13 08:30:29.319000','2026-01-13 08:31:02.989000','2026-01-13 08:30:29.319000',1,1,NULL),(114,'g72v2xy0scgg2u2s9d5hresz','SICAM 1.png',NULL,NULL,156,55,NULL,'SICAM_1_d1ac1fbd80','.png','image/png',1.83,'https://d1i031whgqu7f4.cloudfront.net/SICAM_1_d1ac1fbd80.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-01-13 08:30:29.351000','2026-01-21 07:04:04.625000','2026-01-13 08:30:29.352000',1,1,NULL),(115,'iaaja4u0saj4eqtgo9sn6wvd','Bosch_symbol_logo_black_red 1.png',NULL,NULL,212,55,NULL,'Bosch_symbol_logo_black_red_1_b3341f837f','.png','image/png',2.60,'https://d1i031whgqu7f4.cloudfront.net/Bosch_symbol_logo_black_red_1_b3341f837f.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-01-16 07:03:04.832000','2026-01-21 06:59:54.911000','2026-01-16 07:03:04.832000',1,1,NULL),(116,'wtzc3vbzu8o2bqlf9cpsg390','Michelin.png',NULL,NULL,233,55,NULL,'Michelin_ed7188e775','.png','image/png',3.59,'https://d1i031whgqu7f4.cloudfront.net/Michelin_ed7188e775.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-01-16 07:03:24.643000','2026-01-16 07:03:24.643000','2026-01-16 07:03:24.643000',1,1,NULL),(117,'hvtj28llpjgzpnlddzn44rml','automotive-banner.png',NULL,NULL,1440,400,'{\"large\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/large_automotive_banner_9bf66a285c.png\", \"hash\": \"large_automotive_banner_9bf66a285c\", \"mime\": \"image/png\", \"name\": \"large_automotive-banner.png\", \"path\": null, \"size\": 441.8, \"width\": 1000, \"height\": 278, \"sizeInBytes\": 441799}, \"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_automotive_banner_9bf66a285c.png\", \"hash\": \"small_automotive_banner_9bf66a285c\", \"mime\": \"image/png\", \"name\": \"small_automotive-banner.png\", \"path\": null, \"size\": 126.66, \"width\": 500, \"height\": 139, \"sizeInBytes\": 126662}, \"medium\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_automotive_banner_9bf66a285c.png\", \"hash\": \"medium_automotive_banner_9bf66a285c\", \"mime\": \"image/png\", \"name\": \"medium_automotive-banner.png\", \"path\": null, \"size\": 262.52, \"width\": 750, \"height\": 208, \"sizeInBytes\": 262523}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_automotive_banner_9bf66a285c.png\", \"hash\": \"thumbnail_automotive_banner_9bf66a285c\", \"mime\": \"image/png\", \"name\": \"thumbnail_automotive-banner.png\", \"path\": null, \"size\": 36.4, \"width\": 245, \"height\": 68, \"sizeInBytes\": 36395}}','automotive_banner_9bf66a285c','.png','image/png',185.04,'https://d1i031whgqu7f4.cloudfront.net/automotive_banner_9bf66a285c.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/18','2026-01-19 09:04:56.951000','2026-01-19 09:04:56.951000','2026-01-19 09:04:56.951000',1,1,NULL),(118,'mxl2an17zf6zl2npt0lqqj5l','pc-img-1.png',NULL,NULL,200,193,'{\"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_pc_img_1_4ca716fee6.png\", \"hash\": \"thumbnail_pc_img_1_4ca716fee6\", \"mime\": \"image/png\", \"name\": \"thumbnail_pc-img-1.png\", \"path\": null, \"size\": 58.94, \"width\": 162, \"height\": 156, \"sizeInBytes\": 58940}}','pc_img_1_4ca716fee6','.png','image/png',24.23,'https://d1i031whgqu7f4.cloudfront.net/pc_img_1_4ca716fee6.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/18','2026-01-19 09:24:40.325000','2026-01-19 09:24:40.325000','2026-01-19 09:24:40.326000',1,1,NULL),(119,'y9v77x180u5teklr4figmu7k','pc-img-2.png',NULL,NULL,200,200,'{\"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_pc_img_2_b7d59337fa.png\", \"hash\": \"thumbnail_pc_img_2_b7d59337fa\", \"mime\": \"image/png\", \"name\": \"thumbnail_pc-img-2.png\", \"path\": null, \"size\": 69.9, \"width\": 156, \"height\": 156, \"sizeInBytes\": 69897}}','pc_img_2_b7d59337fa','.png','image/png',33.90,'https://d1i031whgqu7f4.cloudfront.net/pc_img_2_b7d59337fa.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/18','2026-01-19 09:25:20.375000','2026-01-19 09:25:20.375000','2026-01-19 09:25:20.375000',1,1,NULL),(120,'pp8z1j87ubdcx6hd58p7cus5','sc-img-2.png',NULL,NULL,200,200,'{\"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_sc_img_2_9efa98f6da.png\", \"hash\": \"thumbnail_sc_img_2_9efa98f6da\", \"mime\": \"image/png\", \"name\": \"thumbnail_sc-img-2.png\", \"path\": null, \"size\": 55.39, \"width\": 156, \"height\": 156, \"sizeInBytes\": 55391}}','sc_img_2_9efa98f6da','.png','image/png',27.30,'https://d1i031whgqu7f4.cloudfront.net/sc_img_2_9efa98f6da.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/18','2026-01-19 09:48:44.146000','2026-01-19 09:48:44.146000','2026-01-19 09:48:44.148000',1,1,NULL),(121,'d14kjd5cewwmsl3fdrkx6oun','sc-img-1.png',NULL,NULL,200,189,'{\"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_sc_img_1_7149221b9e.png\", \"hash\": \"thumbnail_sc_img_1_7149221b9e\", \"mime\": \"image/png\", \"name\": \"thumbnail_sc-img-1.png\", \"path\": null, \"size\": 56.6, \"width\": 165, \"height\": 156, \"sizeInBytes\": 56599}}','sc_img_1_7149221b9e','.png','image/png',23.24,'https://d1i031whgqu7f4.cloudfront.net/sc_img_1_7149221b9e.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/18','2026-01-19 09:48:44.251000','2026-01-19 09:48:44.251000','2026-01-19 09:48:44.252000',1,1,NULL),(122,'v2r3ch4puqfr63gkuj7ed50e','bsl-img-1.png',NULL,NULL,194,124,NULL,'bsl_img_1_30204bba00','.png','image/png',18.79,'https://d1i031whgqu7f4.cloudfront.net/bsl_img_1_30204bba00.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/18','2026-01-19 10:12:29.422000','2026-01-19 10:12:29.422000','2026-01-19 10:12:29.423000',1,1,NULL),(123,'nx2z8624f03rh960a46jyylq','brands-1.png',NULL,NULL,132,29,NULL,'brands_1_5e9e762898','.png','image/png',1.04,'https://d1i031whgqu7f4.cloudfront.net/brands_1_5e9e762898.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/18','2026-01-19 12:34:33.029000','2026-01-19 12:34:33.029000','2026-01-19 12:34:33.030000',1,1,NULL),(124,'o0hfuus660gh6vba7ue71636','brands-2.png',NULL,NULL,233,55,'{}','brands_2_4135ec6f43','.png','image/png',3.59,'https://d1i031whgqu7f4.cloudfront.net/brands_2_4135ec6f43.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-01-19 12:34:33.037000','2026-01-20 09:44:26.011000','2026-01-19 12:34:33.037000',1,1,NULL),(126,'wqutsd6qowjdp4yd7g8n7n45','sc-fb-icon.svg',NULL,NULL,34,34,NULL,'sc_fb_icon_5bd22b873e','.svg','image/svg+xml',0.80,'https://d1i031whgqu7f4.cloudfront.net/sc_fb_icon_5bd22b873e.svg',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/18','2026-01-19 12:59:28.115000','2026-01-19 12:59:28.115000','2026-01-19 12:59:28.116000',1,1,NULL),(127,'rys55wzcgsk4qfezr1npaxxc','sc-2.png',NULL,NULL,412,526,'{\"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_sc_2_f6613761e7.png\", \"hash\": \"small_sc_2_f6613761e7\", \"mime\": \"image/png\", \"name\": \"small_sc-2.png\", \"path\": null, \"size\": 381.39, \"width\": 392, \"height\": 500, \"sizeInBytes\": 381389}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_sc_2_f6613761e7.png\", \"hash\": \"thumbnail_sc_2_f6613761e7\", \"mime\": \"image/png\", \"name\": \"thumbnail_sc-2.png\", \"path\": null, \"size\": 46.01, \"width\": 122, \"height\": 156, \"sizeInBytes\": 46008}}','sc_2_f6613761e7','.png','image/png',105.21,'https://d1i031whgqu7f4.cloudfront.net/sc_2_f6613761e7.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/18','2026-01-19 12:59:29.555000','2026-01-19 12:59:29.555000','2026-01-19 12:59:29.555000',1,1,NULL),(128,'enpkxpi419fy2yc6fz6ridht','sc-1.png',NULL,NULL,412,526,'{\"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_sc_1_a7a488f8b1.png\", \"hash\": \"small_sc_1_a7a488f8b1\", \"mime\": \"image/png\", \"name\": \"small_sc-1.png\", \"path\": null, \"size\": 473.49, \"width\": 392, \"height\": 500, \"sizeInBytes\": 473490}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_sc_1_a7a488f8b1.png\", \"hash\": \"thumbnail_sc_1_a7a488f8b1\", \"mime\": \"image/png\", \"name\": \"thumbnail_sc-1.png\", \"path\": null, \"size\": 50.79, \"width\": 122, \"height\": 156, \"sizeInBytes\": 50786}}','sc_1_a7a488f8b1','.png','image/png',152.77,'https://d1i031whgqu7f4.cloudfront.net/sc_1_a7a488f8b1.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/18','2026-01-19 12:59:29.902000','2026-01-19 12:59:29.902000','2026-01-19 12:59:29.902000',1,1,NULL),(130,'yecfsp106x1tugiyt7u99k1v','Al Qouz Dubai Location Warehouse.jpeg',NULL,NULL,1080,900,'{\"large\": {\"ext\": \".jpeg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/large_Al_Qouz_Dubai_Location_Warehouse_7f365fdbca.jpeg\", \"hash\": \"large_Al_Qouz_Dubai_Location_Warehouse_7f365fdbca\", \"mime\": \"image/jpeg\", \"name\": \"large_Al Qouz Dubai Location Warehouse.jpeg\", \"path\": null, \"size\": 135.82, \"width\": 1000, \"height\": 833, \"sizeInBytes\": 135820}, \"small\": {\"ext\": \".jpeg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_Al_Qouz_Dubai_Location_Warehouse_7f365fdbca.jpeg\", \"hash\": \"small_Al_Qouz_Dubai_Location_Warehouse_7f365fdbca\", \"mime\": \"image/jpeg\", \"name\": \"small_Al Qouz Dubai Location Warehouse.jpeg\", \"path\": null, \"size\": 42.77, \"width\": 500, \"height\": 417, \"sizeInBytes\": 42774}, \"medium\": {\"ext\": \".jpeg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_Al_Qouz_Dubai_Location_Warehouse_7f365fdbca.jpeg\", \"hash\": \"medium_Al_Qouz_Dubai_Location_Warehouse_7f365fdbca\", \"mime\": \"image/jpeg\", \"name\": \"medium_Al Qouz Dubai Location Warehouse.jpeg\", \"path\": null, \"size\": 84.9, \"width\": 750, \"height\": 625, \"sizeInBytes\": 84895}, \"thumbnail\": {\"ext\": \".jpeg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Al_Qouz_Dubai_Location_Warehouse_7f365fdbca.jpeg\", \"hash\": \"thumbnail_Al_Qouz_Dubai_Location_Warehouse_7f365fdbca\", \"mime\": \"image/jpeg\", \"name\": \"thumbnail_Al Qouz Dubai Location Warehouse.jpeg\", \"path\": null, \"size\": 7.79, \"width\": 187, \"height\": 156, \"sizeInBytes\": 7792}}','Al_Qouz_Dubai_Location_Warehouse_7f365fdbca','.jpeg','image/jpeg',154.29,'https://d1i031whgqu7f4.cloudfront.net/Al_Qouz_Dubai_Location_Warehouse_7f365fdbca.jpeg',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-01-20 06:24:11.437000','2026-01-20 06:24:11.437000','2026-01-20 06:24:11.438000',1,1,NULL),(131,'coz1w2d7vlbsmx7tqrq3n446','Service Banner.jpg',NULL,NULL,2724,532,'{\"large\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/large_Service_Banner_5aa07bc46e.jpg\", \"hash\": \"large_Service_Banner_5aa07bc46e\", \"mime\": \"image/jpeg\", \"name\": \"large_Service Banner.jpg\", \"path\": null, \"size\": 42.23, \"width\": 1000, \"height\": 195, \"sizeInBytes\": 42231}, \"small\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_Service_Banner_5aa07bc46e.jpg\", \"hash\": \"small_Service_Banner_5aa07bc46e\", \"mime\": \"image/jpeg\", \"name\": \"small_Service Banner.jpg\", \"path\": null, \"size\": 13.56, \"width\": 500, \"height\": 98, \"sizeInBytes\": 13562}, \"medium\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_Service_Banner_5aa07bc46e.jpg\", \"hash\": \"medium_Service_Banner_5aa07bc46e\", \"mime\": \"image/jpeg\", \"name\": \"medium_Service Banner.jpg\", \"path\": null, \"size\": 26.06, \"width\": 750, \"height\": 146, \"sizeInBytes\": 26060}, \"thumbnail\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Service_Banner_5aa07bc46e.jpg\", \"hash\": \"thumbnail_Service_Banner_5aa07bc46e\", \"mime\": \"image/jpeg\", \"name\": \"thumbnail_Service Banner.jpg\", \"path\": null, \"size\": 4.26, \"width\": 245, \"height\": 48, \"sizeInBytes\": 4261}}','Service_Banner_5aa07bc46e','.jpg','image/jpeg',189.06,'https://d1i031whgqu7f4.cloudfront.net/Service_Banner_5aa07bc46e.jpg',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-01-20 06:26:25.533000','2026-01-20 06:27:39.070000','2026-01-20 06:26:25.533000',1,1,NULL),(133,'rvzjmeicmxzi1ct5z7ar875g','1761319152662.png',NULL,NULL,1284,1222,'{\"large\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/large_1761319152662_7585d4799e.png\", \"hash\": \"large_1761319152662_7585d4799e\", \"mime\": \"image/png\", \"name\": \"large_1761319152662.png\", \"path\": null, \"size\": 1638.62, \"width\": 1000, \"height\": 952, \"sizeInBytes\": 1638623}, \"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_1761319152662_7585d4799e.png\", \"hash\": \"small_1761319152662_7585d4799e\", \"mime\": \"image/png\", \"name\": \"small_1761319152662.png\", \"path\": null, \"size\": 436.32, \"width\": 500, \"height\": 476, \"sizeInBytes\": 436321}, \"medium\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_1761319152662_7585d4799e.png\", \"hash\": \"medium_1761319152662_7585d4799e\", \"mime\": \"image/png\", \"name\": \"medium_1761319152662.png\", \"path\": null, \"size\": 951.38, \"width\": 750, \"height\": 714, \"sizeInBytes\": 951384}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_1761319152662_7585d4799e.png\", \"hash\": \"thumbnail_1761319152662_7585d4799e\", \"mime\": \"image/png\", \"name\": \"thumbnail_1761319152662.png\", \"path\": null, \"size\": 54.53, \"width\": 164, \"height\": 156, \"sizeInBytes\": 54525}}','1761319152662_7585d4799e','.png','image/png',570.06,'https://d1i031whgqu7f4.cloudfront.net/1761319152662_7585d4799e.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-01-20 10:20:31.581000','2026-01-20 10:20:31.581000','2026-01-20 10:20:31.582000',1,1,NULL),(134,'onkccxlj0br7kj8bfa61weoa','Fine Tools.jpg',NULL,NULL,5712,4284,'{\"large\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/large_Fine_Tools_0fb8870a0f.jpg\", \"hash\": \"large_Fine_Tools_0fb8870a0f\", \"mime\": \"image/jpeg\", \"name\": \"large_Fine Tools.jpg\", \"path\": null, \"size\": 155.81, \"width\": 1000, \"height\": 750, \"sizeInBytes\": 155811}, \"small\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_Fine_Tools_0fb8870a0f.jpg\", \"hash\": \"small_Fine_Tools_0fb8870a0f\", \"mime\": \"image/jpeg\", \"name\": \"small_Fine Tools.jpg\", \"path\": null, \"size\": 46.07, \"width\": 500, \"height\": 375, \"sizeInBytes\": 46067}, \"medium\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_Fine_Tools_0fb8870a0f.jpg\", \"hash\": \"medium_Fine_Tools_0fb8870a0f\", \"mime\": \"image/jpeg\", \"name\": \"medium_Fine Tools.jpg\", \"path\": null, \"size\": 94.88, \"width\": 750, \"height\": 563, \"sizeInBytes\": 94882}, \"thumbnail\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Fine_Tools_0fb8870a0f.jpg\", \"hash\": \"thumbnail_Fine_Tools_0fb8870a0f\", \"mime\": \"image/jpeg\", \"name\": \"thumbnail_Fine Tools.jpg\", \"path\": null, \"size\": 10.46, \"width\": 208, \"height\": 156, \"sizeInBytes\": 10455}}','Fine_Tools_0fb8870a0f','.jpg','image/jpeg',1982.71,'https://d1i031whgqu7f4.cloudfront.net/Fine_Tools_0fb8870a0f.jpg',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-01-20 10:38:08.717000','2026-01-20 10:38:08.717000','2026-01-20 10:38:08.718000',1,1,NULL),(135,'zp9k0x2q8x5n5f8z1vse1b02','1761319152662 (1).png',NULL,NULL,1284,1222,'{\"large\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/large_1761319152662_1_3fe992e382.png\", \"hash\": \"large_1761319152662_1_3fe992e382\", \"mime\": \"image/png\", \"name\": \"large_1761319152662 (1).png\", \"path\": null, \"size\": 1633.28, \"width\": 1000, \"height\": 952, \"sizeInBytes\": 1633282}, \"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_1761319152662_1_3fe992e382.png\", \"hash\": \"small_1761319152662_1_3fe992e382\", \"mime\": \"image/png\", \"name\": \"small_1761319152662 (1).png\", \"path\": null, \"size\": 431.36, \"width\": 500, \"height\": 476, \"sizeInBytes\": 431355}, \"medium\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_1761319152662_1_3fe992e382.png\", \"hash\": \"medium_1761319152662_1_3fe992e382\", \"mime\": \"image/png\", \"name\": \"medium_1761319152662 (1).png\", \"path\": null, \"size\": 945.7, \"width\": 750, \"height\": 714, \"sizeInBytes\": 945696}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_1761319152662_1_3fe992e382.png\", \"hash\": \"thumbnail_1761319152662_1_3fe992e382\", \"mime\": \"image/png\", \"name\": \"thumbnail_1761319152662 (1).png\", \"path\": null, \"size\": 53.91, \"width\": 164, \"height\": 156, \"sizeInBytes\": 53906}}','1761319152662_1_3fe992e382','.png','image/png',506.33,'https://d1i031whgqu7f4.cloudfront.net/1761319152662_1_3fe992e382.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-01-20 10:38:53.272000','2026-01-20 10:38:53.272000','2026-01-20 10:38:53.273000',1,1,NULL),(136,'brjv71d2ftbzm1hku770w8a5','pt-banner-1.png',NULL,NULL,1440,400,'{\"large\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/large_pt_banner_1_49e4876c8f.png\", \"hash\": \"large_pt_banner_1_49e4876c8f\", \"mime\": \"image/png\", \"name\": \"large_pt-banner-1.png\", \"path\": null, \"size\": 513.95, \"width\": 1000, \"height\": 278, \"sizeInBytes\": 513951}, \"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_pt_banner_1_49e4876c8f.png\", \"hash\": \"small_pt_banner_1_49e4876c8f\", \"mime\": \"image/png\", \"name\": \"small_pt-banner-1.png\", \"path\": null, \"size\": 136.96, \"width\": 500, \"height\": 139, \"sizeInBytes\": 136962}, \"medium\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_pt_banner_1_49e4876c8f.png\", \"hash\": \"medium_pt_banner_1_49e4876c8f\", \"mime\": \"image/png\", \"name\": \"medium_pt-banner-1.png\", \"path\": null, \"size\": 295, \"width\": 750, \"height\": 208, \"sizeInBytes\": 294995}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_pt_banner_1_49e4876c8f.png\", \"hash\": \"thumbnail_pt_banner_1_49e4876c8f\", \"mime\": \"image/png\", \"name\": \"thumbnail_pt-banner-1.png\", \"path\": null, \"size\": 37.34, \"width\": 245, \"height\": 68, \"sizeInBytes\": 37341}}','pt_banner_1_49e4876c8f','.png','image/png',276.31,'https://d1i031whgqu7f4.cloudfront.net/pt_banner_1_49e4876c8f.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/20','2026-01-20 10:43:11.798000','2026-01-20 10:43:11.798000','2026-01-20 10:43:11.799000',1,1,NULL),(137,'y297ekcw5n5ts9s9f3awjmag','city-trucks-rush-by-delivering-urgent-cargo-generated-by-ai_188544-29950 1.png',NULL,NULL,200,200,'{\"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_city_trucks_rush_by_delivering_urgent_cargo_generated_by_ai_188544_29950_1_12c9a5da68.png\", \"hash\": \"thumbnail_city_trucks_rush_by_delivering_urgent_cargo_generated_by_ai_188544_29950_1_12c9a5da68\", \"mime\": \"image/png\", \"name\": \"thumbnail_city-trucks-rush-by-delivering-urgent-cargo-generated-by-ai_188544-29950 1.png\", \"path\": null, \"size\": 69.86, \"width\": 156, \"height\": 156, \"sizeInBytes\": 69855}}','city_trucks_rush_by_delivering_urgent_cargo_generated_by_ai_188544_29950_1_12c9a5da68','.png','image/png',33.80,'https://d1i031whgqu7f4.cloudfront.net/city_trucks_rush_by_delivering_urgent_cargo_generated_by_ai_188544_29950_1_12c9a5da68.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-01-20 18:13:20.308000','2026-01-20 18:13:20.308000','2026-01-20 18:13:20.309000',1,1,NULL),(138,'j218ja46d06sbl10z6mabk20','heavy-machinery-used-construction-industry-engineering_23-2151307732 1 (1).png',NULL,NULL,200,200,'{\"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_heavy_machinery_used_construction_industry_engineering_23_2151307732_1_1_c747788188.png\", \"hash\": \"thumbnail_heavy_machinery_used_construction_industry_engineering_23_2151307732_1_1_c747788188\", \"mime\": \"image/png\", \"name\": \"thumbnail_heavy-machinery-used-construction-industry-engineering_23-2151307732 1 (1).png\", \"path\": null, \"size\": 43.38, \"width\": 156, \"height\": 156, \"sizeInBytes\": 43380}}','heavy_machinery_used_construction_industry_engineering_23_2151307732_1_1_c747788188','.png','image/png',23.31,'https://d1i031whgqu7f4.cloudfront.net/heavy_machinery_used_construction_industry_engineering_23_2151307732_1_1_c747788188.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-01-20 18:14:34.520000','2026-01-20 18:14:34.520000','2026-01-20 18:14:34.521000',1,1,NULL),(139,'wveu6au9uglrqlo03zd7aqsf','1412 1.png',NULL,NULL,200,200,'{\"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_1412_1_65d52b61bd.png\", \"hash\": \"thumbnail_1412_1_65d52b61bd\", \"mime\": \"image/png\", \"name\": \"thumbnail_1412 1.png\", \"path\": null, \"size\": 56, \"width\": 156, \"height\": 156, \"sizeInBytes\": 55998}}','1412_1_65d52b61bd','.png','image/png',25.07,'https://d1i031whgqu7f4.cloudfront.net/1412_1_65d52b61bd.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-01-20 18:15:29.229000','2026-01-20 18:15:29.229000','2026-01-20 18:15:29.230000',1,1,NULL),(140,'p2wyy8ie435vkujzod692vnk','4279 1.png',NULL,NULL,200,200,'{\"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_4279_1_38fe2e2bbc.png\", \"hash\": \"thumbnail_4279_1_38fe2e2bbc\", \"mime\": \"image/png\", \"name\": \"thumbnail_4279 1.png\", \"path\": null, \"size\": 54.89, \"width\": 156, \"height\": 156, \"sizeInBytes\": 54894}}','4279_1_38fe2e2bbc','.png','image/png',28.78,'https://d1i031whgqu7f4.cloudfront.net/4279_1_38fe2e2bbc.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-01-20 18:15:59.973000','2026-01-20 18:18:23.303000','2026-01-20 18:15:59.973000',1,1,NULL),(141,'ajlo12bxqi0pp0pq8unfobyf','26864 2.png',NULL,NULL,200,200,'{\"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_26864_2_4683e6140a.png\", \"hash\": \"thumbnail_26864_2_4683e6140a\", \"mime\": \"image/png\", \"name\": \"thumbnail_26864 2.png\", \"path\": null, \"size\": 54.94, \"width\": 156, \"height\": 156, \"sizeInBytes\": 54944}}','26864_2_4683e6140a','.png','image/png',27.81,'https://d1i031whgqu7f4.cloudfront.net/26864_2_4683e6140a.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-01-20 18:16:35.802000','2026-01-20 18:16:35.802000','2026-01-20 18:16:35.802000',1,1,NULL),(142,'s9keo0tt753zphb9ojekqb7a','1412 1.png',NULL,NULL,200,200,'{\"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_1412_1_fb9aa40966.png\", \"hash\": \"thumbnail_1412_1_fb9aa40966\", \"mime\": \"image/png\", \"name\": \"thumbnail_1412 1.png\", \"path\": null, \"size\": 56, \"width\": 156, \"height\": 156, \"sizeInBytes\": 55998}}','1412_1_fb9aa40966','.png','image/png',25.07,'https://d1i031whgqu7f4.cloudfront.net/1412_1_fb9aa40966.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-01-20 18:17:23.075000','2026-01-20 18:17:23.075000','2026-01-20 18:17:23.076000',1,1,NULL),(143,'wq56238ylfu59cihxc58tte6','heavy-machinery-used-construction-industry-engineering_23-2151307732 1 (1).png',NULL,NULL,200,200,'{\"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_heavy_machinery_used_construction_industry_engineering_23_2151307732_1_1_3837b743ff.png\", \"hash\": \"thumbnail_heavy_machinery_used_construction_industry_engineering_23_2151307732_1_1_3837b743ff\", \"mime\": \"image/png\", \"name\": \"thumbnail_heavy-machinery-used-construction-industry-engineering_23-2151307732 1 (1).png\", \"path\": null, \"size\": 43.38, \"width\": 156, \"height\": 156, \"sizeInBytes\": 43380}}','heavy_machinery_used_construction_industry_engineering_23_2151307732_1_1_3837b743ff','.png','image/png',23.31,'https://d1i031whgqu7f4.cloudfront.net/heavy_machinery_used_construction_industry_engineering_23_2151307732_1_1_3837b743ff.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-01-20 18:17:48.674000','2026-01-20 18:17:55.720000','2026-01-20 18:17:48.674000',1,1,NULL),(144,'dfy0wl525c6s7tdb7e1sncsx','2151846009 1.png',NULL,NULL,200,200,'{\"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_2151846009_1_4885389f41.png\", \"hash\": \"thumbnail_2151846009_1_4885389f41\", \"mime\": \"image/png\", \"name\": \"thumbnail_2151846009 1.png\", \"path\": null, \"size\": 66.74, \"width\": 156, \"height\": 156, \"sizeInBytes\": 66740}}','2151846009_1_4885389f41','.png','image/png',33.82,'https://d1i031whgqu7f4.cloudfront.net/2151846009_1_4885389f41.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-01-20 18:19:51.761000','2026-01-20 18:19:51.761000','2026-01-20 18:19:51.761000',1,1,NULL),(146,'ktuae8iofemkt4xjwjoo5hpf','17116 1.png',NULL,NULL,40,200,'{\"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_17116_1_226cb63ffe.png\", \"hash\": \"thumbnail_17116_1_226cb63ffe\", \"mime\": \"image/png\", \"name\": \"thumbnail_17116 1.png\", \"path\": null, \"size\": 7.84, \"width\": 31, \"height\": 156, \"sizeInBytes\": 7840}}','17116_1_226cb63ffe','.png','image/png',3.37,'https://d1i031whgqu7f4.cloudfront.net/17116_1_226cb63ffe.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-01-20 18:24:54.912000','2026-01-20 18:24:54.912000','2026-01-20 18:24:54.913000',1,1,NULL),(147,'b9767lurmb4rbw97cl59zeea','2151998727 1.png',NULL,NULL,200,200,'{\"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_2151998727_1_e4284d4171.png\", \"hash\": \"thumbnail_2151998727_1_e4284d4171\", \"mime\": \"image/png\", \"name\": \"thumbnail_2151998727 1.png\", \"path\": null, \"size\": 48.02, \"width\": 156, \"height\": 156, \"sizeInBytes\": 48019}}','2151998727_1_e4284d4171','.png','image/png',23.60,'https://d1i031whgqu7f4.cloudfront.net/2151998727_1_e4284d4171.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-01-20 18:26:55.063000','2026-01-20 18:26:55.063000','2026-01-20 18:26:55.064000',1,1,NULL),(148,'c7cfa9ml6zaztosxe0o9xwnu','image 573.png',NULL,NULL,200,200,'{\"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_image_573_8ab0bc177e.png\", \"hash\": \"thumbnail_image_573_8ab0bc177e\", \"mime\": \"image/png\", \"name\": \"thumbnail_image 573.png\", \"path\": null, \"size\": 62.96, \"width\": 156, \"height\": 156, \"sizeInBytes\": 62963}}','image_573_8ab0bc177e','.png','image/png',29.92,'https://d1i031whgqu7f4.cloudfront.net/image_573_8ab0bc177e.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-01-20 18:28:00.875000','2026-01-20 18:28:00.875000','2026-01-20 18:28:00.876000',1,1,NULL),(149,'mzj7pmhk34g00q2ehnsfcp98','27467 1.png',NULL,NULL,200,200,'{\"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_27467_1_bce80feb0e.png\", \"hash\": \"thumbnail_27467_1_bce80feb0e\", \"mime\": \"image/png\", \"name\": \"thumbnail_27467 1.png\", \"path\": null, \"size\": 59.8, \"width\": 156, \"height\": 156, \"sizeInBytes\": 59804}}','27467_1_bce80feb0e','.png','image/png',31.16,'https://d1i031whgqu7f4.cloudfront.net/27467_1_bce80feb0e.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-01-20 18:28:39.268000','2026-01-20 18:28:39.268000','2026-01-20 18:28:39.268000',1,1,NULL),(150,'eh87tlvvus5t5k56wdvaf7mt','image 575.png',NULL,NULL,200,200,'{\"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_image_575_ca52193f65.png\", \"hash\": \"thumbnail_image_575_ca52193f65\", \"mime\": \"image/png\", \"name\": \"thumbnail_image 575.png\", \"path\": null, \"size\": 48.88, \"width\": 156, \"height\": 156, \"sizeInBytes\": 48880}}','image_575_ca52193f65','.png','image/png',24.57,'https://d1i031whgqu7f4.cloudfront.net/image_575_ca52193f65.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-01-20 18:29:19.074000','2026-01-20 18:29:19.074000','2026-01-20 18:29:19.074000',1,1,NULL),(151,'xs2dte79chfu7pqyb2gdadb8','image 574 (1).png',NULL,NULL,200,200,'{\"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_image_574_1_725fe591f7.png\", \"hash\": \"thumbnail_image_574_1_725fe591f7\", \"mime\": \"image/png\", \"name\": \"thumbnail_image 574 (1).png\", \"path\": null, \"size\": 55.47, \"width\": 156, \"height\": 156, \"sizeInBytes\": 55470}}','image_574_1_725fe591f7','.png','image/png',32.15,'https://d1i031whgqu7f4.cloudfront.net/image_574_1_725fe591f7.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-01-20 18:29:57.858000','2026-01-20 18:29:57.858000','2026-01-20 18:29:57.859000',1,1,NULL),(152,'odmurzw9js07g86fer9uu5zg','2147881697 1.png',NULL,NULL,200,200,'{\"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_2147881697_1_53de41d88a.png\", \"hash\": \"thumbnail_2147881697_1_53de41d88a\", \"mime\": \"image/png\", \"name\": \"thumbnail_2147881697 1.png\", \"path\": null, \"size\": 60.2, \"width\": 156, \"height\": 156, \"sizeInBytes\": 60200}}','2147881697_1_53de41d88a','.png','image/png',29.31,'https://d1i031whgqu7f4.cloudfront.net/2147881697_1_53de41d88a.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-01-20 18:30:51.411000','2026-01-20 18:30:51.411000','2026-01-20 18:30:51.411000',1,1,NULL),(153,'zcmoqa8kqcrq2xuorbpd95hu','d3d3f9ef2bdbf5abb50b132af672f8e87f71d5cb.jpg',NULL,NULL,1500,1000,'{\"large\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/large_d3d3f9ef2bdbf5abb50b132af672f8e87f71d5cb_a1232b4fc2.jpg\", \"hash\": \"large_d3d3f9ef2bdbf5abb50b132af672f8e87f71d5cb_a1232b4fc2\", \"mime\": \"image/jpeg\", \"name\": \"large_d3d3f9ef2bdbf5abb50b132af672f8e87f71d5cb.jpg\", \"path\": null, \"size\": 50.73, \"width\": 1000, \"height\": 667, \"sizeInBytes\": 50733}, \"small\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_d3d3f9ef2bdbf5abb50b132af672f8e87f71d5cb_a1232b4fc2.jpg\", \"hash\": \"small_d3d3f9ef2bdbf5abb50b132af672f8e87f71d5cb_a1232b4fc2\", \"mime\": \"image/jpeg\", \"name\": \"small_d3d3f9ef2bdbf5abb50b132af672f8e87f71d5cb.jpg\", \"path\": null, \"size\": 17.51, \"width\": 500, \"height\": 333, \"sizeInBytes\": 17514}, \"medium\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_d3d3f9ef2bdbf5abb50b132af672f8e87f71d5cb_a1232b4fc2.jpg\", \"hash\": \"medium_d3d3f9ef2bdbf5abb50b132af672f8e87f71d5cb_a1232b4fc2\", \"mime\": \"image/jpeg\", \"name\": \"medium_d3d3f9ef2bdbf5abb50b132af672f8e87f71d5cb.jpg\", \"path\": null, \"size\": 33, \"width\": 750, \"height\": 500, \"sizeInBytes\": 32996}, \"thumbnail\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_d3d3f9ef2bdbf5abb50b132af672f8e87f71d5cb_a1232b4fc2.jpg\", \"hash\": \"thumbnail_d3d3f9ef2bdbf5abb50b132af672f8e87f71d5cb_a1232b4fc2\", \"mime\": \"image/jpeg\", \"name\": \"thumbnail_d3d3f9ef2bdbf5abb50b132af672f8e87f71d5cb.jpg\", \"path\": null, \"size\": 5.42, \"width\": 234, \"height\": 156, \"sizeInBytes\": 5416}}','d3d3f9ef2bdbf5abb50b132af672f8e87f71d5cb_a1232b4fc2','.jpg','image/jpeg',91.15,'https://d1i031whgqu7f4.cloudfront.net/d3d3f9ef2bdbf5abb50b132af672f8e87f71d5cb_a1232b4fc2.jpg',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-01-21 05:26:48.273000','2026-01-21 05:26:48.273000','2026-01-21 05:26:48.274000',1,1,NULL),(154,'m6k1zohbs22ajtrjk47yu0a2','TYREPLUS_idj513aG9O_0 1.png',NULL,NULL,163,55,NULL,'TYREPLUS_idj513a_G9_O_0_1_d0579bef0d','.png','image/png',2.47,'https://d1i031whgqu7f4.cloudfront.net/TYREPLUS_idj513a_G9_O_0_1_d0579bef0d.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-01-21 09:08:16.065000','2026-01-21 09:08:16.065000','2026-01-21 09:08:16.065000',1,1,NULL),(155,'zyqsqmq8y4wutbq8drey4uhy','Michelin.png',NULL,NULL,233,55,NULL,'Michelin_bf9e7fef29','.png','image/png',3.37,'https://d1i031whgqu7f4.cloudfront.net/Michelin_bf9e7fef29.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-01-21 09:09:40.081000','2026-01-21 09:09:40.081000','2026-01-21 09:09:40.082000',1,1,NULL),(156,'alw0tqvwiwulx0zewilnpyhm','SICAM 1.png',NULL,NULL,156,55,NULL,'SICAM_1_c768b5272b','.png','image/png',1.67,'https://d1i031whgqu7f4.cloudfront.net/SICAM_1_c768b5272b.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-01-21 09:20:14.217000','2026-01-21 09:20:14.217000','2026-01-21 09:20:14.217000',1,1,NULL),(157,'suv7q5ncxh1bt79kkbt84lp0','OSRAM.png',NULL,NULL,207,55,NULL,'OSRAM_ff3daff806','.png','image/png',3.27,'https://d1i031whgqu7f4.cloudfront.net/OSRAM_ff3daff806.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-01-21 09:20:52.090000','2026-01-21 09:20:52.090000','2026-01-21 09:20:52.091000',1,1,NULL),(158,'f6teiqdd1jmq9o12asirgjeo','GRANTEX_LOGO [Pantone] professional 1.png',NULL,NULL,270,55,'{\"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_GRANTEX_LOGO_Pantone_professional_1_cc499037e6.png\", \"hash\": \"thumbnail_GRANTEX_LOGO_Pantone_professional_1_cc499037e6\", \"mime\": \"image/png\", \"name\": \"thumbnail_GRANTEX_LOGO [Pantone] professional 1.png\", \"path\": null, \"size\": 9.85, \"width\": 245, \"height\": 50, \"sizeInBytes\": 9845}}','GRANTEX_LOGO_Pantone_professional_1_cc499037e6','.png','image/png',1.95,'https://d1i031whgqu7f4.cloudfront.net/GRANTEX_LOGO_Pantone_professional_1_cc499037e6.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-01-21 09:21:16.405000','2026-01-21 09:21:16.405000','2026-01-21 09:21:16.405000',1,1,NULL),(159,'z8fh6dkmhyvoyas5zgt8mdo7','AZPI Logo 1.png',NULL,NULL,152,55,NULL,'AZPI_Logo_1_a541d38928','.png','image/png',2.04,'https://d1i031whgqu7f4.cloudfront.net/AZPI_Logo_1_a541d38928.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-01-21 09:21:42.026000','2026-01-21 09:21:42.026000','2026-01-21 09:21:42.026000',1,1,NULL),(161,'ui1msuttpxhe3hjn13pecox8','Bosch_symbol_logo_black_red 1.png',NULL,NULL,212,55,NULL,'Bosch_symbol_logo_black_red_1_590212e8ac','.png','image/png',2.15,'https://d1i031whgqu7f4.cloudfront.net/Bosch_symbol_logo_black_red_1_590212e8ac.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-01-21 09:23:49.628000','2026-01-21 10:21:14.211000','2026-01-21 09:23:49.628000',1,1,NULL),(162,'zjpigkl9z8th2b7jri744r5x','Tyre-Banner01.webp',NULL,NULL,1920,532,'{\"large\": {\"ext\": \".webp\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/large_Tyre_Banner01_004e42dca2.webp\", \"hash\": \"large_Tyre_Banner01_004e42dca2\", \"mime\": \"image/webp\", \"name\": \"large_Tyre-Banner01.webp\", \"path\": null, \"size\": 55.03, \"width\": 1000, \"height\": 277, \"sizeInBytes\": 55026}, \"small\": {\"ext\": \".webp\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_Tyre_Banner01_004e42dca2.webp\", \"hash\": \"small_Tyre_Banner01_004e42dca2\", \"mime\": \"image/webp\", \"name\": \"small_Tyre-Banner01.webp\", \"path\": null, \"size\": 20.44, \"width\": 500, \"height\": 139, \"sizeInBytes\": 20436}, \"medium\": {\"ext\": \".webp\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_Tyre_Banner01_004e42dca2.webp\", \"hash\": \"medium_Tyre_Banner01_004e42dca2\", \"mime\": \"image/webp\", \"name\": \"medium_Tyre-Banner01.webp\", \"path\": null, \"size\": 36.95, \"width\": 750, \"height\": 208, \"sizeInBytes\": 36948}, \"thumbnail\": {\"ext\": \".webp\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Tyre_Banner01_004e42dca2.webp\", \"hash\": \"thumbnail_Tyre_Banner01_004e42dca2\", \"mime\": \"image/webp\", \"name\": \"thumbnail_Tyre-Banner01.webp\", \"path\": null, \"size\": 6.56, \"width\": 245, \"height\": 68, \"sizeInBytes\": 6556}}','Tyre_Banner01_004e42dca2','.webp','image/webp',137.50,'https://d1i031whgqu7f4.cloudfront.net/Tyre_Banner01_004e42dca2.webp',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-01-21 09:49:52.269000','2026-01-21 10:58:26.138000','2026-01-21 09:49:52.270000',1,1,NULL),(163,'k5y2r4z019jtl23f7wwsehdn','Powertools Banner02.webp',NULL,NULL,1920,532,'{\"large\": {\"ext\": \".webp\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/large_Powertools_Banner02_8cfd7d8f72.webp\", \"hash\": \"large_Powertools_Banner02_8cfd7d8f72\", \"mime\": \"image/webp\", \"name\": \"large_Powertools Banner02.webp\", \"path\": null, \"size\": 36.89, \"width\": 1000, \"height\": 277, \"sizeInBytes\": 36892}, \"small\": {\"ext\": \".webp\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_Powertools_Banner02_8cfd7d8f72.webp\", \"hash\": \"small_Powertools_Banner02_8cfd7d8f72\", \"mime\": \"image/webp\", \"name\": \"small_Powertools Banner02.webp\", \"path\": null, \"size\": 12.62, \"width\": 500, \"height\": 139, \"sizeInBytes\": 12620}, \"medium\": {\"ext\": \".webp\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_Powertools_Banner02_8cfd7d8f72.webp\", \"hash\": \"medium_Powertools_Banner02_8cfd7d8f72\", \"mime\": \"image/webp\", \"name\": \"medium_Powertools Banner02.webp\", \"path\": null, \"size\": 23.16, \"width\": 750, \"height\": 208, \"sizeInBytes\": 23160}, \"thumbnail\": {\"ext\": \".webp\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Powertools_Banner02_8cfd7d8f72.webp\", \"hash\": \"thumbnail_Powertools_Banner02_8cfd7d8f72\", \"mime\": \"image/webp\", \"name\": \"thumbnail_Powertools Banner02.webp\", \"path\": null, \"size\": 4.15, \"width\": 245, \"height\": 68, \"sizeInBytes\": 4150}}','Powertools_Banner02_8cfd7d8f72','.webp','image/webp',106.78,'https://d1i031whgqu7f4.cloudfront.net/Powertools_Banner02_8cfd7d8f72.webp',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-01-21 09:50:46.207000','2026-01-21 09:50:46.207000','2026-01-21 09:50:46.208000',1,1,NULL),(164,'s1iril35pyucz2972ow95m6w','Screenshot 2026-01-21 152230.png',NULL,NULL,1297,397,'{\"large\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/large_Screenshot_2026_01_21_152230_0ee200704e.png\", \"hash\": \"large_Screenshot_2026_01_21_152230_0ee200704e\", \"mime\": \"image/png\", \"name\": \"large_Screenshot 2026-01-21 152230.png\", \"path\": null, \"size\": 457.23, \"width\": 1000, \"height\": 306, \"sizeInBytes\": 457227}, \"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_Screenshot_2026_01_21_152230_0ee200704e.png\", \"hash\": \"small_Screenshot_2026_01_21_152230_0ee200704e\", \"mime\": \"image/png\", \"name\": \"small_Screenshot 2026-01-21 152230.png\", \"path\": null, \"size\": 132.57, \"width\": 500, \"height\": 153, \"sizeInBytes\": 132565}, \"medium\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_Screenshot_2026_01_21_152230_0ee200704e.png\", \"hash\": \"medium_Screenshot_2026_01_21_152230_0ee200704e\", \"mime\": \"image/png\", \"name\": \"medium_Screenshot 2026-01-21 152230.png\", \"path\": null, \"size\": 274.13, \"width\": 750, \"height\": 230, \"sizeInBytes\": 274125}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Screenshot_2026_01_21_152230_0ee200704e.png\", \"hash\": \"thumbnail_Screenshot_2026_01_21_152230_0ee200704e\", \"mime\": \"image/png\", \"name\": \"thumbnail_Screenshot 2026-01-21 152230.png\", \"path\": null, \"size\": 38.49, \"width\": 245, \"height\": 75, \"sizeInBytes\": 38490}}','Screenshot_2026_01_21_152230_0ee200704e','.png','image/png',131.07,'https://d1i031whgqu7f4.cloudfront.net/Screenshot_2026_01_21_152230_0ee200704e.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-01-21 09:53:08.589000','2026-01-21 09:53:08.589000','2026-01-21 09:53:08.590000',1,1,NULL),(165,'rl1d9ehikpw4yy4p62fic0dm','Tyre Banner02.webp',NULL,NULL,1920,532,'{\"large\": {\"ext\": \".webp\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/large_Tyre_Banner02_c1cd8700a1.webp\", \"hash\": \"large_Tyre_Banner02_c1cd8700a1\", \"mime\": \"image/webp\", \"name\": \"large_Tyre Banner02.webp\", \"path\": null, \"size\": 23.34, \"width\": 1000, \"height\": 277, \"sizeInBytes\": 23336}, \"small\": {\"ext\": \".webp\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_Tyre_Banner02_c1cd8700a1.webp\", \"hash\": \"small_Tyre_Banner02_c1cd8700a1\", \"mime\": \"image/webp\", \"name\": \"small_Tyre Banner02.webp\", \"path\": null, \"size\": 10.25, \"width\": 500, \"height\": 139, \"sizeInBytes\": 10248}, \"medium\": {\"ext\": \".webp\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_Tyre_Banner02_c1cd8700a1.webp\", \"hash\": \"medium_Tyre_Banner02_c1cd8700a1\", \"mime\": \"image/webp\", \"name\": \"medium_Tyre Banner02.webp\", \"path\": null, \"size\": 16.36, \"width\": 750, \"height\": 208, \"sizeInBytes\": 16360}, \"thumbnail\": {\"ext\": \".webp\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Tyre_Banner02_c1cd8700a1.webp\", \"hash\": \"thumbnail_Tyre_Banner02_c1cd8700a1\", \"mime\": \"image/webp\", \"name\": \"thumbnail_Tyre Banner02.webp\", \"path\": null, \"size\": 4.07, \"width\": 245, \"height\": 68, \"sizeInBytes\": 4070}}','Tyre_Banner02_c1cd8700a1','.webp','image/webp',49.13,'https://d1i031whgqu7f4.cloudfront.net/Tyre_Banner02_c1cd8700a1.webp',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-01-21 10:13:16.878000','2026-01-21 10:13:16.878000','2026-01-21 10:13:16.879000',1,1,NULL),(166,'eo1x2tdmei78io5j3pgasxms','Powertools-Banner01.webp',NULL,NULL,1920,532,'{\"large\": {\"ext\": \".webp\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/large_Powertools_Banner01_465757028a.webp\", \"hash\": \"large_Powertools_Banner01_465757028a\", \"mime\": \"image/webp\", \"name\": \"large_Powertools-Banner01.webp\", \"path\": null, \"size\": 71.53, \"width\": 1000, \"height\": 277, \"sizeInBytes\": 71528}, \"small\": {\"ext\": \".webp\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_Powertools_Banner01_465757028a.webp\", \"hash\": \"small_Powertools_Banner01_465757028a\", \"mime\": \"image/webp\", \"name\": \"small_Powertools-Banner01.webp\", \"path\": null, \"size\": 23.66, \"width\": 500, \"height\": 139, \"sizeInBytes\": 23662}, \"medium\": {\"ext\": \".webp\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_Powertools_Banner01_465757028a.webp\", \"hash\": \"medium_Powertools_Banner01_465757028a\", \"mime\": \"image/webp\", \"name\": \"medium_Powertools-Banner01.webp\", \"path\": null, \"size\": 45.29, \"width\": 750, \"height\": 208, \"sizeInBytes\": 45286}, \"thumbnail\": {\"ext\": \".webp\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Powertools_Banner01_465757028a.webp\", \"hash\": \"thumbnail_Powertools_Banner01_465757028a\", \"mime\": \"image/webp\", \"name\": \"thumbnail_Powertools-Banner01.webp\", \"path\": null, \"size\": 6.85, \"width\": 245, \"height\": 68, \"sizeInBytes\": 6852}}','Powertools_Banner01_465757028a','.webp','image/webp',211.63,'https://d1i031whgqu7f4.cloudfront.net/Powertools_Banner01_465757028a.webp',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-01-21 10:59:25.739000','2026-01-21 10:59:25.739000','2026-01-21 10:59:25.740000',1,1,NULL),(167,'va1g2kuekqg0hji96ew0rrxa','Services Banner02.webp',NULL,NULL,1920,532,'{\"large\": {\"ext\": \".webp\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/large_Services_Banner02_962f7e11fd.webp\", \"hash\": \"large_Services_Banner02_962f7e11fd\", \"mime\": \"image/webp\", \"name\": \"large_Services Banner02.webp\", \"path\": null, \"size\": 25.46, \"width\": 1000, \"height\": 277, \"sizeInBytes\": 25462}, \"small\": {\"ext\": \".webp\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_Services_Banner02_962f7e11fd.webp\", \"hash\": \"small_Services_Banner02_962f7e11fd\", \"mime\": \"image/webp\", \"name\": \"small_Services Banner02.webp\", \"path\": null, \"size\": 10.85, \"width\": 500, \"height\": 139, \"sizeInBytes\": 10850}, \"medium\": {\"ext\": \".webp\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_Services_Banner02_962f7e11fd.webp\", \"hash\": \"medium_Services_Banner02_962f7e11fd\", \"mime\": \"image/webp\", \"name\": \"medium_Services Banner02.webp\", \"path\": null, \"size\": 17.61, \"width\": 750, \"height\": 208, \"sizeInBytes\": 17606}, \"thumbnail\": {\"ext\": \".webp\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Services_Banner02_962f7e11fd.webp\", \"hash\": \"thumbnail_Services_Banner02_962f7e11fd\", \"mime\": \"image/webp\", \"name\": \"thumbnail_Services Banner02.webp\", \"path\": null, \"size\": 4.03, \"width\": 245, \"height\": 68, \"sizeInBytes\": 4034}}','Services_Banner02_962f7e11fd','.webp','image/webp',60.88,'https://d1i031whgqu7f4.cloudfront.net/Services_Banner02_962f7e11fd.webp',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-01-21 11:01:37.799000','2026-01-21 11:01:37.799000','2026-01-21 11:01:37.800000',1,1,NULL),(168,'fug13qanf1zhpr9yxd00a9mo','1761319152662 (1).png',NULL,NULL,1284,1222,'{\"large\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/large_1761319152662_1_2f6882f5ad.png\", \"hash\": \"large_1761319152662_1_2f6882f5ad\", \"mime\": \"image/png\", \"name\": \"large_1761319152662 (1).png\", \"path\": null, \"size\": 1633.28, \"width\": 1000, \"height\": 952, \"sizeInBytes\": 1633282}, \"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_1761319152662_1_2f6882f5ad.png\", \"hash\": \"small_1761319152662_1_2f6882f5ad\", \"mime\": \"image/png\", \"name\": \"small_1761319152662 (1).png\", \"path\": null, \"size\": 431.36, \"width\": 500, \"height\": 476, \"sizeInBytes\": 431355}, \"medium\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_1761319152662_1_2f6882f5ad.png\", \"hash\": \"medium_1761319152662_1_2f6882f5ad\", \"mime\": \"image/png\", \"name\": \"medium_1761319152662 (1).png\", \"path\": null, \"size\": 945.7, \"width\": 750, \"height\": 714, \"sizeInBytes\": 945696}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_1761319152662_1_2f6882f5ad.png\", \"hash\": \"thumbnail_1761319152662_1_2f6882f5ad\", \"mime\": \"image/png\", \"name\": \"thumbnail_1761319152662 (1).png\", \"path\": null, \"size\": 53.91, \"width\": 164, \"height\": 156, \"sizeInBytes\": 53906}}','1761319152662_1_2f6882f5ad','.png','image/png',506.33,'https://d1i031whgqu7f4.cloudfront.net/1761319152662_1_2f6882f5ad.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-01-22 06:43:22.085000','2026-01-22 06:43:22.085000','2026-01-22 06:43:22.086000',1,1,NULL),(169,'v3ywucve35k0b42sqg5y5p21','CALIBRATION-SERVICE.png',NULL,NULL,300,300,'{\"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_CALIBRATION_SERVICE_a5bd81e0e6.png\", \"hash\": \"thumbnail_CALIBRATION_SERVICE_a5bd81e0e6\", \"mime\": \"image/png\", \"name\": \"thumbnail_CALIBRATION-SERVICE.png\", \"path\": null, \"size\": 54.8, \"width\": 156, \"height\": 156, \"sizeInBytes\": 54796}}','CALIBRATION_SERVICE_a5bd81e0e6','.png','image/png',57.50,'https://d1i031whgqu7f4.cloudfront.net/CALIBRATION_SERVICE_a5bd81e0e6.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-01-22 09:48:12.223000','2026-01-22 09:48:12.223000','2026-01-22 09:48:12.224000',1,1,NULL),(170,'sd2b7fa7qx5yxq75unh6r6zn','Hero Banner 2560x1440-2.jpg',NULL,NULL,2560,1440,'{\"large\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/large_Hero_Banner_2560x1440_2_7eb819b86d.jpg\", \"hash\": \"large_Hero_Banner_2560x1440_2_7eb819b86d\", \"mime\": \"image/jpeg\", \"name\": \"large_Hero Banner 2560x1440-2.jpg\", \"path\": null, \"size\": 135.03, \"width\": 1000, \"height\": 563, \"sizeInBytes\": 135030}, \"small\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_Hero_Banner_2560x1440_2_7eb819b86d.jpg\", \"hash\": \"small_Hero_Banner_2560x1440_2_7eb819b86d\", \"mime\": \"image/jpeg\", \"name\": \"small_Hero Banner 2560x1440-2.jpg\", \"path\": null, \"size\": 37.34, \"width\": 500, \"height\": 281, \"sizeInBytes\": 37337}, \"medium\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_Hero_Banner_2560x1440_2_7eb819b86d.jpg\", \"hash\": \"medium_Hero_Banner_2560x1440_2_7eb819b86d\", \"mime\": \"image/jpeg\", \"name\": \"medium_Hero Banner 2560x1440-2.jpg\", \"path\": null, \"size\": 78.84, \"width\": 750, \"height\": 422, \"sizeInBytes\": 78839}, \"thumbnail\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Hero_Banner_2560x1440_2_7eb819b86d.jpg\", \"hash\": \"thumbnail_Hero_Banner_2560x1440_2_7eb819b86d\", \"mime\": \"image/jpeg\", \"name\": \"thumbnail_Hero Banner 2560x1440-2.jpg\", \"path\": null, \"size\": 10.18, \"width\": 245, \"height\": 138, \"sizeInBytes\": 10180}}','Hero_Banner_2560x1440_2_7eb819b86d','.jpg','image/jpeg',707.03,'https://d1i031whgqu7f4.cloudfront.net/Hero_Banner_2560x1440_2_7eb819b86d.jpg',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-01-22 09:49:09.301000','2026-01-22 09:49:09.301000','2026-01-22 09:49:09.302000',1,1,NULL),(171,'mqpme6a82dbkfjah6hpg7up5','Hero Banner Mobile banner 440 x 956.jpg',NULL,NULL,440,956,'{\"small\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_Hero_Banner_Mobile_banner_440_x_956_fa8b2b92ea.jpg\", \"hash\": \"small_Hero_Banner_Mobile_banner_440_x_956_fa8b2b92ea\", \"mime\": \"image/jpeg\", \"name\": \"small_Hero Banner Mobile banner 440 x 956.jpg\", \"path\": null, \"size\": 16.84, \"width\": 230, \"height\": 500, \"sizeInBytes\": 16835}, \"medium\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_Hero_Banner_Mobile_banner_440_x_956_fa8b2b92ea.jpg\", \"hash\": \"medium_Hero_Banner_Mobile_banner_440_x_956_fa8b2b92ea\", \"mime\": \"image/jpeg\", \"name\": \"medium_Hero Banner Mobile banner 440 x 956.jpg\", \"path\": null, \"size\": 34.7, \"width\": 345, \"height\": 750, \"sizeInBytes\": 34702}, \"thumbnail\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Hero_Banner_Mobile_banner_440_x_956_fa8b2b92ea.jpg\", \"hash\": \"thumbnail_Hero_Banner_Mobile_banner_440_x_956_fa8b2b92ea\", \"mime\": \"image/jpeg\", \"name\": \"thumbnail_Hero Banner Mobile banner 440 x 956.jpg\", \"path\": null, \"size\": 2.14, \"width\": 72, \"height\": 156, \"sizeInBytes\": 2139}}','Hero_Banner_Mobile_banner_440_x_956_fa8b2b92ea','.jpg','image/jpeg',52.94,'https://d1i031whgqu7f4.cloudfront.net/Hero_Banner_Mobile_banner_440_x_956_fa8b2b92ea.jpg',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-01-22 09:50:01.749000','2026-01-22 09:50:01.749000','2026-01-22 09:50:01.751000',1,1,NULL),(172,'mebezq5olhamfpz4nlchha1o','CALIBRATION-SERVICE.png',NULL,NULL,300,300,'{\"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_CALIBRATION_SERVICE_cf9bbfc9c6.png\", \"hash\": \"thumbnail_CALIBRATION_SERVICE_cf9bbfc9c6\", \"mime\": \"image/png\", \"name\": \"thumbnail_CALIBRATION-SERVICE.png\", \"path\": null, \"size\": 54.8, \"width\": 156, \"height\": 156, \"sizeInBytes\": 54796}}','CALIBRATION_SERVICE_cf9bbfc9c6','.png','image/png',57.50,'https://d1i031whgqu7f4.cloudfront.net/CALIBRATION_SERVICE_cf9bbfc9c6.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-01-22 09:54:40.735000','2026-01-22 09:54:40.735000','2026-01-22 09:54:40.735000',1,1,NULL),(173,'ed9a8bmkrv9hhmzzf6lb1gtx','20251023_192452.jpg',NULL,NULL,4000,1848,'{\"large\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/large_20251023_192452_863377c834.jpg\", \"hash\": \"large_20251023_192452_863377c834\", \"mime\": \"image/jpeg\", \"name\": \"large_20251023_192452.jpg\", \"path\": null, \"size\": 63.8, \"width\": 1000, \"height\": 462, \"sizeInBytes\": 63795}, \"small\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_20251023_192452_863377c834.jpg\", \"hash\": \"small_20251023_192452_863377c834\", \"mime\": \"image/jpeg\", \"name\": \"small_20251023_192452.jpg\", \"path\": null, \"size\": 19.99, \"width\": 500, \"height\": 231, \"sizeInBytes\": 19985}, \"medium\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_20251023_192452_863377c834.jpg\", \"hash\": \"medium_20251023_192452_863377c834\", \"mime\": \"image/jpeg\", \"name\": \"medium_20251023_192452.jpg\", \"path\": null, \"size\": 38.77, \"width\": 750, \"height\": 347, \"sizeInBytes\": 38768}, \"thumbnail\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_20251023_192452_863377c834.jpg\", \"hash\": \"thumbnail_20251023_192452_863377c834\", \"mime\": \"image/jpeg\", \"name\": \"thumbnail_20251023_192452.jpg\", \"path\": null, \"size\": 6.34, \"width\": 245, \"height\": 113, \"sizeInBytes\": 6338}}','20251023_192452_863377c834','.jpg','image/jpeg',736.53,'https://d1i031whgqu7f4.cloudfront.net/20251023_192452_863377c834.jpg',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-01-27 09:54:38.333000','2026-01-27 09:54:38.333000','2026-01-27 09:54:38.334000',1,1,NULL),(174,'wtecoajjm8qfua1vjef0ghxo','20251023_192452 (1).jpg',NULL,NULL,1846,2069,'{\"large\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/large_20251023_192452_1_31f6387aae.jpg\", \"hash\": \"large_20251023_192452_1_31f6387aae\", \"mime\": \"image/jpeg\", \"name\": \"large_20251023_192452 (1).jpg\", \"path\": null, \"size\": 152.11, \"width\": 892, \"height\": 1000, \"sizeInBytes\": 152114}, \"small\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_20251023_192452_1_31f6387aae.jpg\", \"hash\": \"small_20251023_192452_1_31f6387aae\", \"mime\": \"image/jpeg\", \"name\": \"small_20251023_192452 (1).jpg\", \"path\": null, \"size\": 40.47, \"width\": 446, \"height\": 500, \"sizeInBytes\": 40467}, \"medium\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_20251023_192452_1_31f6387aae.jpg\", \"hash\": \"medium_20251023_192452_1_31f6387aae\", \"mime\": \"image/jpeg\", \"name\": \"medium_20251023_192452 (1).jpg\", \"path\": null, \"size\": 87.07, \"width\": 669, \"height\": 750, \"sizeInBytes\": 87067}, \"thumbnail\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_20251023_192452_1_31f6387aae.jpg\", \"hash\": \"thumbnail_20251023_192452_1_31f6387aae\", \"mime\": \"image/jpeg\", \"name\": \"thumbnail_20251023_192452 (1).jpg\", \"path\": null, \"size\": 5.36, \"width\": 139, \"height\": 156, \"sizeInBytes\": 5361}}','20251023_192452_1_31f6387aae','.jpg','image/jpeg',603.21,'https://d1i031whgqu7f4.cloudfront.net/20251023_192452_1_31f6387aae.jpg',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-01-27 09:57:54.654000','2026-01-27 09:58:52.752000','2026-01-27 09:57:54.655000',1,1,NULL),(175,'kd729ay2fcgjnug17xha409i','20251023_201142.jpg',NULL,NULL,1846,2069,'{\"large\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/large_20251023_201142_72273f5c5e.jpg\", \"hash\": \"large_20251023_201142_72273f5c5e\", \"mime\": \"image/jpeg\", \"name\": \"large_20251023_201142.jpg\", \"path\": null, \"size\": 152.11, \"width\": 892, \"height\": 1000, \"sizeInBytes\": 152114}, \"small\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_20251023_201142_72273f5c5e.jpg\", \"hash\": \"small_20251023_201142_72273f5c5e\", \"mime\": \"image/jpeg\", \"name\": \"small_20251023_201142.jpg\", \"path\": null, \"size\": 40.47, \"width\": 446, \"height\": 500, \"sizeInBytes\": 40467}, \"medium\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_20251023_201142_72273f5c5e.jpg\", \"hash\": \"medium_20251023_201142_72273f5c5e\", \"mime\": \"image/jpeg\", \"name\": \"medium_20251023_201142.jpg\", \"path\": null, \"size\": 87.07, \"width\": 669, \"height\": 750, \"sizeInBytes\": 87067}, \"thumbnail\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_20251023_201142_72273f5c5e.jpg\", \"hash\": \"thumbnail_20251023_201142_72273f5c5e\", \"mime\": \"image/jpeg\", \"name\": \"thumbnail_20251023_201142.jpg\", \"path\": null, \"size\": 5.36, \"width\": 139, \"height\": 156, \"sizeInBytes\": 5361}}','20251023_201142_72273f5c5e','.jpg','image/jpeg',603.21,'https://d1i031whgqu7f4.cloudfront.net/20251023_201142_72273f5c5e.jpg',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-01-27 09:59:14.674000','2026-01-27 09:59:14.674000','2026-01-27 09:59:14.675000',1,1,NULL),(176,'iy8r5qn33vv3juqunotrff96','tyre.JPG',NULL,NULL,406,271,'{\"thumbnail\": {\"ext\": \".JPG\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_tyre_5d35e2a74e.JPG\", \"hash\": \"thumbnail_tyre_5d35e2a74e\", \"mime\": \"image/jpeg\", \"name\": \"thumbnail_tyre.JPG\", \"path\": null, \"size\": 11.96, \"width\": 234, \"height\": 156, \"sizeInBytes\": 11964}}','tyre_5d35e2a74e','.JPG','image/jpeg',32.10,'https://d1i031whgqu7f4.cloudfront.net/tyre_5d35e2a74e.JPG',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-02-02 10:47:37.623000','2026-02-02 10:47:37.623000','2026-02-02 10:47:37.624000',1,1,NULL),(177,'ysohiayaz0l0sr6nol4kemeo','tyre mussafaj.jpg',NULL,NULL,407,271,'{\"thumbnail\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_tyre_mussafaj_c586330760.jpg\", \"hash\": \"thumbnail_tyre_mussafaj_c586330760\", \"mime\": \"image/jpeg\", \"name\": \"thumbnail_tyre mussafaj.jpg\", \"path\": null, \"size\": 7.37, \"width\": 234, \"height\": 156, \"sizeInBytes\": 7365}}','tyre_mussafaj_c586330760','.jpg','image/jpeg',19.69,'https://d1i031whgqu7f4.cloudfront.net/tyre_mussafaj_c586330760.jpg',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-02-02 10:49:16.194000','2026-02-02 10:49:16.194000','2026-02-02 10:49:16.195000',1,1,NULL),(178,'leyusejqcb9dzgdmqpwmtvjt','adnoc tyre.jpg',NULL,NULL,407,271,'{\"thumbnail\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_adnoc_tyre_2f8f3a88b8.jpg\", \"hash\": \"thumbnail_adnoc_tyre_2f8f3a88b8\", \"mime\": \"image/jpeg\", \"name\": \"thumbnail_adnoc tyre.jpg\", \"path\": null, \"size\": 9.25, \"width\": 234, \"height\": 156, \"sizeInBytes\": 9246}}','adnoc_tyre_2f8f3a88b8','.jpg','image/jpeg',24.75,'https://d1i031whgqu7f4.cloudfront.net/adnoc_tyre_2f8f3a88b8.jpg',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-02-02 10:50:37.129000','2026-02-02 10:50:37.129000','2026-02-02 10:50:37.130000',1,1,NULL),(179,'krzsgyl1u2tdjdj3blb6i8g5','PT.jpg',NULL,NULL,408,306,'{\"thumbnail\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_PT_c671a0ef00.jpg\", \"hash\": \"thumbnail_PT_c671a0ef00\", \"mime\": \"image/jpeg\", \"name\": \"thumbnail_PT.jpg\", \"path\": null, \"size\": 6.45, \"width\": 208, \"height\": 156, \"sizeInBytes\": 6451}}','PT_c671a0ef00','.jpg','image/jpeg',22.36,'https://d1i031whgqu7f4.cloudfront.net/PT_c671a0ef00.jpg',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-02-02 11:04:09.960000','2026-02-02 11:19:07.766000','2026-02-02 11:04:09.961000',1,1,NULL),(180,'la4ue4pbclfuaedqohkm0kou','PT- dubai.jpg',NULL,NULL,213,160,'{\"thumbnail\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_PT_dubai_dca654c53e.jpg\", \"hash\": \"thumbnail_PT_dubai_dca654c53e\", \"mime\": \"image/jpeg\", \"name\": \"thumbnail_PT- dubai.jpg\", \"path\": null, \"size\": 10.1, \"width\": 208, \"height\": 156, \"sizeInBytes\": 10101}}','PT_dubai_dca654c53e','.jpg','image/jpeg',10.97,'https://d1i031whgqu7f4.cloudfront.net/PT_dubai_dca654c53e.jpg',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-02-02 11:07:24.085000','2026-02-02 11:07:24.085000','2026-02-02 11:07:24.085000',1,1,NULL),(181,'meihc6eisnxgo8fazd61xf0x','Group 2504.png',NULL,NULL,143,38,NULL,'Group_2504_1f57b12a55','.png','image/png',1.66,'https://d1i031whgqu7f4.cloudfront.net/Group_2504_1f57b12a55.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-02-02 11:45:14.252000','2026-02-02 11:45:14.252000','2026-02-02 11:45:14.253000',1,1,NULL),(182,'u7ywuiak0nfp077i39foez79','Batteries & Chargers.png',NULL,NULL,140,85,NULL,'Batteries_and_Chargers_b6622ea81e','.png','image/png',4.89,'https://d1i031whgqu7f4.cloudfront.net/Batteries_and_Chargers_b6622ea81e.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-02-05 10:49:47.195000','2026-02-05 10:49:47.195000','2026-02-05 10:49:47.196000',1,1,NULL),(183,'fg21xv0q64pk8wimx7ebrecr','Component 129.png',NULL,NULL,252,270,'{\"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Component_129_12401939fe.png\", \"hash\": \"thumbnail_Component_129_12401939fe\", \"mime\": \"image/png\", \"name\": \"thumbnail_Component 129.png\", \"path\": null, \"size\": 11.4, \"width\": 146, \"height\": 156, \"sizeInBytes\": 11401}}','Component_129_12401939fe','.png','image/png',9.20,'https://d1i031whgqu7f4.cloudfront.net/Component_129_12401939fe.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-02-05 10:50:57.824000','2026-02-05 10:50:57.824000','2026-02-05 10:50:57.825000',1,1,NULL),(184,'jy5g4b5hx2a3volxlabby6mp','Component 133.png',NULL,NULL,252,270,'{\"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Component_133_9d91db1c39.png\", \"hash\": \"thumbnail_Component_133_9d91db1c39\", \"mime\": \"image/png\", \"name\": \"thumbnail_Component 133.png\", \"path\": null, \"size\": 13.74, \"width\": 146, \"height\": 156, \"sizeInBytes\": 13739}}','Component_133_9d91db1c39','.png','image/png',9.47,'https://d1i031whgqu7f4.cloudfront.net/Component_133_9d91db1c39.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-02-05 10:51:40.234000','2026-02-05 10:51:40.234000','2026-02-05 10:51:40.234000',1,1,NULL),(185,'vtat05pyyzk9dx9wfvmlpx65','Component 129 (3).png',NULL,NULL,252,270,'{\"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Component_129_3_e7d046276b.png\", \"hash\": \"thumbnail_Component_129_3_e7d046276b\", \"mime\": \"image/png\", \"name\": \"thumbnail_Component 129 (3).png\", \"path\": null, \"size\": 15.4, \"width\": 146, \"height\": 156, \"sizeInBytes\": 15398}}','Component_129_3_e7d046276b','.png','image/png',9.84,'https://d1i031whgqu7f4.cloudfront.net/Component_129_3_e7d046276b.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-02-05 10:56:23.180000','2026-02-05 10:56:23.180000','2026-02-05 10:56:23.181000',1,1,NULL),(186,'oeuyzua9501wo1tzrl7dtj5v','Component 129 (1).png',NULL,NULL,252,270,'{\"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Component_129_1_5e0bf0eda0.png\", \"hash\": \"thumbnail_Component_129_1_5e0bf0eda0\", \"mime\": \"image/png\", \"name\": \"thumbnail_Component 129 (1).png\", \"path\": null, \"size\": 12.51, \"width\": 146, \"height\": 156, \"sizeInBytes\": 12509}}','Component_129_1_5e0bf0eda0','.png','image/png',8.46,'https://d1i031whgqu7f4.cloudfront.net/Component_129_1_5e0bf0eda0.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-02-05 10:56:38.558000','2026-02-05 10:56:38.558000','2026-02-05 10:56:38.558000',1,1,NULL),(187,'t88wxd4m54hb7p3swdlkxwon','Component 131.png',NULL,NULL,252,270,'{\"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Component_131_0002407c7c.png\", \"hash\": \"thumbnail_Component_131_0002407c7c\", \"mime\": \"image/png\", \"name\": \"thumbnail_Component 131.png\", \"path\": null, \"size\": 5.6, \"width\": 146, \"height\": 156, \"sizeInBytes\": 5604}}','Component_131_0002407c7c','.png','image/png',1.93,'https://d1i031whgqu7f4.cloudfront.net/Component_131_0002407c7c.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-02-05 10:57:10.962000','2026-02-05 10:57:10.962000','2026-02-05 10:57:10.963000',1,1,NULL),(188,'zswdxcxq2ggenxbd7s7jhu1x','Component 133 (3).png',NULL,NULL,252,270,'{\"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Component_133_3_df693788fd.png\", \"hash\": \"thumbnail_Component_133_3_df693788fd\", \"mime\": \"image/png\", \"name\": \"thumbnail_Component 133 (3).png\", \"path\": null, \"size\": 12.56, \"width\": 146, \"height\": 156, \"sizeInBytes\": 12557}}','Component_133_3_df693788fd','.png','image/png',8.94,'https://d1i031whgqu7f4.cloudfront.net/Component_133_3_df693788fd.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-02-05 10:57:47.610000','2026-02-05 10:57:47.610000','2026-02-05 10:57:47.610000',1,1,NULL),(189,'kf7kzurp71t401qcdkphn1fr','Cordless Drills.png',NULL,NULL,140,85,NULL,'Cordless_Drills_67a7cb89a8','.png','image/png',3.64,'https://d1i031whgqu7f4.cloudfront.net/Cordless_Drills_67a7cb89a8.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-02-05 11:09:49.518000','2026-02-05 11:09:49.518000','2026-02-05 11:09:49.519000',1,1,NULL),(190,'ely8fzqevpw4od3h4npn3y2j','Angle Grinders.png',NULL,NULL,180,150,NULL,'Angle_Grinders_e5b6d72d62','.png','image/png',7.05,'https://d1i031whgqu7f4.cloudfront.net/Angle_Grinders_e5b6d72d62.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-02-05 11:10:59.460000','2026-02-05 11:10:59.460000','2026-02-05 11:10:59.460000',1,1,NULL),(191,'zrmr2uj9rsaee5fx7m79x465','Drills & Imopact Drills.png',NULL,NULL,180,150,NULL,'Drills_and_Imopact_Drills_a590579477','.png','image/png',7.42,'https://d1i031whgqu7f4.cloudfront.net/Drills_and_Imopact_Drills_a590579477.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-02-05 11:12:17.770000','2026-02-05 11:12:17.770000','2026-02-05 11:12:17.770000',1,1,NULL),(192,'s4yd8p3kexeozb5s1617z6cz','System Accessories.png',NULL,NULL,180,150,NULL,'System_Accessories_9a5eb64e3f','.png','image/png',9.35,'https://d1i031whgqu7f4.cloudfront.net/System_Accessories_9a5eb64e3f.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-02-05 11:12:54.883000','2026-02-05 11:12:54.883000','2026-02-05 11:12:54.883000',1,1,NULL),(193,'sej7sger7qwwretpvfhp7q4j','Cordless Garden.png',NULL,NULL,180,152,NULL,'Cordless_Garden_a255022928','.png','image/png',8.23,'https://d1i031whgqu7f4.cloudfront.net/Cordless_Garden_a255022928.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-02-05 11:13:28.795000','2026-02-05 11:13:28.795000','2026-02-05 11:13:28.795000',1,1,NULL),(194,'mmck2bq9a88wzi5hrforzug3','Service Air.png',NULL,NULL,180,150,NULL,'Service_Air_2ff3ce7a6e','.png','image/png',10.35,'https://d1i031whgqu7f4.cloudfront.net/Service_Air_2ff3ce7a6e.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-02-05 11:14:08.589000','2026-02-05 11:14:08.589000','2026-02-05 11:14:08.590000',1,1,NULL),(195,'ej2qjpjdnhip86ca78ivhtj0','image_200x200.png',NULL,NULL,200,200,'{\"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_image_200x200_e711261021.png\", \"hash\": \"thumbnail_image_200x200_e711261021\", \"mime\": \"image/png\", \"name\": \"thumbnail_image_200x200.png\", \"path\": null, \"size\": 14, \"width\": 156, \"height\": 156, \"sizeInBytes\": 14004}}','image_200x200_e711261021','.png','image/png',6.92,'https://d1i031whgqu7f4.cloudfront.net/image_200x200_e711261021.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-02-05 11:14:38.466000','2026-02-05 11:14:38.466000','2026-02-05 11:14:38.466000',1,1,NULL),(196,'a0apspinngqtzsnqjcbgqau2','Carrying Case.png',NULL,NULL,200,200,'{\"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Carrying_Case_3c81095f7e.png\", \"hash\": \"thumbnail_Carrying_Case_3c81095f7e\", \"mime\": \"image/png\", \"name\": \"thumbnail_Carrying Case.png\", \"path\": null, \"size\": 20.93, \"width\": 156, \"height\": 156, \"sizeInBytes\": 20931}}','Carrying_Case_3c81095f7e','.png','image/png',9.65,'https://d1i031whgqu7f4.cloudfront.net/Carrying_Case_3c81095f7e.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-02-05 11:26:21.032000','2026-02-05 11:26:21.032000','2026-02-05 11:26:21.034000',1,1,NULL),(197,'elntekz93o1hdtiheohzxt34','Combo Kits.png',NULL,NULL,200,200,'{\"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Combo_Kits_7df6114fda.png\", \"hash\": \"thumbnail_Combo_Kits_7df6114fda\", \"mime\": \"image/png\", \"name\": \"thumbnail_Combo Kits.png\", \"path\": null, \"size\": 22.77, \"width\": 156, \"height\": 156, \"sizeInBytes\": 22772}}','Combo_Kits_7df6114fda','.png','image/png',11.38,'https://d1i031whgqu7f4.cloudfront.net/Combo_Kits_7df6114fda.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-02-05 11:26:49.029000','2026-02-05 11:26:49.029000','2026-02-05 11:26:49.030000',1,1,NULL),(198,'bwyg3sxsc3yawus9wiy4ujes','Cordless Drills.png',NULL,NULL,200,200,'{\"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Cordless_Drills_0b3883b800.png\", \"hash\": \"thumbnail_Cordless_Drills_0b3883b800\", \"mime\": \"image/png\", \"name\": \"thumbnail_Cordless Drills.png\", \"path\": null, \"size\": 6.37, \"width\": 156, \"height\": 156, \"sizeInBytes\": 6370}}','Cordless_Drills_0b3883b800','.png','image/png',3.63,'https://d1i031whgqu7f4.cloudfront.net/Cordless_Drills_0b3883b800.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-02-05 11:27:18.893000','2026-02-05 11:27:18.893000','2026-02-05 11:27:18.893000',1,1,NULL),(199,'fy6qufpmee8bwc0behkm9j4s','Cordless Rotary Hammers.png',NULL,NULL,200,200,'{\"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Cordless_Rotary_Hammers_0983bd4a5a.png\", \"hash\": \"thumbnail_Cordless_Rotary_Hammers_0983bd4a5a\", \"mime\": \"image/png\", \"name\": \"thumbnail_Cordless Rotary Hammers.png\", \"path\": null, \"size\": 10.05, \"width\": 156, \"height\": 156, \"sizeInBytes\": 10054}}','Cordless_Rotary_Hammers_0983bd4a5a','.png','image/png',5.30,'https://d1i031whgqu7f4.cloudfront.net/Cordless_Rotary_Hammers_0983bd4a5a.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-02-05 11:27:39.316000','2026-02-05 11:27:39.316000','2026-02-05 11:27:39.317000',1,1,NULL),(200,'mfddztyf06ko08q3a8wxbch8','High Pressure Washer.png',NULL,NULL,200,200,'{\"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_High_Pressure_Washer_06e7f404ff.png\", \"hash\": \"thumbnail_High_Pressure_Washer_06e7f404ff\", \"mime\": \"image/png\", \"name\": \"thumbnail_High Pressure Washer.png\", \"path\": null, \"size\": 19.37, \"width\": 156, \"height\": 156, \"sizeInBytes\": 19368}}','High_Pressure_Washer_06e7f404ff','.png','image/png',8.69,'https://d1i031whgqu7f4.cloudfront.net/High_Pressure_Washer_06e7f404ff.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-02-05 11:28:04.556000','2026-02-05 11:28:04.556000','2026-02-05 11:28:04.556000',1,1,NULL),(201,'o09g3i3fx9as0v7yk7ykqklw','image_200x200 (1).png',NULL,NULL,200,200,'{\"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_image_200x200_1_571200edf0.png\", \"hash\": \"thumbnail_image_200x200_1_571200edf0\", \"mime\": \"image/png\", \"name\": \"thumbnail_image_200x200 (1).png\", \"path\": null, \"size\": 15.47, \"width\": 156, \"height\": 156, \"sizeInBytes\": 15472}}','image_200x200_1_571200edf0','.png','image/png',7.49,'https://d1i031whgqu7f4.cloudfront.net/image_200x200_1_571200edf0.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-02-05 11:37:51.836000','2026-02-05 11:37:51.836000','2026-02-05 11:37:51.837000',1,1,NULL),(202,'ywv1xbcgm8orh2uwz567hmiq','00288989.jpg',NULL,NULL,1664,2500,'{\"large\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/large_00288989_4dee66bcbc.jpg\", \"hash\": \"large_00288989_4dee66bcbc\", \"mime\": \"image/jpeg\", \"name\": \"large_00288989.jpg\", \"path\": null, \"size\": 109.72, \"width\": 666, \"height\": 1000, \"sizeInBytes\": 109715}, \"small\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_00288989_4dee66bcbc.jpg\", \"hash\": \"small_00288989_4dee66bcbc\", \"mime\": \"image/jpeg\", \"name\": \"small_00288989.jpg\", \"path\": null, \"size\": 34.11, \"width\": 333, \"height\": 500, \"sizeInBytes\": 34108}, \"medium\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_00288989_4dee66bcbc.jpg\", \"hash\": \"medium_00288989_4dee66bcbc\", \"mime\": \"image/jpeg\", \"name\": \"medium_00288989.jpg\", \"path\": null, \"size\": 67.81, \"width\": 499, \"height\": 750, \"sizeInBytes\": 67813}, \"thumbnail\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_00288989_4dee66bcbc.jpg\", \"hash\": \"thumbnail_00288989_4dee66bcbc\", \"mime\": \"image/jpeg\", \"name\": \"thumbnail_00288989.jpg\", \"path\": null, \"size\": 5.11, \"width\": 104, \"height\": 156, \"sizeInBytes\": 5114}}','00288989_4dee66bcbc','.jpg','image/jpeg',491.74,'https://d1i031whgqu7f4.cloudfront.net/00288989_4dee66bcbc.jpg',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-02-26 11:47:06.420000','2026-02-26 11:47:06.420000','2026-02-26 11:47:06.421000',1,1,NULL),(203,'to4o05niycned3j34sf0ril0','image.webp',NULL,NULL,200,200,'{\"thumbnail\": {\"ext\": \".webp\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_image_8da7d239f4.webp\", \"hash\": \"thumbnail_image_8da7d239f4\", \"mime\": \"image/webp\", \"name\": \"thumbnail_image.webp\", \"path\": null, \"size\": 4.73, \"width\": 156, \"height\": 156, \"sizeInBytes\": 4734}}','image_8da7d239f4','.webp','image/webp',7.98,'https://d1i031whgqu7f4.cloudfront.net/image_8da7d239f4.webp',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-02-26 12:02:44.378000','2026-02-26 12:02:44.378000','2026-02-26 12:02:44.378000',1,1,NULL),(204,'k9g6kjby2ahffwjyzre5p22v','Our Mission.png',NULL,NULL,1535,656,'{\"large\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/large_Our_Mission_0b7655b80f.png\", \"hash\": \"large_Our_Mission_0b7655b80f\", \"mime\": \"image/png\", \"name\": \"large_Our Mission.png\", \"path\": null, \"size\": 850.02, \"width\": 1000, \"height\": 427, \"sizeInBytes\": 850015}, \"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_Our_Mission_0b7655b80f.png\", \"hash\": \"small_Our_Mission_0b7655b80f\", \"mime\": \"image/png\", \"name\": \"small_Our Mission.png\", \"path\": null, \"size\": 229.6, \"width\": 500, \"height\": 214, \"sizeInBytes\": 229602}, \"medium\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_Our_Mission_0b7655b80f.png\", \"hash\": \"medium_Our_Mission_0b7655b80f\", \"mime\": \"image/png\", \"name\": \"medium_Our Mission.png\", \"path\": null, \"size\": 493.72, \"width\": 750, \"height\": 321, \"sizeInBytes\": 493716}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Our_Mission_0b7655b80f.png\", \"hash\": \"thumbnail_Our_Mission_0b7655b80f\", \"mime\": \"image/png\", \"name\": \"thumbnail_Our Mission.png\", \"path\": null, \"size\": 62.4, \"width\": 245, \"height\": 105, \"sizeInBytes\": 62401}}','Our_Mission_0b7655b80f','.png','image/png',438.60,'https://d1i031whgqu7f4.cloudfront.net/Our_Mission_0b7655b80f.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/13','2026-02-27 07:48:18.638000','2026-02-27 07:48:18.638000','2026-02-27 07:48:18.639000',1,1,NULL),(205,'whcvcyfq9qqse53ga73yk3eh','Our Vision.png',NULL,NULL,1535,656,'{\"large\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/large_Our_Vision_87db8a6621.png\", \"hash\": \"large_Our_Vision_87db8a6621\", \"mime\": \"image/png\", \"name\": \"large_Our Vision.png\", \"path\": null, \"size\": 899.1, \"width\": 1000, \"height\": 427, \"sizeInBytes\": 899101}, \"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_Our_Vision_87db8a6621.png\", \"hash\": \"small_Our_Vision_87db8a6621\", \"mime\": \"image/png\", \"name\": \"small_Our Vision.png\", \"path\": null, \"size\": 235.55, \"width\": 500, \"height\": 214, \"sizeInBytes\": 235546}, \"medium\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_Our_Vision_87db8a6621.png\", \"hash\": \"medium_Our_Vision_87db8a6621\", \"mime\": \"image/png\", \"name\": \"medium_Our Vision.png\", \"path\": null, \"size\": 513.94, \"width\": 750, \"height\": 321, \"sizeInBytes\": 513941}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Our_Vision_87db8a6621.png\", \"hash\": \"thumbnail_Our_Vision_87db8a6621\", \"mime\": \"image/png\", \"name\": \"thumbnail_Our Vision.png\", \"path\": null, \"size\": 63.07, \"width\": 245, \"height\": 105, \"sizeInBytes\": 63071}}','Our_Vision_87db8a6621','.png','image/png',486.01,'https://d1i031whgqu7f4.cloudfront.net/Our_Vision_87db8a6621.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/13','2026-02-27 07:48:19.056000','2026-02-27 07:48:19.056000','2026-02-27 07:48:19.057000',1,1,NULL),(206,'yupaiak05byjymjbr8uqwpyt','automotive_aftermarket.avif',NULL,NULL,480,845,'{\"small\": {\"ext\": \".avif\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_automotive_aftermarket_6adaaac627.avif\", \"hash\": \"small_automotive_aftermarket_6adaaac627\", \"mime\": \"image/avif\", \"name\": \"small_automotive_aftermarket.avif\", \"path\": null, \"size\": 14.13, \"width\": 284, \"height\": 500, \"sizeInBytes\": 14134}, \"medium\": {\"ext\": \".avif\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_automotive_aftermarket_6adaaac627.avif\", \"hash\": \"medium_automotive_aftermarket_6adaaac627\", \"mime\": \"image/avif\", \"name\": \"medium_automotive_aftermarket.avif\", \"path\": null, \"size\": 21.36, \"width\": 426, \"height\": 750, \"sizeInBytes\": 21360}, \"thumbnail\": {\"ext\": \".avif\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_automotive_aftermarket_6adaaac627.avif\", \"hash\": \"thumbnail_automotive_aftermarket_6adaaac627\", \"mime\": \"image/avif\", \"name\": \"thumbnail_automotive_aftermarket.avif\", \"path\": null, \"size\": 3.47, \"width\": 89, \"height\": 156, \"sizeInBytes\": 3466}}','automotive_aftermarket_6adaaac627','.avif','image/avif',25.69,'https://d1i031whgqu7f4.cloudfront.net/automotive_aftermarket_6adaaac627.avif',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/2','2026-02-28 04:26:00.673000','2026-02-28 04:26:00.673000','2026-02-28 04:26:00.674000',1,1,NULL),(207,'hq9f4o6xdmv3vrvp5ib7raj4','Frame_1618874176_a4c8f7578a.png',NULL,NULL,264,136,'{\"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Frame_1618874176_a4c8f7578a_04e9a99948.png\", \"hash\": \"thumbnail_Frame_1618874176_a4c8f7578a_04e9a99948\", \"mime\": \"image/png\", \"name\": \"thumbnail_Frame_1618874176_a4c8f7578a.png\", \"path\": null, \"size\": 71.86, \"width\": 245, \"height\": 126, \"sizeInBytes\": 71861}}','Frame_1618874176_a4c8f7578a_04e9a99948','.png','image/png',20.71,'https://d1i031whgqu7f4.cloudfront.net/Frame_1618874176_a4c8f7578a_04e9a99948.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/5','2026-02-28 04:34:28.883000','2026-02-28 04:34:28.883000','2026-02-28 04:34:28.884000',1,1,NULL),(208,'aowmfuph6i0b06td76hc2dbd','Mercedes car.png',NULL,NULL,NULL,NULL,NULL,'Mercedes_car_1b2c0f243a','.png','image/png',5972.45,'https://d1i031whgqu7f4.cloudfront.net/Mercedes_car_1b2c0f243a.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-03-03 04:37:35.802000','2026-03-03 04:37:35.802000','2026-03-03 04:37:35.803000',1,1,NULL),(209,'l90ctd7aarfyrb19a2fii4o0','Marine.jpg',NULL,NULL,554,173,'{\"small\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_Marine_926fd48105.jpg\", \"hash\": \"small_Marine_926fd48105\", \"mime\": \"image/jpeg\", \"name\": \"small_Marine.jpg\", \"path\": null, \"size\": 11.19, \"width\": 500, \"height\": 156, \"sizeInBytes\": 11186}, \"thumbnail\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Marine_926fd48105.jpg\", \"hash\": \"thumbnail_Marine_926fd48105\", \"mime\": \"image/jpeg\", \"name\": \"thumbnail_Marine.jpg\", \"path\": null, \"size\": 3.9, \"width\": 245, \"height\": 77, \"sizeInBytes\": 3901}}','Marine_926fd48105','.jpg','image/jpeg',13.28,'https://d1i031whgqu7f4.cloudfront.net/Marine_926fd48105.jpg',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-03-03 08:37:39.355000','2026-03-03 08:37:39.355000','2026-03-03 08:37:39.356000',1,1,NULL),(210,'sk4s3cr9odcfoosxha4rks3p','Mercedes truck.png',NULL,NULL,869,469,'{\"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_Mercedes_truck_517a714c70.png\", \"hash\": \"small_Mercedes_truck_517a714c70\", \"mime\": \"image/png\", \"name\": \"small_Mercedes truck.png\", \"path\": null, \"size\": 202.82, \"width\": 500, \"height\": 270, \"sizeInBytes\": 202824}, \"medium\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_Mercedes_truck_517a714c70.png\", \"hash\": \"medium_Mercedes_truck_517a714c70\", \"mime\": \"image/png\", \"name\": \"medium_Mercedes truck.png\", \"path\": null, \"size\": 434.33, \"width\": 750, \"height\": 405, \"sizeInBytes\": 434325}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Mercedes_truck_517a714c70.png\", \"hash\": \"thumbnail_Mercedes_truck_517a714c70\", \"mime\": \"image/png\", \"name\": \"thumbnail_Mercedes truck.png\", \"path\": null, \"size\": 53.34, \"width\": 245, \"height\": 132, \"sizeInBytes\": 53344}}','Mercedes_truck_517a714c70','.png','image/png',127.33,'https://d1i031whgqu7f4.cloudfront.net/Mercedes_truck_517a714c70.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-03-03 08:38:41.035000','2026-03-03 08:38:41.035000','2026-03-03 08:38:41.035000',1,1,NULL),(211,'iu7dhr0uy11gyjfzcmltrj0y','Mercedes car.png',NULL,NULL,NULL,NULL,NULL,'Mercedes_car_53af99bde4','.png','image/png',5972.45,'https://d1i031whgqu7f4.cloudfront.net/Mercedes_car_53af99bde4.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-03-03 08:39:41.452000','2026-03-03 08:39:41.452000','2026-03-03 08:39:41.453000',1,1,NULL),(212,'ewps89f5l6q8mqtgnpjubvcv','Mercedesca.jpeg',NULL,NULL,1500,1059,'{\"large\": {\"ext\": \".jpeg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/large_Mercedesca_1992883e4e.jpeg\", \"hash\": \"large_Mercedesca_1992883e4e\", \"mime\": \"image/jpeg\", \"name\": \"large_Mercedesca.jpeg\", \"path\": null, \"size\": 86.63, \"width\": 1000, \"height\": 706, \"sizeInBytes\": 86629}, \"small\": {\"ext\": \".jpeg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_Mercedesca_1992883e4e.jpeg\", \"hash\": \"small_Mercedesca_1992883e4e\", \"mime\": \"image/jpeg\", \"name\": \"small_Mercedesca.jpeg\", \"path\": null, \"size\": 28.11, \"width\": 500, \"height\": 353, \"sizeInBytes\": 28112}, \"medium\": {\"ext\": \".jpeg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_Mercedesca_1992883e4e.jpeg\", \"hash\": \"medium_Mercedesca_1992883e4e\", \"mime\": \"image/jpeg\", \"name\": \"medium_Mercedesca.jpeg\", \"path\": null, \"size\": 55.17, \"width\": 750, \"height\": 530, \"sizeInBytes\": 55169}, \"thumbnail\": {\"ext\": \".jpeg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Mercedesca_1992883e4e.jpeg\", \"hash\": \"thumbnail_Mercedesca_1992883e4e\", \"mime\": \"image/jpeg\", \"name\": \"thumbnail_Mercedesca.jpeg\", \"path\": null, \"size\": 7.39, \"width\": 222, \"height\": 156, \"sizeInBytes\": 7386}}','Mercedesca_1992883e4e','.jpeg','image/jpeg',162.19,'https://d1i031whgqu7f4.cloudfront.net/Mercedesca_1992883e4e.jpeg',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-03-03 08:41:58.258000','2026-03-03 08:41:58.258000','2026-03-03 08:41:58.259000',1,1,NULL),(213,'ftm6jm921iwzhgodjuq1k40h','Industrial Vehicle & Marine.png',NULL,NULL,200,200,'{\"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Industrial_Vehicle_and_Marine_192d0bd6c2.png\", \"hash\": \"thumbnail_Industrial_Vehicle_and_Marine_192d0bd6c2\", \"mime\": \"image/png\", \"name\": \"thumbnail_Industrial Vehicle & Marine.png\", \"path\": null, \"size\": 13.26, \"width\": 156, \"height\": 156, \"sizeInBytes\": 13264}}','Industrial_Vehicle_and_Marine_192d0bd6c2','.png','image/png',4.65,'https://d1i031whgqu7f4.cloudfront.net/Industrial_Vehicle_and_Marine_192d0bd6c2.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-03-04 09:02:56.851000','2026-03-04 09:02:56.851000','2026-03-04 09:02:56.852000',1,1,NULL),(214,'wjsqiu5hb80vxm7pj2rrknx4','Passenger Vehicles.png',NULL,NULL,200,200,'{\"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Passenger_Vehicles_119f17a029.png\", \"hash\": \"thumbnail_Passenger_Vehicles_119f17a029\", \"mime\": \"image/png\", \"name\": \"thumbnail_Passenger Vehicles.png\", \"path\": null, \"size\": 48.89, \"width\": 156, \"height\": 156, \"sizeInBytes\": 48889}}','Passenger_Vehicles_119f17a029','.png','image/png',18.08,'https://d1i031whgqu7f4.cloudfront.net/Passenger_Vehicles_119f17a029.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-03-04 09:02:56.892000','2026-03-04 09:02:56.892000','2026-03-04 09:02:56.893000',1,1,NULL),(215,'d55367lbplhovtgzxj1m5mtg','Commercial Vehicles.png',NULL,NULL,200,200,'{\"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Commercial_Vehicles_7cb988493b.png\", \"hash\": \"thumbnail_Commercial_Vehicles_7cb988493b\", \"mime\": \"image/png\", \"name\": \"thumbnail_Commercial Vehicles.png\", \"path\": null, \"size\": 60.74, \"width\": 156, \"height\": 156, \"sizeInBytes\": 60735}}','Commercial_Vehicles_7cb988493b','.png','image/png',24.65,'https://d1i031whgqu7f4.cloudfront.net/Commercial_Vehicles_7cb988493b.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-03-04 09:02:57.108000','2026-03-04 09:02:57.108000','2026-03-04 09:02:57.108000',1,1,NULL),(216,'or9llut3qvksvle747ohe5ei','outdoor-and-garden.png',NULL,NULL,140,85,NULL,'outdoor_and_garden_f48dae5b39','.png','image/png',2.87,'https://d1i031whgqu7f4.cloudfront.net/outdoor_and_garden_f48dae5b39.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/20/21','2026-03-06 05:40:40.933000','2026-03-06 05:40:40.933000','2026-03-06 05:40:40.933000',1,1,NULL),(217,'bw733tf697nlsd1qhmkmqk76','dremel.png',NULL,NULL,140,85,NULL,'dremel_addcfd8021','.png','image/png',3.41,'https://d1i031whgqu7f4.cloudfront.net/dremel_addcfd8021.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/20/21','2026-03-06 05:40:40.957000','2026-03-06 05:40:40.957000','2026-03-06 05:40:40.958000',1,1,NULL),(218,'lo87ctfsibthkvx8ucosrudc','measuring-technology.png',NULL,NULL,140,104,NULL,'measuring_technology_94e12950c1','.png','image/png',3.82,'https://d1i031whgqu7f4.cloudfront.net/measuring_technology_94e12950c1.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/20/21','2026-03-06 05:40:40.970000','2026-03-06 05:40:40.970000','2026-03-06 05:40:40.971000',1,1,NULL),(219,'r0kanw58w0ktihz7zm3jcumf','accessories.png',NULL,NULL,140,85,NULL,'accessories_4d12b440e6','.png','image/png',4.92,'https://d1i031whgqu7f4.cloudfront.net/accessories_4d12b440e6.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/20/21','2026-03-06 05:40:40.976000','2026-03-06 05:40:40.976000','2026-03-06 05:40:40.977000',1,1,NULL),(220,'ldypj49bslxpv34qpk14z40e','DIY.png',NULL,NULL,140,85,NULL,'DIY_cc5a5dba8b','.png','image/png',3.27,'https://d1i031whgqu7f4.cloudfront.net/DIY_cc5a5dba8b.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/20/21','2026-03-06 05:40:40.984000','2026-03-06 05:40:40.984000','2026-03-06 05:40:40.984000',1,1,NULL),(221,'i7wxq19mm37h6xeyiaqne6l8','power-tools.png',NULL,NULL,140,85,NULL,'power_tools_9244e2490f','.png','image/png',4.53,'https://d1i031whgqu7f4.cloudfront.net/power_tools_9244e2490f.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/20/21','2026-03-06 05:40:41.044000','2026-03-06 05:40:41.044000','2026-03-06 05:40:41.044000',1,1,NULL),(222,'rkowuu1c9m09cd4mk4gnqzvo','Al Qouz Dubai Location Warehouse.jpeg',NULL,NULL,1080,900,'{\"large\": {\"ext\": \".jpeg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/large_Al_Qouz_Dubai_Location_Warehouse_2c1b8790ff.jpeg\", \"hash\": \"large_Al_Qouz_Dubai_Location_Warehouse_2c1b8790ff\", \"mime\": \"image/jpeg\", \"name\": \"large_Al Qouz Dubai Location Warehouse.jpeg\", \"path\": null, \"size\": 135.82, \"width\": 1000, \"height\": 833, \"sizeInBytes\": 135820}, \"small\": {\"ext\": \".jpeg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_Al_Qouz_Dubai_Location_Warehouse_2c1b8790ff.jpeg\", \"hash\": \"small_Al_Qouz_Dubai_Location_Warehouse_2c1b8790ff\", \"mime\": \"image/jpeg\", \"name\": \"small_Al Qouz Dubai Location Warehouse.jpeg\", \"path\": null, \"size\": 42.77, \"width\": 500, \"height\": 417, \"sizeInBytes\": 42774}, \"medium\": {\"ext\": \".jpeg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_Al_Qouz_Dubai_Location_Warehouse_2c1b8790ff.jpeg\", \"hash\": \"medium_Al_Qouz_Dubai_Location_Warehouse_2c1b8790ff\", \"mime\": \"image/jpeg\", \"name\": \"medium_Al Qouz Dubai Location Warehouse.jpeg\", \"path\": null, \"size\": 84.9, \"width\": 750, \"height\": 625, \"sizeInBytes\": 84895}, \"thumbnail\": {\"ext\": \".jpeg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Al_Qouz_Dubai_Location_Warehouse_2c1b8790ff.jpeg\", \"hash\": \"thumbnail_Al_Qouz_Dubai_Location_Warehouse_2c1b8790ff\", \"mime\": \"image/jpeg\", \"name\": \"thumbnail_Al Qouz Dubai Location Warehouse.jpeg\", \"path\": null, \"size\": 7.79, \"width\": 187, \"height\": 156, \"sizeInBytes\": 7792}}','Al_Qouz_Dubai_Location_Warehouse_2c1b8790ff','.jpeg','image/jpeg',154.29,'https://d1i031whgqu7f4.cloudfront.net/Al_Qouz_Dubai_Location_Warehouse_2c1b8790ff.jpeg',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/22','2026-03-06 05:48:43.178000','2026-03-06 05:48:43.178000','2026-03-06 05:48:43.179000',1,1,NULL),(223,'m8iwei9puygyzh58qvk6lx2a','bosch-blue-b- 55PX.png',NULL,NULL,100,55,NULL,'bosch_blue_b_55_PX_807ac4e9c5','.png','image/png',0.63,'https://d1i031whgqu7f4.cloudfront.net/bosch_blue_b_55_PX_807ac4e9c5.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/6','2026-03-06 06:45:20.874000','2026-03-06 06:45:20.874000','2026-03-06 06:45:20.875000',1,1,NULL),(224,'bu4h219oafncvxn5be9gzgz2','bosch-green-bg - 55Px.png',NULL,NULL,100,55,NULL,'bosch_green_bg_55_Px_6c3ae02872','.png','image/png',0.63,'https://d1i031whgqu7f4.cloudfront.net/bosch_green_bg_55_Px_6c3ae02872.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/6','2026-03-06 06:47:08.027000','2026-03-06 06:47:08.027000','2026-03-06 06:47:08.027000',1,1,NULL),(225,'xibskh2l3d3fsgt9m0e2g86z','dremel-blue-bg - 55Px.png',NULL,NULL,100,55,NULL,'dremel_blue_bg_55_Px_4526e9a5b3','.png','image/png',0.71,'https://d1i031whgqu7f4.cloudfront.net/dremel_blue_bg_55_Px_4526e9a5b3.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/6','2026-03-06 06:48:13.559000','2026-03-06 06:48:13.559000','2026-03-06 06:48:13.559000',1,1,NULL),(226,'n2bgs48a9s11hkiw9ldku0pq','Bfgoodrich_logo_new-1024x249.jpg',NULL,NULL,1024,249,'{\"large\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/large_Bfgoodrich_logo_new_1024x249_2f6c1162f8.jpg\", \"hash\": \"large_Bfgoodrich_logo_new_1024x249_2f6c1162f8\", \"mime\": \"image/jpeg\", \"name\": \"large_Bfgoodrich_logo_new-1024x249.jpg\", \"path\": null, \"size\": 26, \"width\": 1000, \"height\": 243, \"sizeInBytes\": 26003}, \"small\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_Bfgoodrich_logo_new_1024x249_2f6c1162f8.jpg\", \"hash\": \"small_Bfgoodrich_logo_new_1024x249_2f6c1162f8\", \"mime\": \"image/jpeg\", \"name\": \"small_Bfgoodrich_logo_new-1024x249.jpg\", \"path\": null, \"size\": 11.41, \"width\": 500, \"height\": 122, \"sizeInBytes\": 11407}, \"medium\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_Bfgoodrich_logo_new_1024x249_2f6c1162f8.jpg\", \"hash\": \"medium_Bfgoodrich_logo_new_1024x249_2f6c1162f8\", \"mime\": \"image/jpeg\", \"name\": \"medium_Bfgoodrich_logo_new-1024x249.jpg\", \"path\": null, \"size\": 18.22, \"width\": 750, \"height\": 182, \"sizeInBytes\": 18221}, \"thumbnail\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Bfgoodrich_logo_new_1024x249_2f6c1162f8.jpg\", \"hash\": \"thumbnail_Bfgoodrich_logo_new_1024x249_2f6c1162f8\", \"mime\": \"image/jpeg\", \"name\": \"thumbnail_Bfgoodrich_logo_new-1024x249.jpg\", \"path\": null, \"size\": 4.24, \"width\": 245, \"height\": 59, \"sizeInBytes\": 4243}}','Bfgoodrich_logo_new_1024x249_2f6c1162f8','.jpg','image/jpeg',25.89,'https://d1i031whgqu7f4.cloudfront.net/Bfgoodrich_logo_new_1024x249_2f6c1162f8.jpg',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/6','2026-03-06 06:51:35.209000','2026-03-06 06:51:35.209000','2026-03-06 06:51:35.209000',1,1,NULL),(227,'ix3jmgek5zfmrpmvmyge2bpx','eb002714.jpg',NULL,NULL,678,200,'{\"small\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_eb002714_2e60ab7b5c.jpg\", \"hash\": \"small_eb002714_2e60ab7b5c\", \"mime\": \"image/jpeg\", \"name\": \"small_eb002714.jpg\", \"path\": null, \"size\": 9.34, \"width\": 500, \"height\": 147, \"sizeInBytes\": 9336}, \"thumbnail\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_eb002714_2e60ab7b5c.jpg\", \"hash\": \"thumbnail_eb002714_2e60ab7b5c\", \"mime\": \"image/jpeg\", \"name\": \"thumbnail_eb002714.jpg\", \"path\": null, \"size\": 3.94, \"width\": 245, \"height\": 72, \"sizeInBytes\": 3942}}','eb002714_2e60ab7b5c','.jpg','image/jpeg',12.45,'https://d1i031whgqu7f4.cloudfront.net/eb002714_2e60ab7b5c.jpg',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/6','2026-03-06 06:53:05.664000','2026-03-06 06:53:05.664000','2026-03-06 06:53:05.664000',1,1,NULL),(228,'pdcb3s90mswr8z8wuy9fitry','BDS Logo.png',NULL,NULL,400,225,'{\"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_BDS_Logo_a4df2ad3eb.png\", \"hash\": \"thumbnail_BDS_Logo_a4df2ad3eb\", \"mime\": \"image/png\", \"name\": \"thumbnail_BDS Logo.png\", \"path\": null, \"size\": 21.1, \"width\": 245, \"height\": 138, \"sizeInBytes\": 21100}}','BDS_Logo_a4df2ad3eb','.png','image/png',11.65,'https://d1i031whgqu7f4.cloudfront.net/BDS_Logo_a4df2ad3eb.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/6','2026-03-06 06:55:56.313000','2026-03-06 06:55:56.313000','2026-03-06 06:55:56.314000',1,1,NULL),(229,'fqha7xj1a9nscvpt4w298dp2','Bosch_Car_Service_Logo_1999.svg.png',NULL,NULL,768,768,'{\"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_Bosch_Car_Service_Logo_1999_svg_fbdfcfbd35.png\", \"hash\": \"small_Bosch_Car_Service_Logo_1999_svg_fbdfcfbd35\", \"mime\": \"image/png\", \"name\": \"small_Bosch_Car_Service_Logo_1999.svg.png\", \"path\": null, \"size\": 53.7, \"width\": 500, \"height\": 500, \"sizeInBytes\": 53699}, \"medium\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_Bosch_Car_Service_Logo_1999_svg_fbdfcfbd35.png\", \"hash\": \"medium_Bosch_Car_Service_Logo_1999_svg_fbdfcfbd35\", \"mime\": \"image/png\", \"name\": \"medium_Bosch_Car_Service_Logo_1999.svg.png\", \"path\": null, \"size\": 87.57, \"width\": 750, \"height\": 750, \"sizeInBytes\": 87574}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Bosch_Car_Service_Logo_1999_svg_fbdfcfbd35.png\", \"hash\": \"thumbnail_Bosch_Car_Service_Logo_1999_svg_fbdfcfbd35\", \"mime\": \"image/png\", \"name\": \"thumbnail_Bosch_Car_Service_Logo_1999.svg.png\", \"path\": null, \"size\": 14.95, \"width\": 156, \"height\": 156, \"sizeInBytes\": 14952}}','Bosch_Car_Service_Logo_1999_svg_fbdfcfbd35','.png','image/png',14.97,'https://d1i031whgqu7f4.cloudfront.net/Bosch_Car_Service_Logo_1999_svg_fbdfcfbd35.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/6','2026-03-06 06:59:12.296000','2026-03-06 06:59:12.296000','2026-03-06 06:59:12.297000',1,1,NULL),(230,'nbkj2hg4m3glrxdrxxpzikce','CLAS Logo.jpg',NULL,NULL,347,347,'{\"thumbnail\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_CLAS_Logo_775c75ed31.jpg\", \"hash\": \"thumbnail_CLAS_Logo_775c75ed31\", \"mime\": \"image/jpeg\", \"name\": \"thumbnail_CLAS Logo.jpg\", \"path\": null, \"size\": 2.32, \"width\": 156, \"height\": 156, \"sizeInBytes\": 2322}}','CLAS_Logo_775c75ed31','.jpg','image/jpeg',5.24,'https://d1i031whgqu7f4.cloudfront.net/CLAS_Logo_775c75ed31.jpg',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/6','2026-03-06 07:02:53.115000','2026-03-06 07:02:53.115000','2026-03-06 07:02:53.115000',1,1,NULL),(231,'h7ighcced8nfc0re7ftb62cj','Eveready_Logo_Black.jpg',NULL,NULL,2048,374,'{\"large\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/large_Eveready_Logo_Black_957a1b237b.jpg\", \"hash\": \"large_Eveready_Logo_Black_957a1b237b\", \"mime\": \"image/jpeg\", \"name\": \"large_Eveready_Logo_Black.jpg\", \"path\": null, \"size\": 19.8, \"width\": 1000, \"height\": 183, \"sizeInBytes\": 19802}, \"small\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_Eveready_Logo_Black_957a1b237b.jpg\", \"hash\": \"small_Eveready_Logo_Black_957a1b237b\", \"mime\": \"image/jpeg\", \"name\": \"small_Eveready_Logo_Black.jpg\", \"path\": null, \"size\": 9.42, \"width\": 500, \"height\": 91, \"sizeInBytes\": 9424}, \"medium\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_Eveready_Logo_Black_957a1b237b.jpg\", \"hash\": \"medium_Eveready_Logo_Black_957a1b237b\", \"mime\": \"image/jpeg\", \"name\": \"medium_Eveready_Logo_Black.jpg\", \"path\": null, \"size\": 13.99, \"width\": 750, \"height\": 137, \"sizeInBytes\": 13994}, \"thumbnail\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Eveready_Logo_Black_957a1b237b.jpg\", \"hash\": \"thumbnail_Eveready_Logo_Black_957a1b237b\", \"mime\": \"image/jpeg\", \"name\": \"thumbnail_Eveready_Logo_Black.jpg\", \"path\": null, \"size\": 4.33, \"width\": 245, \"height\": 45, \"sizeInBytes\": 4331}}','Eveready_Logo_Black_957a1b237b','.jpg','image/jpeg',43.59,'https://d1i031whgqu7f4.cloudfront.net/Eveready_Logo_Black_957a1b237b.jpg',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/6','2026-03-06 07:05:05.243000','2026-03-06 07:05:05.243000','2026-03-06 07:05:05.243000',1,1,NULL),(232,'pay8jd9kx4frmynzdst659bf','JP by JP Group Automotive_NEG.png',NULL,NULL,792,372,'{\"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_JP_by_JP_Group_Automotive_NEG_8dfba37c4e.png\", \"hash\": \"small_JP_by_JP_Group_Automotive_NEG_8dfba37c4e\", \"mime\": \"image/png\", \"name\": \"small_JP by JP Group Automotive_NEG.png\", \"path\": null, \"size\": 36.98, \"width\": 500, \"height\": 235, \"sizeInBytes\": 36978}, \"medium\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_JP_by_JP_Group_Automotive_NEG_8dfba37c4e.png\", \"hash\": \"medium_JP_by_JP_Group_Automotive_NEG_8dfba37c4e\", \"mime\": \"image/png\", \"name\": \"medium_JP by JP Group Automotive_NEG.png\", \"path\": null, \"size\": 60.51, \"width\": 750, \"height\": 352, \"sizeInBytes\": 60509}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_JP_by_JP_Group_Automotive_NEG_8dfba37c4e.png\", \"hash\": \"thumbnail_JP_by_JP_Group_Automotive_NEG_8dfba37c4e\", \"mime\": \"image/png\", \"name\": \"thumbnail_JP by JP Group Automotive_NEG.png\", \"path\": null, \"size\": 15.45, \"width\": 245, \"height\": 115, \"sizeInBytes\": 15447}}','JP_by_JP_Group_Automotive_NEG_8dfba37c4e','.png','image/png',11.34,'https://d1i031whgqu7f4.cloudfront.net/JP_by_JP_Group_Automotive_NEG_8dfba37c4e.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/6','2026-03-06 07:09:08.165000','2026-03-06 07:09:08.165000','2026-03-06 07:09:08.166000',1,1,NULL),(233,'zkssxzmw902ydok8j0d3pw44','JP by JP Group Automotive_POS.png',NULL,NULL,792,372,'{\"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_JP_by_JP_Group_Automotive_POS_90dc23157f.png\", \"hash\": \"small_JP_by_JP_Group_Automotive_POS_90dc23157f\", \"mime\": \"image/png\", \"name\": \"small_JP by JP Group Automotive_POS.png\", \"path\": null, \"size\": 35.92, \"width\": 500, \"height\": 235, \"sizeInBytes\": 35916}, \"medium\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_JP_by_JP_Group_Automotive_POS_90dc23157f.png\", \"hash\": \"medium_JP_by_JP_Group_Automotive_POS_90dc23157f\", \"mime\": \"image/png\", \"name\": \"medium_JP by JP Group Automotive_POS.png\", \"path\": null, \"size\": 58.94, \"width\": 750, \"height\": 352, \"sizeInBytes\": 58942}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_JP_by_JP_Group_Automotive_POS_90dc23157f.png\", \"hash\": \"thumbnail_JP_by_JP_Group_Automotive_POS_90dc23157f\", \"mime\": \"image/png\", \"name\": \"thumbnail_JP by JP Group Automotive_POS.png\", \"path\": null, \"size\": 14.7, \"width\": 245, \"height\": 115, \"sizeInBytes\": 14703}}','JP_by_JP_Group_Automotive_POS_90dc23157f','.png','image/png',10.92,'https://d1i031whgqu7f4.cloudfront.net/JP_by_JP_Group_Automotive_POS_90dc23157f.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/6','2026-03-06 07:10:39.892000','2026-03-06 07:10:39.892000','2026-03-06 07:10:39.892000',1,1,NULL),(234,'jv0gd2ouyr85b3d9sasq43jd','KB_Logo_left_RGB.jpg',NULL,NULL,3300,493,'{\"large\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/large_KB_Logo_left_RGB_1468c84390.jpg\", \"hash\": \"large_KB_Logo_left_RGB_1468c84390\", \"mime\": \"image/jpeg\", \"name\": \"large_KB_Logo_left_RGB.jpg\", \"path\": null, \"size\": 20.18, \"width\": 1000, \"height\": 149, \"sizeInBytes\": 20182}, \"small\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_KB_Logo_left_RGB_1468c84390.jpg\", \"hash\": \"small_KB_Logo_left_RGB_1468c84390\", \"mime\": \"image/jpeg\", \"name\": \"small_KB_Logo_left_RGB.jpg\", \"path\": null, \"size\": 8.97, \"width\": 500, \"height\": 75, \"sizeInBytes\": 8974}, \"medium\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_KB_Logo_left_RGB_1468c84390.jpg\", \"hash\": \"medium_KB_Logo_left_RGB_1468c84390\", \"mime\": \"image/jpeg\", \"name\": \"medium_KB_Logo_left_RGB.jpg\", \"path\": null, \"size\": 15.01, \"width\": 750, \"height\": 112, \"sizeInBytes\": 15005}, \"thumbnail\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_KB_Logo_left_RGB_1468c84390.jpg\", \"hash\": \"thumbnail_KB_Logo_left_RGB_1468c84390\", \"mime\": \"image/jpeg\", \"name\": \"thumbnail_KB_Logo_left_RGB.jpg\", \"path\": null, \"size\": 3.52, \"width\": 245, \"height\": 36, \"sizeInBytes\": 3518}}','KB_Logo_left_RGB_1468c84390','.jpg','image/jpeg',79.15,'https://d1i031whgqu7f4.cloudfront.net/KB_Logo_left_RGB_1468c84390.jpg',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/6','2026-03-06 07:12:28.327000','2026-03-06 07:12:28.327000','2026-03-06 07:12:28.328000',1,1,NULL),(235,'o79mrti5q2cqdcubly0fwfbi','Logo_H_F_combi_11_vett.tif',NULL,NULL,2882,1663,'{\"large\": {\"ext\": \".tif\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/large_Logo_H_F_combi_11_vett_4dfe2adb9f.tif\", \"hash\": \"large_Logo_H_F_combi_11_vett_4dfe2adb9f\", \"mime\": \"image/tiff\", \"name\": \"large_Logo_H_F_combi_11_vett.tif\", \"path\": null, \"size\": 48.92, \"width\": 1000, \"height\": 577, \"sizeInBytes\": 48916}, \"small\": {\"ext\": \".tif\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_Logo_H_F_combi_11_vett_4dfe2adb9f.tif\", \"hash\": \"small_Logo_H_F_combi_11_vett_4dfe2adb9f\", \"mime\": \"image/tiff\", \"name\": \"small_Logo_H_F_combi_11_vett.tif\", \"path\": null, \"size\": 20.78, \"width\": 500, \"height\": 289, \"sizeInBytes\": 20776}, \"medium\": {\"ext\": \".tif\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_Logo_H_F_combi_11_vett_4dfe2adb9f.tif\", \"hash\": \"medium_Logo_H_F_combi_11_vett_4dfe2adb9f\", \"mime\": \"image/tiff\", \"name\": \"medium_Logo_H_F_combi_11_vett.tif\", \"path\": null, \"size\": 34.14, \"width\": 750, \"height\": 433, \"sizeInBytes\": 34144}, \"thumbnail\": {\"ext\": \".tif\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Logo_H_F_combi_11_vett_4dfe2adb9f.tif\", \"hash\": \"thumbnail_Logo_H_F_combi_11_vett_4dfe2adb9f\", \"mime\": \"image/tiff\", \"name\": \"thumbnail_Logo_H_F_combi_11_vett.tif\", \"path\": null, \"size\": 8.54, \"width\": 245, \"height\": 141, \"sizeInBytes\": 8542}}','Logo_H_F_combi_11_vett_4dfe2adb9f','.tif','image/tiff',179.66,'https://d1i031whgqu7f4.cloudfront.net/Logo_H_F_combi_11_vett_4dfe2adb9f.tif',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/6','2026-03-06 07:14:10.928000','2026-03-06 07:14:10.928000','2026-03-06 07:14:10.928000',1,1,NULL),(236,'yj6ofp9c6y8c99si00nkyg6o','Manatec Logo 2025 (1).png',NULL,NULL,4028,748,'{\"large\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/large_Manatec_Logo_2025_1_a22b9c793f.png\", \"hash\": \"large_Manatec_Logo_2025_1_a22b9c793f\", \"mime\": \"image/png\", \"name\": \"large_Manatec Logo 2025 (1).png\", \"path\": null, \"size\": 55.78, \"width\": 1000, \"height\": 186, \"sizeInBytes\": 55783}, \"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_Manatec_Logo_2025_1_a22b9c793f.png\", \"hash\": \"small_Manatec_Logo_2025_1_a22b9c793f\", \"mime\": \"image/png\", \"name\": \"small_Manatec Logo 2025 (1).png\", \"path\": null, \"size\": 25.24, \"width\": 500, \"height\": 93, \"sizeInBytes\": 25238}, \"medium\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_Manatec_Logo_2025_1_a22b9c793f.png\", \"hash\": \"medium_Manatec_Logo_2025_1_a22b9c793f\", \"mime\": \"image/png\", \"name\": \"medium_Manatec Logo 2025 (1).png\", \"path\": null, \"size\": 39.08, \"width\": 750, \"height\": 139, \"sizeInBytes\": 39078}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Manatec_Logo_2025_1_a22b9c793f.png\", \"hash\": \"thumbnail_Manatec_Logo_2025_1_a22b9c793f\", \"mime\": \"image/png\", \"name\": \"thumbnail_Manatec Logo 2025 (1).png\", \"path\": null, \"size\": 11.36, \"width\": 245, \"height\": 45, \"sizeInBytes\": 11357}}','Manatec_Logo_2025_1_a22b9c793f','.png','image/png',54.44,'https://d1i031whgqu7f4.cloudfront.net/Manatec_Logo_2025_1_a22b9c793f.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/6','2026-03-06 07:15:50.874000','2026-03-06 07:15:50.874000','2026-03-06 07:15:50.874000',1,1,NULL),(237,'ufi01mujslwmq6w2l7vrv6vp','OPTIMA_By_CLR_Lockup_RGB_Horiz_Black_Red.jpg',NULL,NULL,2048,670,'{\"large\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/large_OPTIMA_By_CLR_Lockup_RGB_Horiz_Black_Red_34294e5661.jpg\", \"hash\": \"large_OPTIMA_By_CLR_Lockup_RGB_Horiz_Black_Red_34294e5661\", \"mime\": \"image/jpeg\", \"name\": \"large_OPTIMA_By_CLR_Lockup_RGB_Horiz_Black_Red.jpg\", \"path\": null, \"size\": 28.12, \"width\": 1000, \"height\": 327, \"sizeInBytes\": 28123}, \"small\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_OPTIMA_By_CLR_Lockup_RGB_Horiz_Black_Red_34294e5661.jpg\", \"hash\": \"small_OPTIMA_By_CLR_Lockup_RGB_Horiz_Black_Red_34294e5661\", \"mime\": \"image/jpeg\", \"name\": \"small_OPTIMA_By_CLR_Lockup_RGB_Horiz_Black_Red.jpg\", \"path\": null, \"size\": 12.85, \"width\": 500, \"height\": 164, \"sizeInBytes\": 12850}, \"medium\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_OPTIMA_By_CLR_Lockup_RGB_Horiz_Black_Red_34294e5661.jpg\", \"hash\": \"medium_OPTIMA_By_CLR_Lockup_RGB_Horiz_Black_Red_34294e5661\", \"mime\": \"image/jpeg\", \"name\": \"medium_OPTIMA_By_CLR_Lockup_RGB_Horiz_Black_Red.jpg\", \"path\": null, \"size\": 20, \"width\": 750, \"height\": 245, \"sizeInBytes\": 20000}, \"thumbnail\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_OPTIMA_By_CLR_Lockup_RGB_Horiz_Black_Red_34294e5661.jpg\", \"hash\": \"thumbnail_OPTIMA_By_CLR_Lockup_RGB_Horiz_Black_Red_34294e5661\", \"mime\": \"image/jpeg\", \"name\": \"thumbnail_OPTIMA_By_CLR_Lockup_RGB_Horiz_Black_Red.jpg\", \"path\": null, \"size\": 5.78, \"width\": 245, \"height\": 80, \"sizeInBytes\": 5776}}','OPTIMA_By_CLR_Lockup_RGB_Horiz_Black_Red_34294e5661','.jpg','image/jpeg',65.76,'https://d1i031whgqu7f4.cloudfront.net/OPTIMA_By_CLR_Lockup_RGB_Horiz_Black_Red_34294e5661.jpg',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/6','2026-03-06 07:17:35.198000','2026-03-06 07:17:35.198000','2026-03-06 07:17:35.198000',1,1,NULL),(238,'v8a1nej6dooq7ox53ck99di8','SICAM.png',NULL,NULL,153,51,NULL,'SICAM_7cb455b913','.png','image/png',1.29,'https://d1i031whgqu7f4.cloudfront.net/SICAM_7cb455b913.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/6','2026-03-06 07:18:38.365000','2026-03-06 07:18:38.365000','2026-03-06 07:18:38.365000',1,1,NULL),(239,'hotxd80xyllfkfnv1nq9qhr9','Bosch Car Service – Bosch Diesel Service – Dubai.png',NULL,NULL,599,711,'{\"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_Bosch_Car_Service_Bosch_Diesel_Service_Dubai_2552c68687.png\", \"hash\": \"small_Bosch_Car_Service_Bosch_Diesel_Service_Dubai_2552c68687\", \"mime\": \"image/png\", \"name\": \"small_Bosch Car Service – Bosch Diesel Service – Dubai.png\", \"path\": null, \"size\": 291.87, \"width\": 421, \"height\": 500, \"sizeInBytes\": 291872}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Bosch_Car_Service_Bosch_Diesel_Service_Dubai_2552c68687.png\", \"hash\": \"thumbnail_Bosch_Car_Service_Bosch_Diesel_Service_Dubai_2552c68687\", \"mime\": \"image/png\", \"name\": \"thumbnail_Bosch Car Service – Bosch Diesel Service – Dubai.png\", \"path\": null, \"size\": 37.04, \"width\": 131, \"height\": 156, \"sizeInBytes\": 37040}}','Bosch_Car_Service_Bosch_Diesel_Service_Dubai_2552c68687','.png','image/png',130.00,'https://d1i031whgqu7f4.cloudfront.net/Bosch_Car_Service_Bosch_Diesel_Service_Dubai_2552c68687.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/17','2026-03-06 09:05:20.159000','2026-03-06 09:05:20.159000','2026-03-06 09:05:20.159000',1,1,NULL),(240,'dkgrxbxhmjkbvj7kzijvayof','Al Qouz Dubai Service Location Entrance.jpeg',NULL,NULL,1080,900,'{\"large\": {\"ext\": \".jpeg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/large_Al_Qouz_Dubai_Service_Location_Entrance_7914863b47.jpeg\", \"hash\": \"large_Al_Qouz_Dubai_Service_Location_Entrance_7914863b47\", \"mime\": \"image/jpeg\", \"name\": \"large_Al Qouz Dubai Service Location Entrance.jpeg\", \"path\": null, \"size\": 136.13, \"width\": 1000, \"height\": 833, \"sizeInBytes\": 136134}, \"small\": {\"ext\": \".jpeg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_Al_Qouz_Dubai_Service_Location_Entrance_7914863b47.jpeg\", \"hash\": \"small_Al_Qouz_Dubai_Service_Location_Entrance_7914863b47\", \"mime\": \"image/jpeg\", \"name\": \"small_Al Qouz Dubai Service Location Entrance.jpeg\", \"path\": null, \"size\": 39.27, \"width\": 500, \"height\": 417, \"sizeInBytes\": 39265}, \"medium\": {\"ext\": \".jpeg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_Al_Qouz_Dubai_Service_Location_Entrance_7914863b47.jpeg\", \"hash\": \"medium_Al_Qouz_Dubai_Service_Location_Entrance_7914863b47\", \"mime\": \"image/jpeg\", \"name\": \"medium_Al Qouz Dubai Service Location Entrance.jpeg\", \"path\": null, \"size\": 81.77, \"width\": 750, \"height\": 625, \"sizeInBytes\": 81773}, \"thumbnail\": {\"ext\": \".jpeg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Al_Qouz_Dubai_Service_Location_Entrance_7914863b47.jpeg\", \"hash\": \"thumbnail_Al_Qouz_Dubai_Service_Location_Entrance_7914863b47\", \"mime\": \"image/jpeg\", \"name\": \"thumbnail_Al Qouz Dubai Service Location Entrance.jpeg\", \"path\": null, \"size\": 7.33, \"width\": 187, \"height\": 156, \"sizeInBytes\": 7333}}','Al_Qouz_Dubai_Service_Location_Entrance_7914863b47','.jpeg','image/jpeg',157.72,'https://d1i031whgqu7f4.cloudfront.net/Al_Qouz_Dubai_Service_Location_Entrance_7914863b47.jpeg',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/17','2026-03-06 09:22:48.061000','2026-03-06 09:22:48.061000','2026-03-06 09:22:48.061000',1,1,NULL),(241,'cuy0gf14e5qfo4pa54ccjxf4','Central Motors and Equipment – AbuDhabi Branch.jpg',NULL,NULL,1600,1204,'{\"large\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/large_Central_Motors_and_Equipment_Abu_Dhabi_Branch_bcd5d2eb2f.jpg\", \"hash\": \"large_Central_Motors_and_Equipment_Abu_Dhabi_Branch_bcd5d2eb2f\", \"mime\": \"image/jpeg\", \"name\": \"large_Central Motors and Equipment – AbuDhabi Branch.jpg\", \"path\": null, \"size\": 142.65, \"width\": 1000, \"height\": 753, \"sizeInBytes\": 142645}, \"small\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_Central_Motors_and_Equipment_Abu_Dhabi_Branch_bcd5d2eb2f.jpg\", \"hash\": \"small_Central_Motors_and_Equipment_Abu_Dhabi_Branch_bcd5d2eb2f\", \"mime\": \"image/jpeg\", \"name\": \"small_Central Motors and Equipment – AbuDhabi Branch.jpg\", \"path\": null, \"size\": 39.19, \"width\": 500, \"height\": 376, \"sizeInBytes\": 39192}, \"medium\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_Central_Motors_and_Equipment_Abu_Dhabi_Branch_bcd5d2eb2f.jpg\", \"hash\": \"medium_Central_Motors_and_Equipment_Abu_Dhabi_Branch_bcd5d2eb2f\", \"mime\": \"image/jpeg\", \"name\": \"medium_Central Motors and Equipment – AbuDhabi Branch.jpg\", \"path\": null, \"size\": 84.99, \"width\": 750, \"height\": 564, \"sizeInBytes\": 84988}, \"thumbnail\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Central_Motors_and_Equipment_Abu_Dhabi_Branch_bcd5d2eb2f.jpg\", \"hash\": \"thumbnail_Central_Motors_and_Equipment_Abu_Dhabi_Branch_bcd5d2eb2f\", \"mime\": \"image/jpeg\", \"name\": \"thumbnail_Central Motors and Equipment – AbuDhabi Branch.jpg\", \"path\": null, \"size\": 8.07, \"width\": 207, \"height\": 156, \"sizeInBytes\": 8070}}','Central_Motors_and_Equipment_Abu_Dhabi_Branch_bcd5d2eb2f','.jpg','image/jpeg',291.29,'https://d1i031whgqu7f4.cloudfront.net/Central_Motors_and_Equipment_Abu_Dhabi_Branch_bcd5d2eb2f.jpg',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/17','2026-03-06 09:25:10.847000','2026-03-06 09:25:10.847000','2026-03-06 09:25:10.848000',1,1,NULL),(245,'mfexr0d4bbjkg8fwknu6m5tv','automotive-aftermarket-banner-3.png',NULL,NULL,1440,532,'{\"large\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/large_powertools_banner_3_1_32569ac025.png\", \"hash\": \"large_powertools_banner_3_1_32569ac025\", \"mime\": \"image/png\", \"name\": \"large_powertools-banner-3 (1).png\", \"path\": null, \"size\": 388.14, \"width\": 1000, \"height\": 369, \"sizeInBytes\": 388135}, \"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_powertools_banner_3_1_32569ac025.png\", \"hash\": \"small_powertools_banner_3_1_32569ac025\", \"mime\": \"image/png\", \"name\": \"small_powertools-banner-3 (1).png\", \"path\": null, \"size\": 114.09, \"width\": 500, \"height\": 185, \"sizeInBytes\": 114088}, \"medium\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_powertools_banner_3_1_32569ac025.png\", \"hash\": \"medium_powertools_banner_3_1_32569ac025\", \"mime\": \"image/png\", \"name\": \"medium_powertools-banner-3 (1).png\", \"path\": null, \"size\": 232.09, \"width\": 750, \"height\": 277, \"sizeInBytes\": 232086}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_powertools_banner_3_1_32569ac025.png\", \"hash\": \"thumbnail_powertools_banner_3_1_32569ac025\", \"mime\": \"image/png\", \"name\": \"thumbnail_powertools-banner-3 (1).png\", \"path\": null, \"size\": 32.95, \"width\": 245, \"height\": 91, \"sizeInBytes\": 32946}}','powertools_banner_3_1_32569ac025','.png','image/png',198.33,'https://d1i031whgqu7f4.cloudfront.net/powertools_banner_3_1_32569ac025.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/18','2026-03-09 09:42:29.897000','2026-03-09 10:12:22.337000','2026-03-09 09:42:29.897000',1,1,NULL),(246,'lwg97l5zlw3m5f0uqc05b0d7','Safe driving Images - Free Download on Freepik.jfif',NULL,NULL,450,300,'{\"thumbnail\": {\"ext\": \".jfif\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Safe_driving_Images_Free_Download_on_Freepik_9898199d3d.jfif\", \"hash\": \"thumbnail_Safe_driving_Images_Free_Download_on_Freepik_9898199d3d\", \"mime\": \"image/jpeg\", \"name\": \"thumbnail_Safe driving Images - Free Download on Freepik.jfif\", \"path\": null, \"size\": 8.5, \"width\": 234, \"height\": 156, \"sizeInBytes\": 8500}}','Safe_driving_Images_Free_Download_on_Freepik_9898199d3d','.jfif','image/jpeg',23.06,'https://d1i031whgqu7f4.cloudfront.net/Safe_driving_Images_Free_Download_on_Freepik_9898199d3d.jfif',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/5/10/15','2026-03-11 07:12:11.922000','2026-03-11 07:12:11.922000','2026-03-11 07:12:11.923000',1,1,NULL),(247,'l7nhpou8xhdebmq2i72hpowf','Piero Taramasso Explains Michelin\'s MotoGP Tire Inconsistencies - Asphalt & Rubber.jfif',NULL,NULL,674,449,'{\"small\": {\"ext\": \".jfif\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_Piero_Taramasso_Explains_Michelin_s_Moto_GP_Tire_Inconsistencies_Asphalt_and_Rubber_70bc965528.jfif\", \"hash\": \"small_Piero_Taramasso_Explains_Michelin_s_Moto_GP_Tire_Inconsistencies_Asphalt_and_Rubber_70bc965528\", \"mime\": \"image/jpeg\", \"name\": \"small_Piero Taramasso Explains Michelin\'s MotoGP Tire Inconsistencies - Asphalt & Rubber.jfif\", \"path\": null, \"size\": 39.72, \"width\": 500, \"height\": 333, \"sizeInBytes\": 39717}, \"thumbnail\": {\"ext\": \".jfif\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Piero_Taramasso_Explains_Michelin_s_Moto_GP_Tire_Inconsistencies_Asphalt_and_Rubber_70bc965528.jfif\", \"hash\": \"thumbnail_Piero_Taramasso_Explains_Michelin_s_Moto_GP_Tire_Inconsistencies_Asphalt_and_Rubber_70bc965528\", \"mime\": \"image/jpeg\", \"name\": \"thumbnail_Piero Taramasso Explains Michelin\'s MotoGP Tire Inconsistencies - Asphalt & Rubber.jfif\", \"path\": null, \"size\": 11.13, \"width\": 234, \"height\": 156, \"sizeInBytes\": 11132}}','Piero_Taramasso_Explains_Michelin_s_Moto_GP_Tire_Inconsistencies_Asphalt_and_Rubber_70bc965528','.jfif','image/jpeg',68.17,'https://d1i031whgqu7f4.cloudfront.net/Piero_Taramasso_Explains_Michelin_s_Moto_GP_Tire_Inconsistencies_Asphalt_and_Rubber_70bc965528.jfif',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/5/10/15','2026-03-11 07:12:12.684000','2026-03-11 07:12:12.684000','2026-03-11 07:12:12.685000',1,1,NULL),(248,'c7rkq73amjlwpy9ourel5q23','52,500+ Mechanic Tire Stock Photos, Pictures & Royalty-Free Images - iStock _ Auto mechanic tire, Black mechanic tire, Car mechanic tire.jfif',NULL,NULL,612,407,'{\"small\": {\"ext\": \".jfif\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_52_500_Mechanic_Tire_Stock_Photos_Pictures_and_Royalty_Free_Images_i_Stock_Auto_mechanic_tire_Black_mechanic_tire_Car_mechanic_tire_75d4927c43.jfif\", \"hash\": \"small_52_500_Mechanic_Tire_Stock_Photos_Pictures_and_Royalty_Free_Images_i_Stock_Auto_mechanic_tire_Black_mechanic_tire_Car_mechanic_tire_75d4927c43\", \"mime\": \"image/jpeg\", \"name\": \"small_52,500+ Mechanic Tire Stock Photos, Pictures & Royalty-Free Images - iStock _ Auto mechanic tire, Black mechanic tire, Car mechanic tire.jfif\", \"path\": null, \"size\": 32.49, \"width\": 500, \"height\": 333, \"sizeInBytes\": 32485}, \"thumbnail\": {\"ext\": \".jfif\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_52_500_Mechanic_Tire_Stock_Photos_Pictures_and_Royalty_Free_Images_i_Stock_Auto_mechanic_tire_Black_mechanic_tire_Car_mechanic_tire_75d4927c43.jfif\", \"hash\": \"thumbnail_52_500_Mechanic_Tire_Stock_Photos_Pictures_and_Royalty_Free_Images_i_Stock_Auto_mechanic_tire_Black_mechanic_tire_Car_mechanic_tire_75d4927c43\", \"mime\": \"image/jpeg\", \"name\": \"thumbnail_52,500+ Mechanic Tire Stock Photos, Pictures & Royalty-Free Images - iStock _ Auto mechanic tire, Black mechanic tire, Car mechanic tire.jfif\", \"path\": null, \"size\": 10.39, \"width\": 235, \"height\": 156, \"sizeInBytes\": 10387}}','52_500_Mechanic_Tire_Stock_Photos_Pictures_and_Royalty_Free_Images_i_Stock_Auto_mechanic_tire_Black_mechanic_tire_Car_mechanic_tire_75d4927c43','.jfif','image/jpeg',39.48,'https://d1i031whgqu7f4.cloudfront.net/52_500_Mechanic_Tire_Stock_Photos_Pictures_and_Royalty_Free_Images_i_Stock_Auto_mechanic_tire_Black_mechanic_tire_Car_mechanic_tire_75d4927c43.jfif',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/5/10/15','2026-03-11 07:12:12.791000','2026-03-11 07:12:12.791000','2026-03-11 07:12:12.792000',1,1,NULL),(249,'fdrit3dqbnjcjsyspwih8qx8','Improve Fuel Efficiency.png',NULL,NULL,464,386,'{\"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Improve_Fuel_Efficiency_966029ab52.png\", \"hash\": \"thumbnail_Improve_Fuel_Efficiency_966029ab52\", \"mime\": \"image/png\", \"name\": \"thumbnail_Improve Fuel Efficiency.png\", \"path\": null, \"size\": 60.91, \"width\": 188, \"height\": 156, \"sizeInBytes\": 60906}}','Improve_Fuel_Efficiency_966029ab52','.png','image/png',70.21,'https://d1i031whgqu7f4.cloudfront.net/Improve_Fuel_Efficiency_966029ab52.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/5/10/15','2026-03-11 07:12:12.802000','2026-03-11 07:12:12.802000','2026-03-11 07:12:12.803000',1,1,NULL),(250,'e2t9mcdznlq1sr629ocj74kt','Tyre Repair _ Tire Repair Shop.jfif',NULL,NULL,896,598,'{\"small\": {\"ext\": \".jfif\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_Tyre_Repair_Tire_Repair_Shop_389fbc51b9.jfif\", \"hash\": \"small_Tyre_Repair_Tire_Repair_Shop_389fbc51b9\", \"mime\": \"image/jpeg\", \"name\": \"small_Tyre Repair _ Tire Repair Shop.jfif\", \"path\": null, \"size\": 30.42, \"width\": 500, \"height\": 334, \"sizeInBytes\": 30417}, \"medium\": {\"ext\": \".jfif\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_Tyre_Repair_Tire_Repair_Shop_389fbc51b9.jfif\", \"hash\": \"medium_Tyre_Repair_Tire_Repair_Shop_389fbc51b9\", \"mime\": \"image/jpeg\", \"name\": \"medium_Tyre Repair _ Tire Repair Shop.jfif\", \"path\": null, \"size\": 53.48, \"width\": 750, \"height\": 501, \"sizeInBytes\": 53482}, \"thumbnail\": {\"ext\": \".jfif\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Tyre_Repair_Tire_Repair_Shop_389fbc51b9.jfif\", \"hash\": \"thumbnail_Tyre_Repair_Tire_Repair_Shop_389fbc51b9\", \"mime\": \"image/jpeg\", \"name\": \"thumbnail_Tyre Repair _ Tire Repair Shop.jfif\", \"path\": null, \"size\": 9.83, \"width\": 234, \"height\": 156, \"sizeInBytes\": 9833}}','Tyre_Repair_Tire_Repair_Shop_389fbc51b9','.jfif','image/jpeg',58.28,'https://d1i031whgqu7f4.cloudfront.net/Tyre_Repair_Tire_Repair_Shop_389fbc51b9.jfif',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/5/10/15','2026-03-11 07:12:12.809000','2026-03-11 07:12:12.809000','2026-03-11 07:12:12.809000',1,1,NULL),(251,'j5znfane2iart6o5uc60uj2o','No Sudden Surprises.png',NULL,NULL,464,381,'{\"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_No_Sudden_Surprises_e7dd97ae92.png\", \"hash\": \"thumbnail_No_Sudden_Surprises_e7dd97ae92\", \"mime\": \"image/png\", \"name\": \"thumbnail_No Sudden Surprises.png\", \"path\": null, \"size\": 63.99, \"width\": 190, \"height\": 156, \"sizeInBytes\": 63990}}','No_Sudden_Surprises_e7dd97ae92','.png','image/png',65.65,'https://d1i031whgqu7f4.cloudfront.net/No_Sudden_Surprises_e7dd97ae92.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/5/10/15','2026-03-11 07:12:12.906000','2026-03-11 07:12:12.906000','2026-03-11 07:12:12.907000',1,1,NULL),(252,'vfbd1phdrb3gndh9wjp4sm23','Extend Your Tyres Lifespan.png',NULL,NULL,476,393,'{\"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Extend_Your_Tyres_Lifespan_c39cbd1e7d.png\", \"hash\": \"thumbnail_Extend_Your_Tyres_Lifespan_c39cbd1e7d\", \"mime\": \"image/png\", \"name\": \"thumbnail_Extend Your Tyres Lifespan.png\", \"path\": null, \"size\": 57.56, \"width\": 189, \"height\": 156, \"sizeInBytes\": 57558}}','Extend_Your_Tyres_Lifespan_c39cbd1e7d','.png','image/png',68.78,'https://d1i031whgqu7f4.cloudfront.net/Extend_Your_Tyres_Lifespan_c39cbd1e7d.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/5/10/15','2026-03-11 07:12:13.247000','2026-03-11 07:12:13.247000','2026-03-11 07:12:13.247000',1,1,NULL),(253,'at5g1horubtbupco4et4eond','Better Driving.png',NULL,NULL,467,380,'{\"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Better_Driving_2b79c0d2b2.png\", \"hash\": \"thumbnail_Better_Driving_2b79c0d2b2\", \"mime\": \"image/png\", \"name\": \"thumbnail_Better Driving.png\", \"path\": null, \"size\": 67.39, \"width\": 192, \"height\": 156, \"sizeInBytes\": 67394}}','Better_Driving_2b79c0d2b2','.png','image/png',81.30,'https://d1i031whgqu7f4.cloudfront.net/Better_Driving_2b79c0d2b2.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/5/10/15','2026-03-11 07:12:13.371000','2026-03-11 07:12:13.371000','2026-03-11 07:12:13.372000',1,1,NULL),(254,'xnr3j1xe8d1p0of3n3z77ga2','Why Choose CME for Tyre Repairing.png',NULL,NULL,690,561,'{\"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_Why_Choose_CME_for_Tyre_Repairing_ea4e7e638f.png\", \"hash\": \"small_Why_Choose_CME_for_Tyre_Repairing_ea4e7e638f\", \"mime\": \"image/png\", \"name\": \"small_Why Choose CME for Tyre Repairing.png\", \"path\": null, \"size\": 412.49, \"width\": 500, \"height\": 407, \"sizeInBytes\": 412485}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Why_Choose_CME_for_Tyre_Repairing_ea4e7e638f.png\", \"hash\": \"thumbnail_Why_Choose_CME_for_Tyre_Repairing_ea4e7e638f\", \"mime\": \"image/png\", \"name\": \"thumbnail_Why Choose CME for Tyre Repairing.png\", \"path\": null, \"size\": 74.98, \"width\": 192, \"height\": 156, \"sizeInBytes\": 74977}}','Why_Choose_CME_for_Tyre_Repairing_ea4e7e638f','.png','image/png',175.25,'https://d1i031whgqu7f4.cloudfront.net/Why_Choose_CME_for_Tyre_Repairing_ea4e7e638f.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/5/10/15','2026-03-11 07:12:13.962000','2026-03-11 07:12:13.962000','2026-03-11 07:12:13.963000',1,1,NULL),(255,'v90yidfmfgly715tq1i9w2ml','tyre-rotation.png',NULL,NULL,769,691,'{\"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_tyre_rotation_8913d368bc.png\", \"hash\": \"small_tyre_rotation_8913d368bc\", \"mime\": \"image/png\", \"name\": \"small_tyre-rotation.png\", \"path\": null, \"size\": 114.71, \"width\": 500, \"height\": 449, \"sizeInBytes\": 114706}, \"medium\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_tyre_rotation_8913d368bc.png\", \"hash\": \"medium_tyre_rotation_8913d368bc\", \"mime\": \"image/png\", \"name\": \"medium_tyre-rotation.png\", \"path\": null, \"size\": 212.94, \"width\": 750, \"height\": 674, \"sizeInBytes\": 212936}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_tyre_rotation_8913d368bc.png\", \"hash\": \"thumbnail_tyre_rotation_8913d368bc\", \"mime\": \"image/png\", \"name\": \"thumbnail_tyre-rotation.png\", \"path\": null, \"size\": 22.81, \"width\": 174, \"height\": 156, \"sizeInBytes\": 22808}}','tyre_rotation_8913d368bc','.png','image/png',50.71,'https://d1i031whgqu7f4.cloudfront.net/tyre_rotation_8913d368bc.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/5/10/23','2026-03-11 08:39:05.927000','2026-03-11 08:39:05.927000','2026-03-11 08:39:05.927000',1,1,NULL),(260,'tdlx3broifp7za8nwn21olgd','undefined (2).png',NULL,NULL,549,305,'{\"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_undefined_2_8ee4373591.png\", \"hash\": \"small_undefined_2_8ee4373591\", \"mime\": \"image/png\", \"name\": \"small_undefined (2).png\", \"path\": null, \"size\": 312.31, \"width\": 500, \"height\": 278, \"sizeInBytes\": 312311}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_undefined_2_8ee4373591.png\", \"hash\": \"thumbnail_undefined_2_8ee4373591\", \"mime\": \"image/png\", \"name\": \"thumbnail_undefined (2).png\", \"path\": null, \"size\": 85.44, \"width\": 245, \"height\": 136, \"sizeInBytes\": 85435}}','undefined_2_8ee4373591','.png','image/png',95.72,'https://d1i031whgqu7f4.cloudfront.net/undefined_2_8ee4373591.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/5/9/24','2026-03-11 12:53:18.155000','2026-03-11 12:53:18.155000','2026-03-11 12:53:18.156000',1,1,NULL),(268,'a5y9ej0g4qzyuj1i27tpzkt3','undefined (8).jfif',NULL,NULL,800,450,'{\"small\": {\"ext\": \".jfif\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_undefined_8_6c1183f90e.jfif\", \"hash\": \"small_undefined_8_6c1183f90e\", \"mime\": \"image/jpeg\", \"name\": \"small_undefined (8).jfif\", \"path\": null, \"size\": 24.87, \"width\": 500, \"height\": 281, \"sizeInBytes\": 24869}, \"medium\": {\"ext\": \".jfif\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_undefined_8_6c1183f90e.jfif\", \"hash\": \"medium_undefined_8_6c1183f90e\", \"mime\": \"image/jpeg\", \"name\": \"medium_undefined (8).jfif\", \"path\": null, \"size\": 43.74, \"width\": 750, \"height\": 422, \"sizeInBytes\": 43741}, \"thumbnail\": {\"ext\": \".jfif\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_undefined_8_6c1183f90e.jfif\", \"hash\": \"thumbnail_undefined_8_6c1183f90e\", \"mime\": \"image/jpeg\", \"name\": \"thumbnail_undefined (8).jfif\", \"path\": null, \"size\": 8.82, \"width\": 245, \"height\": 138, \"sizeInBytes\": 8815}}','undefined_8_6c1183f90e','.jfif','image/jpeg',46.32,'https://d1i031whgqu7f4.cloudfront.net/undefined_8_6c1183f90e.jfif',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/5/9/26','2026-03-11 13:34:52.708000','2026-03-11 13:34:52.708000','2026-03-11 13:34:52.708000',1,1,NULL),(270,'z3zxrl3gmlv5ep8e0zskte7d','Group 10.png',NULL,NULL,1768,1302,'{\"large\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/large_Group_10_bbe0a4aed5.png\", \"hash\": \"large_Group_10_bbe0a4aed5\", \"mime\": \"image/png\", \"name\": \"large_Group 10.png\", \"path\": null, \"size\": 602.11, \"width\": 1000, \"height\": 736, \"sizeInBytes\": 602112}, \"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_Group_10_bbe0a4aed5.png\", \"hash\": \"small_Group_10_bbe0a4aed5\", \"mime\": \"image/png\", \"name\": \"small_Group 10.png\", \"path\": null, \"size\": 171.25, \"width\": 500, \"height\": 368, \"sizeInBytes\": 171245}, \"medium\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_Group_10_bbe0a4aed5.png\", \"hash\": \"medium_Group_10_bbe0a4aed5\", \"mime\": \"image/png\", \"name\": \"medium_Group 10.png\", \"path\": null, \"size\": 355.53, \"width\": 750, \"height\": 552, \"sizeInBytes\": 355528}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Group_10_bbe0a4aed5.png\", \"hash\": \"thumbnail_Group_10_bbe0a4aed5\", \"mime\": \"image/png\", \"name\": \"thumbnail_Group 10.png\", \"path\": null, \"size\": 39.6, \"width\": 212, \"height\": 156, \"sizeInBytes\": 39595}}','Group_10_bbe0a4aed5','.png','image/png',387.69,'https://d1i031whgqu7f4.cloudfront.net/Group_10_bbe0a4aed5.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/5/9/26','2026-03-11 13:59:16.525000','2026-03-11 13:59:24.094000','2026-03-11 13:59:16.526000',1,1,NULL),(271,'z98t0zgdpmcblaujxeyh370g','undefined (13).png',NULL,NULL,389,533,'{\"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_undefined_13_1e91337fe5.png\", \"hash\": \"small_undefined_13_1e91337fe5\", \"mime\": \"image/png\", \"name\": \"small_undefined (13).png\", \"path\": null, \"size\": 438.37, \"width\": 365, \"height\": 500, \"sizeInBytes\": 438373}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_undefined_13_1e91337fe5.png\", \"hash\": \"thumbnail_undefined_13_1e91337fe5\", \"mime\": \"image/png\", \"name\": \"thumbnail_undefined (13).png\", \"path\": null, \"size\": 49.12, \"width\": 114, \"height\": 156, \"sizeInBytes\": 49124}}','undefined_13_1e91337fe5','.png','image/png',139.90,'https://d1i031whgqu7f4.cloudfront.net/undefined_13_1e91337fe5.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/5/10/27','2026-03-12 06:18:44.488000','2026-03-12 06:18:44.488000','2026-03-12 06:18:44.488000',1,1,NULL),(277,'qi5a1zxvar3d2fyrj5mqkgqe','undefined (19).png',NULL,NULL,524,369,'{\"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_undefined_19_1a8dcf4f93.png\", \"hash\": \"small_undefined_19_1a8dcf4f93\", \"mime\": \"image/png\", \"name\": \"small_undefined (19).png\", \"path\": null, \"size\": 268.02, \"width\": 500, \"height\": 352, \"sizeInBytes\": 268022}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_undefined_19_1a8dcf4f93.png\", \"hash\": \"thumbnail_undefined_19_1a8dcf4f93\", \"mime\": \"image/png\", \"name\": \"thumbnail_undefined (19).png\", \"path\": null, \"size\": 61.39, \"width\": 222, \"height\": 156, \"sizeInBytes\": 61386}}','undefined_19_1a8dcf4f93','.png','image/png',88.19,'https://d1i031whgqu7f4.cloudfront.net/undefined_19_1a8dcf4f93.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/5/10/27','2026-03-12 06:39:51.656000','2026-03-12 06:39:51.656000','2026-03-12 06:39:51.656000',1,1,NULL),(278,'nikp9m1s3xpkwfqblsqivmkf','undefined (20).png',NULL,NULL,792,648,'{\"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_undefined_20_5aceb6f50e.png\", \"hash\": \"small_undefined_20_5aceb6f50e\", \"mime\": \"image/png\", \"name\": \"small_undefined (20).png\", \"path\": null, \"size\": 393.64, \"width\": 500, \"height\": 409, \"sizeInBytes\": 393635}, \"medium\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_undefined_20_5aceb6f50e.png\", \"hash\": \"medium_undefined_20_5aceb6f50e\", \"mime\": \"image/png\", \"name\": \"medium_undefined (20).png\", \"path\": null, \"size\": 765.7, \"width\": 750, \"height\": 614, \"sizeInBytes\": 765701}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_undefined_20_5aceb6f50e.png\", \"hash\": \"thumbnail_undefined_20_5aceb6f50e\", \"mime\": \"image/png\", \"name\": \"thumbnail_undefined (20).png\", \"path\": null, \"size\": 73.71, \"width\": 191, \"height\": 156, \"sizeInBytes\": 73714}}','undefined_20_5aceb6f50e','.png','image/png',172.26,'https://d1i031whgqu7f4.cloudfront.net/undefined_20_5aceb6f50e.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/5/10/27','2026-03-12 06:47:24.157000','2026-03-12 06:47:24.157000','2026-03-12 06:47:24.159000',1,1,NULL),(279,'fi2xdi1b96awrwrvfe8fwt23','undefined (21).png',NULL,NULL,525,368,'{\"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_undefined_21_5e3274a507.png\", \"hash\": \"small_undefined_21_5e3274a507\", \"mime\": \"image/png\", \"name\": \"small_undefined (21).png\", \"path\": null, \"size\": 383.72, \"width\": 500, \"height\": 350, \"sizeInBytes\": 383717}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_undefined_21_5e3274a507.png\", \"hash\": \"thumbnail_undefined_21_5e3274a507\", \"mime\": \"image/png\", \"name\": \"thumbnail_undefined (21).png\", \"path\": null, \"size\": 87.53, \"width\": 223, \"height\": 156, \"sizeInBytes\": 87532}}','undefined_21_5e3274a507','.png','image/png',90.01,'https://d1i031whgqu7f4.cloudfront.net/undefined_21_5e3274a507.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/5/10/28','2026-03-12 07:04:47.706000','2026-03-12 07:04:47.706000','2026-03-12 07:04:47.707000',1,1,NULL),(280,'dgwrakoy160tkfg8075qn1di','undefined (22).png',NULL,NULL,543,444,'{\"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_undefined_22_1654ae1135.png\", \"hash\": \"small_undefined_22_1654ae1135\", \"mime\": \"image/png\", \"name\": \"small_undefined (22).png\", \"path\": null, \"size\": 409.86, \"width\": 500, \"height\": 409, \"sizeInBytes\": 409860}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_undefined_22_1654ae1135.png\", \"hash\": \"thumbnail_undefined_22_1654ae1135\", \"mime\": \"image/png\", \"name\": \"thumbnail_undefined (22).png\", \"path\": null, \"size\": 74.1, \"width\": 191, \"height\": 156, \"sizeInBytes\": 74098}}','undefined_22_1654ae1135','.png','image/png',108.85,'https://d1i031whgqu7f4.cloudfront.net/undefined_22_1654ae1135.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/5/10/28','2026-03-12 07:06:38.726000','2026-03-12 07:06:38.726000','2026-03-12 07:06:38.727000',1,1,NULL),(281,'cxtcaa5f3go8xy50tlsy808n','undefined (23).png',NULL,NULL,567,411,'{\"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_undefined_23_b0a396a132.png\", \"hash\": \"small_undefined_23_b0a396a132\", \"mime\": \"image/png\", \"name\": \"small_undefined (23).png\", \"path\": null, \"size\": 401.68, \"width\": 500, \"height\": 362, \"sizeInBytes\": 401684}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_undefined_23_b0a396a132.png\", \"hash\": \"thumbnail_undefined_23_b0a396a132\", \"mime\": \"image/png\", \"name\": \"thumbnail_undefined (23).png\", \"path\": null, \"size\": 85.39, \"width\": 215, \"height\": 156, \"sizeInBytes\": 85386}}','undefined_23_b0a396a132','.png','image/png',120.39,'https://d1i031whgqu7f4.cloudfront.net/undefined_23_b0a396a132.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/5/10/28','2026-03-12 07:07:00.525000','2026-03-12 07:07:00.525000','2026-03-12 07:07:00.526000',1,1,NULL),(282,'vhm6ig4933bemshfk3q9x4di','undefined (24).png',NULL,NULL,530,447,'{\"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_undefined_24_fb5511fd10.png\", \"hash\": \"small_undefined_24_fb5511fd10\", \"mime\": \"image/png\", \"name\": \"small_undefined (24).png\", \"path\": null, \"size\": 424.29, \"width\": 500, \"height\": 422, \"sizeInBytes\": 424290}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_undefined_24_fb5511fd10.png\", \"hash\": \"thumbnail_undefined_24_fb5511fd10\", \"mime\": \"image/png\", \"name\": \"thumbnail_undefined (24).png\", \"path\": null, \"size\": 73.47, \"width\": 185, \"height\": 156, \"sizeInBytes\": 73467}}','undefined_24_fb5511fd10','.png','image/png',100.13,'https://d1i031whgqu7f4.cloudfront.net/undefined_24_fb5511fd10.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/5/10/28','2026-03-12 07:07:34.032000','2026-03-12 07:07:34.032000','2026-03-12 07:07:34.033000',1,1,NULL),(283,'gznvpbu1bs6ki1xrhkhbcput','undefined (25).png',NULL,NULL,596,254,'{\"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_undefined_25_e01c6e4f1e.png\", \"hash\": \"small_undefined_25_e01c6e4f1e\", \"mime\": \"image/png\", \"name\": \"small_undefined (25).png\", \"path\": null, \"size\": 196.39, \"width\": 500, \"height\": 213, \"sizeInBytes\": 196390}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_undefined_25_e01c6e4f1e.png\", \"hash\": \"thumbnail_undefined_25_e01c6e4f1e\", \"mime\": \"image/png\", \"name\": \"thumbnail_undefined (25).png\", \"path\": null, \"size\": 55.57, \"width\": 245, \"height\": 104, \"sizeInBytes\": 55566}}','undefined_25_e01c6e4f1e','.png','image/png',64.42,'https://d1i031whgqu7f4.cloudfront.net/undefined_25_e01c6e4f1e.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/5/10/28','2026-03-12 07:09:17.531000','2026-03-12 07:09:17.531000','2026-03-12 07:09:17.531000',1,1,NULL),(284,'yb93wdsf5x4kk5yoxrf02ido','undefined (26).png',NULL,NULL,587,334,'{\"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_undefined_26_e848e8194e.png\", \"hash\": \"small_undefined_26_e848e8194e\", \"mime\": \"image/png\", \"name\": \"small_undefined (26).png\", \"path\": null, \"size\": 339.3, \"width\": 500, \"height\": 284, \"sizeInBytes\": 339301}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_undefined_26_e848e8194e.png\", \"hash\": \"thumbnail_undefined_26_e848e8194e\", \"mime\": \"image/png\", \"name\": \"thumbnail_undefined (26).png\", \"path\": null, \"size\": 89.59, \"width\": 245, \"height\": 139, \"sizeInBytes\": 89591}}','undefined_26_e848e8194e','.png','image/png',123.09,'https://d1i031whgqu7f4.cloudfront.net/undefined_26_e848e8194e.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/5/10/29','2026-03-12 07:13:55.752000','2026-03-12 07:13:55.752000','2026-03-12 07:13:55.753000',1,1,NULL),(285,'sjn8eerpo73tmmop225mfz39','undefined (27).png',NULL,NULL,561,416,'{\"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_undefined_27_71df7306fc.png\", \"hash\": \"small_undefined_27_71df7306fc\", \"mime\": \"image/png\", \"name\": \"small_undefined (27).png\", \"path\": null, \"size\": 317.05, \"width\": 500, \"height\": 371, \"sizeInBytes\": 317053}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_undefined_27_71df7306fc.png\", \"hash\": \"thumbnail_undefined_27_71df7306fc\", \"mime\": \"image/png\", \"name\": \"thumbnail_undefined (27).png\", \"path\": null, \"size\": 67.21, \"width\": 210, \"height\": 156, \"sizeInBytes\": 67207}}','undefined_27_71df7306fc','.png','image/png',106.08,'https://d1i031whgqu7f4.cloudfront.net/undefined_27_71df7306fc.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/5/10/29','2026-03-12 07:14:45.464000','2026-03-12 07:14:45.464000','2026-03-12 07:14:45.464000',1,1,NULL),(286,'huo9co676jt2hs2gb26au46m','undefined (28).png',NULL,NULL,392,329,'{\"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_undefined_28_c805b2b2e5.png\", \"hash\": \"thumbnail_undefined_28_c805b2b2e5\", \"mime\": \"image/png\", \"name\": \"thumbnail_undefined (28).png\", \"path\": null, \"size\": 63.62, \"width\": 186, \"height\": 156, \"sizeInBytes\": 63618}}','undefined_28_c805b2b2e5','.png','image/png',51.19,'https://d1i031whgqu7f4.cloudfront.net/undefined_28_c805b2b2e5.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/5/10/29','2026-03-12 07:15:17.438000','2026-03-12 07:15:17.438000','2026-03-12 07:15:17.439000',1,1,NULL),(287,'pfzo15mfaon3a0eb8cv34ju5','undefined (29).png',NULL,NULL,464,386,'{\"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_undefined_29_509251b257.png\", \"hash\": \"thumbnail_undefined_29_509251b257\", \"mime\": \"image/png\", \"name\": \"thumbnail_undefined (29).png\", \"path\": null, \"size\": 60.91, \"width\": 188, \"height\": 156, \"sizeInBytes\": 60906}}','undefined_29_509251b257','.png','image/png',70.21,'https://d1i031whgqu7f4.cloudfront.net/undefined_29_509251b257.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/5/10/29','2026-03-12 07:15:53.429000','2026-03-12 07:15:53.429000','2026-03-12 07:15:53.430000',1,1,NULL),(288,'ii6ft6qmbta5jqmmkfu0mio9','undefined (30).png',NULL,NULL,545,403,'{\"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_undefined_30_fc1b13dfcf.png\", \"hash\": \"small_undefined_30_fc1b13dfcf\", \"mime\": \"image/png\", \"name\": \"small_undefined (30).png\", \"path\": null, \"size\": 351.76, \"width\": 500, \"height\": 370, \"sizeInBytes\": 351760}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_undefined_30_fc1b13dfcf.png\", \"hash\": \"thumbnail_undefined_30_fc1b13dfcf\", \"mime\": \"image/png\", \"name\": \"thumbnail_undefined (30).png\", \"path\": null, \"size\": 74.41, \"width\": 211, \"height\": 156, \"sizeInBytes\": 74408}}','undefined_30_fc1b13dfcf','.png','image/png',80.55,'https://d1i031whgqu7f4.cloudfront.net/undefined_30_fc1b13dfcf.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/5/10/29','2026-03-12 07:16:31.632000','2026-03-12 07:16:31.632000','2026-03-12 07:16:31.633000',1,1,NULL),(289,'uaot8mtpic08houmdn40mak8','undefined (31).png',NULL,NULL,528,374,'{\"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_undefined_31_f35e52f3ce.png\", \"hash\": \"small_undefined_31_f35e52f3ce\", \"mime\": \"image/png\", \"name\": \"small_undefined (31).png\", \"path\": null, \"size\": 427.88, \"width\": 500, \"height\": 354, \"sizeInBytes\": 427884}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_undefined_31_f35e52f3ce.png\", \"hash\": \"thumbnail_undefined_31_f35e52f3ce\", \"mime\": \"image/png\", \"name\": \"thumbnail_undefined (31).png\", \"path\": null, \"size\": 93.99, \"width\": 220, \"height\": 156, \"sizeInBytes\": 93992}}','undefined_31_f35e52f3ce','.png','image/png',118.39,'https://d1i031whgqu7f4.cloudfront.net/undefined_31_f35e52f3ce.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/5/10/29','2026-03-12 07:18:18.847000','2026-03-12 07:18:18.847000','2026-03-12 07:18:18.847000',1,1,NULL),(290,'ip7lbici79wh6tdw9kd23kxp','undefined (32).png',NULL,NULL,576,432,'{\"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_undefined_32_880753cd7c.png\", \"hash\": \"small_undefined_32_880753cd7c\", \"mime\": \"image/png\", \"name\": \"small_undefined (32).png\", \"path\": null, \"size\": 407.19, \"width\": 500, \"height\": 375, \"sizeInBytes\": 407185}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_undefined_32_880753cd7c.png\", \"hash\": \"thumbnail_undefined_32_880753cd7c\", \"mime\": \"image/png\", \"name\": \"thumbnail_undefined (32).png\", \"path\": null, \"size\": 79.64, \"width\": 208, \"height\": 156, \"sizeInBytes\": 79639}}','undefined_32_880753cd7c','.png','image/png',142.80,'https://d1i031whgqu7f4.cloudfront.net/undefined_32_880753cd7c.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/5/10/29','2026-03-12 07:19:42.978000','2026-03-12 07:19:42.978000','2026-03-12 07:19:42.978000',1,1,NULL),(291,'g992xx5iustenjyqx4hvistg','image 602.png',NULL,NULL,134,75,NULL,'image_602_eb6dce2f14','.png','image/png',2.86,'https://d1i031whgqu7f4.cloudfront.net/image_602_eb6dce2f14.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/5/9/25','2026-03-12 07:25:19.953000','2026-03-12 07:25:19.953000','2026-03-12 07:25:19.954000',1,1,NULL),(292,'a7gxs0wtfjlq09tuluxzu9b0','Frame 1618874239.png',NULL,NULL,400,500,'{\"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Frame_1618874239_c59c8389f4.png\", \"hash\": \"thumbnail_Frame_1618874239_c59c8389f4\", \"mime\": \"image/png\", \"name\": \"thumbnail_Frame 1618874239.png\", \"path\": null, \"size\": 15.84, \"width\": 125, \"height\": 156, \"sizeInBytes\": 15839}}','Frame_1618874239_c59c8389f4','.png','image/png',42.95,'https://d1i031whgqu7f4.cloudfront.net/Frame_1618874239_c59c8389f4.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/5/9/25','2026-03-12 07:25:20.492000','2026-03-12 07:25:20.492000','2026-03-12 07:25:20.492000',1,1,NULL),(293,'aj8zy8i6e74pwic5pw4k8f55','Frame 1618874237.png',NULL,NULL,400,500,'{\"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Frame_1618874237_b0a9b53870.png\", \"hash\": \"thumbnail_Frame_1618874237_b0a9b53870\", \"mime\": \"image/png\", \"name\": \"thumbnail_Frame 1618874237.png\", \"path\": null, \"size\": 15.88, \"width\": 125, \"height\": 156, \"sizeInBytes\": 15875}}','Frame_1618874237_b0a9b53870','.png','image/png',39.28,'https://d1i031whgqu7f4.cloudfront.net/Frame_1618874237_b0a9b53870.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/5/9/25','2026-03-12 07:25:20.964000','2026-03-12 07:25:20.964000','2026-03-12 07:25:20.964000',1,1,NULL),(294,'xqgcefnnt6uiipfd68n22hut','Frame 1618874238.png',NULL,NULL,400,500,'{\"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Frame_1618874238_b4c900dac3.png\", \"hash\": \"thumbnail_Frame_1618874238_b4c900dac3\", \"mime\": \"image/png\", \"name\": \"thumbnail_Frame 1618874238.png\", \"path\": null, \"size\": 17.17, \"width\": 125, \"height\": 156, \"sizeInBytes\": 17172}}','Frame_1618874238_b4c900dac3','.png','image/png',45.35,'https://d1i031whgqu7f4.cloudfront.net/Frame_1618874238_b4c900dac3.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/5/9/25','2026-03-12 07:25:20.968000','2026-03-12 07:25:20.968000','2026-03-12 07:25:20.968000',1,1,NULL),(295,'yybw5925qffjsj92zxpvzznn','image 600.png',NULL,NULL,489,651,'{\"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_image_600_5827ba4fab.png\", \"hash\": \"small_image_600_5827ba4fab\", \"mime\": \"image/png\", \"name\": \"small_image 600.png\", \"path\": null, \"size\": 336.21, \"width\": 376, \"height\": 500, \"sizeInBytes\": 336207}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_image_600_5827ba4fab.png\", \"hash\": \"thumbnail_image_600_5827ba4fab\", \"mime\": \"image/png\", \"name\": \"thumbnail_image 600.png\", \"path\": null, \"size\": 41.75, \"width\": 117, \"height\": 156, \"sizeInBytes\": 41753}}','image_600_5827ba4fab','.png','image/png',142.71,'https://d1i031whgqu7f4.cloudfront.net/image_600_5827ba4fab.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/5/9/25','2026-03-12 07:25:21.916000','2026-03-12 07:25:21.916000','2026-03-12 07:25:21.917000',1,1,NULL),(296,'uc6sqxj0q30bo22dlqnpfzsf','image 607.png',NULL,NULL,503,669,'{\"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_image_607_d0907b685d.png\", \"hash\": \"small_image_607_d0907b685d\", \"mime\": \"image/png\", \"name\": \"small_image 607.png\", \"path\": null, \"size\": 323.51, \"width\": 376, \"height\": 500, \"sizeInBytes\": 323513}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_image_607_d0907b685d.png\", \"hash\": \"thumbnail_image_607_d0907b685d\", \"mime\": \"image/png\", \"name\": \"thumbnail_image 607.png\", \"path\": null, \"size\": 40.38, \"width\": 117, \"height\": 156, \"sizeInBytes\": 40379}}','image_607_d0907b685d','.png','image/png',134.56,'https://d1i031whgqu7f4.cloudfront.net/image_607_d0907b685d.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/5/9/25','2026-03-12 07:25:22.178000','2026-03-12 07:25:22.178000','2026-03-12 07:25:22.179000',1,1,NULL),(297,'y1u1onqwfdnaa6jmwnimd6wo','image 606.png',NULL,NULL,485,645,'{\"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_image_606_86228f1c11.png\", \"hash\": \"small_image_606_86228f1c11\", \"mime\": \"image/png\", \"name\": \"small_image 606.png\", \"path\": null, \"size\": 368.41, \"width\": 376, \"height\": 500, \"sizeInBytes\": 368414}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_image_606_86228f1c11.png\", \"hash\": \"thumbnail_image_606_86228f1c11\", \"mime\": \"image/png\", \"name\": \"thumbnail_image 606.png\", \"path\": null, \"size\": 44.03, \"width\": 117, \"height\": 156, \"sizeInBytes\": 44027}}','image_606_86228f1c11','.png','image/png',141.64,'https://d1i031whgqu7f4.cloudfront.net/image_606_86228f1c11.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/5/9/25','2026-03-12 07:25:22.251000','2026-03-12 07:25:22.251000','2026-03-12 07:25:22.252000',1,1,NULL),(298,'zovsrdsjwh1kjvj0r5vrjj4o','image 601.png',NULL,NULL,489,651,'{\"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_image_601_9467a17a7e.png\", \"hash\": \"small_image_601_9467a17a7e\", \"mime\": \"image/png\", \"name\": \"small_image 601.png\", \"path\": null, \"size\": 413.73, \"width\": 376, \"height\": 500, \"sizeInBytes\": 413730}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_image_601_9467a17a7e.png\", \"hash\": \"thumbnail_image_601_9467a17a7e\", \"mime\": \"image/png\", \"name\": \"thumbnail_image 601.png\", \"path\": null, \"size\": 47.17, \"width\": 117, \"height\": 156, \"sizeInBytes\": 47168}}','image_601_9467a17a7e','.png','image/png',149.46,'https://d1i031whgqu7f4.cloudfront.net/image_601_9467a17a7e.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/5/9/25','2026-03-12 07:27:49.366000','2026-03-12 07:27:49.366000','2026-03-12 07:27:49.367000',1,1,NULL),(299,'umwpyz80revthqunel1qbneg','Rotor Resurfacing or Replacement.png',NULL,NULL,400,500,'{\"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Rotor_Resurfacing_or_Replacement_432337ca57.png\", \"hash\": \"thumbnail_Rotor_Resurfacing_or_Replacement_432337ca57\", \"mime\": \"image/png\", \"name\": \"thumbnail_Rotor Resurfacing or Replacement.png\", \"path\": null, \"size\": 39.72, \"width\": 125, \"height\": 156, \"sizeInBytes\": 39718}}','Rotor_Resurfacing_or_Replacement_432337ca57','.png','image/png',74.12,'https://d1i031whgqu7f4.cloudfront.net/Rotor_Resurfacing_or_Replacement_432337ca57.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/5/10/27','2026-03-12 07:33:11.896000','2026-03-12 07:33:11.896000','2026-03-12 07:33:11.897000',1,1,NULL),(300,'il7zpjshod72pvpnyrvvxomq','Full Brake System Overhaul.png',NULL,NULL,400,500,'{\"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Full_Brake_System_Overhaul_74cbb0cfa3.png\", \"hash\": \"thumbnail_Full_Brake_System_Overhaul_74cbb0cfa3\", \"mime\": \"image/png\", \"name\": \"thumbnail_Full Brake System Overhaul.png\", \"path\": null, \"size\": 45.04, \"width\": 125, \"height\": 156, \"sizeInBytes\": 45043}}','Full_Brake_System_Overhaul_74cbb0cfa3','.png','image/png',83.77,'https://d1i031whgqu7f4.cloudfront.net/Full_Brake_System_Overhaul_74cbb0cfa3.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/5/10/27','2026-03-12 07:33:11.948000','2026-03-12 07:33:11.948000','2026-03-12 07:33:11.948000',1,1,NULL),(301,'lf2azzo0gi96t3ph3gk3qz3y','Brake Fluid Replacement.png',NULL,NULL,400,500,'{\"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Brake_Fluid_Replacement_c355a1761e.png\", \"hash\": \"thumbnail_Brake_Fluid_Replacement_c355a1761e\", \"mime\": \"image/png\", \"name\": \"thumbnail_Brake Fluid Replacement.png\", \"path\": null, \"size\": 43.08, \"width\": 125, \"height\": 156, \"sizeInBytes\": 43083}}','Brake_Fluid_Replacement_c355a1761e','.png','image/png',87.54,'https://d1i031whgqu7f4.cloudfront.net/Brake_Fluid_Replacement_c355a1761e.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/5/10/27','2026-03-12 07:33:12.038000','2026-03-12 07:33:12.038000','2026-03-12 07:33:12.039000',1,1,NULL),(302,'vulfczap64bav3dd7nhqyh5o','Brake Inspection.png',NULL,NULL,400,500,'{\"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Brake_Inspection_893d9e87e6.png\", \"hash\": \"thumbnail_Brake_Inspection_893d9e87e6\", \"mime\": \"image/png\", \"name\": \"thumbnail_Brake Inspection.png\", \"path\": null, \"size\": 45.82, \"width\": 125, \"height\": 156, \"sizeInBytes\": 45818}}','Brake_Inspection_893d9e87e6','.png','image/png',99.48,'https://d1i031whgqu7f4.cloudfront.net/Brake_Inspection_893d9e87e6.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/5/10/27','2026-03-12 07:33:12.395000','2026-03-12 07:33:12.395000','2026-03-12 07:33:12.396000',1,1,NULL),(303,'b8y2wwzt6s0rs6kugrp3bt87','Reak Pad Replacement.png',NULL,NULL,400,500,'{\"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Reak_Pad_Replacement_466ae7beef.png\", \"hash\": \"thumbnail_Reak_Pad_Replacement_466ae7beef\", \"mime\": \"image/png\", \"name\": \"thumbnail_Reak Pad Replacement.png\", \"path\": null, \"size\": 52.17, \"width\": 125, \"height\": 156, \"sizeInBytes\": 52173}}','Reak_Pad_Replacement_466ae7beef','.png','image/png',117.51,'https://d1i031whgqu7f4.cloudfront.net/Reak_Pad_Replacement_466ae7beef.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/5/10/27','2026-03-12 07:33:12.769000','2026-03-12 07:33:12.769000','2026-03-12 07:33:12.770000',1,1,NULL),(305,'yoa2pi2pwe5zpxtosc3t5qxe','Mask group (4).png',NULL,NULL,476,480,'{\"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Mask_group_4_09358d7798.png\", \"hash\": \"thumbnail_Mask_group_4_09358d7798\", \"mime\": \"image/png\", \"name\": \"thumbnail_Mask group (4).png\", \"path\": null, \"size\": 53.14, \"width\": 155, \"height\": 156, \"sizeInBytes\": 53140}}','Mask_group_4_09358d7798','.png','image/png',93.70,'https://d1i031whgqu7f4.cloudfront.net/Mask_group_4_09358d7798.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/5/9/24','2026-03-12 09:08:05.442000','2026-03-12 09:08:05.442000','2026-03-12 09:08:05.443000',1,1,NULL),(306,'nty7y9r9u3w3fsq5358dmi49','Mask group (6).png',NULL,NULL,476,480,'{\"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Mask_group_6_a6d979744f.png\", \"hash\": \"thumbnail_Mask_group_6_a6d979744f\", \"mime\": \"image/png\", \"name\": \"thumbnail_Mask group (6).png\", \"path\": null, \"size\": 66.09, \"width\": 155, \"height\": 156, \"sizeInBytes\": 66092}}','Mask_group_6_a6d979744f','.png','image/png',126.72,'https://d1i031whgqu7f4.cloudfront.net/Mask_group_6_a6d979744f.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/5/9/24','2026-03-12 09:09:44.135000','2026-03-12 09:09:44.135000','2026-03-12 09:09:44.136000',1,1,NULL),(307,'yi7cpo2cz9z22e8x5tyq0pid','image 617 2.png',NULL,NULL,611,483,'{\"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_image_617_2_b8350684db.png\", \"hash\": \"small_image_617_2_b8350684db\", \"mime\": \"image/png\", \"name\": \"small_image 617 2.png\", \"path\": null, \"size\": 247.68, \"width\": 500, \"height\": 395, \"sizeInBytes\": 247681}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_image_617_2_b8350684db.png\", \"hash\": \"thumbnail_image_617_2_b8350684db\", \"mime\": \"image/png\", \"name\": \"thumbnail_image 617 2.png\", \"path\": null, \"size\": 45.35, \"width\": 197, \"height\": 156, \"sizeInBytes\": 45350}}','image_617_2_b8350684db','.png','image/png',104.13,'https://d1i031whgqu7f4.cloudfront.net/image_617_2_b8350684db.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/5/9/24','2026-03-12 09:13:52.175000','2026-03-12 09:13:52.175000','2026-03-12 09:13:52.175000',1,1,NULL),(308,'ov3io78ezfxwqq20co4cs31t','undefined (33).png',NULL,NULL,386,325,'{\"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_undefined_33_28a44b1eba.png\", \"hash\": \"thumbnail_undefined_33_28a44b1eba\", \"mime\": \"image/png\", \"name\": \"thumbnail_undefined (33).png\", \"path\": null, \"size\": 70, \"width\": 185, \"height\": 156, \"sizeInBytes\": 69999}}','undefined_33_28a44b1eba','.png','image/png',72.75,'https://d1i031whgqu7f4.cloudfront.net/undefined_33_28a44b1eba.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/5/10/30','2026-03-12 09:19:47.152000','2026-03-12 09:19:47.152000','2026-03-12 09:19:47.153000',1,1,NULL),(309,'qlzpl3h3ppvtdkakxx9d2eyc','undefined (34).png',NULL,NULL,801,555,'{\"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_undefined_34_ed57440a0f.png\", \"hash\": \"small_undefined_34_ed57440a0f\", \"mime\": \"image/png\", \"name\": \"small_undefined (34).png\", \"path\": null, \"size\": 341.61, \"width\": 500, \"height\": 346, \"sizeInBytes\": 341607}, \"medium\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_undefined_34_ed57440a0f.png\", \"hash\": \"medium_undefined_34_ed57440a0f\", \"mime\": \"image/png\", \"name\": \"medium_undefined (34).png\", \"path\": null, \"size\": 693.21, \"width\": 750, \"height\": 520, \"sizeInBytes\": 693206}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_undefined_34_ed57440a0f.png\", \"hash\": \"thumbnail_undefined_34_ed57440a0f\", \"mime\": \"image/png\", \"name\": \"thumbnail_undefined (34).png\", \"path\": null, \"size\": 82.03, \"width\": 225, \"height\": 156, \"sizeInBytes\": 82034}}','undefined_34_ed57440a0f','.png','image/png',188.31,'https://d1i031whgqu7f4.cloudfront.net/undefined_34_ed57440a0f.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/5/10/30','2026-03-12 09:25:31.644000','2026-03-12 09:25:31.644000','2026-03-12 09:25:31.645000',1,1,NULL),(310,'n1qpvw9x381ct561qqqirjxn','undefined (35).png',NULL,NULL,857,448,'{\"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_undefined_35_fce9373071.png\", \"hash\": \"small_undefined_35_fce9373071\", \"mime\": \"image/png\", \"name\": \"small_undefined (35).png\", \"path\": null, \"size\": 244.01, \"width\": 500, \"height\": 261, \"sizeInBytes\": 244014}, \"medium\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_undefined_35_fce9373071.png\", \"hash\": \"medium_undefined_35_fce9373071\", \"mime\": \"image/png\", \"name\": \"medium_undefined (35).png\", \"path\": null, \"size\": 496.55, \"width\": 750, \"height\": 392, \"sizeInBytes\": 496545}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_undefined_35_fce9373071.png\", \"hash\": \"thumbnail_undefined_35_fce9373071\", \"mime\": \"image/png\", \"name\": \"thumbnail_undefined (35).png\", \"path\": null, \"size\": 68.17, \"width\": 245, \"height\": 128, \"sizeInBytes\": 68171}}','undefined_35_fce9373071','.png','image/png',166.03,'https://d1i031whgqu7f4.cloudfront.net/undefined_35_fce9373071.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/5/10/30','2026-03-12 09:27:34.472000','2026-03-12 09:27:34.472000','2026-03-12 09:27:34.473000',1,1,NULL),(311,'mpbizl27dl4lvwrhfamakqt4','undefined (36).png',NULL,NULL,841,430,'{\"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_undefined_36_1d43b14b90.png\", \"hash\": \"small_undefined_36_1d43b14b90\", \"mime\": \"image/png\", \"name\": \"small_undefined (36).png\", \"path\": null, \"size\": 266.03, \"width\": 500, \"height\": 256, \"sizeInBytes\": 266033}, \"medium\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_undefined_36_1d43b14b90.png\", \"hash\": \"medium_undefined_36_1d43b14b90\", \"mime\": \"image/png\", \"name\": \"medium_undefined (36).png\", \"path\": null, \"size\": 554.49, \"width\": 750, \"height\": 383, \"sizeInBytes\": 554488}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_undefined_36_1d43b14b90.png\", \"hash\": \"thumbnail_undefined_36_1d43b14b90\", \"mime\": \"image/png\", \"name\": \"thumbnail_undefined (36).png\", \"path\": null, \"size\": 73.59, \"width\": 245, \"height\": 125, \"sizeInBytes\": 73590}}','undefined_36_1d43b14b90','.png','image/png',158.63,'https://d1i031whgqu7f4.cloudfront.net/undefined_36_1d43b14b90.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/5/10/30','2026-03-12 09:28:12.657000','2026-03-12 09:28:12.657000','2026-03-12 09:28:12.658000',1,1,NULL),(312,'ylowuk23h49srvgtikse84oc','undefined (37).png',NULL,NULL,860,747,'{\"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_undefined_37_e1ea656d1f.png\", \"hash\": \"small_undefined_37_e1ea656d1f\", \"mime\": \"image/png\", \"name\": \"small_undefined (37).png\", \"path\": null, \"size\": 320.13, \"width\": 500, \"height\": 434, \"sizeInBytes\": 320132}, \"medium\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_undefined_37_e1ea656d1f.png\", \"hash\": \"medium_undefined_37_e1ea656d1f\", \"mime\": \"image/png\", \"name\": \"medium_undefined (37).png\", \"path\": null, \"size\": 671.58, \"width\": 750, \"height\": 651, \"sizeInBytes\": 671577}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_undefined_37_e1ea656d1f.png\", \"hash\": \"thumbnail_undefined_37_e1ea656d1f\", \"mime\": \"image/png\", \"name\": \"thumbnail_undefined (37).png\", \"path\": null, \"size\": 53.39, \"width\": 180, \"height\": 156, \"sizeInBytes\": 53393}}','undefined_37_e1ea656d1f','.png','image/png',160.22,'https://d1i031whgqu7f4.cloudfront.net/undefined_37_e1ea656d1f.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/5/10/31','2026-03-12 09:43:32.140000','2026-03-12 09:43:32.140000','2026-03-12 09:43:32.140000',1,1,NULL),(313,'vbgaz3uxk6bgd9sc9fif01i3','automotive-service.png',NULL,NULL,310,545,'{\"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_automotive_service_fcf2cca92f.png\", \"hash\": \"small_automotive_service_fcf2cca92f\", \"mime\": \"image/png\", \"name\": \"small_automotive-service.png\", \"path\": null, \"size\": 330.47, \"width\": 284, \"height\": 500, \"sizeInBytes\": 330465}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_automotive_service_fcf2cca92f.png\", \"hash\": \"thumbnail_automotive_service_fcf2cca92f\", \"mime\": \"image/png\", \"name\": \"thumbnail_automotive-service.png\", \"path\": null, \"size\": 38.87, \"width\": 89, \"height\": 156, \"sizeInBytes\": 38869}}','automotive_service_fcf2cca92f','.png','image/png',87.75,'https://d1i031whgqu7f4.cloudfront.net/automotive_service_fcf2cca92f.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/14','2026-03-12 10:13:59.890000','2026-03-12 10:13:59.890000','2026-03-12 10:13:59.890000',1,1,NULL),(314,'zahip9jjwljq16q13p3xy4pg','power-tools-service.png',NULL,NULL,310,545,'{\"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_power_tools_service_c664c0fbfb.png\", \"hash\": \"small_power_tools_service_c664c0fbfb\", \"mime\": \"image/png\", \"name\": \"small_power-tools-service.png\", \"path\": null, \"size\": 310.72, \"width\": 284, \"height\": 500, \"sizeInBytes\": 310717}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_power_tools_service_c664c0fbfb.png\", \"hash\": \"thumbnail_power_tools_service_c664c0fbfb\", \"mime\": \"image/png\", \"name\": \"thumbnail_power-tools-service.png\", \"path\": null, \"size\": 38.13, \"width\": 89, \"height\": 156, \"sizeInBytes\": 38125}}','power_tools_service_c664c0fbfb','.png','image/png',84.59,'https://d1i031whgqu7f4.cloudfront.net/power_tools_service_c664c0fbfb.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/14','2026-03-12 10:13:59.921000','2026-03-12 10:13:59.921000','2026-03-12 10:13:59.921000',1,1,NULL),(315,'w8fm7dprgnw337go2eimiocd','4e4bac31-da71-4351-9d04-96fd1baf445d.png',NULL,NULL,406,330,'{\"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_4e4bac31_da71_4351_9d04_96fd1baf445d_477b7b405e.png\", \"hash\": \"thumbnail_4e4bac31_da71_4351_9d04_96fd1baf445d_477b7b405e\", \"mime\": \"image/png\", \"name\": \"thumbnail_4e4bac31-da71-4351-9d04-96fd1baf445d.png\", \"path\": null, \"size\": 74.13, \"width\": 192, \"height\": 156, \"sizeInBytes\": 74125}}','4e4bac31_da71_4351_9d04_96fd1baf445d_477b7b405e','.png','image/png',69.48,'https://d1i031whgqu7f4.cloudfront.net/4e4bac31_da71_4351_9d04_96fd1baf445d_477b7b405e.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/5/10/32','2026-03-12 10:27:22.407000','2026-03-12 10:27:22.407000','2026-03-12 10:27:22.408000',1,1,NULL),(316,'mlynt62w6nj2pmt6un4ca6m7','06d06c5a-6ea4-409f-b598-3a57167152bb.png',NULL,NULL,523,446,'{\"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_06d06c5a_6ea4_409f_b598_3a57167152bb_dcf53dff18.png\", \"hash\": \"small_06d06c5a_6ea4_409f_b598_3a57167152bb_dcf53dff18\", \"mime\": \"image/png\", \"name\": \"small_06d06c5a-6ea4-409f-b598-3a57167152bb.png\", \"path\": null, \"size\": 491.85, \"width\": 500, \"height\": 426, \"sizeInBytes\": 491853}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_06d06c5a_6ea4_409f_b598_3a57167152bb_dcf53dff18.png\", \"hash\": \"thumbnail_06d06c5a_6ea4_409f_b598_3a57167152bb_dcf53dff18\", \"mime\": \"image/png\", \"name\": \"thumbnail_06d06c5a-6ea4-409f-b598-3a57167152bb.png\", \"path\": null, \"size\": 77.66, \"width\": 183, \"height\": 156, \"sizeInBytes\": 77663}}','06d06c5a_6ea4_409f_b598_3a57167152bb_dcf53dff18','.png','image/png',137.35,'https://d1i031whgqu7f4.cloudfront.net/06d06c5a_6ea4_409f_b598_3a57167152bb_dcf53dff18.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/5/10/32','2026-03-12 10:35:32.132000','2026-03-12 10:35:32.132000','2026-03-12 10:35:32.133000',1,1,NULL),(317,'i02y2afre8t29asjsmupulq6','038d4f75-cbf5-4b0f-a6c1-034ccdd49033.png',NULL,NULL,545,471,'{\"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_038d4f75_cbf5_4b0f_a6c1_034ccdd49033_276e34be0a.png\", \"hash\": \"small_038d4f75_cbf5_4b0f_a6c1_034ccdd49033_276e34be0a\", \"mime\": \"image/png\", \"name\": \"small_038d4f75-cbf5-4b0f-a6c1-034ccdd49033.png\", \"path\": null, \"size\": 350.99, \"width\": 500, \"height\": 432, \"sizeInBytes\": 350989}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_038d4f75_cbf5_4b0f_a6c1_034ccdd49033_276e34be0a.png\", \"hash\": \"thumbnail_038d4f75_cbf5_4b0f_a6c1_034ccdd49033_276e34be0a\", \"mime\": \"image/png\", \"name\": \"thumbnail_038d4f75-cbf5-4b0f-a6c1-034ccdd49033.png\", \"path\": null, \"size\": 59.42, \"width\": 181, \"height\": 156, \"sizeInBytes\": 59415}}','038d4f75_cbf5_4b0f_a6c1_034ccdd49033_276e34be0a','.png','image/png',97.34,'https://d1i031whgqu7f4.cloudfront.net/038d4f75_cbf5_4b0f_a6c1_034ccdd49033_276e34be0a.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/5/10/32','2026-03-12 10:41:39.187000','2026-03-12 10:41:39.187000','2026-03-12 10:41:39.187000',1,1,NULL),(318,'jqiz562kdsuo5b37dax6nhc0','247fd5bd-3172-45d3-a8aa-b3909d44d103.png',NULL,NULL,513,542,'{\"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_247fd5bd_3172_45d3_a8aa_b3909d44d103_7e94e64aa3.png\", \"hash\": \"small_247fd5bd_3172_45d3_a8aa_b3909d44d103_7e94e64aa3\", \"mime\": \"image/png\", \"name\": \"small_247fd5bd-3172-45d3-a8aa-b3909d44d103.png\", \"path\": null, \"size\": 440.53, \"width\": 473, \"height\": 500, \"sizeInBytes\": 440528}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_247fd5bd_3172_45d3_a8aa_b3909d44d103_7e94e64aa3.png\", \"hash\": \"thumbnail_247fd5bd_3172_45d3_a8aa_b3909d44d103_7e94e64aa3\", \"mime\": \"image/png\", \"name\": \"thumbnail_247fd5bd-3172-45d3-a8aa-b3909d44d103.png\", \"path\": null, \"size\": 57.88, \"width\": 148, \"height\": 156, \"sizeInBytes\": 57878}}','247fd5bd_3172_45d3_a8aa_b3909d44d103_7e94e64aa3','.png','image/png',135.28,'https://d1i031whgqu7f4.cloudfront.net/247fd5bd_3172_45d3_a8aa_b3909d44d103_7e94e64aa3.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/5/10/32','2026-03-12 10:43:21.685000','2026-03-12 10:43:21.685000','2026-03-12 10:43:21.686000',1,1,NULL),(319,'egujflw03vye1erncuohzwcx','8943868f-35fa-4c3f-9f86-0e5a0abc5593.png',NULL,NULL,549,446,'{\"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_8943868f_35fa_4c3f_9f86_0e5a0abc5593_411b507e1b.png\", \"hash\": \"small_8943868f_35fa_4c3f_9f86_0e5a0abc5593_411b507e1b\", \"mime\": \"image/png\", \"name\": \"small_8943868f-35fa-4c3f-9f86-0e5a0abc5593.png\", \"path\": null, \"size\": 403.64, \"width\": 500, \"height\": 406, \"sizeInBytes\": 403640}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_8943868f_35fa_4c3f_9f86_0e5a0abc5593_411b507e1b.png\", \"hash\": \"thumbnail_8943868f_35fa_4c3f_9f86_0e5a0abc5593_411b507e1b\", \"mime\": \"image/png\", \"name\": \"thumbnail_8943868f-35fa-4c3f-9f86-0e5a0abc5593.png\", \"path\": null, \"size\": 73.25, \"width\": 192, \"height\": 156, \"sizeInBytes\": 73249}}','8943868f_35fa_4c3f_9f86_0e5a0abc5593_411b507e1b','.png','image/png',121.35,'https://d1i031whgqu7f4.cloudfront.net/8943868f_35fa_4c3f_9f86_0e5a0abc5593_411b507e1b.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/5/10/32','2026-03-12 10:45:06.431000','2026-03-12 10:45:06.431000','2026-03-12 10:45:06.432000',1,1,NULL),(320,'r5byk1udn588kwh7e807b276','c19a8ea0-c430-4e50-8556-14dab92f3cdf.png',NULL,NULL,1104,662,'{\"large\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/large_c19a8ea0_c430_4e50_8556_14dab92f3cdf_56693fb178.png\", \"hash\": \"large_c19a8ea0_c430_4e50_8556_14dab92f3cdf_56693fb178\", \"mime\": \"image/png\", \"name\": \"large_c19a8ea0-c430-4e50-8556-14dab92f3cdf.png\", \"path\": null, \"size\": 854, \"width\": 1000, \"height\": 600, \"sizeInBytes\": 854001}, \"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_c19a8ea0_c430_4e50_8556_14dab92f3cdf_56693fb178.png\", \"hash\": \"small_c19a8ea0_c430_4e50_8556_14dab92f3cdf_56693fb178\", \"mime\": \"image/png\", \"name\": \"small_c19a8ea0-c430-4e50-8556-14dab92f3cdf.png\", \"path\": null, \"size\": 251.96, \"width\": 500, \"height\": 300, \"sizeInBytes\": 251962}, \"medium\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_c19a8ea0_c430_4e50_8556_14dab92f3cdf_56693fb178.png\", \"hash\": \"medium_c19a8ea0_c430_4e50_8556_14dab92f3cdf_56693fb178\", \"mime\": \"image/png\", \"name\": \"medium_c19a8ea0-c430-4e50-8556-14dab92f3cdf.png\", \"path\": null, \"size\": 516.83, \"width\": 750, \"height\": 450, \"sizeInBytes\": 516834}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_c19a8ea0_c430_4e50_8556_14dab92f3cdf_56693fb178.png\", \"hash\": \"thumbnail_c19a8ea0_c430_4e50_8556_14dab92f3cdf_56693fb178\", \"mime\": \"image/png\", \"name\": \"thumbnail_c19a8ea0-c430-4e50-8556-14dab92f3cdf.png\", \"path\": null, \"size\": 72.85, \"width\": 245, \"height\": 147, \"sizeInBytes\": 72847}}','c19a8ea0_c430_4e50_8556_14dab92f3cdf_56693fb178','.png','image/png',231.85,'https://d1i031whgqu7f4.cloudfront.net/c19a8ea0_c430_4e50_8556_14dab92f3cdf_56693fb178.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/5/10/32','2026-03-12 11:09:44.282000','2026-03-12 11:09:44.282000','2026-03-12 11:09:44.283000',1,1,NULL),(321,'q1owrqa9kk4donm5a9f0xc70','aadab3f4-1969-4cba-826a-b900a1d7e047.png',NULL,NULL,1218,683,'{\"large\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/large_aadab3f4_1969_4cba_826a_b900a1d7e047_8a6ed6d5e1.png\", \"hash\": \"large_aadab3f4_1969_4cba_826a_b900a1d7e047_8a6ed6d5e1\", \"mime\": \"image/png\", \"name\": \"large_aadab3f4-1969-4cba-826a-b900a1d7e047.png\", \"path\": null, \"size\": 1074.7, \"width\": 1000, \"height\": 561, \"sizeInBytes\": 1074702}, \"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_aadab3f4_1969_4cba_826a_b900a1d7e047_8a6ed6d5e1.png\", \"hash\": \"small_aadab3f4_1969_4cba_826a_b900a1d7e047_8a6ed6d5e1\", \"mime\": \"image/png\", \"name\": \"small_aadab3f4-1969-4cba-826a-b900a1d7e047.png\", \"path\": null, \"size\": 293.25, \"width\": 500, \"height\": 280, \"sizeInBytes\": 293253}, \"medium\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_aadab3f4_1969_4cba_826a_b900a1d7e047_8a6ed6d5e1.png\", \"hash\": \"medium_aadab3f4_1969_4cba_826a_b900a1d7e047_8a6ed6d5e1\", \"mime\": \"image/png\", \"name\": \"medium_aadab3f4-1969-4cba-826a-b900a1d7e047.png\", \"path\": null, \"size\": 630.17, \"width\": 750, \"height\": 421, \"sizeInBytes\": 630167}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_aadab3f4_1969_4cba_826a_b900a1d7e047_8a6ed6d5e1.png\", \"hash\": \"thumbnail_aadab3f4_1969_4cba_826a_b900a1d7e047_8a6ed6d5e1\", \"mime\": \"image/png\", \"name\": \"thumbnail_aadab3f4-1969-4cba-826a-b900a1d7e047.png\", \"path\": null, \"size\": 78.16, \"width\": 245, \"height\": 137, \"sizeInBytes\": 78163}}','aadab3f4_1969_4cba_826a_b900a1d7e047_8a6ed6d5e1','.png','image/png',404.52,'https://d1i031whgqu7f4.cloudfront.net/aadab3f4_1969_4cba_826a_b900a1d7e047_8a6ed6d5e1.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/5/10/32','2026-03-12 11:12:40.006000','2026-03-12 11:12:40.006000','2026-03-12 11:12:40.006000',1,1,NULL),(322,'mqc9p8trki1h70zq578yofzh','1a1a53f8-c80b-4c26-8fd7-9c1932c6711b.png',NULL,NULL,1162,667,'{\"large\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/large_1a1a53f8_c80b_4c26_8fd7_9c1932c6711b_82ed884939.png\", \"hash\": \"large_1a1a53f8_c80b_4c26_8fd7_9c1932c6711b_82ed884939\", \"mime\": \"image/png\", \"name\": \"large_1a1a53f8-c80b-4c26-8fd7-9c1932c6711b.png\", \"path\": null, \"size\": 1251.72, \"width\": 1000, \"height\": 574, \"sizeInBytes\": 1251724}, \"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_1a1a53f8_c80b_4c26_8fd7_9c1932c6711b_82ed884939.png\", \"hash\": \"small_1a1a53f8_c80b_4c26_8fd7_9c1932c6711b_82ed884939\", \"mime\": \"image/png\", \"name\": \"small_1a1a53f8-c80b-4c26-8fd7-9c1932c6711b.png\", \"path\": null, \"size\": 345.28, \"width\": 500, \"height\": 287, \"sizeInBytes\": 345276}, \"medium\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_1a1a53f8_c80b_4c26_8fd7_9c1932c6711b_82ed884939.png\", \"hash\": \"medium_1a1a53f8_c80b_4c26_8fd7_9c1932c6711b_82ed884939\", \"mime\": \"image/png\", \"name\": \"medium_1a1a53f8-c80b-4c26-8fd7-9c1932c6711b.png\", \"path\": null, \"size\": 736.63, \"width\": 750, \"height\": 431, \"sizeInBytes\": 736629}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_1a1a53f8_c80b_4c26_8fd7_9c1932c6711b_82ed884939.png\", \"hash\": \"thumbnail_1a1a53f8_c80b_4c26_8fd7_9c1932c6711b_82ed884939\", \"mime\": \"image/png\", \"name\": \"thumbnail_1a1a53f8-c80b-4c26-8fd7-9c1932c6711b.png\", \"path\": null, \"size\": 90.35, \"width\": 245, \"height\": 141, \"sizeInBytes\": 90354}}','1a1a53f8_c80b_4c26_8fd7_9c1932c6711b_82ed884939','.png','image/png',405.74,'https://d1i031whgqu7f4.cloudfront.net/1a1a53f8_c80b_4c26_8fd7_9c1932c6711b_82ed884939.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/5/10/32','2026-03-12 11:15:36.600000','2026-03-12 11:15:36.600000','2026-03-12 11:15:36.601000',1,1,NULL),(323,'v5ldpp6awnhjpatyexnh3uzk','undefined (9).png',NULL,NULL,197,44,NULL,'undefined_9_fa7c825b93','.png','image/png',5.77,'https://d1i031whgqu7f4.cloudfront.net/undefined_9_fa7c825b93.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/6','2026-03-13 06:08:13.086000','2026-03-13 06:08:13.086000','2026-03-13 06:08:13.087000',1,1,NULL),(324,'lpztr1xgabcy1kpnv9dir4yb','undefined.jpg',NULL,NULL,200,200,'{\"thumbnail\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_undefined_3fd2c16331.jpg\", \"hash\": \"thumbnail_undefined_3fd2c16331\", \"mime\": \"image/jpeg\", \"name\": \"thumbnail_undefined.jpg\", \"path\": null, \"size\": 3.2, \"width\": 156, \"height\": 156, \"sizeInBytes\": 3197}}','undefined_3fd2c16331','.jpg','image/jpeg',4.52,'https://d1i031whgqu7f4.cloudfront.net/undefined_3fd2c16331.jpg',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/6','2026-03-13 06:08:13.092000','2026-03-13 06:08:13.092000','2026-03-13 06:08:13.092000',1,1,NULL),(325,'f7la7kny6hraxkkrbezu5vfi','undefined (8).png',NULL,NULL,174,100,NULL,'undefined_8_e448d30981','.png','image/png',8.89,'https://d1i031whgqu7f4.cloudfront.net/undefined_8_e448d30981.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/6','2026-03-13 06:08:13.264000','2026-03-13 06:08:13.264000','2026-03-13 06:08:13.264000',1,1,NULL),(326,'sgrzixtqmpvhlg6zla3gspou','Logo.png',NULL,NULL,153,51,NULL,'Logo_5696ddc365','.png','image/png',1.25,'https://d1i031whgqu7f4.cloudfront.net/Logo_5696ddc365.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/6','2026-03-13 06:08:13.364000','2026-03-13 06:08:13.364000','2026-03-13 06:08:13.365000',1,1,NULL),(327,'d2ilbkmqm9i8epmehe5y5y3x','undefined (6).png',NULL,NULL,175,41,NULL,'undefined_6_f5baaa5ad9','.png','image/png',2.53,'https://d1i031whgqu7f4.cloudfront.net/undefined_6_f5baaa5ad9.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/6','2026-03-13 06:08:13.461000','2026-03-13 06:08:13.461000','2026-03-13 06:08:13.461000',1,1,NULL),(328,'spv64z6q4q62ywjzw2yu1pdw','HC-CARGO - Starters, Generators, A_C, Accessories.png',NULL,NULL,200,80,NULL,'HC_CARGO_Starters_Generators_A_C_Accessories_5b1c4c4130','.png','image/png',1.63,'https://d1i031whgqu7f4.cloudfront.net/HC_CARGO_Starters_Generators_A_C_Accessories_5b1c4c4130.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/6','2026-03-13 06:08:13.471000','2026-03-13 06:08:13.471000','2026-03-13 06:08:13.471000',1,1,NULL),(329,'s6ev9p5qbhmx6sjw86es7yuy','undefined (7).png',NULL,NULL,142,141,NULL,'undefined_7_63f11a8e16','.png','image/png',9.65,'https://d1i031whgqu7f4.cloudfront.net/undefined_7_63f11a8e16.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/6','2026-03-13 06:08:13.496000','2026-03-13 06:08:13.496000','2026-03-13 06:08:13.497000',1,1,NULL),(330,'cny3tk2r34cckt0ygges6kh3','undefined (1).png',NULL,NULL,185,125,NULL,'undefined_1_61980c7141','.png','image/png',1.47,'https://d1i031whgqu7f4.cloudfront.net/undefined_1_61980c7141.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/6','2026-03-13 06:08:13.512000','2026-03-13 06:08:13.512000','2026-03-13 06:08:13.513000',1,1,NULL),(331,'f54a275e8i17hk18rrlqpgre','undefined (3).png',NULL,NULL,224,125,NULL,'undefined_3_82502c4d90','.png','image/png',2.55,'https://d1i031whgqu7f4.cloudfront.net/undefined_3_82502c4d90.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/6','2026-03-13 06:08:13.530000','2026-03-13 06:08:13.530000','2026-03-13 06:08:13.530000',1,1,NULL),(332,'h2yicvjzx0ddz38hmulxfx04','undefined (2).png',NULL,NULL,150,72,NULL,'undefined_2_c40908889f','.png','image/png',5.61,'https://d1i031whgqu7f4.cloudfront.net/undefined_2_c40908889f.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/6','2026-03-13 06:08:13.587000','2026-03-13 06:08:13.587000','2026-03-13 06:08:13.587000',1,1,NULL),(333,'oo3lco2h5ymco1k0hpzgqw1a','undefined.png',NULL,NULL,487,94,'{\"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_undefined_9e691477a3.png\", \"hash\": \"thumbnail_undefined_9e691477a3\", \"mime\": \"image/png\", \"name\": \"thumbnail_undefined.png\", \"path\": null, \"size\": 3.83, \"width\": 245, \"height\": 47, \"sizeInBytes\": 3827}}','undefined_9e691477a3','.png','image/png',1.53,'https://d1i031whgqu7f4.cloudfront.net/undefined_9e691477a3.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/6','2026-03-13 06:08:13.695000','2026-03-13 06:08:13.695000','2026-03-13 06:08:13.695000',1,1,NULL),(334,'rb7wp3lwo4xa9dz73aiy77g6','undefined (5).png',NULL,NULL,344,107,'{\"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_undefined_5_1178338f9f.png\", \"hash\": \"thumbnail_undefined_5_1178338f9f\", \"mime\": \"image/png\", \"name\": \"thumbnail_undefined (5).png\", \"path\": null, \"size\": 18.43, \"width\": 245, \"height\": 76, \"sizeInBytes\": 18429}}','undefined_5_1178338f9f','.png','image/png',9.10,'https://d1i031whgqu7f4.cloudfront.net/undefined_5_1178338f9f.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/6','2026-03-13 06:08:13.756000','2026-03-13 06:08:13.756000','2026-03-13 06:08:13.757000',1,1,NULL),(335,'vtezr10b4ywuehgu6fliij2h','undefined (4).png',NULL,NULL,519,161,'{\"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_undefined_4_c77921bb07.png\", \"hash\": \"small_undefined_4_c77921bb07\", \"mime\": \"image/png\", \"name\": \"small_undefined (4).png\", \"path\": null, \"size\": 40.95, \"width\": 500, \"height\": 155, \"sizeInBytes\": 40949}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_undefined_4_c77921bb07.png\", \"hash\": \"thumbnail_undefined_4_c77921bb07\", \"mime\": \"image/png\", \"name\": \"thumbnail_undefined (4).png\", \"path\": null, \"size\": 14.52, \"width\": 245, \"height\": 76, \"sizeInBytes\": 14515}}','undefined_4_c77921bb07','.png','image/png',9.64,'https://d1i031whgqu7f4.cloudfront.net/undefined_4_c77921bb07.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/6','2026-03-13 06:08:13.888000','2026-03-13 06:08:13.888000','2026-03-13 06:08:13.889000',1,1,NULL),(336,'nu36t4upou0tsclbg66p08sg','undefined (6) (1).png',NULL,NULL,175,41,NULL,'undefined_6_1_701ae26de9','.png','image/png',2.16,'https://d1i031whgqu7f4.cloudfront.net/undefined_6_1_701ae26de9.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/2','2026-03-13 09:47:41.195000','2026-03-13 09:47:41.195000','2026-03-13 09:47:41.195000',1,1,NULL),(337,'kqitnfvq546ihomfyvbigqa8','file_example_MP4_1920_18MG.mp4',NULL,NULL,NULL,NULL,NULL,'file_example_MP_4_1920_18_MG_b1b358c50f','.mp4','video/mp4',17839.85,'https://d1i031whgqu7f4.cloudfront.net/file_example_MP_4_1920_18_MG_b1b358c50f.mp4',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/20','2026-03-13 09:49:09.007000','2026-03-13 09:49:09.007000','2026-03-13 09:49:09.008000',1,1,NULL),(338,'rq2tqhyd9xbiucd0xn12j7nz','undefined (10).png',NULL,NULL,179,47,NULL,'undefined_10_e257931b67','.png','image/png',5.81,'https://d1i031whgqu7f4.cloudfront.net/undefined_10_e257931b67.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/18','2026-03-13 10:46:05.877000','2026-03-13 10:46:05.877000','2026-03-13 10:46:05.878000',1,1,NULL),(339,'kx7pgfac4pbt5y3ktqifpv3o','Tyre Repair.png',NULL,NULL,764,509,'{\"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_Tyre_Repair_1745df8213.png\", \"hash\": \"small_Tyre_Repair_1745df8213\", \"mime\": \"image/png\", \"name\": \"small_Tyre Repair.png\", \"path\": null, \"size\": 377.19, \"width\": 500, \"height\": 333, \"sizeInBytes\": 377191}, \"medium\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_Tyre_Repair_1745df8213.png\", \"hash\": \"medium_Tyre_Repair_1745df8213\", \"mime\": \"image/png\", \"name\": \"medium_Tyre Repair.png\", \"path\": null, \"size\": 788.73, \"width\": 750, \"height\": 500, \"sizeInBytes\": 788728}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Tyre_Repair_1745df8213.png\", \"hash\": \"thumbnail_Tyre_Repair_1745df8213\", \"mime\": \"image/png\", \"name\": \"thumbnail_Tyre Repair.png\", \"path\": null, \"size\": 89.63, \"width\": 234, \"height\": 156, \"sizeInBytes\": 89633}}','Tyre_Repair_1745df8213','.png','image/png',204.94,'https://d1i031whgqu7f4.cloudfront.net/Tyre_Repair_1745df8213.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-03-13 12:12:36.970000','2026-03-13 12:12:36.970000','2026-03-13 12:12:36.971000',1,1,NULL),(340,'rm3us1xrtnnwpubai7oyy3lq','Safer Stops, Safer Streets.png',NULL,NULL,400,500,'{\"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Safer_Stops_Safer_Streets_989b15a7a1.png\", \"hash\": \"thumbnail_Safer_Stops_Safer_Streets_989b15a7a1\", \"mime\": \"image/png\", \"name\": \"thumbnail_Safer Stops, Safer Streets.png\", \"path\": null, \"size\": 45, \"width\": 125, \"height\": 156, \"sizeInBytes\": 45003}}','Safer_Stops_Safer_Streets_989b15a7a1','.png','image/png',84.86,'https://d1i031whgqu7f4.cloudfront.net/Safer_Stops_Safer_Streets_989b15a7a1.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-03-13 12:13:48.659000','2026-03-13 12:13:48.659000','2026-03-13 12:13:48.660000',1,1,NULL),(341,'ba7bxsld0z73lofrlfrfynjv','No Sudden Surprises.png',NULL,NULL,400,500,'{\"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_No_Sudden_Surprises_2b8de9f9b5.png\", \"hash\": \"thumbnail_No_Sudden_Surprises_2b8de9f9b5\", \"mime\": \"image/png\", \"name\": \"thumbnail_No Sudden Surprises.png\", \"path\": null, \"size\": 46.53, \"width\": 125, \"height\": 156, \"sizeInBytes\": 46533}}','No_Sudden_Surprises_2b8de9f9b5','.png','image/png',92.19,'https://d1i031whgqu7f4.cloudfront.net/No_Sudden_Surprises_2b8de9f9b5.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-03-13 12:14:06.007000','2026-03-13 12:14:06.007000','2026-03-13 12:14:06.007000',1,1,NULL),(342,'v1rvuly50r1kf4rnq6rlhvi0','Better Driving.png',NULL,NULL,400,500,'{\"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Better_Driving_fa4169b8b4.png\", \"hash\": \"thumbnail_Better_Driving_fa4169b8b4\", \"mime\": \"image/png\", \"name\": \"thumbnail_Better Driving.png\", \"path\": null, \"size\": 44.01, \"width\": 125, \"height\": 156, \"sizeInBytes\": 44010}}','Better_Driving_fa4169b8b4','.png','image/png',85.81,'https://d1i031whgqu7f4.cloudfront.net/Better_Driving_fa4169b8b4.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-03-13 12:14:27.238000','2026-03-13 12:14:27.238000','2026-03-13 12:14:27.239000',1,1,NULL),(343,'v1lnsx10tiypd8lx6g3qe99m','Extend Your Tyre’s Lifespan.png',NULL,NULL,400,500,'{\"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Extend_Your_Tyre_s_Lifespan_492058f479.png\", \"hash\": \"thumbnail_Extend_Your_Tyre_s_Lifespan_492058f479\", \"mime\": \"image/png\", \"name\": \"thumbnail_Extend Your Tyre’s Lifespan.png\", \"path\": null, \"size\": 39.91, \"width\": 125, \"height\": 156, \"sizeInBytes\": 39906}}','Extend_Your_Tyre_s_Lifespan_492058f479','.png','image/png',71.40,'https://d1i031whgqu7f4.cloudfront.net/Extend_Your_Tyre_s_Lifespan_492058f479.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-03-13 12:14:43.694000','2026-03-13 12:14:43.694000','2026-03-13 12:14:43.694000',1,1,NULL),(344,'zm0mba4jaxpyffm4350lgma0','Improve Fuel Efficiency.png',NULL,NULL,400,500,'{\"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Improve_Fuel_Efficiency_78441b2259.png\", \"hash\": \"thumbnail_Improve_Fuel_Efficiency_78441b2259\", \"mime\": \"image/png\", \"name\": \"thumbnail_Improve Fuel Efficiency.png\", \"path\": null, \"size\": 42.54, \"width\": 125, \"height\": 156, \"sizeInBytes\": 42541}}','Improve_Fuel_Efficiency_78441b2259','.png','image/png',76.34,'https://d1i031whgqu7f4.cloudfront.net/Improve_Fuel_Efficiency_78441b2259.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-03-13 12:14:56.118000','2026-03-13 12:14:56.118000','2026-03-13 12:14:56.119000',1,1,NULL),(345,'pathwh0pscgxf8xrc2d3307r','Fewer Repair Shop Visits.png',NULL,NULL,400,500,'{\"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Fewer_Repair_Shop_Visits_956e519cf8.png\", \"hash\": \"thumbnail_Fewer_Repair_Shop_Visits_956e519cf8\", \"mime\": \"image/png\", \"name\": \"thumbnail_Fewer Repair Shop Visits.png\", \"path\": null, \"size\": 51.67, \"width\": 125, \"height\": 156, \"sizeInBytes\": 51672}}','Fewer_Repair_Shop_Visits_956e519cf8','.png','image/png',116.77,'https://d1i031whgqu7f4.cloudfront.net/Fewer_Repair_Shop_Visits_956e519cf8.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-03-13 12:15:11.443000','2026-03-13 12:15:11.443000','2026-03-13 12:15:11.444000',1,1,NULL),(346,'witckwmkmpz9hcgjiuzb3mw8','What To Expect in a Tyre Repair_.png',NULL,NULL,764,509,'{\"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_What_To_Expect_in_a_Tyre_Repair_9b08a63679.png\", \"hash\": \"small_What_To_Expect_in_a_Tyre_Repair_9b08a63679\", \"mime\": \"image/png\", \"name\": \"small_What To Expect in a Tyre Repair_.png\", \"path\": null, \"size\": 371.82, \"width\": 500, \"height\": 333, \"sizeInBytes\": 371818}, \"medium\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_What_To_Expect_in_a_Tyre_Repair_9b08a63679.png\", \"hash\": \"medium_What_To_Expect_in_a_Tyre_Repair_9b08a63679\", \"mime\": \"image/png\", \"name\": \"medium_What To Expect in a Tyre Repair_.png\", \"path\": null, \"size\": 746.31, \"width\": 750, \"height\": 500, \"sizeInBytes\": 746312}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_What_To_Expect_in_a_Tyre_Repair_9b08a63679.png\", \"hash\": \"thumbnail_What_To_Expect_in_a_Tyre_Repair_9b08a63679\", \"mime\": \"image/png\", \"name\": \"thumbnail_What To Expect in a Tyre Repair_.png\", \"path\": null, \"size\": 92.68, \"width\": 234, \"height\": 156, \"sizeInBytes\": 92682}}','What_To_Expect_in_a_Tyre_Repair_9b08a63679','.png','image/png',203.33,'https://d1i031whgqu7f4.cloudfront.net/What_To_Expect_in_a_Tyre_Repair_9b08a63679.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-03-13 12:16:05.942000','2026-03-13 12:16:05.942000','2026-03-13 12:16:05.943000',1,1,NULL),(347,'hmzsc91sc0xah22c9g2i01zh','Why Choose CME for Tyre Repairing_.png',NULL,NULL,764,509,'{\"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_Why_Choose_CME_for_Tyre_Repairing_2346d52279.png\", \"hash\": \"small_Why_Choose_CME_for_Tyre_Repairing_2346d52279\", \"mime\": \"image/png\", \"name\": \"small_Why Choose CME for Tyre Repairing_.png\", \"path\": null, \"size\": 371.89, \"width\": 500, \"height\": 333, \"sizeInBytes\": 371890}, \"medium\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_Why_Choose_CME_for_Tyre_Repairing_2346d52279.png\", \"hash\": \"medium_Why_Choose_CME_for_Tyre_Repairing_2346d52279\", \"mime\": \"image/png\", \"name\": \"medium_Why Choose CME for Tyre Repairing_.png\", \"path\": null, \"size\": 746.42, \"width\": 750, \"height\": 500, \"sizeInBytes\": 746418}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Why_Choose_CME_for_Tyre_Repairing_2346d52279.png\", \"hash\": \"thumbnail_Why_Choose_CME_for_Tyre_Repairing_2346d52279\", \"mime\": \"image/png\", \"name\": \"thumbnail_Why Choose CME for Tyre Repairing_.png\", \"path\": null, \"size\": 93.33, \"width\": 234, \"height\": 156, \"sizeInBytes\": 93327}}','Why_Choose_CME_for_Tyre_Repairing_2346d52279','.png','image/png',194.71,'https://d1i031whgqu7f4.cloudfront.net/Why_Choose_CME_for_Tyre_Repairing_2346d52279.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-03-13 12:16:18.976000','2026-03-13 12:16:18.976000','2026-03-13 12:16:18.976000',1,1,NULL),(348,'vflzdqza2pzf7weaa87a3vvs','Banners.jpg',NULL,NULL,1920,532,'{\"large\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/large_Banners_5e69c2a374.jpg\", \"hash\": \"large_Banners_5e69c2a374\", \"mime\": \"image/jpeg\", \"name\": \"large_Banners.jpg\", \"path\": null, \"size\": 30.88, \"width\": 1000, \"height\": 277, \"sizeInBytes\": 30875}, \"small\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_Banners_5e69c2a374.jpg\", \"hash\": \"small_Banners_5e69c2a374\", \"mime\": \"image/jpeg\", \"name\": \"small_Banners.jpg\", \"path\": null, \"size\": 10.2, \"width\": 500, \"height\": 139, \"sizeInBytes\": 10201}, \"medium\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_Banners_5e69c2a374.jpg\", \"hash\": \"medium_Banners_5e69c2a374\", \"mime\": \"image/jpeg\", \"name\": \"medium_Banners.jpg\", \"path\": null, \"size\": 19.48, \"width\": 750, \"height\": 208, \"sizeInBytes\": 19475}, \"thumbnail\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Banners_5e69c2a374.jpg\", \"hash\": \"thumbnail_Banners_5e69c2a374\", \"mime\": \"image/jpeg\", \"name\": \"thumbnail_Banners.jpg\", \"path\": null, \"size\": 3.54, \"width\": 245, \"height\": 68, \"sizeInBytes\": 3543}}','Banners_5e69c2a374','.jpg','image/jpeg',87.26,'https://d1i031whgqu7f4.cloudfront.net/Banners_5e69c2a374.jpg',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-03-16 10:05:57.193000','2026-03-16 10:05:57.193000','2026-03-16 10:05:57.194000',1,1,NULL),(349,'mb2rowz4ie0wumettf42ytwy','AA Div Video (For Banner).mp4',NULL,NULL,NULL,NULL,NULL,'AA_Div_Video_For_Banner_025d78a042','.mp4','video/mp4',15501.05,'https://d1i031whgqu7f4.cloudfront.net/AA_Div_Video_For_Banner_025d78a042.mp4',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-03-16 10:33:29.798000','2026-03-16 10:33:29.798000','2026-03-16 10:33:29.798000',1,1,NULL),(350,'kbitndisplk5rcpk69l07ibn','AA Div Video (For Banner).mp4',NULL,NULL,NULL,NULL,NULL,'AA_Div_Video_For_Banner_95f9326908','.mp4','video/mp4',15501.05,'https://d1i031whgqu7f4.cloudfront.net/AA_Div_Video_For_Banner_95f9326908.mp4',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-03-16 10:36:32.564000','2026-03-16 10:36:32.564000','2026-03-16 10:36:32.564000',1,1,NULL),(351,'tkurxlq68qgeb7pb9ozx1xmy','Power tools Video (For Banner).mp4',NULL,NULL,NULL,NULL,NULL,'Power_tools_Video_For_Banner_ae1415bd21','.mp4','video/mp4',15384.50,'https://d1i031whgqu7f4.cloudfront.net/Power_tools_Video_For_Banner_ae1415bd21.mp4',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-03-16 10:51:38.149000','2026-03-16 10:51:38.149000','2026-03-16 10:51:38.149000',1,1,NULL),(352,'bc4ljl5ek4imch48k603ryv2','Tyre Div Video (For Banner).mp4',NULL,NULL,NULL,NULL,NULL,'Tyre_Div_Video_For_Banner_c0806999b5','.mp4','video/mp4',15575.40,'https://d1i031whgqu7f4.cloudfront.net/Tyre_Div_Video_For_Banner_c0806999b5.mp4',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-03-16 10:52:11.016000','2026-03-16 10:52:11.016000','2026-03-16 10:52:11.017000',1,1,NULL),(353,'d04mbqw1fvqsghoy3asivyup','kv_spare_parts_1963x545.jpg',NULL,NULL,1963,545,'{\"large\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/large_kv_spare_parts_1963x545_87da106a10.jpg\", \"hash\": \"large_kv_spare_parts_1963x545_87da106a10\", \"mime\": \"image/jpeg\", \"name\": \"large_kv_spare_parts_1963x545.jpg\", \"path\": null, \"size\": 41.98, \"width\": 1000, \"height\": 278, \"sizeInBytes\": 41983}, \"small\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_kv_spare_parts_1963x545_87da106a10.jpg\", \"hash\": \"small_kv_spare_parts_1963x545_87da106a10\", \"mime\": \"image/jpeg\", \"name\": \"small_kv_spare_parts_1963x545.jpg\", \"path\": null, \"size\": 14.5, \"width\": 500, \"height\": 139, \"sizeInBytes\": 14496}, \"medium\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_kv_spare_parts_1963x545_87da106a10.jpg\", \"hash\": \"medium_kv_spare_parts_1963x545_87da106a10\", \"mime\": \"image/jpeg\", \"name\": \"medium_kv_spare_parts_1963x545.jpg\", \"path\": null, \"size\": 26.57, \"width\": 750, \"height\": 208, \"sizeInBytes\": 26571}, \"thumbnail\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_kv_spare_parts_1963x545_87da106a10.jpg\", \"hash\": \"thumbnail_kv_spare_parts_1963x545_87da106a10\", \"mime\": \"image/jpeg\", \"name\": \"thumbnail_kv_spare_parts_1963x545.jpg\", \"path\": null, \"size\": 4.96, \"width\": 245, \"height\": 68, \"sizeInBytes\": 4959}}','kv_spare_parts_1963x545_87da106a10','.jpg','image/jpeg',132.51,'https://d1i031whgqu7f4.cloudfront.net/kv_spare_parts_1963x545_87da106a10.jpg',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/5/33/34','2026-03-17 06:49:41.959000','2026-03-17 06:49:41.959000','2026-03-17 06:49:41.965000',1,1,NULL),(354,'g8hkluo4rx19y0vz693jousv','kv_online_spare_parts_service_263x148_webp.webp',NULL,NULL,263,148,'{\"thumbnail\": {\"ext\": \".webp\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_kv_online_spare_parts_service_263x148_webp_9d02a41b0f.webp\", \"hash\": \"thumbnail_kv_online_spare_parts_service_263x148_webp_9d02a41b0f\", \"mime\": \"image/webp\", \"name\": \"thumbnail_kv_online_spare_parts_service_263x148_webp.webp\", \"path\": null, \"size\": 5.87, \"width\": 245, \"height\": 138, \"sizeInBytes\": 5866}}','kv_online_spare_parts_service_263x148_webp_9d02a41b0f','.webp','image/webp',8.28,'https://d1i031whgqu7f4.cloudfront.net/kv_online_spare_parts_service_263x148_webp_9d02a41b0f.webp',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/5/33/35','2026-03-17 06:57:27.802000','2026-03-17 06:57:27.802000','2026-03-17 06:57:27.803000',1,1,NULL),(355,'tw7sa5tuhdjh68iqbt50jt3w','o05-a_calibration-service_1920x768_webp.webp',NULL,NULL,1920,768,'{\"large\": {\"ext\": \".webp\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/large_o05_a_calibration_service_1920x768_webp_15930f47d7.webp\", \"hash\": \"large_o05_a_calibration_service_1920x768_webp_15930f47d7\", \"mime\": \"image/webp\", \"name\": \"large_o05-a_calibration-service_1920x768_webp.webp\", \"path\": null, \"size\": 32.28, \"width\": 1000, \"height\": 400, \"sizeInBytes\": 32278}, \"small\": {\"ext\": \".webp\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_o05_a_calibration_service_1920x768_webp_15930f47d7.webp\", \"hash\": \"small_o05_a_calibration_service_1920x768_webp_15930f47d7\", \"mime\": \"image/webp\", \"name\": \"small_o05-a_calibration-service_1920x768_webp.webp\", \"path\": null, \"size\": 12.22, \"width\": 500, \"height\": 200, \"sizeInBytes\": 12218}, \"medium\": {\"ext\": \".webp\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_o05_a_calibration_service_1920x768_webp_15930f47d7.webp\", \"hash\": \"medium_o05_a_calibration_service_1920x768_webp_15930f47d7\", \"mime\": \"image/webp\", \"name\": \"medium_o05-a_calibration-service_1920x768_webp.webp\", \"path\": null, \"size\": 21.77, \"width\": 750, \"height\": 300, \"sizeInBytes\": 21774}, \"thumbnail\": {\"ext\": \".webp\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_o05_a_calibration_service_1920x768_webp_15930f47d7.webp\", \"hash\": \"thumbnail_o05_a_calibration_service_1920x768_webp_15930f47d7\", \"mime\": \"image/webp\", \"name\": \"thumbnail_o05-a_calibration-service_1920x768_webp.webp\", \"path\": null, \"size\": 4.25, \"width\": 245, \"height\": 98, \"sizeInBytes\": 4252}}','o05_a_calibration_service_1920x768_webp_15930f47d7','.webp','image/webp',84.68,'https://d1i031whgqu7f4.cloudfront.net/o05_a_calibration_service_1920x768_webp_15930f47d7.webp',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/5/33/35','2026-03-17 06:57:28.712000','2026-03-17 06:57:28.712000','2026-03-17 06:57:28.712000',1,1,NULL),(356,'by1eszwwadmeow7771nebpqi','air-condition-mobile-mobile.jpg',NULL,NULL,480,389,'{\"thumbnail\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_air_condition_mobile_mobile_36b30f6e60.jpg\", \"hash\": \"thumbnail_air_condition_mobile_mobile_36b30f6e60\", \"mime\": \"image/jpeg\", \"name\": \"thumbnail_air-condition-mobile-mobile.jpg\", \"path\": null, \"size\": 5.83, \"width\": 192, \"height\": 156, \"sizeInBytes\": 5833}}','air_condition_mobile_mobile_36b30f6e60','.jpg','image/jpeg',15.72,'https://d1i031whgqu7f4.cloudfront.net/air_condition_mobile_mobile_36b30f6e60.jpg',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/4/36','2026-03-18 11:26:31.581000','2026-03-18 11:26:31.581000','2026-03-18 11:26:31.584000',1,1,NULL),(357,'rslhrj64fjfa6gs8fxox4vmt','tyre-pressure-gaude-mobile-mobile-mobile-mobile.jpg',NULL,NULL,271,219,'{\"thumbnail\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_tyre_pressure_gaude_mobile_mobile_mobile_mobile_bf3dff8ac3.jpg\", \"hash\": \"thumbnail_tyre_pressure_gaude_mobile_mobile_mobile_mobile_bf3dff8ac3\", \"mime\": \"image/jpeg\", \"name\": \"thumbnail_tyre-pressure-gaude-mobile-mobile-mobile-mobile.jpg\", \"path\": null, \"size\": 7.92, \"width\": 193, \"height\": 156, \"sizeInBytes\": 7919}}','tyre_pressure_gaude_mobile_mobile_mobile_mobile_bf3dff8ac3','.jpg','image/jpeg',11.18,'https://d1i031whgqu7f4.cloudfront.net/tyre_pressure_gaude_mobile_mobile_mobile_mobile_bf3dff8ac3.jpg',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/4/36','2026-03-18 11:26:31.593000','2026-03-18 11:26:31.593000','2026-03-18 11:26:31.595000',1,1,NULL),(358,'kzucayc7n35jwvhkpfrdd84h','fitting-mobile-mobile-mobile.png',NULL,NULL,272,220,'{\"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_fitting_mobile_mobile_mobile_96d252e521.png\", \"hash\": \"thumbnail_fitting_mobile_mobile_mobile_96d252e521\", \"mime\": \"image/png\", \"name\": \"thumbnail_fitting-mobile-mobile-mobile.png\", \"path\": null, \"size\": 76.84, \"width\": 193, \"height\": 156, \"sizeInBytes\": 76837}}','fitting_mobile_mobile_mobile_96d252e521','.png','image/png',34.36,'https://d1i031whgqu7f4.cloudfront.net/fitting_mobile_mobile_mobile_96d252e521.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/4/36','2026-03-18 11:26:31.697000','2026-03-18 11:26:31.697000','2026-03-18 11:26:31.698000',1,1,NULL),(359,'dfkyrxttqr17egwuvad77avk','WhatsApp Image 2026-03-18 at 5.02.24 PM.jpeg',NULL,NULL,1600,900,'{\"large\": {\"ext\": \".jpeg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/large_Whats_App_Image_2026_03_18_at_5_02_24_PM_8aefa97d80.jpeg\", \"hash\": \"large_Whats_App_Image_2026_03_18_at_5_02_24_PM_8aefa97d80\", \"mime\": \"image/jpeg\", \"name\": \"large_WhatsApp Image 2026-03-18 at 5.02.24 PM.jpeg\", \"path\": null, \"size\": 35.96, \"width\": 1000, \"height\": 563, \"sizeInBytes\": 35960}, \"small\": {\"ext\": \".jpeg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_Whats_App_Image_2026_03_18_at_5_02_24_PM_8aefa97d80.jpeg\", \"hash\": \"small_Whats_App_Image_2026_03_18_at_5_02_24_PM_8aefa97d80\", \"mime\": \"image/jpeg\", \"name\": \"small_WhatsApp Image 2026-03-18 at 5.02.24 PM.jpeg\", \"path\": null, \"size\": 13.68, \"width\": 500, \"height\": 281, \"sizeInBytes\": 13681}, \"medium\": {\"ext\": \".jpeg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_Whats_App_Image_2026_03_18_at_5_02_24_PM_8aefa97d80.jpeg\", \"hash\": \"medium_Whats_App_Image_2026_03_18_at_5_02_24_PM_8aefa97d80\", \"mime\": \"image/jpeg\", \"name\": \"medium_WhatsApp Image 2026-03-18 at 5.02.24 PM.jpeg\", \"path\": null, \"size\": 24.47, \"width\": 750, \"height\": 422, \"sizeInBytes\": 24469}, \"thumbnail\": {\"ext\": \".jpeg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Whats_App_Image_2026_03_18_at_5_02_24_PM_8aefa97d80.jpeg\", \"hash\": \"thumbnail_Whats_App_Image_2026_03_18_at_5_02_24_PM_8aefa97d80\", \"mime\": \"image/jpeg\", \"name\": \"thumbnail_WhatsApp Image 2026-03-18 at 5.02.24 PM.jpeg\", \"path\": null, \"size\": 5.1, \"width\": 245, \"height\": 138, \"sizeInBytes\": 5101}}','Whats_App_Image_2026_03_18_at_5_02_24_PM_8aefa97d80','.jpeg','image/jpeg',67.88,'https://d1i031whgqu7f4.cloudfront.net/Whats_App_Image_2026_03_18_at_5_02_24_PM_8aefa97d80.jpeg',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-03-18 11:33:59.576000','2026-03-18 11:33:59.576000','2026-03-18 11:33:59.576000',1,1,NULL),(360,'omxhd0d4flrbfl4lt97lfoxm','Dremel.png',NULL,NULL,240,146,NULL,'Dremel_7927d72d4a','.png','image/png',10.67,'https://d1i031whgqu7f4.cloudfront.net/Dremel_7927d72d4a.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-03-19 05:36:30.779000','2026-03-19 05:36:30.779000','2026-03-19 05:36:30.780000',1,1,NULL),(361,'ysfz5db3sw4x1qsybeoxdb8a','Multitool Accessories.png',NULL,NULL,360,203,'{\"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Multitool_Accessories_1bfc959bbe.png\", \"hash\": \"thumbnail_Multitool_Accessories_1bfc959bbe\", \"mime\": \"image/png\", \"name\": \"thumbnail_Multitool Accessories.png\", \"path\": null, \"size\": 39.56, \"width\": 245, \"height\": 138, \"sizeInBytes\": 39563}}','Multitool_Accessories_1bfc959bbe','.png','image/png',25.92,'https://d1i031whgqu7f4.cloudfront.net/Multitool_Accessories_1bfc959bbe.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-03-19 05:39:24.877000','2026-03-19 05:39:24.877000','2026-03-19 05:39:24.878000',1,1,NULL),(362,'pkwzsbixgb0mcoksxe9izvxb','Frame 1618874283 (2).png',NULL,NULL,1920,532,'{\"large\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/large_Frame_1618874283_2_a95282da9d.png\", \"hash\": \"large_Frame_1618874283_2_a95282da9d\", \"mime\": \"image/png\", \"name\": \"large_Frame 1618874283 (2).png\", \"path\": null, \"size\": 291.21, \"width\": 1000, \"height\": 277, \"sizeInBytes\": 291207}, \"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_Frame_1618874283_2_a95282da9d.png\", \"hash\": \"small_Frame_1618874283_2_a95282da9d\", \"mime\": \"image/png\", \"name\": \"small_Frame 1618874283 (2).png\", \"path\": null, \"size\": 91.21, \"width\": 500, \"height\": 139, \"sizeInBytes\": 91211}, \"medium\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_Frame_1618874283_2_a95282da9d.png\", \"hash\": \"medium_Frame_1618874283_2_a95282da9d\", \"mime\": \"image/png\", \"name\": \"medium_Frame 1618874283 (2).png\", \"path\": null, \"size\": 180.62, \"width\": 750, \"height\": 208, \"sizeInBytes\": 180620}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Frame_1618874283_2_a95282da9d.png\", \"hash\": \"thumbnail_Frame_1618874283_2_a95282da9d\", \"mime\": \"image/png\", \"name\": \"thumbnail_Frame 1618874283 (2).png\", \"path\": null, \"size\": 27.53, \"width\": 245, \"height\": 68, \"sizeInBytes\": 27526}}','Frame_1618874283_2_a95282da9d','.png','image/png',184.52,'https://d1i031whgqu7f4.cloudfront.net/Frame_1618874283_2_a95282da9d.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/19','2026-03-27 12:47:52.194000','2026-03-27 12:47:52.194000','2026-03-27 12:47:52.195000',1,1,NULL),(363,'ldzs92sg4durzr6m0j9qtteb','CME BOSCH DIESEL Car Service - Dubai.jpg',NULL,NULL,6240,4160,'{\"large\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/large_CME_BOSCH_Car_Service_Dubai_2065b47aaf.jpg\", \"hash\": \"large_CME_BOSCH_Car_Service_Dubai_2065b47aaf\", \"mime\": \"image/jpeg\", \"name\": \"large_CME BOSCH Car Service - Dubai.jpg\", \"path\": null, \"size\": 79.06, \"width\": 1000, \"height\": 667, \"sizeInBytes\": 79056}, \"small\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_CME_BOSCH_Car_Service_Dubai_2065b47aaf.jpg\", \"hash\": \"small_CME_BOSCH_Car_Service_Dubai_2065b47aaf\", \"mime\": \"image/jpeg\", \"name\": \"small_CME BOSCH Car Service - Dubai.jpg\", \"path\": null, \"size\": 26.55, \"width\": 500, \"height\": 333, \"sizeInBytes\": 26550}, \"medium\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_CME_BOSCH_Car_Service_Dubai_2065b47aaf.jpg\", \"hash\": \"medium_CME_BOSCH_Car_Service_Dubai_2065b47aaf\", \"mime\": \"image/jpeg\", \"name\": \"medium_CME BOSCH Car Service - Dubai.jpg\", \"path\": null, \"size\": 50.78, \"width\": 750, \"height\": 500, \"sizeInBytes\": 50778}, \"thumbnail\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_CME_BOSCH_Car_Service_Dubai_2065b47aaf.jpg\", \"hash\": \"thumbnail_CME_BOSCH_Car_Service_Dubai_2065b47aaf\", \"mime\": \"image/jpeg\", \"name\": \"thumbnail_CME BOSCH Car Service - Dubai.jpg\", \"path\": null, \"size\": 8.4, \"width\": 234, \"height\": 156, \"sizeInBytes\": 8405}}','CME_BOSCH_Car_Service_Dubai_2065b47aaf','.jpg','image/jpeg',1500.27,'https://d1i031whgqu7f4.cloudfront.net/CME_BOSCH_Car_Service_Dubai_2065b47aaf.jpg',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-03-30 14:20:16.918000','2026-03-30 14:23:00.460000','2026-03-30 14:20:16.918000',1,1,NULL),(364,'igl7ktw9zpzftgrpcls9pwsy','CME Al Qouz Warehouse - Dubai Industrial Area 4.jpg',NULL,NULL,6240,4160,'{\"large\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/large_CME_Al_Qouz_Warehouse_Dubai_Industrial_Area_4_49413f21b6.jpg\", \"hash\": \"large_CME_Al_Qouz_Warehouse_Dubai_Industrial_Area_4_49413f21b6\", \"mime\": \"image/jpeg\", \"name\": \"large_CME Al Qouz Warehouse - Dubai Industrial Area 4.jpg\", \"path\": null, \"size\": 101.35, \"width\": 1000, \"height\": 667, \"sizeInBytes\": 101350}, \"small\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_CME_Al_Qouz_Warehouse_Dubai_Industrial_Area_4_49413f21b6.jpg\", \"hash\": \"small_CME_Al_Qouz_Warehouse_Dubai_Industrial_Area_4_49413f21b6\", \"mime\": \"image/jpeg\", \"name\": \"small_CME Al Qouz Warehouse - Dubai Industrial Area 4.jpg\", \"path\": null, \"size\": 30.76, \"width\": 500, \"height\": 333, \"sizeInBytes\": 30757}, \"medium\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_CME_Al_Qouz_Warehouse_Dubai_Industrial_Area_4_49413f21b6.jpg\", \"hash\": \"medium_CME_Al_Qouz_Warehouse_Dubai_Industrial_Area_4_49413f21b6\", \"mime\": \"image/jpeg\", \"name\": \"medium_CME Al Qouz Warehouse - Dubai Industrial Area 4.jpg\", \"path\": null, \"size\": 63.02, \"width\": 750, \"height\": 500, \"sizeInBytes\": 63024}, \"thumbnail\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_CME_Al_Qouz_Warehouse_Dubai_Industrial_Area_4_49413f21b6.jpg\", \"hash\": \"thumbnail_CME_Al_Qouz_Warehouse_Dubai_Industrial_Area_4_49413f21b6\", \"mime\": \"image/jpeg\", \"name\": \"thumbnail_CME Al Qouz Warehouse - Dubai Industrial Area 4.jpg\", \"path\": null, \"size\": 8.55, \"width\": 234, \"height\": 156, \"sizeInBytes\": 8554}}','CME_Al_Qouz_Warehouse_Dubai_Industrial_Area_4_49413f21b6','.jpg','image/jpeg',2056.55,'https://d1i031whgqu7f4.cloudfront.net/CME_Al_Qouz_Warehouse_Dubai_Industrial_Area_4_49413f21b6.jpg',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-03-30 14:39:39.109000','2026-03-30 14:39:39.109000','2026-03-30 14:39:39.110000',1,1,NULL),(365,'kny7f4kzixspu0k1z97x5k5c','Screenshot 2026-03-30 205803.png',NULL,NULL,549,433,'{\"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_Screenshot_2026_03_30_205803_16c17804f1.png\", \"hash\": \"small_Screenshot_2026_03_30_205803_16c17804f1\", \"mime\": \"image/png\", \"name\": \"small_Screenshot 2026-03-30 205803.png\", \"path\": null, \"size\": 439.45, \"width\": 500, \"height\": 394, \"sizeInBytes\": 439449}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Screenshot_2026_03_30_205803_16c17804f1.png\", \"hash\": \"thumbnail_Screenshot_2026_03_30_205803_16c17804f1\", \"mime\": \"image/png\", \"name\": \"thumbnail_Screenshot 2026-03-30 205803.png\", \"path\": null, \"size\": 82.09, \"width\": 198, \"height\": 156, \"sizeInBytes\": 82088}}','Screenshot_2026_03_30_205803_16c17804f1','.png','image/png',112.68,'https://d1i031whgqu7f4.cloudfront.net/Screenshot_2026_03_30_205803_16c17804f1.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/','2026-03-30 15:30:15.791000','2026-03-30 15:30:15.791000','2026-03-30 15:30:15.791000',1,1,NULL),(366,'zdpla3a93p99p4egdukh9az9','premium-battery.png',NULL,NULL,383,259,'{\"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_premium_battery_e2a2513921.png\", \"hash\": \"thumbnail_premium_battery_e2a2513921\", \"mime\": \"image/png\", \"name\": \"thumbnail_premium-battery.png\", \"path\": null, \"size\": 37.96, \"width\": 231, \"height\": 156, \"sizeInBytes\": 37962}}','premium_battery_e2a2513921','.png','image/png',26.06,'https://d1i031whgqu7f4.cloudfront.net/premium_battery_e2a2513921.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/37','2026-03-30 15:38:30.535000','2026-03-30 15:38:30.535000','2026-03-30 15:38:30.536000',1,1,NULL),(367,'er5akv1rzc6yd1yqnm7tttpv','battery-testing.png',NULL,NULL,327,269,'{\"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_battery_testing_296e106ba6.png\", \"hash\": \"thumbnail_battery_testing_296e106ba6\", \"mime\": \"image/png\", \"name\": \"thumbnail_battery-testing.png\", \"path\": null, \"size\": 78.46, \"width\": 190, \"height\": 156, \"sizeInBytes\": 78458}}','battery_testing_296e106ba6','.png','image/png',58.26,'https://d1i031whgqu7f4.cloudfront.net/battery_testing_296e106ba6.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/37','2026-03-30 15:38:30.746000','2026-03-30 15:38:30.746000','2026-03-30 15:38:30.747000',1,1,NULL),(368,'nn15o4lpifi4qzozvcwud83d','why-choose.png',NULL,NULL,452,370,'{\"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_why_choose_35e5d3b90d.png\", \"hash\": \"thumbnail_why_choose_35e5d3b90d\", \"mime\": \"image/png\", \"name\": \"thumbnail_why-choose.png\", \"path\": null, \"size\": 72.18, \"width\": 191, \"height\": 156, \"sizeInBytes\": 72176}}','why_choose_35e5d3b90d','.png','image/png',73.12,'https://d1i031whgqu7f4.cloudfront.net/why_choose_35e5d3b90d.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/37','2026-03-30 15:38:30.827000','2026-03-30 15:38:30.827000','2026-03-30 15:38:30.827000',1,1,NULL),(369,'kgz151wdaslscor9zvscx0n1','Gemini_Generated_Image_olrvgbolrvgbolrv.png',NULL,NULL,928,1152,'{\"large\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/large_Gemini_Generated_Image_olrvgbolrvgbolrv_87930cddbb.png\", \"hash\": \"large_Gemini_Generated_Image_olrvgbolrvgbolrv_87930cddbb\", \"mime\": \"image/png\", \"name\": \"large_Gemini_Generated_Image_olrvgbolrvgbolrv.png\", \"path\": null, \"size\": 1724.97, \"width\": 806, \"height\": 1000, \"sizeInBytes\": 1724972}, \"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_Gemini_Generated_Image_olrvgbolrvgbolrv_87930cddbb.png\", \"hash\": \"small_Gemini_Generated_Image_olrvgbolrvgbolrv_87930cddbb\", \"mime\": \"image/png\", \"name\": \"small_Gemini_Generated_Image_olrvgbolrvgbolrv.png\", \"path\": null, \"size\": 469.01, \"width\": 403, \"height\": 500, \"sizeInBytes\": 469006}, \"medium\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_Gemini_Generated_Image_olrvgbolrvgbolrv_87930cddbb.png\", \"hash\": \"medium_Gemini_Generated_Image_olrvgbolrvgbolrv_87930cddbb\", \"mime\": \"image/png\", \"name\": \"medium_Gemini_Generated_Image_olrvgbolrvgbolrv.png\", \"path\": null, \"size\": 1004.89, \"width\": 604, \"height\": 750, \"sizeInBytes\": 1004894}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Gemini_Generated_Image_olrvgbolrvgbolrv_87930cddbb.png\", \"hash\": \"thumbnail_Gemini_Generated_Image_olrvgbolrvgbolrv_87930cddbb\", \"mime\": \"image/png\", \"name\": \"thumbnail_Gemini_Generated_Image_olrvgbolrvgbolrv.png\", \"path\": null, \"size\": 53.71, \"width\": 126, \"height\": 156, \"sizeInBytes\": 53712}}','Gemini_Generated_Image_olrvgbolrvgbolrv_87930cddbb','.png','image/png',500.62,'https://d1i031whgqu7f4.cloudfront.net/Gemini_Generated_Image_olrvgbolrvgbolrv_87930cddbb.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/37','2026-03-30 15:54:01.948000','2026-03-30 15:54:01.948000','2026-03-30 15:54:01.948000',1,1,NULL),(370,'twvcfetxe9f13phvg1rutjbq','Gemini_Generated_Image_ko2hafko2hafko2h.png',NULL,NULL,1254,848,'{\"large\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/large_Gemini_Generated_Image_ko2hafko2hafko2h_8ba5c4b649.png\", \"hash\": \"large_Gemini_Generated_Image_ko2hafko2hafko2h_8ba5c4b649\", \"mime\": \"image/png\", \"name\": \"large_Gemini_Generated_Image_ko2hafko2hafko2h.png\", \"path\": null, \"size\": 691.57, \"width\": 1000, \"height\": 676, \"sizeInBytes\": 691570}, \"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_Gemini_Generated_Image_ko2hafko2hafko2h_8ba5c4b649.png\", \"hash\": \"small_Gemini_Generated_Image_ko2hafko2hafko2h_8ba5c4b649\", \"mime\": \"image/png\", \"name\": \"small_Gemini_Generated_Image_ko2hafko2hafko2h.png\", \"path\": null, \"size\": 195.46, \"width\": 500, \"height\": 338, \"sizeInBytes\": 195457}, \"medium\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_Gemini_Generated_Image_ko2hafko2hafko2h_8ba5c4b649.png\", \"hash\": \"medium_Gemini_Generated_Image_ko2hafko2hafko2h_8ba5c4b649\", \"mime\": \"image/png\", \"name\": \"medium_Gemini_Generated_Image_ko2hafko2hafko2h.png\", \"path\": null, \"size\": 406.65, \"width\": 750, \"height\": 507, \"sizeInBytes\": 406645}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Gemini_Generated_Image_ko2hafko2hafko2h_8ba5c4b649.png\", \"hash\": \"thumbnail_Gemini_Generated_Image_ko2hafko2hafko2h_8ba5c4b649\", \"mime\": \"image/png\", \"name\": \"thumbnail_Gemini_Generated_Image_ko2hafko2hafko2h.png\", \"path\": null, \"size\": 49.87, \"width\": 231, \"height\": 156, \"sizeInBytes\": 49872}}','Gemini_Generated_Image_ko2hafko2hafko2h_8ba5c4b649','.png','image/png',268.32,'https://d1i031whgqu7f4.cloudfront.net/Gemini_Generated_Image_ko2hafko2hafko2h_8ba5c4b649.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/37','2026-03-30 15:56:17.023000','2026-03-30 15:56:17.023000','2026-03-30 15:56:17.024000',1,1,NULL),(371,'pq61se13q9lll58f5bcy37h8','Gemini_Generated_Image_31form31form31fo.png',NULL,NULL,928,1152,'{\"large\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/large_Gemini_Generated_Image_31form31form31fo_072b2638e9.png\", \"hash\": \"large_Gemini_Generated_Image_31form31form31fo_072b2638e9\", \"mime\": \"image/png\", \"name\": \"large_Gemini_Generated_Image_31form31form31fo.png\", \"path\": null, \"size\": 373.87, \"width\": 806, \"height\": 1000, \"sizeInBytes\": 373870}, \"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_Gemini_Generated_Image_31form31form31fo_072b2638e9.png\", \"hash\": \"small_Gemini_Generated_Image_31form31form31fo_072b2638e9\", \"mime\": \"image/png\", \"name\": \"small_Gemini_Generated_Image_31form31form31fo.png\", \"path\": null, \"size\": 108.99, \"width\": 403, \"height\": 500, \"sizeInBytes\": 108994}, \"medium\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_Gemini_Generated_Image_31form31form31fo_072b2638e9.png\", \"hash\": \"medium_Gemini_Generated_Image_31form31form31fo_072b2638e9\", \"mime\": \"image/png\", \"name\": \"medium_Gemini_Generated_Image_31form31form31fo.png\", \"path\": null, \"size\": 226.27, \"width\": 604, \"height\": 750, \"sizeInBytes\": 226271}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Gemini_Generated_Image_31form31form31fo_072b2638e9.png\", \"hash\": \"thumbnail_Gemini_Generated_Image_31form31form31fo_072b2638e9\", \"mime\": \"image/png\", \"name\": \"thumbnail_Gemini_Generated_Image_31form31form31fo.png\", \"path\": null, \"size\": 12.79, \"width\": 126, \"height\": 156, \"sizeInBytes\": 12789}}','Gemini_Generated_Image_31form31form31fo_072b2638e9','.png','image/png',163.77,'https://d1i031whgqu7f4.cloudfront.net/Gemini_Generated_Image_31form31form31fo_072b2638e9.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/37','2026-03-30 16:01:09.684000','2026-03-30 16:01:09.684000','2026-03-30 16:01:09.684000',1,1,NULL),(372,'kvv2sho6jkpy0lzue06m0kww','CME BOSCH Car Service - Dubai.jpg',NULL,NULL,6240,4160,'{\"large\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/large_CME_BOSCH_Car_Service_Dubai_1862298fd7.jpg\", \"hash\": \"large_CME_BOSCH_Car_Service_Dubai_1862298fd7\", \"mime\": \"image/jpeg\", \"name\": \"large_CME BOSCH Car Service - Dubai.jpg\", \"path\": null, \"size\": 79.06, \"width\": 1000, \"height\": 667, \"sizeInBytes\": 79056}, \"small\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_CME_BOSCH_Car_Service_Dubai_1862298fd7.jpg\", \"hash\": \"small_CME_BOSCH_Car_Service_Dubai_1862298fd7\", \"mime\": \"image/jpeg\", \"name\": \"small_CME BOSCH Car Service - Dubai.jpg\", \"path\": null, \"size\": 26.55, \"width\": 500, \"height\": 333, \"sizeInBytes\": 26550}, \"medium\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_CME_BOSCH_Car_Service_Dubai_1862298fd7.jpg\", \"hash\": \"medium_CME_BOSCH_Car_Service_Dubai_1862298fd7\", \"mime\": \"image/jpeg\", \"name\": \"medium_CME BOSCH Car Service - Dubai.jpg\", \"path\": null, \"size\": 50.78, \"width\": 750, \"height\": 500, \"sizeInBytes\": 50778}, \"thumbnail\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_CME_BOSCH_Car_Service_Dubai_1862298fd7.jpg\", \"hash\": \"thumbnail_CME_BOSCH_Car_Service_Dubai_1862298fd7\", \"mime\": \"image/jpeg\", \"name\": \"thumbnail_CME BOSCH Car Service - Dubai.jpg\", \"path\": null, \"size\": 8.4, \"width\": 234, \"height\": 156, \"sizeInBytes\": 8405}}','CME_BOSCH_Car_Service_Dubai_1862298fd7','.jpg','image/jpeg',1500.27,'https://d1i031whgqu7f4.cloudfront.net/CME_BOSCH_Car_Service_Dubai_1862298fd7.jpg',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/38/39','2026-03-31 07:17:54.392000','2026-03-31 07:17:54.392000','2026-03-31 07:17:54.392000',1,1,NULL),(373,'h8jqceh50vxrwys6x4u3obku','CME Workshop Test Equipment - Dubai Industrial Area 4.jpg',NULL,NULL,6240,4160,'{\"large\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/large_CME_Workshop_Test_Equipment_Dubai_Industrial_Area_4_cb7270dd11.jpg\", \"hash\": \"large_CME_Workshop_Test_Equipment_Dubai_Industrial_Area_4_cb7270dd11\", \"mime\": \"image/jpeg\", \"name\": \"large_CME Workshop Test Equipment - Dubai Industrial Area 4.jpg\", \"path\": null, \"size\": 69.36, \"width\": 1000, \"height\": 667, \"sizeInBytes\": 69360}, \"small\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_CME_Workshop_Test_Equipment_Dubai_Industrial_Area_4_cb7270dd11.jpg\", \"hash\": \"small_CME_Workshop_Test_Equipment_Dubai_Industrial_Area_4_cb7270dd11\", \"mime\": \"image/jpeg\", \"name\": \"small_CME Workshop Test Equipment - Dubai Industrial Area 4.jpg\", \"path\": null, \"size\": 23.33, \"width\": 500, \"height\": 333, \"sizeInBytes\": 23333}, \"medium\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_CME_Workshop_Test_Equipment_Dubai_Industrial_Area_4_cb7270dd11.jpg\", \"hash\": \"medium_CME_Workshop_Test_Equipment_Dubai_Industrial_Area_4_cb7270dd11\", \"mime\": \"image/jpeg\", \"name\": \"medium_CME Workshop Test Equipment - Dubai Industrial Area 4.jpg\", \"path\": null, \"size\": 44.42, \"width\": 750, \"height\": 500, \"sizeInBytes\": 44419}, \"thumbnail\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_CME_Workshop_Test_Equipment_Dubai_Industrial_Area_4_cb7270dd11.jpg\", \"hash\": \"thumbnail_CME_Workshop_Test_Equipment_Dubai_Industrial_Area_4_cb7270dd11\", \"mime\": \"image/jpeg\", \"name\": \"thumbnail_CME Workshop Test Equipment - Dubai Industrial Area 4.jpg\", \"path\": null, \"size\": 7.51, \"width\": 234, \"height\": 156, \"sizeInBytes\": 7509}}','CME_Workshop_Test_Equipment_Dubai_Industrial_Area_4_cb7270dd11','.jpg','image/jpeg',1534.58,'https://d1i031whgqu7f4.cloudfront.net/CME_Workshop_Test_Equipment_Dubai_Industrial_Area_4_cb7270dd11.jpg',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/38/39','2026-03-31 07:17:54.475000','2026-03-31 07:17:54.475000','2026-03-31 07:17:54.476000',1,1,NULL),(374,'fkcxzwbsewaaqjwgqs596jl1','CME Head Office - Abu Dhabi.jpg',NULL,NULL,6240,4160,'{\"large\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/large_CME_Head_Office_Abu_Dhabi_6e6f5752a2.jpg\", \"hash\": \"large_CME_Head_Office_Abu_Dhabi_6e6f5752a2\", \"mime\": \"image/jpeg\", \"name\": \"large_CME Head Office - Abu Dhabi.jpg\", \"path\": null, \"size\": 97.01, \"width\": 1000, \"height\": 667, \"sizeInBytes\": 97012}, \"small\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_CME_Head_Office_Abu_Dhabi_6e6f5752a2.jpg\", \"hash\": \"small_CME_Head_Office_Abu_Dhabi_6e6f5752a2\", \"mime\": \"image/jpeg\", \"name\": \"small_CME Head Office - Abu Dhabi.jpg\", \"path\": null, \"size\": 31.91, \"width\": 500, \"height\": 333, \"sizeInBytes\": 31907}, \"medium\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_CME_Head_Office_Abu_Dhabi_6e6f5752a2.jpg\", \"hash\": \"medium_CME_Head_Office_Abu_Dhabi_6e6f5752a2\", \"mime\": \"image/jpeg\", \"name\": \"medium_CME Head Office - Abu Dhabi.jpg\", \"path\": null, \"size\": 62.03, \"width\": 750, \"height\": 500, \"sizeInBytes\": 62026}, \"thumbnail\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_CME_Head_Office_Abu_Dhabi_6e6f5752a2.jpg\", \"hash\": \"thumbnail_CME_Head_Office_Abu_Dhabi_6e6f5752a2\", \"mime\": \"image/jpeg\", \"name\": \"thumbnail_CME Head Office - Abu Dhabi.jpg\", \"path\": null, \"size\": 9.3, \"width\": 234, \"height\": 156, \"sizeInBytes\": 9298}}','CME_Head_Office_Abu_Dhabi_6e6f5752a2','.jpg','image/jpeg',1707.99,'https://d1i031whgqu7f4.cloudfront.net/CME_Head_Office_Abu_Dhabi_6e6f5752a2.jpg',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/38/39','2026-03-31 07:17:54.490000','2026-03-31 07:17:54.490000','2026-03-31 07:17:54.491000',1,1,NULL),(375,'bwavimo26cksg40tx7nmw6jn','CME Al Qouz Warehouse - Dubai Industrial Area 4.jpg',NULL,NULL,6240,4160,'{\"large\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/large_CME_Al_Qouz_Warehouse_Dubai_Industrial_Area_4_0203bd2363.jpg\", \"hash\": \"large_CME_Al_Qouz_Warehouse_Dubai_Industrial_Area_4_0203bd2363\", \"mime\": \"image/jpeg\", \"name\": \"large_CME Al Qouz Warehouse - Dubai Industrial Area 4.jpg\", \"path\": null, \"size\": 101.35, \"width\": 1000, \"height\": 667, \"sizeInBytes\": 101350}, \"small\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_CME_Al_Qouz_Warehouse_Dubai_Industrial_Area_4_0203bd2363.jpg\", \"hash\": \"small_CME_Al_Qouz_Warehouse_Dubai_Industrial_Area_4_0203bd2363\", \"mime\": \"image/jpeg\", \"name\": \"small_CME Al Qouz Warehouse - Dubai Industrial Area 4.jpg\", \"path\": null, \"size\": 30.76, \"width\": 500, \"height\": 333, \"sizeInBytes\": 30757}, \"medium\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_CME_Al_Qouz_Warehouse_Dubai_Industrial_Area_4_0203bd2363.jpg\", \"hash\": \"medium_CME_Al_Qouz_Warehouse_Dubai_Industrial_Area_4_0203bd2363\", \"mime\": \"image/jpeg\", \"name\": \"medium_CME Al Qouz Warehouse - Dubai Industrial Area 4.jpg\", \"path\": null, \"size\": 63.02, \"width\": 750, \"height\": 500, \"sizeInBytes\": 63024}, \"thumbnail\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_CME_Al_Qouz_Warehouse_Dubai_Industrial_Area_4_0203bd2363.jpg\", \"hash\": \"thumbnail_CME_Al_Qouz_Warehouse_Dubai_Industrial_Area_4_0203bd2363\", \"mime\": \"image/jpeg\", \"name\": \"thumbnail_CME Al Qouz Warehouse - Dubai Industrial Area 4.jpg\", \"path\": null, \"size\": 8.55, \"width\": 234, \"height\": 156, \"sizeInBytes\": 8554}}','CME_Al_Qouz_Warehouse_Dubai_Industrial_Area_4_0203bd2363','.jpg','image/jpeg',2056.55,'https://d1i031whgqu7f4.cloudfront.net/CME_Al_Qouz_Warehouse_Dubai_Industrial_Area_4_0203bd2363.jpg',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/38/39','2026-03-31 07:17:54.827000','2026-03-31 07:17:54.827000','2026-03-31 07:17:54.827000',1,1,NULL),(376,'q03gbp3kwl6lmrmtqphombce','CME Branch Office - Dubai.jpg',NULL,NULL,6240,4160,'{\"large\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/large_CME_Branch_Office_Dubai_5fc38e6b79.jpg\", \"hash\": \"large_CME_Branch_Office_Dubai_5fc38e6b79\", \"mime\": \"image/jpeg\", \"name\": \"large_CME Branch Office - Dubai.jpg\", \"path\": null, \"size\": 102.75, \"width\": 1000, \"height\": 667, \"sizeInBytes\": 102753}, \"small\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_CME_Branch_Office_Dubai_5fc38e6b79.jpg\", \"hash\": \"small_CME_Branch_Office_Dubai_5fc38e6b79\", \"mime\": \"image/jpeg\", \"name\": \"small_CME Branch Office - Dubai.jpg\", \"path\": null, \"size\": 32.17, \"width\": 500, \"height\": 333, \"sizeInBytes\": 32173}, \"medium\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_CME_Branch_Office_Dubai_5fc38e6b79.jpg\", \"hash\": \"medium_CME_Branch_Office_Dubai_5fc38e6b79\", \"mime\": \"image/jpeg\", \"name\": \"medium_CME Branch Office - Dubai.jpg\", \"path\": null, \"size\": 63.96, \"width\": 750, \"height\": 500, \"sizeInBytes\": 63956}, \"thumbnail\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_CME_Branch_Office_Dubai_5fc38e6b79.jpg\", \"hash\": \"thumbnail_CME_Branch_Office_Dubai_5fc38e6b79\", \"mime\": \"image/jpeg\", \"name\": \"thumbnail_CME Branch Office - Dubai.jpg\", \"path\": null, \"size\": 9.37, \"width\": 234, \"height\": 156, \"sizeInBytes\": 9368}}','CME_Branch_Office_Dubai_5fc38e6b79','.jpg','image/jpeg',2072.29,'https://d1i031whgqu7f4.cloudfront.net/CME_Branch_Office_Dubai_5fc38e6b79.jpg',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/38/39','2026-03-31 07:17:56.496000','2026-03-31 07:17:56.496000','2026-03-31 07:17:56.497000',1,1,NULL),(377,'l1f3w8rfgakcc2q03w2f98q6','CME Sharjah Warehouse.jpg',NULL,NULL,5247,3498,'{\"large\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/large_CME_Sharjah_Warehouse_a72595b77e.jpg\", \"hash\": \"large_CME_Sharjah_Warehouse_a72595b77e\", \"mime\": \"image/jpeg\", \"name\": \"large_CME Sharjah Warehouse.jpg\", \"path\": null, \"size\": 80.64, \"width\": 1000, \"height\": 667, \"sizeInBytes\": 80643}, \"small\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_CME_Sharjah_Warehouse_a72595b77e.jpg\", \"hash\": \"small_CME_Sharjah_Warehouse_a72595b77e\", \"mime\": \"image/jpeg\", \"name\": \"small_CME Sharjah Warehouse.jpg\", \"path\": null, \"size\": 23.19, \"width\": 500, \"height\": 334, \"sizeInBytes\": 23189}, \"medium\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_CME_Sharjah_Warehouse_a72595b77e.jpg\", \"hash\": \"medium_CME_Sharjah_Warehouse_a72595b77e\", \"mime\": \"image/jpeg\", \"name\": \"medium_CME Sharjah Warehouse.jpg\", \"path\": null, \"size\": 48.19, \"width\": 750, \"height\": 500, \"sizeInBytes\": 48194}, \"thumbnail\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_CME_Sharjah_Warehouse_a72595b77e.jpg\", \"hash\": \"thumbnail_CME_Sharjah_Warehouse_a72595b77e\", \"mime\": \"image/jpeg\", \"name\": \"thumbnail_CME Sharjah Warehouse.jpg\", \"path\": null, \"size\": 6.67, \"width\": 234, \"height\": 156, \"sizeInBytes\": 6668}}','CME_Sharjah_Warehouse_a72595b77e','.jpg','image/jpeg',1662.80,'https://d1i031whgqu7f4.cloudfront.net/CME_Sharjah_Warehouse_a72595b77e.jpg',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/38/39','2026-03-31 07:17:57.936000','2026-03-31 07:17:57.936000','2026-03-31 07:17:57.937000',1,1,NULL),(378,'f99jevpcxg29wrn3wvqtmeqf','CME Branch Office - Sharjah.jpg',NULL,NULL,6240,4160,'{\"large\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/large_CME_Branch_Office_Sharjah_0a9cd68706.jpg\", \"hash\": \"large_CME_Branch_Office_Sharjah_0a9cd68706\", \"mime\": \"image/jpeg\", \"name\": \"large_CME Branch Office - Sharjah.jpg\", \"path\": null, \"size\": 94.47, \"width\": 1000, \"height\": 667, \"sizeInBytes\": 94470}, \"small\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_CME_Branch_Office_Sharjah_0a9cd68706.jpg\", \"hash\": \"small_CME_Branch_Office_Sharjah_0a9cd68706\", \"mime\": \"image/jpeg\", \"name\": \"small_CME Branch Office - Sharjah.jpg\", \"path\": null, \"size\": 28.28, \"width\": 500, \"height\": 333, \"sizeInBytes\": 28284}, \"medium\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_CME_Branch_Office_Sharjah_0a9cd68706.jpg\", \"hash\": \"medium_CME_Branch_Office_Sharjah_0a9cd68706\", \"mime\": \"image/jpeg\", \"name\": \"medium_CME Branch Office - Sharjah.jpg\", \"path\": null, \"size\": 57.34, \"width\": 750, \"height\": 500, \"sizeInBytes\": 57341}, \"thumbnail\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_CME_Branch_Office_Sharjah_0a9cd68706.jpg\", \"hash\": \"thumbnail_CME_Branch_Office_Sharjah_0a9cd68706\", \"mime\": \"image/jpeg\", \"name\": \"thumbnail_CME Branch Office - Sharjah.jpg\", \"path\": null, \"size\": 8.37, \"width\": 234, \"height\": 156, \"sizeInBytes\": 8366}}','CME_Branch_Office_Sharjah_0a9cd68706','.jpg','image/jpeg',2373.19,'https://d1i031whgqu7f4.cloudfront.net/CME_Branch_Office_Sharjah_0a9cd68706.jpg',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/38/39','2026-03-31 07:17:58.268000','2026-03-31 07:17:58.268000','2026-03-31 07:17:58.268000',1,1,NULL),(379,'t4hpm94qa5lf2cozkwy9zivw','CME Mussafah Warehouse - Abu Dhabi.jpg',NULL,NULL,9504,6336,'{\"large\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/large_CME_Mussafah_Warehouse_Abu_Dhabi_b055fb9147.jpg\", \"hash\": \"large_CME_Mussafah_Warehouse_Abu_Dhabi_b055fb9147\", \"mime\": \"image/jpeg\", \"name\": \"large_CME Mussafah Warehouse - Abu Dhabi.jpg\", \"path\": null, \"size\": 99.01, \"width\": 1000, \"height\": 667, \"sizeInBytes\": 99005}, \"small\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_CME_Mussafah_Warehouse_Abu_Dhabi_b055fb9147.jpg\", \"hash\": \"small_CME_Mussafah_Warehouse_Abu_Dhabi_b055fb9147\", \"mime\": \"image/jpeg\", \"name\": \"small_CME Mussafah Warehouse - Abu Dhabi.jpg\", \"path\": null, \"size\": 30.89, \"width\": 500, \"height\": 333, \"sizeInBytes\": 30889}, \"medium\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_CME_Mussafah_Warehouse_Abu_Dhabi_b055fb9147.jpg\", \"hash\": \"medium_CME_Mussafah_Warehouse_Abu_Dhabi_b055fb9147\", \"mime\": \"image/jpeg\", \"name\": \"medium_CME Mussafah Warehouse - Abu Dhabi.jpg\", \"path\": null, \"size\": 61.28, \"width\": 750, \"height\": 500, \"sizeInBytes\": 61281}, \"thumbnail\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_CME_Mussafah_Warehouse_Abu_Dhabi_b055fb9147.jpg\", \"hash\": \"thumbnail_CME_Mussafah_Warehouse_Abu_Dhabi_b055fb9147\", \"mime\": \"image/jpeg\", \"name\": \"thumbnail_CME Mussafah Warehouse - Abu Dhabi.jpg\", \"path\": null, \"size\": 8.67, \"width\": 234, \"height\": 156, \"sizeInBytes\": 8673}}','CME_Mussafah_Warehouse_Abu_Dhabi_b055fb9147','.jpg','image/jpeg',5460.97,'https://d1i031whgqu7f4.cloudfront.net/CME_Mussafah_Warehouse_Abu_Dhabi_b055fb9147.jpg',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/38/39','2026-03-31 07:18:01.309000','2026-03-31 07:18:01.309000','2026-03-31 07:18:01.309000',1,1,NULL),(380,'r4m4o6r0cv87fmy8j0w46p3d','CME BOSCH Diesel Service - Dubai.jpg',NULL,NULL,9504,6336,'{\"large\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/large_CME_BOSCH_Diesel_Service_Dubai_7584c2523b.jpg\", \"hash\": \"large_CME_BOSCH_Diesel_Service_Dubai_7584c2523b\", \"mime\": \"image/jpeg\", \"name\": \"large_CME BOSCH Diesel Service - Dubai.jpg\", \"path\": null, \"size\": 82.06, \"width\": 1000, \"height\": 667, \"sizeInBytes\": 82064}, \"small\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_CME_BOSCH_Diesel_Service_Dubai_7584c2523b.jpg\", \"hash\": \"small_CME_BOSCH_Diesel_Service_Dubai_7584c2523b\", \"mime\": \"image/jpeg\", \"name\": \"small_CME BOSCH Diesel Service - Dubai.jpg\", \"path\": null, \"size\": 28.52, \"width\": 500, \"height\": 333, \"sizeInBytes\": 28520}, \"medium\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_CME_BOSCH_Diesel_Service_Dubai_7584c2523b.jpg\", \"hash\": \"medium_CME_BOSCH_Diesel_Service_Dubai_7584c2523b\", \"mime\": \"image/jpeg\", \"name\": \"medium_CME BOSCH Diesel Service - Dubai.jpg\", \"path\": null, \"size\": 53.78, \"width\": 750, \"height\": 500, \"sizeInBytes\": 53781}, \"thumbnail\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_CME_BOSCH_Diesel_Service_Dubai_7584c2523b.jpg\", \"hash\": \"thumbnail_CME_BOSCH_Diesel_Service_Dubai_7584c2523b\", \"mime\": \"image/jpeg\", \"name\": \"thumbnail_CME BOSCH Diesel Service - Dubai.jpg\", \"path\": null, \"size\": 8.68, \"width\": 234, \"height\": 156, \"sizeInBytes\": 8676}}','CME_BOSCH_Diesel_Service_Dubai_7584c2523b','.jpg','image/jpeg',3635.59,'https://d1i031whgqu7f4.cloudfront.net/CME_BOSCH_Diesel_Service_Dubai_7584c2523b.jpg',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/38/39','2026-03-31 07:18:01.354000','2026-03-31 07:18:01.354000','2026-03-31 07:18:01.354000',1,1,NULL),(381,'dnxh6077hh5d9tzmdmehoe8g','Al Qouz Dubai Location Warehouse.jpeg',NULL,NULL,1080,900,'{\"large\": {\"ext\": \".jpeg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/large_Al_Qouz_Dubai_Location_Warehouse_35abce8400.jpeg\", \"hash\": \"large_Al_Qouz_Dubai_Location_Warehouse_35abce8400\", \"mime\": \"image/jpeg\", \"name\": \"large_Al Qouz Dubai Location Warehouse.jpeg\", \"path\": null, \"size\": 135.82, \"width\": 1000, \"height\": 833, \"sizeInBytes\": 135820}, \"small\": {\"ext\": \".jpeg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_Al_Qouz_Dubai_Location_Warehouse_35abce8400.jpeg\", \"hash\": \"small_Al_Qouz_Dubai_Location_Warehouse_35abce8400\", \"mime\": \"image/jpeg\", \"name\": \"small_Al Qouz Dubai Location Warehouse.jpeg\", \"path\": null, \"size\": 42.77, \"width\": 500, \"height\": 417, \"sizeInBytes\": 42774}, \"medium\": {\"ext\": \".jpeg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_Al_Qouz_Dubai_Location_Warehouse_35abce8400.jpeg\", \"hash\": \"medium_Al_Qouz_Dubai_Location_Warehouse_35abce8400\", \"mime\": \"image/jpeg\", \"name\": \"medium_Al Qouz Dubai Location Warehouse.jpeg\", \"path\": null, \"size\": 84.9, \"width\": 750, \"height\": 625, \"sizeInBytes\": 84895}, \"thumbnail\": {\"ext\": \".jpeg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Al_Qouz_Dubai_Location_Warehouse_35abce8400.jpeg\", \"hash\": \"thumbnail_Al_Qouz_Dubai_Location_Warehouse_35abce8400\", \"mime\": \"image/jpeg\", \"name\": \"thumbnail_Al Qouz Dubai Location Warehouse.jpeg\", \"path\": null, \"size\": 7.79, \"width\": 187, \"height\": 156, \"sizeInBytes\": 7792}}','Al_Qouz_Dubai_Location_Warehouse_35abce8400','.jpeg','image/jpeg',154.29,'https://d1i031whgqu7f4.cloudfront.net/Al_Qouz_Dubai_Location_Warehouse_35abce8400.jpeg',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/38/40','2026-03-31 07:18:36.363000','2026-03-31 07:18:36.363000','2026-03-31 07:18:36.364000',1,1,NULL),(382,'cq8exhq2zupr8ez6dcyc2it7','Service Location Entrance.jpeg',NULL,NULL,1080,900,'{\"large\": {\"ext\": \".jpeg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/large_Service_Location_Entrance_0d91833bb1.jpeg\", \"hash\": \"large_Service_Location_Entrance_0d91833bb1\", \"mime\": \"image/jpeg\", \"name\": \"large_Service Location Entrance.jpeg\", \"path\": null, \"size\": 136.13, \"width\": 1000, \"height\": 833, \"sizeInBytes\": 136134}, \"small\": {\"ext\": \".jpeg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_Service_Location_Entrance_0d91833bb1.jpeg\", \"hash\": \"small_Service_Location_Entrance_0d91833bb1\", \"mime\": \"image/jpeg\", \"name\": \"small_Service Location Entrance.jpeg\", \"path\": null, \"size\": 39.27, \"width\": 500, \"height\": 417, \"sizeInBytes\": 39265}, \"medium\": {\"ext\": \".jpeg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_Service_Location_Entrance_0d91833bb1.jpeg\", \"hash\": \"medium_Service_Location_Entrance_0d91833bb1\", \"mime\": \"image/jpeg\", \"name\": \"medium_Service Location Entrance.jpeg\", \"path\": null, \"size\": 81.77, \"width\": 750, \"height\": 625, \"sizeInBytes\": 81773}, \"thumbnail\": {\"ext\": \".jpeg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Service_Location_Entrance_0d91833bb1.jpeg\", \"hash\": \"thumbnail_Service_Location_Entrance_0d91833bb1\", \"mime\": \"image/jpeg\", \"name\": \"thumbnail_Service Location Entrance.jpeg\", \"path\": null, \"size\": 7.33, \"width\": 187, \"height\": 156, \"sizeInBytes\": 7333}}','Service_Location_Entrance_0d91833bb1','.jpeg','image/jpeg',157.72,'https://d1i031whgqu7f4.cloudfront.net/Service_Location_Entrance_0d91833bb1.jpeg',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/38/40','2026-03-31 07:18:37.380000','2026-03-31 07:18:37.380000','2026-03-31 07:18:37.380000',1,1,NULL),(383,'w805pmb3wfa5wn1n82b8g5cc','CME Branch Office - Dubai.jpg',NULL,NULL,6240,4160,'{\"large\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/large_CME_Branch_Office_Dubai_1bedfeb953.jpg\", \"hash\": \"large_CME_Branch_Office_Dubai_1bedfeb953\", \"mime\": \"image/jpeg\", \"name\": \"large_CME Branch Office - Dubai.jpg\", \"path\": null, \"size\": 102.75, \"width\": 1000, \"height\": 667, \"sizeInBytes\": 102753}, \"small\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_CME_Branch_Office_Dubai_1bedfeb953.jpg\", \"hash\": \"small_CME_Branch_Office_Dubai_1bedfeb953\", \"mime\": \"image/jpeg\", \"name\": \"small_CME Branch Office - Dubai.jpg\", \"path\": null, \"size\": 32.17, \"width\": 500, \"height\": 333, \"sizeInBytes\": 32173}, \"medium\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_CME_Branch_Office_Dubai_1bedfeb953.jpg\", \"hash\": \"medium_CME_Branch_Office_Dubai_1bedfeb953\", \"mime\": \"image/jpeg\", \"name\": \"medium_CME Branch Office - Dubai.jpg\", \"path\": null, \"size\": 63.96, \"width\": 750, \"height\": 500, \"sizeInBytes\": 63956}, \"thumbnail\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_CME_Branch_Office_Dubai_1bedfeb953.jpg\", \"hash\": \"thumbnail_CME_Branch_Office_Dubai_1bedfeb953\", \"mime\": \"image/jpeg\", \"name\": \"thumbnail_CME Branch Office - Dubai.jpg\", \"path\": null, \"size\": 9.37, \"width\": 234, \"height\": 156, \"sizeInBytes\": 9368}}','CME_Branch_Office_Dubai_1bedfeb953','.jpg','image/jpeg',2072.29,'https://d1i031whgqu7f4.cloudfront.net/CME_Branch_Office_Dubai_1bedfeb953.jpg',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/38/40','2026-03-31 07:18:39.891000','2026-03-31 07:18:39.891000','2026-03-31 07:18:39.892000',1,1,NULL),(384,'u987yppg3do460pn0d2n1rvc','CME Head Office - Abu Dhabi.jpg',NULL,NULL,6240,4160,'{\"large\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/large_CME_Head_Office_Abu_Dhabi_061855e4a5.jpg\", \"hash\": \"large_CME_Head_Office_Abu_Dhabi_061855e4a5\", \"mime\": \"image/jpeg\", \"name\": \"large_CME Head Office - Abu Dhabi.jpg\", \"path\": null, \"size\": 97.01, \"width\": 1000, \"height\": 667, \"sizeInBytes\": 97012}, \"small\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_CME_Head_Office_Abu_Dhabi_061855e4a5.jpg\", \"hash\": \"small_CME_Head_Office_Abu_Dhabi_061855e4a5\", \"mime\": \"image/jpeg\", \"name\": \"small_CME Head Office - Abu Dhabi.jpg\", \"path\": null, \"size\": 31.91, \"width\": 500, \"height\": 333, \"sizeInBytes\": 31907}, \"medium\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_CME_Head_Office_Abu_Dhabi_061855e4a5.jpg\", \"hash\": \"medium_CME_Head_Office_Abu_Dhabi_061855e4a5\", \"mime\": \"image/jpeg\", \"name\": \"medium_CME Head Office - Abu Dhabi.jpg\", \"path\": null, \"size\": 62.03, \"width\": 750, \"height\": 500, \"sizeInBytes\": 62026}, \"thumbnail\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_CME_Head_Office_Abu_Dhabi_061855e4a5.jpg\", \"hash\": \"thumbnail_CME_Head_Office_Abu_Dhabi_061855e4a5\", \"mime\": \"image/jpeg\", \"name\": \"thumbnail_CME Head Office - Abu Dhabi.jpg\", \"path\": null, \"size\": 9.3, \"width\": 234, \"height\": 156, \"sizeInBytes\": 9298}}','CME_Head_Office_Abu_Dhabi_061855e4a5','.jpg','image/jpeg',1707.99,'https://d1i031whgqu7f4.cloudfront.net/CME_Head_Office_Abu_Dhabi_061855e4a5.jpg',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/38/40','2026-03-31 07:18:43.588000','2026-03-31 07:18:43.588000','2026-03-31 07:18:43.589000',1,1,NULL),(385,'k6ttu5s4rs6w6i8ed2nq7pl0','CME Branch Office - Sharjah.jpg',NULL,NULL,6240,4160,'{\"large\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/large_CME_Branch_Office_Sharjah_a03787bcd4.jpg\", \"hash\": \"large_CME_Branch_Office_Sharjah_a03787bcd4\", \"mime\": \"image/jpeg\", \"name\": \"large_CME Branch Office - Sharjah.jpg\", \"path\": null, \"size\": 97.11, \"width\": 1000, \"height\": 667, \"sizeInBytes\": 97108}, \"small\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_CME_Branch_Office_Sharjah_a03787bcd4.jpg\", \"hash\": \"small_CME_Branch_Office_Sharjah_a03787bcd4\", \"mime\": \"image/jpeg\", \"name\": \"small_CME Branch Office - Sharjah.jpg\", \"path\": null, \"size\": 28.77, \"width\": 500, \"height\": 333, \"sizeInBytes\": 28773}, \"medium\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_CME_Branch_Office_Sharjah_a03787bcd4.jpg\", \"hash\": \"medium_CME_Branch_Office_Sharjah_a03787bcd4\", \"mime\": \"image/jpeg\", \"name\": \"medium_CME Branch Office - Sharjah.jpg\", \"path\": null, \"size\": 58.74, \"width\": 750, \"height\": 500, \"sizeInBytes\": 58742}, \"thumbnail\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_CME_Branch_Office_Sharjah_a03787bcd4.jpg\", \"hash\": \"thumbnail_CME_Branch_Office_Sharjah_a03787bcd4\", \"mime\": \"image/jpeg\", \"name\": \"thumbnail_CME Branch Office - Sharjah.jpg\", \"path\": null, \"size\": 8.65, \"width\": 234, \"height\": 156, \"sizeInBytes\": 8646}}','CME_Branch_Office_Sharjah_a03787bcd4','.jpg','image/jpeg',2358.74,'https://d1i031whgqu7f4.cloudfront.net/CME_Branch_Office_Sharjah_a03787bcd4.jpg',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/38/40','2026-03-31 07:18:45.301000','2026-03-31 07:18:45.301000','2026-03-31 07:18:45.302000',1,1,NULL),(386,'eik8eout7d9sibhwg96n4gme','CME Sharjah Warehouse.jpg',NULL,NULL,5247,3498,'{\"large\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/large_CME_Sharjah_Warehouse_463f58919a.jpg\", \"hash\": \"large_CME_Sharjah_Warehouse_463f58919a\", \"mime\": \"image/jpeg\", \"name\": \"large_CME Sharjah Warehouse.jpg\", \"path\": null, \"size\": 80.64, \"width\": 1000, \"height\": 667, \"sizeInBytes\": 80643}, \"small\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_CME_Sharjah_Warehouse_463f58919a.jpg\", \"hash\": \"small_CME_Sharjah_Warehouse_463f58919a\", \"mime\": \"image/jpeg\", \"name\": \"small_CME Sharjah Warehouse.jpg\", \"path\": null, \"size\": 23.19, \"width\": 500, \"height\": 334, \"sizeInBytes\": 23189}, \"medium\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_CME_Sharjah_Warehouse_463f58919a.jpg\", \"hash\": \"medium_CME_Sharjah_Warehouse_463f58919a\", \"mime\": \"image/jpeg\", \"name\": \"medium_CME Sharjah Warehouse.jpg\", \"path\": null, \"size\": 48.19, \"width\": 750, \"height\": 500, \"sizeInBytes\": 48194}, \"thumbnail\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_CME_Sharjah_Warehouse_463f58919a.jpg\", \"hash\": \"thumbnail_CME_Sharjah_Warehouse_463f58919a\", \"mime\": \"image/jpeg\", \"name\": \"thumbnail_CME Sharjah Warehouse.jpg\", \"path\": null, \"size\": 6.67, \"width\": 234, \"height\": 156, \"sizeInBytes\": 6668}}','CME_Sharjah_Warehouse_463f58919a','.jpg','image/jpeg',1662.80,'https://d1i031whgqu7f4.cloudfront.net/CME_Sharjah_Warehouse_463f58919a.jpg',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/38/40','2026-03-31 07:18:45.475000','2026-03-31 07:18:45.475000','2026-03-31 07:18:45.475000',1,1,NULL),(387,'plxutdt8fdrv29dgy0bft28s','CME PT Service - Abu Dhabi.jpg',NULL,NULL,9504,6336,'{\"large\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/large_CME_PT_Service_Abu_Dhabi_b3c3baa2dc.jpg\", \"hash\": \"large_CME_PT_Service_Abu_Dhabi_b3c3baa2dc\", \"mime\": \"image/jpeg\", \"name\": \"large_CME PT Service - Abu Dhabi.jpg\", \"path\": null, \"size\": 110.33, \"width\": 1000, \"height\": 667, \"sizeInBytes\": 110334}, \"small\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_CME_PT_Service_Abu_Dhabi_b3c3baa2dc.jpg\", \"hash\": \"small_CME_PT_Service_Abu_Dhabi_b3c3baa2dc\", \"mime\": \"image/jpeg\", \"name\": \"small_CME PT Service - Abu Dhabi.jpg\", \"path\": null, \"size\": 34.83, \"width\": 500, \"height\": 333, \"sizeInBytes\": 34829}, \"medium\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_CME_PT_Service_Abu_Dhabi_b3c3baa2dc.jpg\", \"hash\": \"medium_CME_PT_Service_Abu_Dhabi_b3c3baa2dc\", \"mime\": \"image/jpeg\", \"name\": \"medium_CME PT Service - Abu Dhabi.jpg\", \"path\": null, \"size\": 68.71, \"width\": 750, \"height\": 500, \"sizeInBytes\": 68713}, \"thumbnail\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_CME_PT_Service_Abu_Dhabi_b3c3baa2dc.jpg\", \"hash\": \"thumbnail_CME_PT_Service_Abu_Dhabi_b3c3baa2dc\", \"mime\": \"image/jpeg\", \"name\": \"thumbnail_CME PT Service - Abu Dhabi.jpg\", \"path\": null, \"size\": 9.52, \"width\": 234, \"height\": 156, \"sizeInBytes\": 9524}}','CME_PT_Service_Abu_Dhabi_b3c3baa2dc','.jpg','image/jpeg',4805.90,'https://d1i031whgqu7f4.cloudfront.net/CME_PT_Service_Abu_Dhabi_b3c3baa2dc.jpg',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/38/40','2026-03-31 07:18:47.528000','2026-03-31 07:18:47.528000','2026-03-31 07:18:47.528000',1,1,NULL),(388,'tp71snd6crcpxvdz4ud48fdx','CME Mussafah Warehouse - Abu Dhabi.jpg',NULL,NULL,9504,6336,'{\"large\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/large_CME_Mussafah_Warehouse_Abu_Dhabi_83b3f4d191.jpg\", \"hash\": \"large_CME_Mussafah_Warehouse_Abu_Dhabi_83b3f4d191\", \"mime\": \"image/jpeg\", \"name\": \"large_CME Mussafah Warehouse - Abu Dhabi.jpg\", \"path\": null, \"size\": 99.01, \"width\": 1000, \"height\": 667, \"sizeInBytes\": 99005}, \"small\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_CME_Mussafah_Warehouse_Abu_Dhabi_83b3f4d191.jpg\", \"hash\": \"small_CME_Mussafah_Warehouse_Abu_Dhabi_83b3f4d191\", \"mime\": \"image/jpeg\", \"name\": \"small_CME Mussafah Warehouse - Abu Dhabi.jpg\", \"path\": null, \"size\": 30.89, \"width\": 500, \"height\": 333, \"sizeInBytes\": 30889}, \"medium\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_CME_Mussafah_Warehouse_Abu_Dhabi_83b3f4d191.jpg\", \"hash\": \"medium_CME_Mussafah_Warehouse_Abu_Dhabi_83b3f4d191\", \"mime\": \"image/jpeg\", \"name\": \"medium_CME Mussafah Warehouse - Abu Dhabi.jpg\", \"path\": null, \"size\": 61.28, \"width\": 750, \"height\": 500, \"sizeInBytes\": 61281}, \"thumbnail\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_CME_Mussafah_Warehouse_Abu_Dhabi_83b3f4d191.jpg\", \"hash\": \"thumbnail_CME_Mussafah_Warehouse_Abu_Dhabi_83b3f4d191\", \"mime\": \"image/jpeg\", \"name\": \"thumbnail_CME Mussafah Warehouse - Abu Dhabi.jpg\", \"path\": null, \"size\": 8.67, \"width\": 234, \"height\": 156, \"sizeInBytes\": 8673}}','CME_Mussafah_Warehouse_Abu_Dhabi_83b3f4d191','.jpg','image/jpeg',5460.97,'https://d1i031whgqu7f4.cloudfront.net/CME_Mussafah_Warehouse_Abu_Dhabi_83b3f4d191.jpg',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/38/40','2026-03-31 07:18:47.663000','2026-03-31 07:18:47.663000','2026-03-31 07:18:47.663000',1,1,NULL),(389,'bfan68plwjq3cg0cyl5l13f5','CME Head Office - Abu Dhabi.jpg',NULL,NULL,6240,4160,'{\"large\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/large_CME_Head_Office_Abu_Dhabi_8e13467752.jpg\", \"hash\": \"large_CME_Head_Office_Abu_Dhabi_8e13467752\", \"mime\": \"image/jpeg\", \"name\": \"large_CME Head Office - Abu Dhabi.jpg\", \"path\": null, \"size\": 97.01, \"width\": 1000, \"height\": 667, \"sizeInBytes\": 97012}, \"small\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_CME_Head_Office_Abu_Dhabi_8e13467752.jpg\", \"hash\": \"small_CME_Head_Office_Abu_Dhabi_8e13467752\", \"mime\": \"image/jpeg\", \"name\": \"small_CME Head Office - Abu Dhabi.jpg\", \"path\": null, \"size\": 31.91, \"width\": 500, \"height\": 333, \"sizeInBytes\": 31907}, \"medium\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_CME_Head_Office_Abu_Dhabi_8e13467752.jpg\", \"hash\": \"medium_CME_Head_Office_Abu_Dhabi_8e13467752\", \"mime\": \"image/jpeg\", \"name\": \"medium_CME Head Office - Abu Dhabi.jpg\", \"path\": null, \"size\": 62.03, \"width\": 750, \"height\": 500, \"sizeInBytes\": 62026}, \"thumbnail\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_CME_Head_Office_Abu_Dhabi_8e13467752.jpg\", \"hash\": \"thumbnail_CME_Head_Office_Abu_Dhabi_8e13467752\", \"mime\": \"image/jpeg\", \"name\": \"thumbnail_CME Head Office - Abu Dhabi.jpg\", \"path\": null, \"size\": 9.3, \"width\": 234, \"height\": 156, \"sizeInBytes\": 9298}}','CME_Head_Office_Abu_Dhabi_8e13467752','.jpg','image/jpeg',1707.99,'https://d1i031whgqu7f4.cloudfront.net/CME_Head_Office_Abu_Dhabi_8e13467752.jpg',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/38/41','2026-03-31 07:27:10.043000','2026-03-31 07:27:10.043000','2026-03-31 07:27:10.044000',1,1,NULL),(390,'f3j8d5dhhfv72of6do1r1p71','CME Tyre Plus - Mussafah Abu Dhabi.jpg',NULL,NULL,9504,6336,'{\"large\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/large_CME_Tyre_Plus_Mussafah_Abu_Dhabi_0bc31f84ee.jpg\", \"hash\": \"large_CME_Tyre_Plus_Mussafah_Abu_Dhabi_0bc31f84ee\", \"mime\": \"image/jpeg\", \"name\": \"large_CME Tyre Plus - Mussafah Abu Dhabi.jpg\", \"path\": null, \"size\": 103.55, \"width\": 1000, \"height\": 667, \"sizeInBytes\": 103554}, \"small\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_CME_Tyre_Plus_Mussafah_Abu_Dhabi_0bc31f84ee.jpg\", \"hash\": \"small_CME_Tyre_Plus_Mussafah_Abu_Dhabi_0bc31f84ee\", \"mime\": \"image/jpeg\", \"name\": \"small_CME Tyre Plus - Mussafah Abu Dhabi.jpg\", \"path\": null, \"size\": 30.12, \"width\": 500, \"height\": 333, \"sizeInBytes\": 30117}, \"medium\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_CME_Tyre_Plus_Mussafah_Abu_Dhabi_0bc31f84ee.jpg\", \"hash\": \"medium_CME_Tyre_Plus_Mussafah_Abu_Dhabi_0bc31f84ee\", \"mime\": \"image/jpeg\", \"name\": \"medium_CME Tyre Plus - Mussafah Abu Dhabi.jpg\", \"path\": null, \"size\": 62.07, \"width\": 750, \"height\": 500, \"sizeInBytes\": 62074}, \"thumbnail\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_CME_Tyre_Plus_Mussafah_Abu_Dhabi_0bc31f84ee.jpg\", \"hash\": \"thumbnail_CME_Tyre_Plus_Mussafah_Abu_Dhabi_0bc31f84ee\", \"mime\": \"image/jpeg\", \"name\": \"thumbnail_CME Tyre Plus - Mussafah Abu Dhabi.jpg\", \"path\": null, \"size\": 8.13, \"width\": 234, \"height\": 156, \"sizeInBytes\": 8132}}','CME_Tyre_Plus_Mussafah_Abu_Dhabi_0bc31f84ee','.jpg','image/jpeg',5707.78,'https://d1i031whgqu7f4.cloudfront.net/CME_Tyre_Plus_Mussafah_Abu_Dhabi_0bc31f84ee.jpg',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/38/41','2026-03-31 07:27:21.260000','2026-03-31 07:27:21.260000','2026-03-31 07:27:21.261000',1,1,NULL),(391,'fiktd9dwf7wf6pjfhbnom3lz','CME Mussafah Warehouse - Abu Dhabi.jpg',NULL,NULL,9504,6336,'{\"large\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/large_CME_Mussafah_Warehouse_Abu_Dhabi_a4b2152b40.jpg\", \"hash\": \"large_CME_Mussafah_Warehouse_Abu_Dhabi_a4b2152b40\", \"mime\": \"image/jpeg\", \"name\": \"large_CME Mussafah Warehouse - Abu Dhabi.jpg\", \"path\": null, \"size\": 99.01, \"width\": 1000, \"height\": 667, \"sizeInBytes\": 99005}, \"small\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_CME_Mussafah_Warehouse_Abu_Dhabi_a4b2152b40.jpg\", \"hash\": \"small_CME_Mussafah_Warehouse_Abu_Dhabi_a4b2152b40\", \"mime\": \"image/jpeg\", \"name\": \"small_CME Mussafah Warehouse - Abu Dhabi.jpg\", \"path\": null, \"size\": 30.89, \"width\": 500, \"height\": 333, \"sizeInBytes\": 30889}, \"medium\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_CME_Mussafah_Warehouse_Abu_Dhabi_a4b2152b40.jpg\", \"hash\": \"medium_CME_Mussafah_Warehouse_Abu_Dhabi_a4b2152b40\", \"mime\": \"image/jpeg\", \"name\": \"medium_CME Mussafah Warehouse - Abu Dhabi.jpg\", \"path\": null, \"size\": 61.28, \"width\": 750, \"height\": 500, \"sizeInBytes\": 61281}, \"thumbnail\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_CME_Mussafah_Warehouse_Abu_Dhabi_a4b2152b40.jpg\", \"hash\": \"thumbnail_CME_Mussafah_Warehouse_Abu_Dhabi_a4b2152b40\", \"mime\": \"image/jpeg\", \"name\": \"thumbnail_CME Mussafah Warehouse - Abu Dhabi.jpg\", \"path\": null, \"size\": 8.67, \"width\": 234, \"height\": 156, \"sizeInBytes\": 8673}}','CME_Mussafah_Warehouse_Abu_Dhabi_a4b2152b40','.jpg','image/jpeg',5460.97,'https://d1i031whgqu7f4.cloudfront.net/CME_Mussafah_Warehouse_Abu_Dhabi_a4b2152b40.jpg',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/38/41','2026-03-31 07:27:21.559000','2026-03-31 07:27:21.559000','2026-03-31 07:27:21.559000',1,1,NULL),(392,'femq8r7xjbv1pfmdyfho45q8','CME Tyre Plus - ADNOC Shakhbout Station.jpg',NULL,NULL,9504,6336,'{\"large\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/large_CME_Tyre_Plus_ADNOC_Shakhbout_Station_d7449650a2.jpg\", \"hash\": \"large_CME_Tyre_Plus_ADNOC_Shakhbout_Station_d7449650a2\", \"mime\": \"image/jpeg\", \"name\": \"large_CME Tyre Plus - ADNOC Shakhbout Station.jpg\", \"path\": null, \"size\": 102.61, \"width\": 1000, \"height\": 667, \"sizeInBytes\": 102610}, \"small\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_CME_Tyre_Plus_ADNOC_Shakhbout_Station_d7449650a2.jpg\", \"hash\": \"small_CME_Tyre_Plus_ADNOC_Shakhbout_Station_d7449650a2\", \"mime\": \"image/jpeg\", \"name\": \"small_CME Tyre Plus - ADNOC Shakhbout Station.jpg\", \"path\": null, \"size\": 30.91, \"width\": 500, \"height\": 333, \"sizeInBytes\": 30907}, \"medium\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_CME_Tyre_Plus_ADNOC_Shakhbout_Station_d7449650a2.jpg\", \"hash\": \"medium_CME_Tyre_Plus_ADNOC_Shakhbout_Station_d7449650a2\", \"mime\": \"image/jpeg\", \"name\": \"medium_CME Tyre Plus - ADNOC Shakhbout Station.jpg\", \"path\": null, \"size\": 61.88, \"width\": 750, \"height\": 500, \"sizeInBytes\": 61883}, \"thumbnail\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_CME_Tyre_Plus_ADNOC_Shakhbout_Station_d7449650a2.jpg\", \"hash\": \"thumbnail_CME_Tyre_Plus_ADNOC_Shakhbout_Station_d7449650a2\", \"mime\": \"image/jpeg\", \"name\": \"thumbnail_CME Tyre Plus - ADNOC Shakhbout Station.jpg\", \"path\": null, \"size\": 8.26, \"width\": 234, \"height\": 156, \"sizeInBytes\": 8263}}','CME_Tyre_Plus_ADNOC_Shakhbout_Station_d7449650a2','.jpg','image/jpeg',6055.56,'https://d1i031whgqu7f4.cloudfront.net/CME_Tyre_Plus_ADNOC_Shakhbout_Station_d7449650a2.jpg',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/38/41','2026-03-31 07:27:21.821000','2026-03-31 07:27:21.821000','2026-03-31 07:27:21.822000',1,1,NULL),(393,'mj92rglb642zpsfbqqq7wk5d','CME Tyre Plus - ADNOC Bateen Station Tyre.jpg',NULL,NULL,9504,6336,'{\"large\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/large_CME_Tyre_Plus_ADNOC_Bateen_Station_Tyre_2c2389dfc9.jpg\", \"hash\": \"large_CME_Tyre_Plus_ADNOC_Bateen_Station_Tyre_2c2389dfc9\", \"mime\": \"image/jpeg\", \"name\": \"large_CME Tyre Plus - ADNOC Bateen Station Tyre.jpg\", \"path\": null, \"size\": 112.88, \"width\": 1000, \"height\": 667, \"sizeInBytes\": 112878}, \"small\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_CME_Tyre_Plus_ADNOC_Bateen_Station_Tyre_2c2389dfc9.jpg\", \"hash\": \"small_CME_Tyre_Plus_ADNOC_Bateen_Station_Tyre_2c2389dfc9\", \"mime\": \"image/jpeg\", \"name\": \"small_CME Tyre Plus - ADNOC Bateen Station Tyre.jpg\", \"path\": null, \"size\": 33.87, \"width\": 500, \"height\": 333, \"sizeInBytes\": 33870}, \"medium\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_CME_Tyre_Plus_ADNOC_Bateen_Station_Tyre_2c2389dfc9.jpg\", \"hash\": \"medium_CME_Tyre_Plus_ADNOC_Bateen_Station_Tyre_2c2389dfc9\", \"mime\": \"image/jpeg\", \"name\": \"medium_CME Tyre Plus - ADNOC Bateen Station Tyre.jpg\", \"path\": null, \"size\": 69.07, \"width\": 750, \"height\": 500, \"sizeInBytes\": 69071}, \"thumbnail\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_CME_Tyre_Plus_ADNOC_Bateen_Station_Tyre_2c2389dfc9.jpg\", \"hash\": \"thumbnail_CME_Tyre_Plus_ADNOC_Bateen_Station_Tyre_2c2389dfc9\", \"mime\": \"image/jpeg\", \"name\": \"thumbnail_CME Tyre Plus - ADNOC Bateen Station Tyre.jpg\", \"path\": null, \"size\": 8.7, \"width\": 234, \"height\": 156, \"sizeInBytes\": 8696}}','CME_Tyre_Plus_ADNOC_Bateen_Station_Tyre_2c2389dfc9','.jpg','image/jpeg',6554.98,'https://d1i031whgqu7f4.cloudfront.net/CME_Tyre_Plus_ADNOC_Bateen_Station_Tyre_2c2389dfc9.jpg',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/38/41','2026-03-31 07:27:21.931000','2026-03-31 07:27:21.931000','2026-03-31 07:27:21.931000',1,1,NULL),(394,'zvfdy1kcf4mxfap6twy3kijy','CME MTSC - Mafraq.jpg',NULL,NULL,9504,6336,'{\"large\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/large_CME_MTSC_Mafraq_d47006e208.jpg\", \"hash\": \"large_CME_MTSC_Mafraq_d47006e208\", \"mime\": \"image/jpeg\", \"name\": \"large_CME MTSC - Mafraq.jpg\", \"path\": null, \"size\": 93.74, \"width\": 1000, \"height\": 667, \"sizeInBytes\": 93742}, \"small\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_CME_MTSC_Mafraq_d47006e208.jpg\", \"hash\": \"small_CME_MTSC_Mafraq_d47006e208\", \"mime\": \"image/jpeg\", \"name\": \"small_CME MTSC - Mafraq.jpg\", \"path\": null, \"size\": 26.74, \"width\": 500, \"height\": 333, \"sizeInBytes\": 26740}, \"medium\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_CME_MTSC_Mafraq_d47006e208.jpg\", \"hash\": \"medium_CME_MTSC_Mafraq_d47006e208\", \"mime\": \"image/jpeg\", \"name\": \"medium_CME MTSC - Mafraq.jpg\", \"path\": null, \"size\": 55.94, \"width\": 750, \"height\": 500, \"sizeInBytes\": 55943}, \"thumbnail\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_CME_MTSC_Mafraq_d47006e208.jpg\", \"hash\": \"thumbnail_CME_MTSC_Mafraq_d47006e208\", \"mime\": \"image/jpeg\", \"name\": \"thumbnail_CME MTSC - Mafraq.jpg\", \"path\": null, \"size\": 7.1, \"width\": 234, \"height\": 156, \"sizeInBytes\": 7100}}','CME_MTSC_Mafraq_d47006e208','.jpg','image/jpeg',6311.12,'https://d1i031whgqu7f4.cloudfront.net/CME_MTSC_Mafraq_d47006e208.jpg',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/38/41','2026-03-31 07:27:22.153000','2026-03-31 07:27:22.153000','2026-03-31 07:27:22.154000',1,1,NULL),(395,'j0ol97dbz3cd9p0k16xmqcyg','CME Tyre Plus - ADNOC Embassy Station.jpg',NULL,NULL,9504,6336,'{\"large\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/large_CME_Tyre_Plus_ADNOC_Embassy_Station_2234d208c7.jpg\", \"hash\": \"large_CME_Tyre_Plus_ADNOC_Embassy_Station_2234d208c7\", \"mime\": \"image/jpeg\", \"name\": \"large_CME Tyre Plus - ADNOC Embassy Station.jpg\", \"path\": null, \"size\": 111.97, \"width\": 1000, \"height\": 667, \"sizeInBytes\": 111971}, \"small\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_CME_Tyre_Plus_ADNOC_Embassy_Station_2234d208c7.jpg\", \"hash\": \"small_CME_Tyre_Plus_ADNOC_Embassy_Station_2234d208c7\", \"mime\": \"image/jpeg\", \"name\": \"small_CME Tyre Plus - ADNOC Embassy Station.jpg\", \"path\": null, \"size\": 33.22, \"width\": 500, \"height\": 333, \"sizeInBytes\": 33223}, \"medium\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_CME_Tyre_Plus_ADNOC_Embassy_Station_2234d208c7.jpg\", \"hash\": \"medium_CME_Tyre_Plus_ADNOC_Embassy_Station_2234d208c7\", \"mime\": \"image/jpeg\", \"name\": \"medium_CME Tyre Plus - ADNOC Embassy Station.jpg\", \"path\": null, \"size\": 67.93, \"width\": 750, \"height\": 500, \"sizeInBytes\": 67932}, \"thumbnail\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_CME_Tyre_Plus_ADNOC_Embassy_Station_2234d208c7.jpg\", \"hash\": \"thumbnail_CME_Tyre_Plus_ADNOC_Embassy_Station_2234d208c7\", \"mime\": \"image/jpeg\", \"name\": \"thumbnail_CME Tyre Plus - ADNOC Embassy Station.jpg\", \"path\": null, \"size\": 8.64, \"width\": 234, \"height\": 156, \"sizeInBytes\": 8642}}','CME_Tyre_Plus_ADNOC_Embassy_Station_2234d208c7','.jpg','image/jpeg',5716.37,'https://d1i031whgqu7f4.cloudfront.net/CME_Tyre_Plus_ADNOC_Embassy_Station_2234d208c7.jpg',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/38/41','2026-03-31 07:27:26.665000','2026-03-31 08:55:50.805000','2026-03-31 07:27:26.665000',1,1,NULL),(396,'lqyj17uszn6ecsgoh6jl8mqm','CME Mafraq Warehouse.jpg',NULL,NULL,9504,6336,'{\"large\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/large_CME_Mafraq_Warehouse_c9c0e2b6f1.jpg\", \"hash\": \"large_CME_Mafraq_Warehouse_c9c0e2b6f1\", \"mime\": \"image/jpeg\", \"name\": \"large_CME Mafraq Warehouse.jpg\", \"path\": null, \"size\": 76.98, \"width\": 1000, \"height\": 667, \"sizeInBytes\": 76980}, \"small\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_CME_Mafraq_Warehouse_c9c0e2b6f1.jpg\", \"hash\": \"small_CME_Mafraq_Warehouse_c9c0e2b6f1\", \"mime\": \"image/jpeg\", \"name\": \"small_CME Mafraq Warehouse.jpg\", \"path\": null, \"size\": 21.49, \"width\": 500, \"height\": 333, \"sizeInBytes\": 21486}, \"medium\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_CME_Mafraq_Warehouse_c9c0e2b6f1.jpg\", \"hash\": \"medium_CME_Mafraq_Warehouse_c9c0e2b6f1\", \"mime\": \"image/jpeg\", \"name\": \"medium_CME Mafraq Warehouse.jpg\", \"path\": null, \"size\": 44.92, \"width\": 750, \"height\": 500, \"sizeInBytes\": 44918}, \"thumbnail\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_CME_Mafraq_Warehouse_c9c0e2b6f1.jpg\", \"hash\": \"thumbnail_CME_Mafraq_Warehouse_c9c0e2b6f1\", \"mime\": \"image/jpeg\", \"name\": \"thumbnail_CME Mafraq Warehouse.jpg\", \"path\": null, \"size\": 5.83, \"width\": 234, \"height\": 156, \"sizeInBytes\": 5826}}','CME_Mafraq_Warehouse_c9c0e2b6f1','.jpg','image/jpeg',5924.24,'https://d1i031whgqu7f4.cloudfront.net/CME_Mafraq_Warehouse_c9c0e2b6f1.jpg',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/38/41','2026-03-31 07:27:26.783000','2026-03-31 07:27:26.783000','2026-03-31 07:27:26.784000',1,1,NULL),(397,'sm8ltkvzbyqcdhi7l4ms0km6','resized_521x382.jpg',NULL,NULL,521,382,'{\"small\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_resized_521x382_1d544c756d.jpg\", \"hash\": \"small_resized_521x382_1d544c756d\", \"mime\": \"image/jpeg\", \"name\": \"small_resized_521x382.jpg\", \"path\": null, \"size\": 30.92, \"width\": 500, \"height\": 367, \"sizeInBytes\": 30918}, \"thumbnail\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_resized_521x382_1d544c756d.jpg\", \"hash\": \"thumbnail_resized_521x382_1d544c756d\", \"mime\": \"image/jpeg\", \"name\": \"thumbnail_resized_521x382.jpg\", \"path\": null, \"size\": 7.71, \"width\": 213, \"height\": 156, \"sizeInBytes\": 7706}}','resized_521x382_1d544c756d','.jpg','image/jpeg',26.36,'https://d1i031whgqu7f4.cloudfront.net/resized_521x382_1d544c756d.jpg',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/38','2026-03-31 10:17:19.010000','2026-03-31 10:17:19.010000','2026-03-31 10:17:19.011000',1,1,NULL),(399,'ljcj3nnbfw25jti5z77mlwai','CME Branch Office - Sharjah 2.png',NULL,NULL,521,382,'{\"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_CME_Branch_Office_Sharjah_2_9eb5b272a4.png\", \"hash\": \"small_CME_Branch_Office_Sharjah_2_9eb5b272a4\", \"mime\": \"image/png\", \"name\": \"small_CME Branch Office - Sharjah 2.png\", \"path\": null, \"size\": 300.71, \"width\": 500, \"height\": 367, \"sizeInBytes\": 300715}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_CME_Branch_Office_Sharjah_2_9eb5b272a4.png\", \"hash\": \"thumbnail_CME_Branch_Office_Sharjah_2_9eb5b272a4\", \"mime\": \"image/png\", \"name\": \"thumbnail_CME Branch Office - Sharjah 2.png\", \"path\": null, \"size\": 65.02, \"width\": 213, \"height\": 156, \"sizeInBytes\": 65024}}','CME_Branch_Office_Sharjah_2_9eb5b272a4','.png','image/png',83.70,'https://d1i031whgqu7f4.cloudfront.net/CME_Branch_Office_Sharjah_2_9eb5b272a4.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/38/42','2026-03-31 10:41:16.142000','2026-03-31 10:41:16.142000','2026-03-31 10:41:16.143000',1,1,NULL),(400,'w4qeryxpu00adixtnvxbaq8f','CME Mafraq Warehouse 1.png',NULL,NULL,781,574,'{\"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_CME_Mafraq_Warehouse_1_803f2b8eba.png\", \"hash\": \"small_CME_Mafraq_Warehouse_1_803f2b8eba\", \"mime\": \"image/png\", \"name\": \"small_CME Mafraq Warehouse 1.png\", \"path\": null, \"size\": 256.73, \"width\": 500, \"height\": 367, \"sizeInBytes\": 256725}, \"medium\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_CME_Mafraq_Warehouse_1_803f2b8eba.png\", \"hash\": \"medium_CME_Mafraq_Warehouse_1_803f2b8eba\", \"mime\": \"image/png\", \"name\": \"medium_CME Mafraq Warehouse 1.png\", \"path\": null, \"size\": 555.39, \"width\": 750, \"height\": 551, \"sizeInBytes\": 555385}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_CME_Mafraq_Warehouse_1_803f2b8eba.png\", \"hash\": \"thumbnail_CME_Mafraq_Warehouse_1_803f2b8eba\", \"mime\": \"image/png\", \"name\": \"thumbnail_CME Mafraq Warehouse 1.png\", \"path\": null, \"size\": 52.58, \"width\": 212, \"height\": 156, \"sizeInBytes\": 52579}}','CME_Mafraq_Warehouse_1_803f2b8eba','.png','image/png',168.64,'https://d1i031whgqu7f4.cloudfront.net/CME_Mafraq_Warehouse_1_803f2b8eba.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/38/42/43','2026-03-31 16:03:48.777000','2026-03-31 16:03:48.777000','2026-03-31 16:03:48.793000',1,1,NULL),(401,'cbbhb32k1z3ul0xajy75ghrc','CME Head Office - Abu Dhabi 2.png',NULL,NULL,781,574,'{\"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_CME_Head_Office_Abu_Dhabi_2_5b3d45d2f3.png\", \"hash\": \"small_CME_Head_Office_Abu_Dhabi_2_5b3d45d2f3\", \"mime\": \"image/png\", \"name\": \"small_CME Head Office - Abu Dhabi 2.png\", \"path\": null, \"size\": 299.56, \"width\": 500, \"height\": 367, \"sizeInBytes\": 299557}, \"medium\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_CME_Head_Office_Abu_Dhabi_2_5b3d45d2f3.png\", \"hash\": \"medium_CME_Head_Office_Abu_Dhabi_2_5b3d45d2f3\", \"mime\": \"image/png\", \"name\": \"medium_CME Head Office - Abu Dhabi 2.png\", \"path\": null, \"size\": 614.52, \"width\": 750, \"height\": 551, \"sizeInBytes\": 614515}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_CME_Head_Office_Abu_Dhabi_2_5b3d45d2f3.png\", \"hash\": \"thumbnail_CME_Head_Office_Abu_Dhabi_2_5b3d45d2f3\", \"mime\": \"image/png\", \"name\": \"thumbnail_CME Head Office - Abu Dhabi 2.png\", \"path\": null, \"size\": 63.02, \"width\": 212, \"height\": 156, \"sizeInBytes\": 63024}}','CME_Head_Office_Abu_Dhabi_2_5b3d45d2f3','.png','image/png',169.53,'https://d1i031whgqu7f4.cloudfront.net/CME_Head_Office_Abu_Dhabi_2_5b3d45d2f3.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/38/42/43','2026-03-31 16:03:49.516000','2026-03-31 16:03:49.516000','2026-03-31 16:03:49.517000',1,1,NULL),(402,'shcvnsqqc0l811nry5emmd15','CME Mussafah Warehouse - Abu Dhabi 3.png',NULL,NULL,781,574,'{\"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_CME_Mussafah_Warehouse_Abu_Dhabi_3_12552f0c64.png\", \"hash\": \"small_CME_Mussafah_Warehouse_Abu_Dhabi_3_12552f0c64\", \"mime\": \"image/png\", \"name\": \"small_CME Mussafah Warehouse - Abu Dhabi 3.png\", \"path\": null, \"size\": 365.29, \"width\": 500, \"height\": 367, \"sizeInBytes\": 365294}, \"medium\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_CME_Mussafah_Warehouse_Abu_Dhabi_3_12552f0c64.png\", \"hash\": \"medium_CME_Mussafah_Warehouse_Abu_Dhabi_3_12552f0c64\", \"mime\": \"image/png\", \"name\": \"medium_CME Mussafah Warehouse - Abu Dhabi 3.png\", \"path\": null, \"size\": 770.67, \"width\": 750, \"height\": 551, \"sizeInBytes\": 770665}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_CME_Mussafah_Warehouse_Abu_Dhabi_3_12552f0c64.png\", \"hash\": \"thumbnail_CME_Mussafah_Warehouse_Abu_Dhabi_3_12552f0c64\", \"mime\": \"image/png\", \"name\": \"thumbnail_CME Mussafah Warehouse - Abu Dhabi 3.png\", \"path\": null, \"size\": 73.32, \"width\": 212, \"height\": 156, \"sizeInBytes\": 73323}}','CME_Mussafah_Warehouse_Abu_Dhabi_3_12552f0c64','.png','image/png',219.31,'https://d1i031whgqu7f4.cloudfront.net/CME_Mussafah_Warehouse_Abu_Dhabi_3_12552f0c64.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/38/42/43','2026-03-31 16:03:49.731000','2026-03-31 16:03:49.731000','2026-03-31 16:03:49.731000',1,1,NULL),(403,'dfc53kua3tbt4gp75mjg2mm8','CME MTSC - Mafraq 1.png',NULL,NULL,781,574,'{\"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_CME_MTSC_Mafraq_1_7f1f474d00.png\", \"hash\": \"small_CME_MTSC_Mafraq_1_7f1f474d00\", \"mime\": \"image/png\", \"name\": \"small_CME MTSC - Mafraq 1.png\", \"path\": null, \"size\": 289.95, \"width\": 500, \"height\": 367, \"sizeInBytes\": 289950}, \"medium\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_CME_MTSC_Mafraq_1_7f1f474d00.png\", \"hash\": \"medium_CME_MTSC_Mafraq_1_7f1f474d00\", \"mime\": \"image/png\", \"name\": \"medium_CME MTSC - Mafraq 1.png\", \"path\": null, \"size\": 620.31, \"width\": 750, \"height\": 551, \"sizeInBytes\": 620311}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_CME_MTSC_Mafraq_1_7f1f474d00.png\", \"hash\": \"thumbnail_CME_MTSC_Mafraq_1_7f1f474d00\", \"mime\": \"image/png\", \"name\": \"thumbnail_CME MTSC - Mafraq 1.png\", \"path\": null, \"size\": 58.02, \"width\": 212, \"height\": 156, \"sizeInBytes\": 58018}}','CME_MTSC_Mafraq_1_7f1f474d00','.png','image/png',198.03,'https://d1i031whgqu7f4.cloudfront.net/CME_MTSC_Mafraq_1_7f1f474d00.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/38/42/43','2026-03-31 16:03:49.733000','2026-03-31 16:04:16.995000','2026-03-31 16:03:49.733000',1,1,NULL),(404,'ifyaay4lb1no3ve5nwhq449g','CME Tyre Plus - ADNOC Shakhbout Station 1.png',NULL,NULL,781,574,'{\"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_CME_Tyre_Plus_ADNOC_Shakhbout_Station_1_79de9527a1.png\", \"hash\": \"small_CME_Tyre_Plus_ADNOC_Shakhbout_Station_1_79de9527a1\", \"mime\": \"image/png\", \"name\": \"small_CME Tyre Plus - ADNOC Shakhbout Station 1.png\", \"path\": null, \"size\": 337.65, \"width\": 500, \"height\": 367, \"sizeInBytes\": 337654}, \"medium\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_CME_Tyre_Plus_ADNOC_Shakhbout_Station_1_79de9527a1.png\", \"hash\": \"medium_CME_Tyre_Plus_ADNOC_Shakhbout_Station_1_79de9527a1\", \"mime\": \"image/png\", \"name\": \"medium_CME Tyre Plus - ADNOC Shakhbout Station 1.png\", \"path\": null, \"size\": 703.57, \"width\": 750, \"height\": 551, \"sizeInBytes\": 703567}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_CME_Tyre_Plus_ADNOC_Shakhbout_Station_1_79de9527a1.png\", \"hash\": \"thumbnail_CME_Tyre_Plus_ADNOC_Shakhbout_Station_1_79de9527a1\", \"mime\": \"image/png\", \"name\": \"thumbnail_CME Tyre Plus - ADNOC Shakhbout Station 1.png\", \"path\": null, \"size\": 71.42, \"width\": 212, \"height\": 156, \"sizeInBytes\": 71423}}','CME_Tyre_Plus_ADNOC_Shakhbout_Station_1_79de9527a1','.png','image/png',204.19,'https://d1i031whgqu7f4.cloudfront.net/CME_Tyre_Plus_ADNOC_Shakhbout_Station_1_79de9527a1.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/38/42/43','2026-03-31 16:03:49.758000','2026-03-31 16:03:49.758000','2026-03-31 16:03:49.758000',1,1,NULL),(405,'r459o2pe47cirai2j9e8fqnn','CME Tyre Plus - Mussafah Abu Dhabi 1.png',NULL,NULL,781,574,'{\"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_CME_Tyre_Plus_Mussafah_Abu_Dhabi_1_12c087a01d.png\", \"hash\": \"small_CME_Tyre_Plus_Mussafah_Abu_Dhabi_1_12c087a01d\", \"mime\": \"image/png\", \"name\": \"small_CME Tyre Plus - Mussafah Abu Dhabi 1.png\", \"path\": null, \"size\": 365.69, \"width\": 500, \"height\": 367, \"sizeInBytes\": 365692}, \"medium\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_CME_Tyre_Plus_Mussafah_Abu_Dhabi_1_12c087a01d.png\", \"hash\": \"medium_CME_Tyre_Plus_Mussafah_Abu_Dhabi_1_12c087a01d\", \"mime\": \"image/png\", \"name\": \"medium_CME Tyre Plus - Mussafah Abu Dhabi 1.png\", \"path\": null, \"size\": 782.46, \"width\": 750, \"height\": 551, \"sizeInBytes\": 782460}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_CME_Tyre_Plus_Mussafah_Abu_Dhabi_1_12c087a01d.png\", \"hash\": \"thumbnail_CME_Tyre_Plus_Mussafah_Abu_Dhabi_1_12c087a01d\", \"mime\": \"image/png\", \"name\": \"thumbnail_CME Tyre Plus - Mussafah Abu Dhabi 1.png\", \"path\": null, \"size\": 72, \"width\": 212, \"height\": 156, \"sizeInBytes\": 72002}}','CME_Tyre_Plus_Mussafah_Abu_Dhabi_1_12c087a01d','.png','image/png',217.86,'https://d1i031whgqu7f4.cloudfront.net/CME_Tyre_Plus_Mussafah_Abu_Dhabi_1_12c087a01d.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/38/42/43','2026-03-31 16:03:49.868000','2026-03-31 16:03:49.868000','2026-03-31 16:03:49.868000',1,1,NULL),(406,'e78gl4dv6kmipsf7nlht9zez','CME Tyre Plus - ADNOC Bateen Station Tyre 1.png',NULL,NULL,781,574,'{\"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_CME_Tyre_Plus_ADNOC_Bateen_Station_Tyre_1_c911c92ae2.png\", \"hash\": \"small_CME_Tyre_Plus_ADNOC_Bateen_Station_Tyre_1_c911c92ae2\", \"mime\": \"image/png\", \"name\": \"small_CME Tyre Plus - ADNOC Bateen Station Tyre 1.png\", \"path\": null, \"size\": 340.95, \"width\": 500, \"height\": 367, \"sizeInBytes\": 340953}, \"medium\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_CME_Tyre_Plus_ADNOC_Bateen_Station_Tyre_1_c911c92ae2.png\", \"hash\": \"medium_CME_Tyre_Plus_ADNOC_Bateen_Station_Tyre_1_c911c92ae2\", \"mime\": \"image/png\", \"name\": \"medium_CME Tyre Plus - ADNOC Bateen Station Tyre 1.png\", \"path\": null, \"size\": 718.11, \"width\": 750, \"height\": 551, \"sizeInBytes\": 718105}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_CME_Tyre_Plus_ADNOC_Bateen_Station_Tyre_1_c911c92ae2.png\", \"hash\": \"thumbnail_CME_Tyre_Plus_ADNOC_Bateen_Station_Tyre_1_c911c92ae2\", \"mime\": \"image/png\", \"name\": \"thumbnail_CME Tyre Plus - ADNOC Bateen Station Tyre 1.png\", \"path\": null, \"size\": 70.76, \"width\": 212, \"height\": 156, \"sizeInBytes\": 70758}}','CME_Tyre_Plus_ADNOC_Bateen_Station_Tyre_1_c911c92ae2','.png','image/png',209.64,'https://d1i031whgqu7f4.cloudfront.net/CME_Tyre_Plus_ADNOC_Bateen_Station_Tyre_1_c911c92ae2.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/38/42/43','2026-03-31 16:03:49.884000','2026-03-31 16:03:49.884000','2026-03-31 16:03:49.884000',1,1,NULL),(407,'ysd28bzb7amnlehyd8xhmosk','CME Tyre Plus - ADNOC Embassy Station 1.png',NULL,NULL,781,574,'{\"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_CME_Tyre_Plus_ADNOC_Embassy_Station_1_ce9fd224aa.png\", \"hash\": \"small_CME_Tyre_Plus_ADNOC_Embassy_Station_1_ce9fd224aa\", \"mime\": \"image/png\", \"name\": \"small_CME Tyre Plus - ADNOC Embassy Station 1.png\", \"path\": null, \"size\": 340.51, \"width\": 500, \"height\": 367, \"sizeInBytes\": 340509}, \"medium\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_CME_Tyre_Plus_ADNOC_Embassy_Station_1_ce9fd224aa.png\", \"hash\": \"medium_CME_Tyre_Plus_ADNOC_Embassy_Station_1_ce9fd224aa\", \"mime\": \"image/png\", \"name\": \"medium_CME Tyre Plus - ADNOC Embassy Station 1.png\", \"path\": null, \"size\": 714.79, \"width\": 750, \"height\": 551, \"sizeInBytes\": 714791}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_CME_Tyre_Plus_ADNOC_Embassy_Station_1_ce9fd224aa.png\", \"hash\": \"thumbnail_CME_Tyre_Plus_ADNOC_Embassy_Station_1_ce9fd224aa\", \"mime\": \"image/png\", \"name\": \"thumbnail_CME Tyre Plus - ADNOC Embassy Station 1.png\", \"path\": null, \"size\": 71.5, \"width\": 212, \"height\": 156, \"sizeInBytes\": 71495}}','CME_Tyre_Plus_ADNOC_Embassy_Station_1_ce9fd224aa','.png','image/png',201.62,'https://d1i031whgqu7f4.cloudfront.net/CME_Tyre_Plus_ADNOC_Embassy_Station_1_ce9fd224aa.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/38/42/43','2026-03-31 16:03:49.990000','2026-03-31 16:03:49.990000','2026-03-31 16:03:49.990000',1,1,NULL),(408,'nnhfnjjeiwgg5fiwvvc02cb1','CME Branch Office - Sharjah 2.png',NULL,NULL,781,574,'{\"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_CME_Branch_Office_Sharjah_2_f100c2b734.png\", \"hash\": \"small_CME_Branch_Office_Sharjah_2_f100c2b734\", \"mime\": \"image/png\", \"name\": \"small_CME Branch Office - Sharjah 2.png\", \"path\": null, \"size\": 314.36, \"width\": 500, \"height\": 367, \"sizeInBytes\": 314360}, \"medium\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_CME_Branch_Office_Sharjah_2_f100c2b734.png\", \"hash\": \"medium_CME_Branch_Office_Sharjah_2_f100c2b734\", \"mime\": \"image/png\", \"name\": \"medium_CME Branch Office - Sharjah 2.png\", \"path\": null, \"size\": 642.74, \"width\": 750, \"height\": 551, \"sizeInBytes\": 642744}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_CME_Branch_Office_Sharjah_2_f100c2b734.png\", \"hash\": \"thumbnail_CME_Branch_Office_Sharjah_2_f100c2b734\", \"mime\": \"image/png\", \"name\": \"thumbnail_CME Branch Office - Sharjah 2.png\", \"path\": null, \"size\": 64.78, \"width\": 212, \"height\": 156, \"sizeInBytes\": 64775}}','CME_Branch_Office_Sharjah_2_f100c2b734','.png','image/png',177.70,'https://d1i031whgqu7f4.cloudfront.net/CME_Branch_Office_Sharjah_2_f100c2b734.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/38/42/44','2026-03-31 16:20:12.694000','2026-03-31 16:23:01.087000','2026-03-31 16:20:12.694000',1,1,NULL),(409,'c60774wxux0uqkxgdqgp5bv0','CME Head Office - Abu Dhabi 1.png',NULL,NULL,781,574,'{\"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_CME_Head_Office_Abu_Dhabi_1_a3bcaef5ae.png\", \"hash\": \"small_CME_Head_Office_Abu_Dhabi_1_a3bcaef5ae\", \"mime\": \"image/png\", \"name\": \"small_CME Head Office - Abu Dhabi 1.png\", \"path\": null, \"size\": 314.54, \"width\": 500, \"height\": 367, \"sizeInBytes\": 314537}, \"medium\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_CME_Head_Office_Abu_Dhabi_1_a3bcaef5ae.png\", \"hash\": \"medium_CME_Head_Office_Abu_Dhabi_1_a3bcaef5ae\", \"mime\": \"image/png\", \"name\": \"medium_CME Head Office - Abu Dhabi 1.png\", \"path\": null, \"size\": 645.12, \"width\": 750, \"height\": 551, \"sizeInBytes\": 645124}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_CME_Head_Office_Abu_Dhabi_1_a3bcaef5ae.png\", \"hash\": \"thumbnail_CME_Head_Office_Abu_Dhabi_1_a3bcaef5ae\", \"mime\": \"image/png\", \"name\": \"thumbnail_CME Head Office - Abu Dhabi 1.png\", \"path\": null, \"size\": 66.81, \"width\": 212, \"height\": 156, \"sizeInBytes\": 66809}}','CME_Head_Office_Abu_Dhabi_1_a3bcaef5ae','.png','image/png',168.52,'https://d1i031whgqu7f4.cloudfront.net/CME_Head_Office_Abu_Dhabi_1_a3bcaef5ae.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/38/42/44','2026-03-31 16:20:12.775000','2026-03-31 16:20:12.775000','2026-03-31 16:20:12.775000',1,1,NULL),(410,'ju0je97h3e2u514hmztoddqa','Al Qouz Dubai Location Warehouse 1.png',NULL,NULL,781,574,'{\"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_Al_Qouz_Dubai_Location_Warehouse_1_a6ec242bc7.png\", \"hash\": \"small_Al_Qouz_Dubai_Location_Warehouse_1_a6ec242bc7\", \"mime\": \"image/png\", \"name\": \"small_Al Qouz Dubai Location Warehouse 1.png\", \"path\": null, \"size\": 388.28, \"width\": 500, \"height\": 367, \"sizeInBytes\": 388276}, \"medium\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_Al_Qouz_Dubai_Location_Warehouse_1_a6ec242bc7.png\", \"hash\": \"medium_Al_Qouz_Dubai_Location_Warehouse_1_a6ec242bc7\", \"mime\": \"image/png\", \"name\": \"medium_Al Qouz Dubai Location Warehouse 1.png\", \"path\": null, \"size\": 791.34, \"width\": 750, \"height\": 551, \"sizeInBytes\": 791341}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Al_Qouz_Dubai_Location_Warehouse_1_a6ec242bc7.png\", \"hash\": \"thumbnail_Al_Qouz_Dubai_Location_Warehouse_1_a6ec242bc7\", \"mime\": \"image/png\", \"name\": \"thumbnail_Al Qouz Dubai Location Warehouse 1.png\", \"path\": null, \"size\": 79.85, \"width\": 212, \"height\": 156, \"sizeInBytes\": 79846}}','Al_Qouz_Dubai_Location_Warehouse_1_a6ec242bc7','.png','image/png',235.82,'https://d1i031whgqu7f4.cloudfront.net/Al_Qouz_Dubai_Location_Warehouse_1_a6ec242bc7.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/38/42/44','2026-03-31 16:20:12.830000','2026-03-31 16:20:12.830000','2026-03-31 16:20:12.831000',1,1,NULL),(411,'leovf51b2k92zion1oej3mtt','CME Sharjah Warehouse 2.png',NULL,NULL,781,574,'{\"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_CME_Sharjah_Warehouse_2_e1df535a8c.png\", \"hash\": \"small_CME_Sharjah_Warehouse_2_e1df535a8c\", \"mime\": \"image/png\", \"name\": \"small_CME Sharjah Warehouse 2.png\", \"path\": null, \"size\": 274.09, \"width\": 500, \"height\": 367, \"sizeInBytes\": 274088}, \"medium\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_CME_Sharjah_Warehouse_2_e1df535a8c.png\", \"hash\": \"medium_CME_Sharjah_Warehouse_2_e1df535a8c\", \"mime\": \"image/png\", \"name\": \"medium_CME Sharjah Warehouse 2.png\", \"path\": null, \"size\": 577.87, \"width\": 750, \"height\": 551, \"sizeInBytes\": 577872}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_CME_Sharjah_Warehouse_2_e1df535a8c.png\", \"hash\": \"thumbnail_CME_Sharjah_Warehouse_2_e1df535a8c\", \"mime\": \"image/png\", \"name\": \"thumbnail_CME Sharjah Warehouse 2.png\", \"path\": null, \"size\": 55.61, \"width\": 212, \"height\": 156, \"sizeInBytes\": 55605}}','CME_Sharjah_Warehouse_2_e1df535a8c','.png','image/png',165.72,'https://d1i031whgqu7f4.cloudfront.net/CME_Sharjah_Warehouse_2_e1df535a8c.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/38/42/44','2026-03-31 16:20:12.832000','2026-03-31 16:20:12.832000','2026-03-31 16:20:12.832000',1,1,NULL),(412,'p1tcbmeqs4dbvrd4b5zkqlew','CME Branch Office - Dubai 2.png',NULL,NULL,781,574,'{\"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_CME_Branch_Office_Dubai_2_52f920b72b.png\", \"hash\": \"small_CME_Branch_Office_Dubai_2_52f920b72b\", \"mime\": \"image/png\", \"name\": \"small_CME Branch Office - Dubai 2.png\", \"path\": null, \"size\": 349.69, \"width\": 500, \"height\": 367, \"sizeInBytes\": 349689}, \"medium\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_CME_Branch_Office_Dubai_2_52f920b72b.png\", \"hash\": \"medium_CME_Branch_Office_Dubai_2_52f920b72b\", \"mime\": \"image/png\", \"name\": \"medium_CME Branch Office - Dubai 2.png\", \"path\": null, \"size\": 717.35, \"width\": 750, \"height\": 551, \"sizeInBytes\": 717347}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_CME_Branch_Office_Dubai_2_52f920b72b.png\", \"hash\": \"thumbnail_CME_Branch_Office_Dubai_2_52f920b72b\", \"mime\": \"image/png\", \"name\": \"thumbnail_CME Branch Office - Dubai 2.png\", \"path\": null, \"size\": 73.39, \"width\": 212, \"height\": 156, \"sizeInBytes\": 73388}}','CME_Branch_Office_Dubai_2_52f920b72b','.png','image/png',203.79,'https://d1i031whgqu7f4.cloudfront.net/CME_Branch_Office_Dubai_2_52f920b72b.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/38/42/44','2026-03-31 16:20:12.869000','2026-03-31 16:20:12.869000','2026-03-31 16:20:12.870000',1,1,NULL),(413,'vao55nd4529p25crq977mu6c','CME PT Service - Abu Dhabi 1.png',NULL,NULL,781,574,'{\"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_CME_PT_Service_Abu_Dhabi_1_6255bdc8c1.png\", \"hash\": \"small_CME_PT_Service_Abu_Dhabi_1_6255bdc8c1\", \"mime\": \"image/png\", \"name\": \"small_CME PT Service - Abu Dhabi 1.png\", \"path\": null, \"size\": 342.31, \"width\": 500, \"height\": 367, \"sizeInBytes\": 342313}, \"medium\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_CME_PT_Service_Abu_Dhabi_1_6255bdc8c1.png\", \"hash\": \"medium_CME_PT_Service_Abu_Dhabi_1_6255bdc8c1\", \"mime\": \"image/png\", \"name\": \"medium_CME PT Service - Abu Dhabi 1.png\", \"path\": null, \"size\": 722.03, \"width\": 750, \"height\": 551, \"sizeInBytes\": 722029}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_CME_PT_Service_Abu_Dhabi_1_6255bdc8c1.png\", \"hash\": \"thumbnail_CME_PT_Service_Abu_Dhabi_1_6255bdc8c1\", \"mime\": \"image/png\", \"name\": \"thumbnail_CME PT Service - Abu Dhabi 1.png\", \"path\": null, \"size\": 69.4, \"width\": 212, \"height\": 156, \"sizeInBytes\": 69401}}','CME_PT_Service_Abu_Dhabi_1_6255bdc8c1','.png','image/png',189.34,'https://d1i031whgqu7f4.cloudfront.net/CME_PT_Service_Abu_Dhabi_1_6255bdc8c1.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/38/42/44','2026-03-31 16:20:12.992000','2026-03-31 16:20:12.992000','2026-03-31 16:20:12.992000',1,1,NULL),(414,'xwn1kt9y3bjzy0ponn4o8rbb','Service Location Entrance 1.png',NULL,NULL,781,574,'{\"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_Service_Location_Entrance_1_3e5725ebb9.png\", \"hash\": \"small_Service_Location_Entrance_1_3e5725ebb9\", \"mime\": \"image/png\", \"name\": \"small_Service Location Entrance 1.png\", \"path\": null, \"size\": 358.23, \"width\": 500, \"height\": 367, \"sizeInBytes\": 358225}, \"medium\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_Service_Location_Entrance_1_3e5725ebb9.png\", \"hash\": \"medium_Service_Location_Entrance_1_3e5725ebb9\", \"mime\": \"image/png\", \"name\": \"medium_Service Location Entrance 1.png\", \"path\": null, \"size\": 730.54, \"width\": 750, \"height\": 551, \"sizeInBytes\": 730537}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Service_Location_Entrance_1_3e5725ebb9.png\", \"hash\": \"thumbnail_Service_Location_Entrance_1_3e5725ebb9\", \"mime\": \"image/png\", \"name\": \"thumbnail_Service Location Entrance 1.png\", \"path\": null, \"size\": 75.19, \"width\": 212, \"height\": 156, \"sizeInBytes\": 75192}}','Service_Location_Entrance_1_3e5725ebb9','.png','image/png',171.21,'https://d1i031whgqu7f4.cloudfront.net/Service_Location_Entrance_1_3e5725ebb9.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/38/42/44','2026-03-31 16:20:13.041000','2026-03-31 16:21:58.049000','2026-03-31 16:20:13.041000',1,1,NULL),(415,'maus9prhikk9xc87dij7p7l7','CME Mussafah Warehouse - Abu Dhabi 2.png',NULL,NULL,781,574,'{\"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_CME_Mussafah_Warehouse_Abu_Dhabi_2_c8aea4fe68.png\", \"hash\": \"small_CME_Mussafah_Warehouse_Abu_Dhabi_2_c8aea4fe68\", \"mime\": \"image/png\", \"name\": \"small_CME Mussafah Warehouse - Abu Dhabi 2.png\", \"path\": null, \"size\": 365.1, \"width\": 500, \"height\": 367, \"sizeInBytes\": 365104}, \"medium\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_CME_Mussafah_Warehouse_Abu_Dhabi_2_c8aea4fe68.png\", \"hash\": \"medium_CME_Mussafah_Warehouse_Abu_Dhabi_2_c8aea4fe68\", \"mime\": \"image/png\", \"name\": \"medium_CME Mussafah Warehouse - Abu Dhabi 2.png\", \"path\": null, \"size\": 768.45, \"width\": 750, \"height\": 551, \"sizeInBytes\": 768449}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_CME_Mussafah_Warehouse_Abu_Dhabi_2_c8aea4fe68.png\", \"hash\": \"thumbnail_CME_Mussafah_Warehouse_Abu_Dhabi_2_c8aea4fe68\", \"mime\": \"image/png\", \"name\": \"thumbnail_CME Mussafah Warehouse - Abu Dhabi 2.png\", \"path\": null, \"size\": 73.36, \"width\": 212, \"height\": 156, \"sizeInBytes\": 73359}}','CME_Mussafah_Warehouse_Abu_Dhabi_2_c8aea4fe68','.png','image/png',219.84,'https://d1i031whgqu7f4.cloudfront.net/CME_Mussafah_Warehouse_Abu_Dhabi_2_c8aea4fe68.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/38/42/44','2026-03-31 16:20:13.146000','2026-03-31 16:20:13.146000','2026-03-31 16:20:13.147000',1,1,NULL),(416,'m2q6ekcv4fw9200hqk5c2tkj','CME BOSCH Car Service - Dubai 1.png',NULL,NULL,781,574,'{\"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_CME_BOSCH_Car_Service_Dubai_1_e460c72e12.png\", \"hash\": \"small_CME_BOSCH_Car_Service_Dubai_1_e460c72e12\", \"mime\": \"image/png\", \"name\": \"small_CME BOSCH Car Service - Dubai 1.png\", \"path\": null, \"size\": 280.31, \"width\": 500, \"height\": 367, \"sizeInBytes\": 280308}, \"medium\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_CME_BOSCH_Car_Service_Dubai_1_e460c72e12.png\", \"hash\": \"medium_CME_BOSCH_Car_Service_Dubai_1_e460c72e12\", \"mime\": \"image/png\", \"name\": \"medium_CME BOSCH Car Service - Dubai 1.png\", \"path\": null, \"size\": 565.85, \"width\": 750, \"height\": 551, \"sizeInBytes\": 565848}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_CME_BOSCH_Car_Service_Dubai_1_e460c72e12.png\", \"hash\": \"thumbnail_CME_BOSCH_Car_Service_Dubai_1_e460c72e12\", \"mime\": \"image/png\", \"name\": \"thumbnail_CME BOSCH Car Service - Dubai 1.png\", \"path\": null, \"size\": 62.11, \"width\": 212, \"height\": 156, \"sizeInBytes\": 62107}}','CME_BOSCH_Car_Service_Dubai_1_e460c72e12','.png','image/png',159.96,'https://d1i031whgqu7f4.cloudfront.net/CME_BOSCH_Car_Service_Dubai_1_e460c72e12.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/38/42/45','2026-03-31 16:25:34.675000','2026-03-31 16:25:34.675000','2026-03-31 16:25:34.677000',1,1,NULL),(417,'s6dbzx89rhrcp6pyzen9x8fm','CME BOSCH Diesel Service - Dubai 1.png',NULL,NULL,781,574,'{\"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_CME_BOSCH_Diesel_Service_Dubai_1_6e21d9a7f9.png\", \"hash\": \"small_CME_BOSCH_Diesel_Service_Dubai_1_6e21d9a7f9\", \"mime\": \"image/png\", \"name\": \"small_CME BOSCH Diesel Service - Dubai 1.png\", \"path\": null, \"size\": 297.77, \"width\": 500, \"height\": 367, \"sizeInBytes\": 297767}, \"medium\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_CME_BOSCH_Diesel_Service_Dubai_1_6e21d9a7f9.png\", \"hash\": \"medium_CME_BOSCH_Diesel_Service_Dubai_1_6e21d9a7f9\", \"mime\": \"image/png\", \"name\": \"medium_CME BOSCH Diesel Service - Dubai 1.png\", \"path\": null, \"size\": 601.96, \"width\": 750, \"height\": 551, \"sizeInBytes\": 601962}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_CME_BOSCH_Diesel_Service_Dubai_1_6e21d9a7f9.png\", \"hash\": \"thumbnail_CME_BOSCH_Diesel_Service_Dubai_1_6e21d9a7f9\", \"mime\": \"image/png\", \"name\": \"thumbnail_CME BOSCH Diesel Service - Dubai 1.png\", \"path\": null, \"size\": 65.84, \"width\": 212, \"height\": 156, \"sizeInBytes\": 65844}}','CME_BOSCH_Diesel_Service_Dubai_1_6e21d9a7f9','.png','image/png',175.87,'https://d1i031whgqu7f4.cloudfront.net/CME_BOSCH_Diesel_Service_Dubai_1_6e21d9a7f9.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/38/42/45','2026-03-31 16:25:34.826000','2026-03-31 16:26:12.725000','2026-03-31 16:25:34.829000',1,1,NULL),(418,'qrtplb4e1tlmhsnuvsvy53g3','CME Al Qouz Warehouse - Dubai Industrial Area 4 1.png',NULL,NULL,781,574,'{\"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_CME_Al_Qouz_Warehouse_Dubai_Industrial_Area_4_1_bb8fc79f94.png\", \"hash\": \"small_CME_Al_Qouz_Warehouse_Dubai_Industrial_Area_4_1_bb8fc79f94\", \"mime\": \"image/png\", \"name\": \"small_CME Al Qouz Warehouse - Dubai Industrial Area 4 1.png\", \"path\": null, \"size\": 328.19, \"width\": 500, \"height\": 367, \"sizeInBytes\": 328185}, \"medium\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_CME_Al_Qouz_Warehouse_Dubai_Industrial_Area_4_1_bb8fc79f94.png\", \"hash\": \"medium_CME_Al_Qouz_Warehouse_Dubai_Industrial_Area_4_1_bb8fc79f94\", \"mime\": \"image/png\", \"name\": \"medium_CME Al Qouz Warehouse - Dubai Industrial Area 4 1.png\", \"path\": null, \"size\": 688.54, \"width\": 750, \"height\": 551, \"sizeInBytes\": 688540}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_CME_Al_Qouz_Warehouse_Dubai_Industrial_Area_4_1_bb8fc79f94.png\", \"hash\": \"thumbnail_CME_Al_Qouz_Warehouse_Dubai_Industrial_Area_4_1_bb8fc79f94\", \"mime\": \"image/png\", \"name\": \"thumbnail_CME Al Qouz Warehouse - Dubai Industrial Area 4 1.png\", \"path\": null, \"size\": 66.73, \"width\": 212, \"height\": 156, \"sizeInBytes\": 66729}}','CME_Al_Qouz_Warehouse_Dubai_Industrial_Area_4_1_bb8fc79f94','.png','image/png',202.32,'https://d1i031whgqu7f4.cloudfront.net/CME_Al_Qouz_Warehouse_Dubai_Industrial_Area_4_1_bb8fc79f94.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/38/42/45','2026-03-31 16:25:34.840000','2026-03-31 16:25:34.840000','2026-03-31 16:25:34.842000',1,1,NULL),(419,'br3jblnnetcl6v0405e2by72','CME Workshop Test Equipment - Dubai Industrial Area 4 1.png',NULL,NULL,781,574,'{\"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_CME_Workshop_Test_Equipment_Dubai_Industrial_Area_4_1_b7145de827.png\", \"hash\": \"small_CME_Workshop_Test_Equipment_Dubai_Industrial_Area_4_1_b7145de827\", \"mime\": \"image/png\", \"name\": \"small_CME Workshop Test Equipment - Dubai Industrial Area 4 1.png\", \"path\": null, \"size\": 266.05, \"width\": 500, \"height\": 367, \"sizeInBytes\": 266048}, \"medium\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_CME_Workshop_Test_Equipment_Dubai_Industrial_Area_4_1_b7145de827.png\", \"hash\": \"medium_CME_Workshop_Test_Equipment_Dubai_Industrial_Area_4_1_b7145de827\", \"mime\": \"image/png\", \"name\": \"medium_CME Workshop Test Equipment - Dubai Industrial Area 4 1.png\", \"path\": null, \"size\": 531.9, \"width\": 750, \"height\": 551, \"sizeInBytes\": 531895}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_CME_Workshop_Test_Equipment_Dubai_Industrial_Area_4_1_b7145de827.png\", \"hash\": \"thumbnail_CME_Workshop_Test_Equipment_Dubai_Industrial_Area_4_1_b7145de827\", \"mime\": \"image/png\", \"name\": \"thumbnail_CME Workshop Test Equipment - Dubai Industrial Area 4 1.png\", \"path\": null, \"size\": 60.47, \"width\": 212, \"height\": 156, \"sizeInBytes\": 60466}}','CME_Workshop_Test_Equipment_Dubai_Industrial_Area_4_1_b7145de827','.png','image/png',165.70,'https://d1i031whgqu7f4.cloudfront.net/CME_Workshop_Test_Equipment_Dubai_Industrial_Area_4_1_b7145de827.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/38/42/45','2026-03-31 16:25:34.974000','2026-04-01 11:49:51.303000','2026-03-31 16:25:34.974000',1,1,NULL),(420,'qgxj31kgj0op5u97iwl2xq0c','CME Branch Office - Sharjah 1.png',NULL,NULL,781,574,'{\"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_CME_Branch_Office_Sharjah_1_82e21edb6f.png\", \"hash\": \"small_CME_Branch_Office_Sharjah_1_82e21edb6f\", \"mime\": \"image/png\", \"name\": \"small_CME Branch Office - Sharjah 1.png\", \"path\": null, \"size\": 314.42, \"width\": 500, \"height\": 367, \"sizeInBytes\": 314424}, \"medium\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_CME_Branch_Office_Sharjah_1_82e21edb6f.png\", \"hash\": \"medium_CME_Branch_Office_Sharjah_1_82e21edb6f\", \"mime\": \"image/png\", \"name\": \"medium_CME Branch Office - Sharjah 1.png\", \"path\": null, \"size\": 642.95, \"width\": 750, \"height\": 551, \"sizeInBytes\": 642952}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_CME_Branch_Office_Sharjah_1_82e21edb6f.png\", \"hash\": \"thumbnail_CME_Branch_Office_Sharjah_1_82e21edb6f\", \"mime\": \"image/png\", \"name\": \"thumbnail_CME Branch Office - Sharjah 1.png\", \"path\": null, \"size\": 64.7, \"width\": 212, \"height\": 156, \"sizeInBytes\": 64699}}','CME_Branch_Office_Sharjah_1_82e21edb6f','.png','image/png',173.59,'https://d1i031whgqu7f4.cloudfront.net/CME_Branch_Office_Sharjah_1_82e21edb6f.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/38/42/45','2026-03-31 16:25:35.031000','2026-03-31 16:25:35.031000','2026-03-31 16:25:35.031000',1,1,NULL),(421,'flosbtuk3vi2e0cewqb3c21k','CME Head Office - Abu Dhabi 1.png',NULL,NULL,781,574,'{\"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_CME_Head_Office_Abu_Dhabi_1_91575e0b15.png\", \"hash\": \"small_CME_Head_Office_Abu_Dhabi_1_91575e0b15\", \"mime\": \"image/png\", \"name\": \"small_CME Head Office - Abu Dhabi 1.png\", \"path\": null, \"size\": 314.54, \"width\": 500, \"height\": 367, \"sizeInBytes\": 314537}, \"medium\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_CME_Head_Office_Abu_Dhabi_1_91575e0b15.png\", \"hash\": \"medium_CME_Head_Office_Abu_Dhabi_1_91575e0b15\", \"mime\": \"image/png\", \"name\": \"medium_CME Head Office - Abu Dhabi 1.png\", \"path\": null, \"size\": 645.12, \"width\": 750, \"height\": 551, \"sizeInBytes\": 645124}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_CME_Head_Office_Abu_Dhabi_1_91575e0b15.png\", \"hash\": \"thumbnail_CME_Head_Office_Abu_Dhabi_1_91575e0b15\", \"mime\": \"image/png\", \"name\": \"thumbnail_CME Head Office - Abu Dhabi 1.png\", \"path\": null, \"size\": 66.81, \"width\": 212, \"height\": 156, \"sizeInBytes\": 66809}}','CME_Head_Office_Abu_Dhabi_1_91575e0b15','.png','image/png',168.52,'https://d1i031whgqu7f4.cloudfront.net/CME_Head_Office_Abu_Dhabi_1_91575e0b15.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/38/42/45','2026-03-31 16:25:35.050000','2026-03-31 16:25:35.050000','2026-03-31 16:25:35.051000',1,1,NULL),(422,'g02thdompizgbnm8g4rqbbbm','CME Sharjah Warehouse 1.png',NULL,NULL,781,574,'{\"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_CME_Sharjah_Warehouse_1_ae88fb3a80.png\", \"hash\": \"small_CME_Sharjah_Warehouse_1_ae88fb3a80\", \"mime\": \"image/png\", \"name\": \"small_CME Sharjah Warehouse 1.png\", \"path\": null, \"size\": 277.05, \"width\": 500, \"height\": 367, \"sizeInBytes\": 277050}, \"medium\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_CME_Sharjah_Warehouse_1_ae88fb3a80.png\", \"hash\": \"medium_CME_Sharjah_Warehouse_1_ae88fb3a80\", \"mime\": \"image/png\", \"name\": \"medium_CME Sharjah Warehouse 1.png\", \"path\": null, \"size\": 586.29, \"width\": 750, \"height\": 551, \"sizeInBytes\": 586291}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_CME_Sharjah_Warehouse_1_ae88fb3a80.png\", \"hash\": \"thumbnail_CME_Sharjah_Warehouse_1_ae88fb3a80\", \"mime\": \"image/png\", \"name\": \"thumbnail_CME Sharjah Warehouse 1.png\", \"path\": null, \"size\": 55.39, \"width\": 212, \"height\": 156, \"sizeInBytes\": 55391}}','CME_Sharjah_Warehouse_1_ae88fb3a80','.png','image/png',170.44,'https://d1i031whgqu7f4.cloudfront.net/CME_Sharjah_Warehouse_1_ae88fb3a80.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/38/42/45','2026-03-31 16:25:35.636000','2026-03-31 16:25:35.636000','2026-03-31 16:25:35.637000',1,1,NULL),(423,'euqm0yvk05tdjuvd4dliwopb','CME Branch Office - Dubai 1.png',NULL,NULL,781,574,'{\"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_CME_Branch_Office_Dubai_1_5b5c08e407.png\", \"hash\": \"small_CME_Branch_Office_Dubai_1_5b5c08e407\", \"mime\": \"image/png\", \"name\": \"small_CME Branch Office - Dubai 1.png\", \"path\": null, \"size\": 353.17, \"width\": 500, \"height\": 367, \"sizeInBytes\": 353173}, \"medium\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_CME_Branch_Office_Dubai_1_5b5c08e407.png\", \"hash\": \"medium_CME_Branch_Office_Dubai_1_5b5c08e407\", \"mime\": \"image/png\", \"name\": \"medium_CME Branch Office - Dubai 1.png\", \"path\": null, \"size\": 722.51, \"width\": 750, \"height\": 551, \"sizeInBytes\": 722509}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_CME_Branch_Office_Dubai_1_5b5c08e407.png\", \"hash\": \"thumbnail_CME_Branch_Office_Dubai_1_5b5c08e407\", \"mime\": \"image/png\", \"name\": \"thumbnail_CME Branch Office - Dubai 1.png\", \"path\": null, \"size\": 74.26, \"width\": 212, \"height\": 156, \"sizeInBytes\": 74257}}','CME_Branch_Office_Dubai_1_5b5c08e407','.png','image/png',208.69,'https://d1i031whgqu7f4.cloudfront.net/CME_Branch_Office_Dubai_1_5b5c08e407.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/38/42/45','2026-03-31 16:25:36.135000','2026-03-31 16:25:36.135000','2026-03-31 16:25:36.136000',1,1,NULL),(424,'i2nskfwkf6tk6k2693qbre0o','CME Mussafah Warehouse - Abu Dhabi 1.png',NULL,NULL,781,574,'{\"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_CME_Mussafah_Warehouse_Abu_Dhabi_1_6d62f24bc7.png\", \"hash\": \"small_CME_Mussafah_Warehouse_Abu_Dhabi_1_6d62f24bc7\", \"mime\": \"image/png\", \"name\": \"small_CME Mussafah Warehouse - Abu Dhabi 1.png\", \"path\": null, \"size\": 362.78, \"width\": 500, \"height\": 367, \"sizeInBytes\": 362775}, \"medium\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_CME_Mussafah_Warehouse_Abu_Dhabi_1_6d62f24bc7.png\", \"hash\": \"medium_CME_Mussafah_Warehouse_Abu_Dhabi_1_6d62f24bc7\", \"mime\": \"image/png\", \"name\": \"medium_CME Mussafah Warehouse - Abu Dhabi 1.png\", \"path\": null, \"size\": 762.67, \"width\": 750, \"height\": 551, \"sizeInBytes\": 762668}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_CME_Mussafah_Warehouse_Abu_Dhabi_1_6d62f24bc7.png\", \"hash\": \"thumbnail_CME_Mussafah_Warehouse_Abu_Dhabi_1_6d62f24bc7\", \"mime\": \"image/png\", \"name\": \"thumbnail_CME Mussafah Warehouse - Abu Dhabi 1.png\", \"path\": null, \"size\": 73.24, \"width\": 212, \"height\": 156, \"sizeInBytes\": 73237}}','CME_Mussafah_Warehouse_Abu_Dhabi_1_6d62f24bc7','.png','image/png',217.88,'https://d1i031whgqu7f4.cloudfront.net/CME_Mussafah_Warehouse_Abu_Dhabi_1_6d62f24bc7.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/38/42/45','2026-03-31 16:25:36.170000','2026-03-31 16:25:36.170000','2026-03-31 16:25:36.170000',1,1,NULL),(425,'zlhbi994bf3697r9w7rx6vu5','0455b78a3e9f52edc7e148c0f66a6c1b93101670.jpg',NULL,NULL,2121,1414,'{\"large\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/large_0455b78a3e9f52edc7e148c0f66a6c1b93101670_ae9f7b97af.jpg\", \"hash\": \"large_0455b78a3e9f52edc7e148c0f66a6c1b93101670_ae9f7b97af\", \"mime\": \"image/jpeg\", \"name\": \"large_0455b78a3e9f52edc7e148c0f66a6c1b93101670.jpg\", \"path\": null, \"size\": 84.92, \"width\": 1000, \"height\": 667, \"sizeInBytes\": 84919}, \"small\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_0455b78a3e9f52edc7e148c0f66a6c1b93101670_ae9f7b97af.jpg\", \"hash\": \"small_0455b78a3e9f52edc7e148c0f66a6c1b93101670_ae9f7b97af\", \"mime\": \"image/jpeg\", \"name\": \"small_0455b78a3e9f52edc7e148c0f66a6c1b93101670.jpg\", \"path\": null, \"size\": 30.77, \"width\": 500, \"height\": 333, \"sizeInBytes\": 30773}, \"medium\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_0455b78a3e9f52edc7e148c0f66a6c1b93101670_ae9f7b97af.jpg\", \"hash\": \"medium_0455b78a3e9f52edc7e148c0f66a6c1b93101670_ae9f7b97af\", \"mime\": \"image/jpeg\", \"name\": \"medium_0455b78a3e9f52edc7e148c0f66a6c1b93101670.jpg\", \"path\": null, \"size\": 55.81, \"width\": 750, \"height\": 500, \"sizeInBytes\": 55812}, \"thumbnail\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_0455b78a3e9f52edc7e148c0f66a6c1b93101670_ae9f7b97af.jpg\", \"hash\": \"thumbnail_0455b78a3e9f52edc7e148c0f66a6c1b93101670_ae9f7b97af\", \"mime\": \"image/jpeg\", \"name\": \"thumbnail_0455b78a3e9f52edc7e148c0f66a6c1b93101670.jpg\", \"path\": null, \"size\": 9.68, \"width\": 235, \"height\": 156, \"sizeInBytes\": 9676}}','0455b78a3e9f52edc7e148c0f66a6c1b93101670_ae9f7b97af','.jpg','image/jpeg',265.91,'https://d1i031whgqu7f4.cloudfront.net/0455b78a3e9f52edc7e148c0f66a6c1b93101670_ae9f7b97af.jpg',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/13','2026-04-01 07:29:47.796000','2026-04-01 07:29:47.796000','2026-04-01 07:29:47.797000',1,1,NULL),(426,'evb7c88xzgvrz8xw8go3b65x','AC Maintance.png',NULL,NULL,600,750,'{\"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_AC_Maintance_99b4f068e2.png\", \"hash\": \"small_AC_Maintance_99b4f068e2\", \"mime\": \"image/png\", \"name\": \"small_AC Maintance.png\", \"path\": null, \"size\": 221.24, \"width\": 400, \"height\": 500, \"sizeInBytes\": 221241}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_AC_Maintance_99b4f068e2.png\", \"hash\": \"thumbnail_AC_Maintance_99b4f068e2\", \"mime\": \"image/png\", \"name\": \"thumbnail_AC Maintance.png\", \"path\": null, \"size\": 31.64, \"width\": 125, \"height\": 156, \"sizeInBytes\": 31644}}','AC_Maintance_99b4f068e2','.png','image/png',100.19,'https://d1i031whgqu7f4.cloudfront.net/AC_Maintance_99b4f068e2.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/46/47','2026-04-01 08:55:37.585000','2026-04-01 08:55:37.585000','2026-04-01 08:55:37.585000',1,1,NULL),(427,'f26f9ubd782scfjjoejtwosd','Nitrogen Inflation.png',NULL,NULL,600,750,'{\"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_Nitrogen_Inflation_1e35ae48c6.png\", \"hash\": \"small_Nitrogen_Inflation_1e35ae48c6\", \"mime\": \"image/png\", \"name\": \"small_Nitrogen Inflation.png\", \"path\": null, \"size\": 391.09, \"width\": 400, \"height\": 500, \"sizeInBytes\": 391091}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Nitrogen_Inflation_1e35ae48c6.png\", \"hash\": \"thumbnail_Nitrogen_Inflation_1e35ae48c6\", \"mime\": \"image/png\", \"name\": \"thumbnail_Nitrogen Inflation.png\", \"path\": null, \"size\": 49.82, \"width\": 125, \"height\": 156, \"sizeInBytes\": 49815}}','Nitrogen_Inflation_1e35ae48c6','.png','image/png',195.58,'https://d1i031whgqu7f4.cloudfront.net/Nitrogen_Inflation_1e35ae48c6.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/46/47','2026-04-01 08:55:37.597000','2026-04-01 08:55:37.597000','2026-04-01 08:55:37.598000',1,1,NULL),(428,'f2ursnuj2ipc1rm7oaou7qtj','Break Pads.png',NULL,NULL,600,750,'{\"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_Break_Pads_75f828544f.png\", \"hash\": \"small_Break_Pads_75f828544f\", \"mime\": \"image/png\", \"name\": \"small_Break Pads.png\", \"path\": null, \"size\": 384.07, \"width\": 400, \"height\": 500, \"sizeInBytes\": 384069}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Break_Pads_75f828544f.png\", \"hash\": \"thumbnail_Break_Pads_75f828544f\", \"mime\": \"image/png\", \"name\": \"thumbnail_Break Pads.png\", \"path\": null, \"size\": 48.97, \"width\": 125, \"height\": 156, \"sizeInBytes\": 48965}}','Break_Pads_75f828544f','.png','image/png',190.87,'https://d1i031whgqu7f4.cloudfront.net/Break_Pads_75f828544f.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/46/47','2026-04-01 08:55:37.603000','2026-04-01 08:55:37.603000','2026-04-01 08:55:37.603000',1,1,NULL),(429,'czhdtt861u7hwgjzva9pflby','Oil Change.png',NULL,NULL,600,750,'{\"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_Oil_Change_f9a98e9277.png\", \"hash\": \"small_Oil_Change_f9a98e9277\", \"mime\": \"image/png\", \"name\": \"small_Oil Change.png\", \"path\": null, \"size\": 357.15, \"width\": 400, \"height\": 500, \"sizeInBytes\": 357149}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Oil_Change_f9a98e9277.png\", \"hash\": \"thumbnail_Oil_Change_f9a98e9277\", \"mime\": \"image/png\", \"name\": \"thumbnail_Oil Change.png\", \"path\": null, \"size\": 45.14, \"width\": 125, \"height\": 156, \"sizeInBytes\": 45139}}','Oil_Change_f9a98e9277','.png','image/png',157.75,'https://d1i031whgqu7f4.cloudfront.net/Oil_Change_f9a98e9277.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/46/47','2026-04-01 08:55:37.622000','2026-04-01 08:55:37.622000','2026-04-01 08:55:37.622000',1,1,NULL),(430,'nml79yqk0u9w63nyi7kl2euv','Rotation.png',NULL,NULL,600,750,'{\"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_Rotation_1b286cb4f0.png\", \"hash\": \"small_Rotation_1b286cb4f0\", \"mime\": \"image/png\", \"name\": \"small_Rotation.png\", \"path\": null, \"size\": 375.37, \"width\": 400, \"height\": 500, \"sizeInBytes\": 375373}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Rotation_1b286cb4f0.png\", \"hash\": \"thumbnail_Rotation_1b286cb4f0\", \"mime\": \"image/png\", \"name\": \"thumbnail_Rotation.png\", \"path\": null, \"size\": 45.29, \"width\": 125, \"height\": 156, \"sizeInBytes\": 45294}}','Rotation_1b286cb4f0','.png','image/png',224.04,'https://d1i031whgqu7f4.cloudfront.net/Rotation_1b286cb4f0.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/46/47','2026-04-01 08:55:37.665000','2026-04-01 08:55:37.665000','2026-04-01 08:55:37.666000',1,1,NULL),(431,'x5b50ypn5t63g3qzw4i0xpi7','Tyre Replacement.png',NULL,NULL,600,750,'{\"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_Tyre_Replacement_119a345b1b.png\", \"hash\": \"small_Tyre_Replacement_119a345b1b\", \"mime\": \"image/png\", \"name\": \"small_Tyre Replacement.png\", \"path\": null, \"size\": 410.94, \"width\": 400, \"height\": 500, \"sizeInBytes\": 410936}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Tyre_Replacement_119a345b1b.png\", \"hash\": \"thumbnail_Tyre_Replacement_119a345b1b\", \"mime\": \"image/png\", \"name\": \"thumbnail_Tyre Replacement.png\", \"path\": null, \"size\": 49.65, \"width\": 125, \"height\": 156, \"sizeInBytes\": 49648}}','Tyre_Replacement_119a345b1b','.png','image/png',220.57,'https://d1i031whgqu7f4.cloudfront.net/Tyre_Replacement_119a345b1b.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/46/47','2026-04-01 08:55:37.692000','2026-04-01 08:55:37.692000','2026-04-01 08:55:37.693000',1,1,NULL),(432,'d4toktm2fjjmr6krsf026iu5','Wheel Alignment.png',NULL,NULL,600,750,'{\"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_Wheel_Alignment_4ed9c755ea.png\", \"hash\": \"small_Wheel_Alignment_4ed9c755ea\", \"mime\": \"image/png\", \"name\": \"small_Wheel Alignment.png\", \"path\": null, \"size\": 401.4, \"width\": 400, \"height\": 500, \"sizeInBytes\": 401400}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Wheel_Alignment_4ed9c755ea.png\", \"hash\": \"thumbnail_Wheel_Alignment_4ed9c755ea\", \"mime\": \"image/png\", \"name\": \"thumbnail_Wheel Alignment.png\", \"path\": null, \"size\": 49.02, \"width\": 125, \"height\": 156, \"sizeInBytes\": 49017}}','Wheel_Alignment_4ed9c755ea','.png','image/png',208.99,'https://d1i031whgqu7f4.cloudfront.net/Wheel_Alignment_4ed9c755ea.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/46/47','2026-04-01 08:55:37.702000','2026-04-01 08:55:37.702000','2026-04-01 08:55:37.703000',1,1,NULL),(433,'z5rosbg74ab0n4v1cxri3xl7','Tyre Repair.png',NULL,NULL,600,750,'{\"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_Tyre_Repair_497e5b8efa.png\", \"hash\": \"small_Tyre_Repair_497e5b8efa\", \"mime\": \"image/png\", \"name\": \"small_Tyre Repair.png\", \"path\": null, \"size\": 425.23, \"width\": 400, \"height\": 500, \"sizeInBytes\": 425232}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Tyre_Repair_497e5b8efa.png\", \"hash\": \"thumbnail_Tyre_Repair_497e5b8efa\", \"mime\": \"image/png\", \"name\": \"thumbnail_Tyre Repair.png\", \"path\": null, \"size\": 49.45, \"width\": 125, \"height\": 156, \"sizeInBytes\": 49452}}','Tyre_Repair_497e5b8efa','.png','image/png',238.81,'https://d1i031whgqu7f4.cloudfront.net/Tyre_Repair_497e5b8efa.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/46/47','2026-04-01 08:55:37.773000','2026-04-01 08:55:37.773000','2026-04-01 08:55:37.773000',1,1,NULL),(434,'mn9iq52tqz8l8mlksixoee2y','Car Battery Replacement.png',NULL,NULL,600,750,'{\"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_Car_Battery_Replacement_4ac58a4a5b.png\", \"hash\": \"small_Car_Battery_Replacement_4ac58a4a5b\", \"mime\": \"image/png\", \"name\": \"small_Car Battery Replacement.png\", \"path\": null, \"size\": 446.46, \"width\": 400, \"height\": 500, \"sizeInBytes\": 446455}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Car_Battery_Replacement_4ac58a4a5b.png\", \"hash\": \"thumbnail_Car_Battery_Replacement_4ac58a4a5b\", \"mime\": \"image/png\", \"name\": \"thumbnail_Car Battery Replacement.png\", \"path\": null, \"size\": 53.01, \"width\": 125, \"height\": 156, \"sizeInBytes\": 53007}}','Car_Battery_Replacement_4ac58a4a5b','.png','image/png',218.03,'https://d1i031whgqu7f4.cloudfront.net/Car_Battery_Replacement_4ac58a4a5b.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/46/47','2026-04-01 08:55:38.025000','2026-04-01 08:55:38.025000','2026-04-01 08:55:38.025000',1,1,NULL),(435,'mlzas3968pj7u4f1cjp5luzj','Banner for Service page 1.webp',NULL,NULL,2329,528,'{\"large\": {\"ext\": \".webp\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/large_Banner_for_Service_page_1_558c85b901.webp\", \"hash\": \"large_Banner_for_Service_page_1_558c85b901\", \"mime\": \"image/webp\", \"name\": \"large_Banner for Service page 1.webp\", \"path\": null, \"size\": 17.37, \"width\": 1000, \"height\": 227, \"sizeInBytes\": 17372}, \"small\": {\"ext\": \".webp\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_Banner_for_Service_page_1_558c85b901.webp\", \"hash\": \"small_Banner_for_Service_page_1_558c85b901\", \"mime\": \"image/webp\", \"name\": \"small_Banner for Service page 1.webp\", \"path\": null, \"size\": 6.5, \"width\": 500, \"height\": 113, \"sizeInBytes\": 6496}, \"medium\": {\"ext\": \".webp\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_Banner_for_Service_page_1_558c85b901.webp\", \"hash\": \"medium_Banner_for_Service_page_1_558c85b901\", \"mime\": \"image/webp\", \"name\": \"medium_Banner for Service page 1.webp\", \"path\": null, \"size\": 11.59, \"width\": 750, \"height\": 170, \"sizeInBytes\": 11590}, \"thumbnail\": {\"ext\": \".webp\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Banner_for_Service_page_1_558c85b901.webp\", \"hash\": \"thumbnail_Banner_for_Service_page_1_558c85b901\", \"mime\": \"image/webp\", \"name\": \"thumbnail_Banner for Service page 1.webp\", \"path\": null, \"size\": 2.37, \"width\": 245, \"height\": 56, \"sizeInBytes\": 2372}}','Banner_for_Service_page_1_558c85b901','.webp','image/webp',61.46,'https://d1i031whgqu7f4.cloudfront.net/Banner_for_Service_page_1_558c85b901.webp',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/50','2026-04-01 09:49:08.887000','2026-04-01 09:49:08.887000','2026-04-01 09:49:08.900000',1,1,NULL),(436,'fzf7rkxpvj7mh5oo5c2moc8d','Tyre landing page banner 4 1.webp',NULL,NULL,1984,528,'{\"large\": {\"ext\": \".webp\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/large_Tyre_landing_page_banner_4_1_a0fe242371.webp\", \"hash\": \"large_Tyre_landing_page_banner_4_1_a0fe242371\", \"mime\": \"image/webp\", \"name\": \"large_Tyre landing page banner 4 1.webp\", \"path\": null, \"size\": 31.32, \"width\": 1000, \"height\": 266, \"sizeInBytes\": 31322}, \"small\": {\"ext\": \".webp\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_Tyre_landing_page_banner_4_1_a0fe242371.webp\", \"hash\": \"small_Tyre_landing_page_banner_4_1_a0fe242371\", \"mime\": \"image/webp\", \"name\": \"small_Tyre landing page banner 4 1.webp\", \"path\": null, \"size\": 10.73, \"width\": 500, \"height\": 133, \"sizeInBytes\": 10728}, \"medium\": {\"ext\": \".webp\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_Tyre_landing_page_banner_4_1_a0fe242371.webp\", \"hash\": \"medium_Tyre_landing_page_banner_4_1_a0fe242371\", \"mime\": \"image/webp\", \"name\": \"medium_Tyre landing page banner 4 1.webp\", \"path\": null, \"size\": 20.01, \"width\": 750, \"height\": 200, \"sizeInBytes\": 20010}, \"thumbnail\": {\"ext\": \".webp\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Tyre_landing_page_banner_4_1_a0fe242371.webp\", \"hash\": \"thumbnail_Tyre_landing_page_banner_4_1_a0fe242371\", \"mime\": \"image/webp\", \"name\": \"thumbnail_Tyre landing page banner 4 1.webp\", \"path\": null, \"size\": 3.33, \"width\": 245, \"height\": 65, \"sizeInBytes\": 3328}}','Tyre_landing_page_banner_4_1_a0fe242371','.webp','image/webp',105.73,'https://d1i031whgqu7f4.cloudfront.net/Tyre_landing_page_banner_4_1_a0fe242371.webp',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/50','2026-04-01 09:49:09.587000','2026-04-01 09:49:09.587000','2026-04-01 09:49:09.587000',1,1,NULL),(437,'cl1kvyc8yttpbxn7bcgfioht','Tyre landing page banner 5 1.webp',NULL,NULL,1984,528,'{\"large\": {\"ext\": \".webp\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/large_Tyre_landing_page_banner_5_1_9a5517a239.webp\", \"hash\": \"large_Tyre_landing_page_banner_5_1_9a5517a239\", \"mime\": \"image/webp\", \"name\": \"large_Tyre landing page banner 5 1.webp\", \"path\": null, \"size\": 31.09, \"width\": 1000, \"height\": 266, \"sizeInBytes\": 31094}, \"small\": {\"ext\": \".webp\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_Tyre_landing_page_banner_5_1_9a5517a239.webp\", \"hash\": \"small_Tyre_landing_page_banner_5_1_9a5517a239\", \"mime\": \"image/webp\", \"name\": \"small_Tyre landing page banner 5 1.webp\", \"path\": null, \"size\": 12.64, \"width\": 500, \"height\": 133, \"sizeInBytes\": 12642}, \"medium\": {\"ext\": \".webp\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_Tyre_landing_page_banner_5_1_9a5517a239.webp\", \"hash\": \"medium_Tyre_landing_page_banner_5_1_9a5517a239\", \"mime\": \"image/webp\", \"name\": \"medium_Tyre landing page banner 5 1.webp\", \"path\": null, \"size\": 21.51, \"width\": 750, \"height\": 200, \"sizeInBytes\": 21512}, \"thumbnail\": {\"ext\": \".webp\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Tyre_landing_page_banner_5_1_9a5517a239.webp\", \"hash\": \"thumbnail_Tyre_landing_page_banner_5_1_9a5517a239\", \"mime\": \"image/webp\", \"name\": \"thumbnail_Tyre landing page banner 5 1.webp\", \"path\": null, \"size\": 4.72, \"width\": 245, \"height\": 65, \"sizeInBytes\": 4716}}','Tyre_landing_page_banner_5_1_9a5517a239','.webp','image/webp',85.97,'https://d1i031whgqu7f4.cloudfront.net/Tyre_landing_page_banner_5_1_9a5517a239.webp',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/50','2026-04-01 09:49:09.611000','2026-04-01 09:49:09.611000','2026-04-01 09:49:09.612000',1,1,NULL),(438,'nt9ycub3p8k4swkuw7zxb4mw','Homepage main banner.webp',NULL,NULL,1376,768,'{\"large\": {\"ext\": \".webp\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/large_Homepage_main_banner_1227078a58.webp\", \"hash\": \"large_Homepage_main_banner_1227078a58\", \"mime\": \"image/webp\", \"name\": \"large_Homepage main banner.webp\", \"path\": null, \"size\": 54.96, \"width\": 1000, \"height\": 558, \"sizeInBytes\": 54962}, \"small\": {\"ext\": \".webp\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_Homepage_main_banner_1227078a58.webp\", \"hash\": \"small_Homepage_main_banner_1227078a58\", \"mime\": \"image/webp\", \"name\": \"small_Homepage main banner.webp\", \"path\": null, \"size\": 22.28, \"width\": 500, \"height\": 279, \"sizeInBytes\": 22276}, \"medium\": {\"ext\": \".webp\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_Homepage_main_banner_1227078a58.webp\", \"hash\": \"medium_Homepage_main_banner_1227078a58\", \"mime\": \"image/webp\", \"name\": \"medium_Homepage main banner.webp\", \"path\": null, \"size\": 38.2, \"width\": 750, \"height\": 419, \"sizeInBytes\": 38198}, \"thumbnail\": {\"ext\": \".webp\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Homepage_main_banner_1227078a58.webp\", \"hash\": \"thumbnail_Homepage_main_banner_1227078a58\", \"mime\": \"image/webp\", \"name\": \"thumbnail_Homepage main banner.webp\", \"path\": null, \"size\": 7.99, \"width\": 245, \"height\": 137, \"sizeInBytes\": 7990}}','Homepage_main_banner_1227078a58','.webp','image/webp',91.20,'https://d1i031whgqu7f4.cloudfront.net/Homepage_main_banner_1227078a58.webp',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/50','2026-04-01 09:49:09.627000','2026-04-01 09:49:09.627000','2026-04-01 09:49:09.627000',1,1,NULL),(439,'o8odrfnolbylqtipywrb3mah','Tyre landing page banner 1 1.webp',NULL,NULL,1984,528,'{\"large\": {\"ext\": \".webp\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/large_Tyre_landing_page_banner_1_1_5812ec3bfd.webp\", \"hash\": \"large_Tyre_landing_page_banner_1_1_5812ec3bfd\", \"mime\": \"image/webp\", \"name\": \"large_Tyre landing page banner 1 1.webp\", \"path\": null, \"size\": 37.16, \"width\": 1000, \"height\": 266, \"sizeInBytes\": 37158}, \"small\": {\"ext\": \".webp\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_Tyre_landing_page_banner_1_1_5812ec3bfd.webp\", \"hash\": \"small_Tyre_landing_page_banner_1_1_5812ec3bfd\", \"mime\": \"image/webp\", \"name\": \"small_Tyre landing page banner 1 1.webp\", \"path\": null, \"size\": 13.48, \"width\": 500, \"height\": 133, \"sizeInBytes\": 13478}, \"medium\": {\"ext\": \".webp\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_Tyre_landing_page_banner_1_1_5812ec3bfd.webp\", \"hash\": \"medium_Tyre_landing_page_banner_1_1_5812ec3bfd\", \"mime\": \"image/webp\", \"name\": \"medium_Tyre landing page banner 1 1.webp\", \"path\": null, \"size\": 24.28, \"width\": 750, \"height\": 200, \"sizeInBytes\": 24278}, \"thumbnail\": {\"ext\": \".webp\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Tyre_landing_page_banner_1_1_5812ec3bfd.webp\", \"hash\": \"thumbnail_Tyre_landing_page_banner_1_1_5812ec3bfd\", \"mime\": \"image/webp\", \"name\": \"thumbnail_Tyre landing page banner 1 1.webp\", \"path\": null, \"size\": 4.38, \"width\": 245, \"height\": 65, \"sizeInBytes\": 4378}}','Tyre_landing_page_banner_1_1_5812ec3bfd','.webp','image/webp',97.92,'https://d1i031whgqu7f4.cloudfront.net/Tyre_landing_page_banner_1_1_5812ec3bfd.webp',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/50','2026-04-01 09:49:09.717000','2026-04-01 09:49:09.717000','2026-04-01 09:49:09.718000',1,1,NULL),(440,'nj891yucqpgm7exond13mwjv','Tyre landing page banner 7 1.webp',NULL,NULL,1984,528,'{\"large\": {\"ext\": \".webp\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/large_Tyre_landing_page_banner_7_1_1e2e410d84.webp\", \"hash\": \"large_Tyre_landing_page_banner_7_1_1e2e410d84\", \"mime\": \"image/webp\", \"name\": \"large_Tyre landing page banner 7 1.webp\", \"path\": null, \"size\": 27.08, \"width\": 1000, \"height\": 266, \"sizeInBytes\": 27080}, \"small\": {\"ext\": \".webp\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_Tyre_landing_page_banner_7_1_1e2e410d84.webp\", \"hash\": \"small_Tyre_landing_page_banner_7_1_1e2e410d84\", \"mime\": \"image/webp\", \"name\": \"small_Tyre landing page banner 7 1.webp\", \"path\": null, \"size\": 10.14, \"width\": 500, \"height\": 133, \"sizeInBytes\": 10144}, \"medium\": {\"ext\": \".webp\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_Tyre_landing_page_banner_7_1_1e2e410d84.webp\", \"hash\": \"medium_Tyre_landing_page_banner_7_1_1e2e410d84\", \"mime\": \"image/webp\", \"name\": \"medium_Tyre landing page banner 7 1.webp\", \"path\": null, \"size\": 18.01, \"width\": 750, \"height\": 200, \"sizeInBytes\": 18010}, \"thumbnail\": {\"ext\": \".webp\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Tyre_landing_page_banner_7_1_1e2e410d84.webp\", \"hash\": \"thumbnail_Tyre_landing_page_banner_7_1_1e2e410d84\", \"mime\": \"image/webp\", \"name\": \"thumbnail_Tyre landing page banner 7 1.webp\", \"path\": null, \"size\": 3.55, \"width\": 245, \"height\": 65, \"sizeInBytes\": 3554}}','Tyre_landing_page_banner_7_1_1e2e410d84','.webp','image/webp',90.01,'https://d1i031whgqu7f4.cloudfront.net/Tyre_landing_page_banner_7_1_1e2e410d84.webp',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/50','2026-04-01 09:49:09.757000','2026-04-01 09:49:09.757000','2026-04-01 09:49:09.757000',1,1,NULL),(441,'cjsl0ynhj592ms5tabfuzoqi','Tyre landing page banner 6 1.webp',NULL,NULL,1984,528,'{\"large\": {\"ext\": \".webp\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/large_Tyre_landing_page_banner_6_1_85ad77ab73.webp\", \"hash\": \"large_Tyre_landing_page_banner_6_1_85ad77ab73\", \"mime\": \"image/webp\", \"name\": \"large_Tyre landing page banner 6 1.webp\", \"path\": null, \"size\": 53.06, \"width\": 1000, \"height\": 266, \"sizeInBytes\": 53058}, \"small\": {\"ext\": \".webp\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_Tyre_landing_page_banner_6_1_85ad77ab73.webp\", \"hash\": \"small_Tyre_landing_page_banner_6_1_85ad77ab73\", \"mime\": \"image/webp\", \"name\": \"small_Tyre landing page banner 6 1.webp\", \"path\": null, \"size\": 15.71, \"width\": 500, \"height\": 133, \"sizeInBytes\": 15714}, \"medium\": {\"ext\": \".webp\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_Tyre_landing_page_banner_6_1_85ad77ab73.webp\", \"hash\": \"medium_Tyre_landing_page_banner_6_1_85ad77ab73\", \"mime\": \"image/webp\", \"name\": \"medium_Tyre landing page banner 6 1.webp\", \"path\": null, \"size\": 32.01, \"width\": 750, \"height\": 200, \"sizeInBytes\": 32014}, \"thumbnail\": {\"ext\": \".webp\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Tyre_landing_page_banner_6_1_85ad77ab73.webp\", \"hash\": \"thumbnail_Tyre_landing_page_banner_6_1_85ad77ab73\", \"mime\": \"image/webp\", \"name\": \"thumbnail_Tyre landing page banner 6 1.webp\", \"path\": null, \"size\": 4.83, \"width\": 245, \"height\": 65, \"sizeInBytes\": 4826}}','Tyre_landing_page_banner_6_1_85ad77ab73','.webp','image/webp',182.98,'https://d1i031whgqu7f4.cloudfront.net/Tyre_landing_page_banner_6_1_85ad77ab73.webp',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/50','2026-04-01 09:49:10.073000','2026-04-01 09:49:10.073000','2026-04-01 09:49:10.073000',1,1,NULL),(442,'btp0mobw41mdpob63xxurhuu','Tyre landing page banner 3 1.webp',NULL,NULL,1988,528,'{\"large\": {\"ext\": \".webp\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/large_Tyre_landing_page_banner_3_1_7df489328a.webp\", \"hash\": \"large_Tyre_landing_page_banner_3_1_7df489328a\", \"mime\": \"image/webp\", \"name\": \"large_Tyre landing page banner 3 1.webp\", \"path\": null, \"size\": 46.31, \"width\": 1000, \"height\": 266, \"sizeInBytes\": 46308}, \"small\": {\"ext\": \".webp\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_Tyre_landing_page_banner_3_1_7df489328a.webp\", \"hash\": \"small_Tyre_landing_page_banner_3_1_7df489328a\", \"mime\": \"image/webp\", \"name\": \"small_Tyre landing page banner 3 1.webp\", \"path\": null, \"size\": 14.56, \"width\": 500, \"height\": 133, \"sizeInBytes\": 14558}, \"medium\": {\"ext\": \".webp\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_Tyre_landing_page_banner_3_1_7df489328a.webp\", \"hash\": \"medium_Tyre_landing_page_banner_3_1_7df489328a\", \"mime\": \"image/webp\", \"name\": \"medium_Tyre landing page banner 3 1.webp\", \"path\": null, \"size\": 29.43, \"width\": 750, \"height\": 199, \"sizeInBytes\": 29426}, \"thumbnail\": {\"ext\": \".webp\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Tyre_landing_page_banner_3_1_7df489328a.webp\", \"hash\": \"thumbnail_Tyre_landing_page_banner_3_1_7df489328a\", \"mime\": \"image/webp\", \"name\": \"thumbnail_Tyre landing page banner 3 1.webp\", \"path\": null, \"size\": 4.38, \"width\": 245, \"height\": 65, \"sizeInBytes\": 4382}}','Tyre_landing_page_banner_3_1_7df489328a','.webp','image/webp',150.22,'https://d1i031whgqu7f4.cloudfront.net/Tyre_landing_page_banner_3_1_7df489328a.webp',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/50','2026-04-01 09:49:10.150000','2026-04-01 09:49:10.150000','2026-04-01 09:49:10.151000',1,1,NULL),(443,'ijivzuu7v57762ac2tp7vpc7','Tyre landing page banner 2 1.webp',NULL,NULL,1984,528,'{\"large\": {\"ext\": \".webp\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/large_Tyre_landing_page_banner_2_1_abb0136b44.webp\", \"hash\": \"large_Tyre_landing_page_banner_2_1_abb0136b44\", \"mime\": \"image/webp\", \"name\": \"large_Tyre landing page banner 2 1.webp\", \"path\": null, \"size\": 67.52, \"width\": 1000, \"height\": 266, \"sizeInBytes\": 67520}, \"small\": {\"ext\": \".webp\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_Tyre_landing_page_banner_2_1_abb0136b44.webp\", \"hash\": \"small_Tyre_landing_page_banner_2_1_abb0136b44\", \"mime\": \"image/webp\", \"name\": \"small_Tyre landing page banner 2 1.webp\", \"path\": null, \"size\": 20.12, \"width\": 500, \"height\": 133, \"sizeInBytes\": 20124}, \"medium\": {\"ext\": \".webp\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_Tyre_landing_page_banner_2_1_abb0136b44.webp\", \"hash\": \"medium_Tyre_landing_page_banner_2_1_abb0136b44\", \"mime\": \"image/webp\", \"name\": \"medium_Tyre landing page banner 2 1.webp\", \"path\": null, \"size\": 41.63, \"width\": 750, \"height\": 200, \"sizeInBytes\": 41628}, \"thumbnail\": {\"ext\": \".webp\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Tyre_landing_page_banner_2_1_abb0136b44.webp\", \"hash\": \"thumbnail_Tyre_landing_page_banner_2_1_abb0136b44\", \"mime\": \"image/webp\", \"name\": \"thumbnail_Tyre landing page banner 2 1.webp\", \"path\": null, \"size\": 5.47, \"width\": 245, \"height\": 65, \"sizeInBytes\": 5466}}','Tyre_landing_page_banner_2_1_abb0136b44','.webp','image/webp',214.95,'https://d1i031whgqu7f4.cloudfront.net/Tyre_landing_page_banner_2_1_abb0136b44.webp',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/50','2026-04-01 09:49:10.209000','2026-04-01 09:49:10.209000','2026-04-01 09:49:10.209000',1,1,NULL),(444,'r8szttuccb8ct3t1qejkw1ht','Automotive landing page banner 1 1.webp',NULL,NULL,1920,532,'{\"large\": {\"ext\": \".webp\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/large_Automotive_landing_page_banner_1_1_d21b443c99.webp\", \"hash\": \"large_Automotive_landing_page_banner_1_1_d21b443c99\", \"mime\": \"image/webp\", \"name\": \"large_Automotive landing page banner 1 1.webp\", \"path\": null, \"size\": 19.09, \"width\": 1000, \"height\": 277, \"sizeInBytes\": 19086}, \"small\": {\"ext\": \".webp\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_Automotive_landing_page_banner_1_1_d21b443c99.webp\", \"hash\": \"small_Automotive_landing_page_banner_1_1_d21b443c99\", \"mime\": \"image/webp\", \"name\": \"small_Automotive landing page banner 1 1.webp\", \"path\": null, \"size\": 7.16, \"width\": 500, \"height\": 139, \"sizeInBytes\": 7158}, \"medium\": {\"ext\": \".webp\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_Automotive_landing_page_banner_1_1_d21b443c99.webp\", \"hash\": \"medium_Automotive_landing_page_banner_1_1_d21b443c99\", \"mime\": \"image/webp\", \"name\": \"medium_Automotive landing page banner 1 1.webp\", \"path\": null, \"size\": 12.82, \"width\": 750, \"height\": 208, \"sizeInBytes\": 12822}, \"thumbnail\": {\"ext\": \".webp\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Automotive_landing_page_banner_1_1_d21b443c99.webp\", \"hash\": \"thumbnail_Automotive_landing_page_banner_1_1_d21b443c99\", \"mime\": \"image/webp\", \"name\": \"thumbnail_Automotive landing page banner 1 1.webp\", \"path\": null, \"size\": 2.46, \"width\": 245, \"height\": 68, \"sizeInBytes\": 2460}}','Automotive_landing_page_banner_1_1_d21b443c99','.webp','image/webp',52.24,'https://d1i031whgqu7f4.cloudfront.net/Automotive_landing_page_banner_1_1_d21b443c99.webp',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/50','2026-04-01 09:49:44.387000','2026-04-01 09:49:44.387000','2026-04-01 09:49:44.387000',1,1,NULL),(445,'w701wabi2doq4h3rkbhnox8q','Automotive landing page banner 3 1.webp',NULL,NULL,1988,528,'{\"large\": {\"ext\": \".webp\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/large_Automotive_landing_page_banner_3_1_b4dbaa2846.webp\", \"hash\": \"large_Automotive_landing_page_banner_3_1_b4dbaa2846\", \"mime\": \"image/webp\", \"name\": \"large_Automotive landing page banner 3 1.webp\", \"path\": null, \"size\": 15.81, \"width\": 1000, \"height\": 266, \"sizeInBytes\": 15808}, \"small\": {\"ext\": \".webp\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_Automotive_landing_page_banner_3_1_b4dbaa2846.webp\", \"hash\": \"small_Automotive_landing_page_banner_3_1_b4dbaa2846\", \"mime\": \"image/webp\", \"name\": \"small_Automotive landing page banner 3 1.webp\", \"path\": null, \"size\": 5.63, \"width\": 500, \"height\": 133, \"sizeInBytes\": 5634}, \"medium\": {\"ext\": \".webp\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_Automotive_landing_page_banner_3_1_b4dbaa2846.webp\", \"hash\": \"medium_Automotive_landing_page_banner_3_1_b4dbaa2846\", \"mime\": \"image/webp\", \"name\": \"medium_Automotive landing page banner 3 1.webp\", \"path\": null, \"size\": 10.23, \"width\": 750, \"height\": 199, \"sizeInBytes\": 10230}, \"thumbnail\": {\"ext\": \".webp\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Automotive_landing_page_banner_3_1_b4dbaa2846.webp\", \"hash\": \"thumbnail_Automotive_landing_page_banner_3_1_b4dbaa2846\", \"mime\": \"image/webp\", \"name\": \"thumbnail_Automotive landing page banner 3 1.webp\", \"path\": null, \"size\": 1.93, \"width\": 245, \"height\": 65, \"sizeInBytes\": 1928}}','Automotive_landing_page_banner_3_1_b4dbaa2846','.webp','image/webp',44.97,'https://d1i031whgqu7f4.cloudfront.net/Automotive_landing_page_banner_3_1_b4dbaa2846.webp',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/50','2026-04-01 09:49:44.745000','2026-04-01 09:49:44.745000','2026-04-01 09:49:44.745000',1,1,NULL),(446,'nj6b0bf7mh6rgco13wjqzqvl','Automotive landing page banner 2 1.webp',NULL,NULL,1984,528,'{\"large\": {\"ext\": \".webp\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/large_Automotive_landing_page_banner_2_1_a003dd33a2.webp\", \"hash\": \"large_Automotive_landing_page_banner_2_1_a003dd33a2\", \"mime\": \"image/webp\", \"name\": \"large_Automotive landing page banner 2 1.webp\", \"path\": null, \"size\": 49.2, \"width\": 1000, \"height\": 266, \"sizeInBytes\": 49200}, \"small\": {\"ext\": \".webp\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_Automotive_landing_page_banner_2_1_a003dd33a2.webp\", \"hash\": \"small_Automotive_landing_page_banner_2_1_a003dd33a2\", \"mime\": \"image/webp\", \"name\": \"small_Automotive landing page banner 2 1.webp\", \"path\": null, \"size\": 15.87, \"width\": 500, \"height\": 133, \"sizeInBytes\": 15870}, \"medium\": {\"ext\": \".webp\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_Automotive_landing_page_banner_2_1_a003dd33a2.webp\", \"hash\": \"medium_Automotive_landing_page_banner_2_1_a003dd33a2\", \"mime\": \"image/webp\", \"name\": \"medium_Automotive landing page banner 2 1.webp\", \"path\": null, \"size\": 31.02, \"width\": 750, \"height\": 200, \"sizeInBytes\": 31022}, \"thumbnail\": {\"ext\": \".webp\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Automotive_landing_page_banner_2_1_a003dd33a2.webp\", \"hash\": \"thumbnail_Automotive_landing_page_banner_2_1_a003dd33a2\", \"mime\": \"image/webp\", \"name\": \"thumbnail_Automotive landing page banner 2 1.webp\", \"path\": null, \"size\": 4.77, \"width\": 245, \"height\": 65, \"sizeInBytes\": 4766}}','Automotive_landing_page_banner_2_1_a003dd33a2','.webp','image/webp',152.30,'https://d1i031whgqu7f4.cloudfront.net/Automotive_landing_page_banner_2_1_a003dd33a2.webp',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/50','2026-04-01 09:49:44.802000','2026-04-01 09:49:44.802000','2026-04-01 09:49:44.802000',1,1,NULL),(447,'ozsf1id20skkeyuvyqxmoenh','Automotive landing page banner 4 1.webp',NULL,NULL,1984,528,'{\"large\": {\"ext\": \".webp\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/large_Automotive_landing_page_banner_4_1_522afda89b.webp\", \"hash\": \"large_Automotive_landing_page_banner_4_1_522afda89b\", \"mime\": \"image/webp\", \"name\": \"large_Automotive landing page banner 4 1.webp\", \"path\": null, \"size\": 20.43, \"width\": 1000, \"height\": 266, \"sizeInBytes\": 20432}, \"small\": {\"ext\": \".webp\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_Automotive_landing_page_banner_4_1_522afda89b.webp\", \"hash\": \"small_Automotive_landing_page_banner_4_1_522afda89b\", \"mime\": \"image/webp\", \"name\": \"small_Automotive landing page banner 4 1.webp\", \"path\": null, \"size\": 8.56, \"width\": 500, \"height\": 133, \"sizeInBytes\": 8558}, \"medium\": {\"ext\": \".webp\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_Automotive_landing_page_banner_4_1_522afda89b.webp\", \"hash\": \"medium_Automotive_landing_page_banner_4_1_522afda89b\", \"mime\": \"image/webp\", \"name\": \"medium_Automotive landing page banner 4 1.webp\", \"path\": null, \"size\": 14.17, \"width\": 750, \"height\": 200, \"sizeInBytes\": 14166}, \"thumbnail\": {\"ext\": \".webp\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Automotive_landing_page_banner_4_1_522afda89b.webp\", \"hash\": \"thumbnail_Automotive_landing_page_banner_4_1_522afda89b\", \"mime\": \"image/webp\", \"name\": \"thumbnail_Automotive landing page banner 4 1.webp\", \"path\": null, \"size\": 3.04, \"width\": 245, \"height\": 65, \"sizeInBytes\": 3044}}','Automotive_landing_page_banner_4_1_522afda89b','.webp','image/webp',51.41,'https://d1i031whgqu7f4.cloudfront.net/Automotive_landing_page_banner_4_1_522afda89b.webp',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/50','2026-04-01 09:49:44.850000','2026-04-01 09:49:44.850000','2026-04-01 09:49:44.850000',1,1,NULL),(448,'vxesr3emglfrrp3qhqydzvnr','Service page banner 1.webp',NULL,NULL,1984,528,'{\"large\": {\"ext\": \".webp\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/large_Service_page_banner_1_6805053842.webp\", \"hash\": \"large_Service_page_banner_1_6805053842\", \"mime\": \"image/webp\", \"name\": \"large_Service page banner 1.webp\", \"path\": null, \"size\": 31.82, \"width\": 1000, \"height\": 266, \"sizeInBytes\": 31820}, \"small\": {\"ext\": \".webp\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_Service_page_banner_1_6805053842.webp\", \"hash\": \"small_Service_page_banner_1_6805053842\", \"mime\": \"image/webp\", \"name\": \"small_Service page banner 1.webp\", \"path\": null, \"size\": 12.5, \"width\": 500, \"height\": 133, \"sizeInBytes\": 12504}, \"medium\": {\"ext\": \".webp\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_Service_page_banner_1_6805053842.webp\", \"hash\": \"medium_Service_page_banner_1_6805053842\", \"mime\": \"image/webp\", \"name\": \"medium_Service page banner 1.webp\", \"path\": null, \"size\": 22.04, \"width\": 750, \"height\": 200, \"sizeInBytes\": 22036}, \"thumbnail\": {\"ext\": \".webp\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Service_page_banner_1_6805053842.webp\", \"hash\": \"thumbnail_Service_page_banner_1_6805053842\", \"mime\": \"image/webp\", \"name\": \"thumbnail_Service page banner 1.webp\", \"path\": null, \"size\": 4.54, \"width\": 245, \"height\": 65, \"sizeInBytes\": 4536}}','Service_page_banner_1_6805053842','.webp','image/webp',84.81,'https://d1i031whgqu7f4.cloudfront.net/Service_page_banner_1_6805053842.webp',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/50','2026-04-01 09:49:44.910000','2026-04-01 09:49:44.910000','2026-04-01 09:49:44.910000',1,1,NULL),(449,'sseaf4aysfq5c3i69l224joh','Spare Parts Service.png',NULL,NULL,600,750,'{\"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_Spare_Parts_Service_0ad3c4d5ee.png\", \"hash\": \"small_Spare_Parts_Service_0ad3c4d5ee\", \"mime\": \"image/png\", \"name\": \"small_Spare Parts Service.png\", \"path\": null, \"size\": 383.06, \"width\": 400, \"height\": 500, \"sizeInBytes\": 383064}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Spare_Parts_Service_0ad3c4d5ee.png\", \"hash\": \"thumbnail_Spare_Parts_Service_0ad3c4d5ee\", \"mime\": \"image/png\", \"name\": \"thumbnail_Spare Parts Service.png\", \"path\": null, \"size\": 46.44, \"width\": 125, \"height\": 156, \"sizeInBytes\": 46442}}','Spare_Parts_Service_0ad3c4d5ee','.png','image/png',203.87,'https://d1i031whgqu7f4.cloudfront.net/Spare_Parts_Service_0ad3c4d5ee.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/46/48','2026-04-02 07:17:38.419000','2026-04-02 07:17:38.419000','2026-04-02 07:17:38.420000',1,1,NULL),(450,'e97z6vaqalumk8lxm1ww5x7z','Callibration Service.png',NULL,NULL,600,750,'{\"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_Callibration_Service_e2e25be11f.png\", \"hash\": \"small_Callibration_Service_e2e25be11f\", \"mime\": \"image/png\", \"name\": \"small_Callibration Service.png\", \"path\": null, \"size\": 330.61, \"width\": 400, \"height\": 500, \"sizeInBytes\": 330607}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Callibration_Service_e2e25be11f.png\", \"hash\": \"thumbnail_Callibration_Service_e2e25be11f\", \"mime\": \"image/png\", \"name\": \"thumbnail_Callibration Service.png\", \"path\": null, \"size\": 44.91, \"width\": 125, \"height\": 156, \"sizeInBytes\": 44913}}','Callibration_Service_e2e25be11f','.png','image/png',178.88,'https://d1i031whgqu7f4.cloudfront.net/Callibration_Service_e2e25be11f.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/46/48','2026-04-02 07:17:38.447000','2026-04-02 07:17:38.447000','2026-04-02 07:17:38.448000',1,1,NULL),(451,'z224pp52a0xzweionkappxo0','Bosch Car Service.png',NULL,NULL,600,750,'{\"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_Bosch_Car_Service_948ffd36f6.png\", \"hash\": \"small_Bosch_Car_Service_948ffd36f6\", \"mime\": \"image/png\", \"name\": \"small_Bosch Car Service.png\", \"path\": null, \"size\": 262.69, \"width\": 400, \"height\": 500, \"sizeInBytes\": 262689}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Bosch_Car_Service_948ffd36f6.png\", \"hash\": \"thumbnail_Bosch_Car_Service_948ffd36f6\", \"mime\": \"image/png\", \"name\": \"thumbnail_Bosch Car Service.png\", \"path\": null, \"size\": 33.86, \"width\": 125, \"height\": 156, \"sizeInBytes\": 33857}}','Bosch_Car_Service_948ffd36f6','.png','image/png',136.54,'https://d1i031whgqu7f4.cloudfront.net/Bosch_Car_Service_948ffd36f6.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/46/49','2026-04-02 07:17:52.331000','2026-04-02 07:17:52.331000','2026-04-02 07:17:52.332000',1,1,NULL),(452,'ntespjuw1jdrdsz2an98pzm9','Workshop Test Equipment Services.png',NULL,NULL,600,750,'{\"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_Workshop_Test_Equipment_Services_21af702e72.png\", \"hash\": \"small_Workshop_Test_Equipment_Services_21af702e72\", \"mime\": \"image/png\", \"name\": \"small_Workshop Test Equipment Services.png\", \"path\": null, \"size\": 415.36, \"width\": 400, \"height\": 500, \"sizeInBytes\": 415363}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Workshop_Test_Equipment_Services_21af702e72.png\", \"hash\": \"thumbnail_Workshop_Test_Equipment_Services_21af702e72\", \"mime\": \"image/png\", \"name\": \"thumbnail_Workshop Test Equipment Services.png\", \"path\": null, \"size\": 50.81, \"width\": 125, \"height\": 156, \"sizeInBytes\": 50810}}','Workshop_Test_Equipment_Services_21af702e72','.png','image/png',188.34,'https://d1i031whgqu7f4.cloudfront.net/Workshop_Test_Equipment_Services_21af702e72.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/46/49','2026-04-02 07:17:52.683000','2026-04-02 07:17:52.683000','2026-04-02 07:17:52.684000',1,1,NULL),(453,'ytlawojoampavvtuqcl35xbk','Bosch Diesel Service.png',NULL,NULL,600,750,'{\"small\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_Bosch_Diesel_Service_2ff4f547bf.png\", \"hash\": \"small_Bosch_Diesel_Service_2ff4f547bf\", \"mime\": \"image/png\", \"name\": \"small_Bosch Diesel Service.png\", \"path\": null, \"size\": 437.46, \"width\": 400, \"height\": 500, \"sizeInBytes\": 437455}, \"thumbnail\": {\"ext\": \".png\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Bosch_Diesel_Service_2ff4f547bf.png\", \"hash\": \"thumbnail_Bosch_Diesel_Service_2ff4f547bf\", \"mime\": \"image/png\", \"name\": \"thumbnail_Bosch Diesel Service.png\", \"path\": null, \"size\": 51.92, \"width\": 125, \"height\": 156, \"sizeInBytes\": 51921}}','Bosch_Diesel_Service_2ff4f547bf','.png','image/png',186.42,'https://d1i031whgqu7f4.cloudfront.net/Bosch_Diesel_Service_2ff4f547bf.png',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/46/49','2026-04-02 07:17:53.440000','2026-04-02 07:17:53.440000','2026-04-02 07:17:53.440000',1,1,NULL),(454,'qslehrv3258s3jxpwa7rkb3c','Tyre landing page banner 1.jpg',NULL,NULL,1920,520,'{\"large\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/large_Tyre_landing_page_banner_1_b311709b2a.jpg\", \"hash\": \"large_Tyre_landing_page_banner_1_b311709b2a\", \"mime\": \"image/jpeg\", \"name\": \"large_Tyre landing page banner 1.jpg\", \"path\": null, \"size\": 46.42, \"width\": 1000, \"height\": 271, \"sizeInBytes\": 46424}, \"small\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/small_Tyre_landing_page_banner_1_b311709b2a.jpg\", \"hash\": \"small_Tyre_landing_page_banner_1_b311709b2a\", \"mime\": \"image/jpeg\", \"name\": \"small_Tyre landing page banner 1.jpg\", \"path\": null, \"size\": 14.6, \"width\": 500, \"height\": 135, \"sizeInBytes\": 14599}, \"medium\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/medium_Tyre_landing_page_banner_1_b311709b2a.jpg\", \"hash\": \"medium_Tyre_landing_page_banner_1_b311709b2a\", \"mime\": \"image/jpeg\", \"name\": \"medium_Tyre landing page banner 1.jpg\", \"path\": null, \"size\": 29.51, \"width\": 750, \"height\": 203, \"sizeInBytes\": 29507}, \"thumbnail\": {\"ext\": \".jpg\", \"url\": \"https://d1i031whgqu7f4.cloudfront.net/thumbnail_Tyre_landing_page_banner_1_b311709b2a.jpg\", \"hash\": \"thumbnail_Tyre_landing_page_banner_1_b311709b2a\", \"mime\": \"image/jpeg\", \"name\": \"thumbnail_Tyre landing page banner 1.jpg\", \"path\": null, \"size\": 4.7, \"width\": 245, \"height\": 66, \"sizeInBytes\": 4697}}','Tyre_landing_page_banner_1_b311709b2a','.jpg','image/jpeg',122.97,'https://d1i031whgqu7f4.cloudfront.net/Tyre_landing_page_banner_1_b311709b2a.jpg',NULL,'strapi-provider-upload-aws-s3-plus-cdn',NULL,'/50','2026-04-06 07:35:39.469000','2026-04-06 07:35:39.469000','2026-04-06 07:35:39.470000',1,1,NULL);
/*!40000 ALTER TABLE `files` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `files_folder_lnk`
--

DROP TABLE IF EXISTS `files_folder_lnk`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `files_folder_lnk` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `file_id` int unsigned DEFAULT NULL,
  `folder_id` int unsigned DEFAULT NULL,
  `file_ord` double unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `files_folder_lnk_uq` (`file_id`,`folder_id`),
  KEY `files_folder_lnk_fk` (`file_id`),
  KEY `files_folder_lnk_ifk` (`folder_id`),
  KEY `files_folder_lnk_oifk` (`file_ord`),
  CONSTRAINT `files_folder_lnk_fk` FOREIGN KEY (`file_id`) REFERENCES `files` (`id`) ON DELETE CASCADE,
  CONSTRAINT `files_folder_lnk_ifk` FOREIGN KEY (`folder_id`) REFERENCES `upload_folders` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=345 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `files_folder_lnk`
--

LOCK TABLES `files_folder_lnk` WRITE;
/*!40000 ALTER TABLE `files_folder_lnk` DISABLE KEYS */;
INSERT INTO `files_folder_lnk` VALUES (3,14,1,1),(4,16,1,2),(7,19,3,1),(8,20,4,1),(9,21,5,1),(10,22,6,1),(11,23,6,1),(12,24,6,1),(13,25,6,2),(14,26,6,3),(15,27,6,3),(16,28,6,4),(17,29,6,4),(18,30,6,5),(19,31,1,3),(20,32,7,1),(21,33,7,1),(22,34,7,1),(23,35,7,2),(24,36,7,2),(25,37,7,2),(26,38,8,1),(27,39,8,2),(28,40,8,3),(29,41,1,4),(32,44,10,1),(33,45,9,1),(34,46,12,1),(36,48,11,1),(37,49,12,3),(38,50,13,1),(39,51,13,1),(40,52,13,2),(41,53,13,3),(42,54,13,4),(43,55,13,5),(44,56,14,1),(47,58,14,3),(50,60,15,1),(51,61,15,2),(52,62,15,3),(53,63,15,3),(54,64,16,1),(55,65,16,2),(56,66,16,3),(57,67,16,4),(58,68,16,4),(59,69,15,4),(60,70,10,2),(61,71,10,3),(62,72,10,4),(63,73,10,5),(64,74,10,5),(65,75,10,5),(72,85,7,3),(73,86,7,4),(74,87,17,1),(75,88,17,2),(76,89,17,3),(77,90,17,4),(78,91,17,5),(79,92,17,6),(80,93,14,4),(90,117,18,1),(91,118,18,2),(92,119,18,3),(93,120,18,4),(94,121,18,5),(95,122,18,6),(96,123,18,7),(97,124,18,7),(98,126,18,8),(99,127,18,9),(100,128,18,10),(103,136,20,1),(105,204,13,6),(106,205,13,7),(110,206,2,1),(113,207,5,2),(114,216,21,1),(115,217,21,1),(116,218,21,1),(117,219,21,1),(118,220,21,2),(119,221,21,3),(120,222,22,1),(121,223,6,6),(122,224,6,7),(123,225,6,8),(124,226,6,9),(125,227,6,10),(126,228,6,11),(127,229,6,12),(128,230,6,13),(129,231,6,14),(130,232,6,15),(131,233,6,16),(132,234,6,17),(133,235,6,18),(134,236,6,19),(135,237,6,20),(136,238,6,21),(137,239,17,7),(138,240,17,8),(139,241,17,9),(144,245,18,NULL),(146,246,15,5),(147,247,15,6),(148,248,15,6),(149,249,15,7),(150,250,15,7),(151,251,15,8),(152,252,15,8),(153,253,15,9),(154,254,15,10),(155,255,23,1),(160,260,24,2),(170,268,26,1),(172,270,26,2),(174,271,27,1),(180,277,27,7),(181,278,27,8),(182,279,28,1),(183,280,28,2),(184,281,28,3),(185,282,28,4),(186,283,28,5),(187,284,29,1),(188,285,29,2),(189,286,29,3),(190,287,29,4),(191,288,29,5),(192,289,29,6),(193,290,29,7),(194,291,25,1),(195,292,25,2),(196,293,25,3),(197,294,25,3),(198,295,25,4),(199,296,25,5),(200,297,25,5),(201,298,25,6),(202,299,27,9),(203,300,27,10),(204,301,27,11),(205,302,27,12),(206,303,27,13),(208,305,24,3),(209,306,24,4),(210,307,24,5),(211,308,30,1),(212,309,30,2),(213,310,30,3),(214,311,30,4),(215,312,31,1),(216,313,14,5),(217,314,14,5),(218,315,32,1),(219,316,32,2),(220,317,32,3),(221,318,32,4),(222,319,32,5),(223,320,32,6),(224,321,32,7),(225,322,32,8),(226,323,6,22),(227,324,6,22),(228,325,6,23),(229,326,6,24),(230,328,6,25),(231,327,6,25),(232,329,6,25),(233,330,6,25),(234,331,6,26),(235,332,6,26),(236,333,6,27),(237,334,6,28),(238,335,6,29),(239,336,2,2),(240,337,20,2),(241,338,18,11),(242,353,34,1),(243,354,35,1),(244,355,35,2),(245,356,36,1),(246,357,36,1),(247,358,36,2),(248,362,19,2),(249,366,37,1),(250,367,37,2),(251,368,37,3),(252,369,37,4),(253,370,37,5),(254,371,37,6),(255,372,39,1),(256,373,39,2),(257,374,39,2),(258,375,39,3),(259,376,39,4),(260,377,39,5),(261,378,39,6),(262,379,39,7),(263,380,39,8),(264,381,40,1),(265,382,40,2),(266,383,40,3),(267,384,40,4),(268,385,40,5),(269,386,40,6),(270,387,40,7),(271,388,40,8),(272,389,41,1),(273,390,41,2),(274,391,41,3),(275,392,41,4),(276,393,41,5),(277,394,41,6),(278,395,41,7),(279,396,41,8),(281,397,38,1),(283,399,42,1),(284,400,43,1),(285,401,43,2),(286,402,43,3),(287,403,43,3),(288,404,43,3),(289,405,43,4),(290,406,43,4),(291,407,43,5),(293,408,44,1),(294,410,44,2),(295,411,44,2),(296,409,44,2),(297,412,44,2),(298,413,44,3),(299,414,44,4),(300,415,44,5),(303,416,45,1),(304,417,45,1),(305,418,45,1),(306,419,45,2),(307,420,45,3),(308,421,45,3),(309,422,45,4),(310,423,45,5),(311,424,45,5),(314,425,13,8),(315,426,47,1),(316,427,47,1),(317,428,47,1),(318,429,47,1),(319,430,47,2),(320,431,47,2),(321,432,47,2),(322,433,47,3),(323,434,47,4),(324,435,50,1),(325,436,50,2),(326,437,50,2),(327,438,50,2),(328,439,50,3),(329,440,50,4),(330,441,50,5),(331,442,50,6),(332,443,50,7),(333,444,50,8),(334,445,50,9),(335,446,50,10),(336,447,50,11),(337,448,50,12),(339,449,48,1),(340,450,48,1),(341,451,49,1),(342,452,49,2),(343,453,49,3),(344,454,50,13);
/*!40000 ALTER TABLE `files_folder_lnk` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `files_related_mph`
--

DROP TABLE IF EXISTS `files_related_mph`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `files_related_mph` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `file_id` int unsigned DEFAULT NULL,
  `related_id` int unsigned DEFAULT NULL,
  `related_type` varchar(255) DEFAULT NULL,
  `field` varchar(255) DEFAULT NULL,
  `order` double unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `files_related_mph_fk` (`file_id`),
  KEY `files_related_mph_oidx` (`order`),
  KEY `files_related_mph_idix` (`related_id`),
  CONSTRAINT `files_related_mph_fk` FOREIGN KEY (`file_id`) REFERENCES `files` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=6281 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `files_related_mph`
--

LOCK TABLES `files_related_mph` WRITE;
/*!40000 ALTER TABLE `files_related_mph` DISABLE KEYS */;
INSERT INTO `files_related_mph` VALUES (60,16,5,'home.about-cme','image',1),(65,16,6,'home.about-cme','image',1),(71,16,7,'home.about-cme','image',1),(86,16,8,'home.about-cme','image',1),(118,16,9,'home.about-cme','image',1),(126,16,10,'home.about-cme','image',1),(142,16,11,'home.about-cme','image',1),(146,39,3,'api::branch.branch','image',1),(150,40,6,'api::branch.branch','image',1),(152,39,7,'api::branch.branch','image',1),(154,38,10,'api::branch.branch','image',1),(160,16,12,'home.about-cme','image',1),(187,49,15,'common.banner','media',1),(188,46,15,'common.banner','responsiveMedia',1),(191,49,19,'common.banner','media',1),(192,46,19,'common.banner','responsiveMedia',1),(196,39,11,'api::branch.branch','image',1),(198,40,12,'api::branch.branch','image',1),(200,38,13,'api::branch.branch','image',1),(202,38,14,'api::branch.branch','image',1),(204,38,15,'api::branch.branch','image',1),(206,38,16,'api::branch.branch','image',1),(207,38,8,'api::branch.branch','image',1),(210,40,18,'api::branch.branch','image',1),(211,40,4,'api::branch.branch','image',1),(212,40,19,'api::branch.branch','image',1),(379,39,2,'api::branch.branch','image',1),(381,39,3,'api::branch.branch','image',1),(383,39,4,'api::branch.branch','image',1),(384,40,6,'api::branch.branch','image',1),(402,54,3,'api::our-service.our-service','image',1),(406,54,4,'api::our-service.our-service','image',1),(432,39,7,'api::branch.branch','image',1),(434,39,8,'api::branch.branch','image',1),(436,40,9,'api::branch.branch','image',1),(437,19,12,'api::our-service.our-service','image',1),(438,19,15,'api::our-service.our-service','image',1),(439,58,35,'common.banner','media',1),(441,58,43,'common.banner','media',1),(443,56,24,'common.banner','media',1),(445,56,44,'common.banner','media',1),(568,69,2,'common.location-card','image',1),(590,69,5,'common.location-card','image',1),(591,69,6,'common.location-card','image',1),(592,69,7,'common.location-card','image',1),(627,69,8,'common.location-card','image',1),(628,69,9,'common.location-card','image',1),(629,69,10,'common.location-card','image',1),(630,75,26,'api::service.service','listImage',1),(632,74,28,'api::service.service','listImage',1),(634,73,30,'api::service.service','listImage',1),(636,72,32,'api::service.service','listImage',1),(638,74,33,'api::service.service','listImage',1),(646,16,2,'home.about-cme','image',1),(655,16,3,'home.about-cme','image',1),(663,16,4,'home.about-cme','image',1),(675,16,5,'home.about-cme','image',1),(691,16,6,'home.about-cme','image',1),(704,16,7,'home.about-cme','image',1),(715,16,8,'home.about-cme','image',1),(822,16,9,'home.about-cme','image',1),(840,16,10,'home.about-cme','image',1),(852,16,11,'home.about-cme','image',1),(864,16,12,'home.about-cme','image',1),(876,16,13,'home.about-cme','image',1),(888,16,14,'home.about-cme','image',1),(974,87,10,'api::branch.branch','image',1),(976,87,11,'api::branch.branch','image',1),(980,87,12,'api::branch.branch','image',1),(982,87,13,'api::branch.branch','image',1),(984,87,14,'api::branch.branch','image',1),(986,87,15,'api::branch.branch','image',1),(988,87,16,'api::branch.branch','image',1),(990,38,18,'api::branch.branch','image',1),(992,88,19,'api::branch.branch','image',1),(994,88,20,'api::branch.branch','image',1),(996,89,22,'api::branch.branch','image',1),(998,88,23,'api::branch.branch','image',1),(1000,87,24,'api::branch.branch','image',1),(1002,90,26,'api::branch.branch','image',1),(1004,91,28,'api::branch.branch','image',1),(1006,92,30,'api::branch.branch','image',1),(1008,89,33,'api::branch.branch','image',1),(1010,89,34,'api::branch.branch','image',1),(1012,89,35,'api::branch.branch','image',1),(1014,88,36,'api::branch.branch','image',1),(1016,87,37,'api::branch.branch','image',1),(1018,87,38,'api::branch.branch','image',1),(1020,91,39,'api::branch.branch','image',1),(1022,90,40,'api::branch.branch','image',1),(1024,92,41,'api::branch.branch','image',1),(1027,56,31,'common.banner','media',1),(1029,56,80,'common.banner','media',1),(1046,16,15,'home.about-cme','image',1),(1083,91,6,'service-landing.service-locations','image',1),(1087,91,8,'service-landing.service-locations','image',1),(1099,16,16,'home.about-cme','image',1),(1105,87,42,'api::branch.branch','image',1),(1131,87,43,'api::branch.branch','image',1),(1146,16,17,'home.about-cme','image',1),(1179,72,34,'api::service.service','listImage',1),(1194,16,18,'home.about-cme','image',1),(1222,16,19,'home.about-cme','image',1),(1251,91,11,'service-landing.service-locations','image',1),(1256,89,13,'service-landing.service-locations','image',1),(1257,91,14,'service-landing.service-locations','image',1),(1285,16,20,'home.about-cme','image',1),(1311,16,21,'home.about-cme','image',1),(1337,16,22,'home.about-cme','image',1),(1363,16,23,'home.about-cme','image',1),(1401,16,24,'home.about-cme','image',1),(1412,117,101,'common.banner','media',1),(1413,117,102,'common.banner','media',1),(1436,122,44,'api::branch.branch','image',1),(1437,122,45,'api::branch.branch','image',1),(1440,122,47,'api::branch.branch','image',1),(1441,122,46,'api::branch.branch','image',1),(1442,122,48,'api::branch.branch','image',1),(1479,128,1,'api::social.social','image',1),(1480,126,1,'api::social.social','icon',1),(1481,128,2,'api::social.social','image',1),(1482,126,2,'api::social.social','icon',1),(1483,127,3,'api::social.social','image',1),(1484,126,3,'api::social.social','icon',1),(1485,127,4,'api::social.social','image',1),(1486,126,4,'api::social.social','icon',1),(1490,130,49,'api::branch.branch','image',1),(1501,69,1,'common.location-card','image',1),(1502,69,3,'common.location-card','image',1),(1503,69,4,'common.location-card','image',1),(1514,69,11,'common.location-card','image',1),(1515,69,12,'common.location-card','image',1),(1516,69,13,'common.location-card','image',1),(1517,75,35,'api::service.service','listImage',1),(1528,128,1,'api::social.social','image',1),(1529,126,1,'api::social.social','icon',1),(1530,128,2,'api::social.social','image',1),(1531,126,2,'api::social.social','icon',1),(1532,127,3,'api::social.social','image',1),(1533,126,3,'api::social.social','icon',1),(1534,127,4,'api::social.social','image',1),(1535,126,4,'api::social.social','icon',1),(1563,16,25,'home.about-cme','image',1),(1587,16,26,'home.about-cme','image',1),(1637,89,50,'api::branch.branch','image',1),(1675,89,51,'api::branch.branch','image',1),(1677,91,52,'api::branch.branch','image',1),(1693,91,53,'api::branch.branch','image',1),(1710,111,22,'api::brand.brand','image',1),(1723,88,54,'api::branch.branch','image',1),(1725,130,55,'api::branch.branch','image',1),(1729,87,56,'api::branch.branch','image',1),(1734,157,36,'api::brand.brand','image',1),(1746,159,40,'api::brand.brand','image',1),(1747,159,47,'api::brand.brand','image',1),(1758,24,16,'api::brand.brand','image',1),(1759,24,53,'api::brand.brand','image',1),(1768,161,54,'api::brand.brand','image',1),(1769,161,55,'api::brand.brand','image',1),(1778,22,18,'api::brand.brand','image',1),(1779,22,63,'api::brand.brand','image',1),(1780,109,24,'api::brand.brand','image',1),(1781,109,64,'api::brand.brand','image',1),(1787,87,57,'api::branch.branch','image',1),(1789,90,58,'api::branch.branch','image',1),(1791,89,59,'api::branch.branch','image',1),(1793,92,60,'api::branch.branch','image',1),(1795,87,61,'api::branch.branch','image',1),(1839,91,62,'api::branch.branch','image',1),(1841,90,63,'api::branch.branch','image',1),(1843,89,64,'api::branch.branch','image',1),(1845,92,65,'api::branch.branch','image',1),(1847,91,66,'api::branch.branch','image',1),(1849,91,67,'api::branch.branch','image',1),(1851,89,68,'api::branch.branch','image',1),(1853,89,69,'api::branch.branch','image',1),(1855,91,70,'api::branch.branch','image',1),(1892,172,121,'common.title-desc-with-img','image',1),(1895,172,125,'common.title-desc-with-img','image',1),(1905,88,71,'api::branch.branch','image',1),(1907,87,72,'api::branch.branch','image',1),(1909,87,73,'api::branch.branch','image',1),(1911,89,74,'api::branch.branch','image',1),(1913,130,75,'api::branch.branch','image',1),(1915,92,76,'api::branch.branch','image',1),(1919,92,77,'api::branch.branch','image',1),(1925,88,78,'api::branch.branch','image',1),(1927,89,79,'api::branch.branch','image',1),(1929,130,80,'api::branch.branch','image',1),(1931,87,81,'api::branch.branch','image',1),(1933,92,82,'api::branch.branch','image',1),(1935,90,83,'api::branch.branch','image',1),(1937,91,84,'api::branch.branch','image',1),(1939,87,85,'api::branch.branch','image',1),(1941,176,100,'api::branch.branch','image',1),(1943,177,101,'api::branch.branch','image',1),(1945,178,102,'api::branch.branch','image',1),(1948,88,104,'api::branch.branch','image',1),(1950,92,105,'api::branch.branch','image',1),(1952,179,107,'api::branch.branch','image',1),(1954,180,109,'api::branch.branch','image',1),(1956,180,110,'api::branch.branch','image',1),(1958,180,111,'api::branch.branch','image',1),(1960,180,112,'api::branch.branch','image',1),(1962,180,114,'api::branch.branch','image',1),(1964,89,115,'api::branch.branch','image',1),(1966,91,116,'api::branch.branch','image',1),(1968,90,117,'api::branch.branch','image',1),(1970,179,119,'api::branch.branch','image',1),(1972,179,124,'api::branch.branch','image',1),(1974,87,126,'api::branch.branch','image',1),(2012,179,127,'api::branch.branch','image',1),(2014,179,128,'api::branch.branch','image',1),(2016,179,129,'api::branch.branch','image',1),(2018,179,130,'api::branch.branch','image',1),(2020,179,131,'api::branch.branch','image',1),(2057,154,28,'api::brand.brand','image',1),(2058,154,73,'api::brand.brand','image',1),(2070,176,132,'api::branch.branch','image',1),(2076,178,133,'api::branch.branch','image',1),(2078,177,134,'api::branch.branch','image',1),(2080,92,135,'api::branch.branch','image',1),(2083,159,56,'api::brand.brand','image',1),(2085,30,20,'api::brand.brand','image',1),(2087,158,38,'api::brand.brand','image',1),(2088,158,78,'api::brand.brand','image',1),(2089,124,14,'api::brand.brand','image',1),(2092,91,136,'api::branch.branch','image',1),(2094,91,137,'api::branch.branch','image',1),(2096,90,138,'api::branch.branch','image',1),(2098,91,139,'api::branch.branch','image',1),(2100,91,140,'api::branch.branch','image',1),(2102,92,141,'api::branch.branch','image',1),(2104,179,142,'api::branch.branch','image',1),(2107,88,143,'api::branch.branch','image',1),(2109,179,145,'api::branch.branch','image',1),(2111,88,146,'api::branch.branch','image',1),(2113,179,147,'api::branch.branch','image',1),(2115,180,148,'api::branch.branch','image',1),(2117,180,149,'api::branch.branch','image',1),(2119,179,150,'api::branch.branch','image',1),(2121,179,151,'api::branch.branch','image',1),(2123,88,152,'api::branch.branch','image',1),(2125,88,153,'api::branch.branch','image',1),(2127,88,154,'api::branch.branch','image',1),(2148,26,44,'api::brand.brand','image',1),(2149,26,80,'api::brand.brand','image',1),(2150,29,30,'api::brand.brand','image',1),(2151,29,81,'api::brand.brand','image',1),(2152,28,58,'api::brand.brand','image',1),(2153,28,82,'api::brand.brand','image',1),(2158,89,16,'service-landing.service-locations','image',1),(2159,91,17,'service-landing.service-locations','image',1),(2164,89,19,'service-landing.service-locations','image',1),(2165,91,20,'service-landing.service-locations','image',1),(2242,89,21,'service-landing.service-locations','image',1),(2243,91,22,'service-landing.service-locations','image',1),(2304,130,155,'api::branch.branch','image',1),(2306,87,156,'api::branch.branch','image',1),(2308,88,157,'api::branch.branch','image',1),(2310,92,158,'api::branch.branch','image',1),(2314,88,159,'api::branch.branch','image',1),(2316,87,160,'api::branch.branch','image',1),(2320,87,161,'api::branch.branch','image',1),(2332,90,162,'api::branch.branch','image',1),(2334,91,163,'api::branch.branch','image',1),(2372,39,164,'api::branch.branch','image',1),(2374,39,165,'api::branch.branch','image',1),(2376,39,166,'api::branch.branch','image',1),(2434,179,167,'api::branch.branch','image',1),(2448,180,168,'api::branch.branch','image',1),(2450,179,169,'api::branch.branch','image',1),(2505,16,27,'home.about-cme','image',1),(2517,87,170,'api::branch.branch','image',1),(2519,87,171,'api::branch.branch','image',1),(2521,39,172,'api::branch.branch','image',1),(2587,75,45,'api::service.service','listImage',1),(2601,222,175,'api::branch.branch','image',1),(2610,227,91,'api::brand.brand','image',1),(2611,227,92,'api::brand.brand','image',1),(2614,229,95,'api::brand.brand','image',1),(2615,229,96,'api::brand.brand','image',1),(2628,237,109,'api::brand.brand','image',1),(2629,237,110,'api::brand.brand','image',1),(2630,238,111,'api::brand.brand','image',1),(2633,239,176,'api::branch.branch','image',1),(2635,240,177,'api::branch.branch','image',1),(2637,241,178,'api::branch.branch','image',1),(2638,224,85,'api::brand.brand','image',1),(2639,224,113,'api::brand.brand','image',1),(2640,223,83,'api::brand.brand','image',1),(2641,223,114,'api::brand.brand','image',1),(2642,225,87,'api::brand.brand','image',1),(2643,225,115,'api::brand.brand','image',1),(2644,226,89,'api::brand.brand','image',1),(2645,226,116,'api::brand.brand','image',1),(2646,228,93,'api::brand.brand','image',1),(2647,228,117,'api::brand.brand','image',1),(2654,233,103,'api::brand.brand','image',1),(2655,233,121,'api::brand.brand','image',1),(2656,232,101,'api::brand.brand','image',1),(2657,232,122,'api::brand.brand','image',1),(2658,234,105,'api::brand.brand','image',1),(2659,234,123,'api::brand.brand','image',1),(2664,156,34,'api::brand.brand','image',1),(2665,156,126,'api::brand.brand','image',1),(2687,221,1,'api::power-top-category.power-top-category','image',1),(2688,221,23,'api::power-top-category.power-top-category','image',1),(2689,218,3,'api::power-top-category.power-top-category','image',1),(2690,218,24,'api::power-top-category.power-top-category','image',1),(2691,216,7,'api::power-top-category.power-top-category','image',1),(2692,216,25,'api::power-top-category.power-top-category','image',1),(2693,220,9,'api::power-top-category.power-top-category','image',1),(2694,220,26,'api::power-top-category.power-top-category','image',1),(2707,197,3,'api::power-category.power-category','image',1),(2708,197,39,'api::power-category.power-category','image',1),(2709,214,1,'api::product-category.product-category','image',1),(2710,214,40,'api::product-category.product-category','image',1),(2711,215,3,'api::product-category.product-category','image',1),(2712,215,41,'api::product-category.product-category','image',1),(2713,213,5,'api::product-category.product-category','image',1),(2714,213,42,'api::product-category.product-category','image',1),(2717,140,9,'api::product-category.product-category','image',1),(2718,140,44,'api::product-category.product-category','image',1),(2719,121,1,'api::service-category-type.service-category-type','image',1),(2720,121,25,'api::service-category-type.service-category-type','image',1),(2731,143,7,'api::service-category-type.service-category-type','image',1),(2732,143,31,'api::service-category-type.service-category-type','image',1),(2733,120,3,'api::service-category-type.service-category-type','image',1),(2734,120,32,'api::service-category-type.service-category-type','image',1),(2735,118,1,'api::tyre-category.tyre-category','image',1),(2736,118,62,'api::tyre-category.tyre-category','image',1),(2737,144,5,'api::tyre-category.tyre-category','image',1),(2738,144,63,'api::tyre-category.tyre-category','image',1),(2739,119,3,'api::tyre-category.tyre-category','image',1),(2740,119,64,'api::tyre-category.tyre-category','image',1),(2741,147,13,'api::tyre-category.tyre-category','image',1),(2742,147,65,'api::tyre-category.tyre-category','image',1),(2743,143,15,'api::tyre-category.tyre-category','image',1),(2744,143,66,'api::tyre-category.tyre-category','image',1),(2745,202,22,'api::tyre-category.tyre-category','image',1),(2746,202,67,'api::tyre-category.tyre-category','image',1),(2751,153,19,'api::tyre-category.tyre-category','image',1),(2752,153,70,'api::tyre-category.tyre-category','image',1),(2772,203,13,'api::tyre-service.tyre-service','image',1),(2816,56,26,'common.banner','media',1),(2817,89,1,'service-landing.service-locations','image',1),(2818,91,4,'service-landing.service-locations','image',1),(2819,56,177,'common.banner','media',1),(2820,89,23,'service-landing.service-locations','image',1),(2821,91,24,'service-landing.service-locations','image',1),(2826,85,1,'api::news.news','image',1),(2827,85,58,'api::news.news','image',1),(2828,86,4,'api::news.news','image',1),(2829,86,59,'api::news.news','image',1),(2830,134,19,'api::news.news','image',1),(2831,134,60,'api::news.news','image',1),(2832,175,38,'api::news.news','image',1),(2833,175,61,'api::news.news','image',1),(2834,168,21,'api::news.news','image',1),(2835,168,62,'api::news.news','image',1),(2855,75,46,'api::service.service','listImage',1),(2873,16,28,'home.about-cme','image',1),(2904,163,111,'common.banner','media',1),(2905,166,124,'common.banner','media',1),(2906,163,193,'common.banner','media',1),(2907,166,194,'common.banner','media',1),(2965,75,47,'api::service.service','listImage',1),(2985,75,48,'api::service.service','listImage',1),(3005,75,49,'api::service.service','listImage',1),(3025,75,50,'api::service.service','listImage',1),(3045,75,51,'api::service.service','listImage',1),(3065,75,52,'api::service.service','listImage',1),(3085,75,53,'api::service.service','listImage',1),(3105,75,54,'api::service.service','listImage',1),(3125,75,55,'api::service.service','listImage',1),(3145,75,56,'api::service.service','listImage',1),(3165,75,57,'api::service.service','listImage',1),(3185,75,58,'api::service.service','listImage',1),(3205,75,59,'api::service.service','listImage',1),(3225,75,60,'api::service.service','listImage',1),(3245,75,61,'api::service.service','listImage',1),(3267,75,62,'api::service.service','listImage',1),(3301,75,63,'api::service.service','listImage',1),(3339,75,64,'api::service.service','listImage',1),(3377,75,65,'api::service.service','listImage',1),(3415,75,66,'api::service.service','listImage',1),(3453,75,67,'api::service.service','listImage',1),(3455,73,68,'api::service.service','listImage',1),(3457,73,69,'api::service.service','listImage',1),(3459,73,70,'api::service.service','listImage',1),(3461,73,71,'api::service.service','listImage',1),(3463,73,72,'api::service.service','listImage',1),(3467,73,73,'api::service.service','listImage',1),(3471,73,74,'api::service.service','listImage',1),(3475,73,75,'api::service.service','listImage',1),(3479,73,76,'api::service.service','listImage',1),(3483,73,77,'api::service.service','listImage',1),(3521,75,78,'api::service.service','listImage',1),(3524,62,11,'common.title-desc-with-img','image',1),(3525,63,13,'common.title-desc-with-img','image',1),(3526,67,16,'common.title-desc-with-img','image',1),(3527,68,17,'common.title-desc-with-img','image',1),(3528,66,18,'common.title-desc-with-img','image',1),(3529,65,19,'common.title-desc-with-img','image',1),(3530,64,20,'common.title-desc-with-img','image',1),(3543,62,418,'common.title-desc-with-img','image',1),(3544,63,419,'common.title-desc-with-img','image',1),(3545,67,420,'common.title-desc-with-img','image',1),(3546,68,421,'common.title-desc-with-img','image',1),(3547,66,422,'common.title-desc-with-img','image',1),(3548,65,423,'common.title-desc-with-img','image',1),(3549,64,424,'common.title-desc-with-img','image',1),(3559,75,79,'api::service.service','listImage',1),(3563,73,80,'api::service.service','listImage',1),(3587,75,81,'api::service.service','listImage',1),(3590,72,83,'api::service.service','listImage',1),(3592,72,84,'api::service.service','listImage',1),(3596,72,85,'api::service.service','listImage',1),(3600,72,86,'api::service.service','listImage',1),(3604,72,87,'api::service.service','listImage',1),(3608,72,88,'api::service.service','listImage',1),(3612,72,89,'api::service.service','listImage',1),(3616,72,90,'api::service.service','listImage',1),(3620,72,91,'api::service.service','listImage',1),(3624,72,92,'api::service.service','listImage',1),(3628,72,93,'api::service.service','listImage',1),(3632,72,94,'api::service.service','listImage',1),(3636,72,95,'api::service.service','listImage',1),(3640,72,96,'api::service.service','listImage',1),(3644,72,97,'api::service.service','listImage',1),(3650,72,98,'api::service.service','listImage',1),(3659,72,100,'api::service.service','listImage',1),(3661,72,101,'api::service.service','listImage',1),(3665,72,103,'api::service.service','listImage',1),(3669,72,104,'api::service.service','listImage',1),(3675,72,106,'api::service.service','listImage',1),(3679,72,107,'api::service.service','listImage',1),(3683,72,108,'api::service.service','listImage',1),(3687,72,109,'api::service.service','listImage',1),(3691,72,110,'api::service.service','listImage',1),(3695,72,111,'api::service.service','listImage',1),(3699,72,112,'api::service.service','listImage',1),(3703,72,113,'api::service.service','listImage',1),(3707,72,114,'api::service.service','listImage',1),(3711,72,115,'api::service.service','listImage',1),(3715,72,116,'api::service.service','listImage',1),(3717,74,117,'api::service.service','listImage',1),(3737,75,118,'api::service.service','listImage',1),(3739,74,119,'api::service.service','listImage',1),(3742,74,120,'api::service.service','listImage',1),(3745,74,121,'api::service.service','listImage',1),(3747,74,122,'api::service.service','listImage',1),(3749,74,123,'api::service.service','listImage',1),(3751,74,124,'api::service.service','listImage',1),(3757,72,125,'api::service.service','listImage',1),(3761,72,126,'api::service.service','listImage',1),(3765,72,127,'api::service.service','listImage',1),(3795,75,128,'api::service.service','listImage',1),(3799,73,129,'api::service.service','listImage',1),(3801,74,130,'api::service.service','listImage',1),(3803,72,131,'api::service.service','listImage',1),(3805,72,132,'api::service.service','listImage',1),(3807,74,133,'api::service.service','listImage',1),(3808,255,59,'common.title-desc-img-position','image',1),(3810,255,152,'common.title-desc-img-position','image',1),(3811,73,134,'api::service.service','listImage',1),(3817,73,136,'api::service.service','listImage',1),(3821,74,139,'api::service.service','listImage',1),(3825,74,140,'api::service.service','listImage',1),(3835,74,141,'api::service.service','listImage',1),(3849,74,142,'api::service.service','listImage',1),(3863,74,143,'api::service.service','listImage',1),(3879,74,144,'api::service.service','listImage',1),(3895,74,145,'api::service.service','listImage',1),(3913,74,146,'api::service.service','listImage',1),(3931,74,147,'api::service.service','listImage',1),(3932,254,175,'common.title-desc-img-position','image',1),(3933,247,1,'common.title-desc-img-position','image',1),(3940,250,19,'common.title-desc-img-position','image',1),(3942,247,176,'common.title-desc-img-position','image',1),(3949,250,177,'common.title-desc-img-position','image',1),(3950,254,178,'common.title-desc-img-position','image',1),(3951,75,148,'api::service.service','listImage',1),(3963,72,149,'api::service.service','listImage',1),(3979,73,150,'api::service.service','listImage',1),(3989,72,151,'api::service.service','listImage',1),(3999,72,152,'api::service.service','listImage',1),(4009,72,153,'api::service.service','listImage',1),(4027,74,154,'api::service.service','listImage',1),(4033,72,155,'api::service.service','listImage',1),(4034,148,3,'api::tyre-service.tyre-service','image',1),(4035,148,36,'api::tyre-service.tyre-service','image',1),(4036,150,7,'api::tyre-service.tyre-service','image',1),(4037,150,37,'api::tyre-service.tyre-service','image',1),(4038,149,1,'api::tyre-service.tyre-service','image',1),(4039,149,38,'api::tyre-service.tyre-service','image',1),(4042,152,11,'api::tyre-service.tyre-service','image',1),(4043,152,40,'api::tyre-service.tyre-service','image',1),(4061,74,156,'api::service.service','listImage',1),(4062,279,179,'common.title-desc-img-position','image',1),(4066,283,180,'common.title-desc-img-position','image',1),(4068,279,200,'common.title-desc-img-position','image',1),(4072,283,201,'common.title-desc-img-position','image',1),(4073,72,157,'api::service.service','listImage',1),(4089,73,158,'api::service.service','listImage',1),(4107,74,159,'api::service.service','listImage',1),(4125,74,160,'api::service.service','listImage',1),(4143,74,161,'api::service.service','listImage',1),(4161,74,162,'api::service.service','listImage',1),(4165,72,163,'api::service.service','listImage',1),(4171,72,164,'api::service.service','listImage',1),(4177,72,165,'api::service.service','listImage',1),(4183,72,166,'api::service.service','listImage',1),(4184,271,133,'common.title-desc-img-position','image',1),(4190,277,159,'common.title-desc-img-position','image',1),(4191,278,171,'common.title-desc-img-position','image',1),(4193,271,229,'common.title-desc-img-position','image',1),(4199,277,230,'common.title-desc-img-position','image',1),(4200,278,231,'common.title-desc-img-position','image',1),(4201,74,167,'api::service.service','listImage',1),(4202,284,153,'common.title-desc-img-position','image',1),(4207,289,183,'common.title-desc-img-position','image',1),(4208,290,184,'common.title-desc-img-position','image',1),(4210,284,232,'common.title-desc-img-position','image',1),(4215,289,233,'common.title-desc-img-position','image',1),(4216,290,234,'common.title-desc-img-position','image',1),(4217,73,168,'api::service.service','listImage',1),(4218,268,116,'common.title-desc-img-position','image',1),(4220,268,235,'common.title-desc-img-position','image',1),(4221,72,169,'api::service.service','listImage',1),(4229,72,170,'api::service.service','listImage',1),(4230,307,77,'common.title-desc-img-position','image',1),(4231,305,81,'common.title-desc-img-position','image',1),(4232,306,98,'common.title-desc-img-position','image',1),(4234,307,239,'common.title-desc-img-position','image',1),(4235,305,240,'common.title-desc-img-position','image',1),(4236,306,241,'common.title-desc-img-position','image',1),(4237,72,171,'api::service.service','listImage',1),(4270,74,173,'api::service.service','listImage',1),(4276,74,174,'api::service.service','listImage',1),(4286,74,175,'api::service.service','listImage',1),(4296,74,176,'api::service.service','listImage',1),(4301,74,177,'api::service.service','listImage',1),(4302,308,242,'common.title-desc-img-position','image',1),(4303,309,243,'common.title-desc-img-position','image',1),(4307,308,255,'common.title-desc-img-position','image',1),(4308,309,256,'common.title-desc-img-position','image',1),(4311,74,178,'api::service.service','listImage',1),(4328,74,181,'api::service.service','listImage',1),(4336,74,182,'api::service.service','listImage',1),(4344,74,183,'api::service.service','listImage',1),(4352,74,184,'api::service.service','listImage',1),(4360,74,185,'api::service.service','listImage',1),(4370,74,186,'api::service.service','listImage',1),(4399,74,187,'api::service.service','listImage',1),(4414,74,188,'api::service.service','listImage',1),(4426,74,189,'api::service.service','listImage',1),(4438,74,190,'api::service.service','listImage',1),(4450,74,191,'api::service.service','listImage',1),(4462,74,192,'api::service.service','listImage',1),(4480,74,193,'api::service.service','listImage',1),(4481,315,267,'common.title-desc-img-position','image',1),(4482,316,270,'common.title-desc-img-position','image',1),(4486,320,281,'common.title-desc-img-position','image',1),(4487,321,282,'common.title-desc-img-position','image',1),(4488,322,283,'common.title-desc-img-position','image',1),(4490,315,289,'common.title-desc-img-position','image',1),(4491,316,290,'common.title-desc-img-position','image',1),(4495,320,291,'common.title-desc-img-position','image',1),(4496,321,292,'common.title-desc-img-position','image',1),(4497,322,293,'common.title-desc-img-position','image',1),(4498,74,194,'api::service.service','listImage',1),(4506,74,195,'api::service.service','listImage',1),(4507,312,259,'common.title-desc-img-position','image',1),(4511,312,295,'common.title-desc-img-position','image',1),(4514,74,196,'api::service.service','listImage',1),(4530,72,197,'api::service.service','listImage',1),(4546,72,198,'api::service.service','listImage',1),(4562,72,199,'api::service.service','listImage',1),(4563,298,299,'common.title-desc-img-position','image',1),(4564,297,299,'common.title-desc-img-position','image',2),(4565,296,299,'common.title-desc-img-position','image',3),(4566,295,299,'common.title-desc-img-position','image',4),(4574,298,300,'common.title-desc-img-position','image',1),(4575,297,300,'common.title-desc-img-position','image',2),(4576,296,300,'common.title-desc-img-position','image',3),(4577,295,300,'common.title-desc-img-position','image',4),(4578,72,200,'api::service.service','listImage',1),(4594,72,201,'api::service.service','listImage',1),(4595,293,657,'common.title-desc-with-img','image',1),(4596,294,658,'common.title-desc-with-img','image',1),(4597,292,659,'common.title-desc-with-img','image',1),(4598,298,302,'common.title-desc-img-position','images',1),(4599,297,302,'common.title-desc-img-position','images',2),(4600,296,302,'common.title-desc-img-position','images',3),(4601,295,302,'common.title-desc-img-position','images',4),(4602,72,202,'api::service.service','listImage',1),(4603,293,660,'common.title-desc-with-img','image',1),(4604,294,661,'common.title-desc-with-img','image',1),(4605,292,662,'common.title-desc-with-img','image',1),(4606,298,303,'common.title-desc-img-position','images',1),(4607,297,303,'common.title-desc-img-position','images',2),(4608,296,303,'common.title-desc-img-position','images',3),(4609,295,303,'common.title-desc-img-position','images',4),(4610,72,203,'api::service.service','listImage',1),(4611,313,31,'api::service-category.service-category','image',1),(4612,45,31,'api::service-category.service-category','menuImage',1),(4613,313,32,'api::service-category.service-category','image',1),(4614,45,32,'api::service-category.service-category','menuImage',1),(4615,56,227,'common.banner','media',1),(4616,89,25,'service-landing.service-locations','image',1),(4617,91,26,'service-landing.service-locations','image',1),(4618,56,228,'common.banner','media',1),(4619,89,27,'service-landing.service-locations','image',1),(4620,91,28,'service-landing.service-locations','image',1),(4624,72,204,'api::service.service','listImage',1),(4630,72,205,'api::service.service','listImage',1),(4638,72,206,'api::service.service','listImage',1),(4654,72,207,'api::service.service','listImage',1),(4670,72,208,'api::service.service','listImage',1),(4674,72,209,'api::service.service','listImage',1),(4677,329,60,'api::brand.brand','image',1),(4678,329,128,'api::brand.brand','image',1),(4679,323,99,'api::brand.brand','image',1),(4680,323,129,'api::brand.brand','image',1),(4681,324,107,'api::brand.brand','image',1),(4682,324,130,'api::brand.brand','image',1),(4683,333,131,'api::brand.brand','image',1),(4684,333,132,'api::brand.brand','image',1),(4687,332,135,'api::brand.brand','image',1),(4688,332,136,'api::brand.brand','image',1),(4689,330,133,'api::brand.brand','image',1),(4690,330,137,'api::brand.brand','image',1),(4691,331,141,'api::brand.brand','image',1),(4692,331,143,'api::brand.brand','image',1),(4693,328,138,'api::brand.brand','image',1),(4694,328,144,'api::brand.brand','image',1),(4695,335,145,'api::brand.brand','image',1),(4696,335,146,'api::brand.brand','image',1),(4699,334,147,'api::brand.brand','image',1),(4700,334,149,'api::brand.brand','image',1),(4707,326,153,'api::brand.brand','image',1),(4708,326,155,'api::brand.brand','image',1),(4711,325,156,'api::brand.brand','image',1),(4712,325,158,'api::brand.brand','image',1),(4732,75,210,'api::service.service','listImage',1),(4750,74,211,'api::service.service','listImage',1),(4768,74,212,'api::service.service','listImage',1),(4780,72,213,'api::service.service','listImage',1),(4792,72,214,'api::service.service','listImage',1),(4810,74,215,'api::service.service','listImage',1),(4822,72,216,'api::service.service','listImage',1),(4840,74,217,'api::service.service','listImage',1),(4860,75,218,'api::service.service','listImage',1),(4864,73,219,'api::service.service','listImage',1),(4880,73,220,'api::service.service','listImage',1),(4892,74,221,'api::service.service','listImage',1),(4910,74,222,'api::service.service','listImage',1),(4928,74,223,'api::service.service','listImage',1),(4938,74,224,'api::service.service','listImage',1),(4946,74,225,'api::service.service','listImage',1),(4948,88,179,'api::branch.branch','image',1),(4950,39,180,'api::branch.branch','image',1),(4952,177,181,'api::branch.branch','image',1),(4954,176,182,'api::branch.branch','image',1),(4956,178,183,'api::branch.branch','image',1),(4958,92,184,'api::branch.branch','image',1),(4960,241,185,'api::branch.branch','image',1),(4962,240,186,'api::branch.branch','image',1),(4964,179,187,'api::branch.branch','image',1),(4966,180,188,'api::branch.branch','image',1),(4968,90,189,'api::branch.branch','image',1),(4970,239,190,'api::branch.branch','image',1),(4972,179,191,'api::branch.branch','image',1),(4974,222,192,'api::branch.branch','image',1),(4976,87,193,'api::branch.branch','image',1),(4977,336,97,'api::brand.brand','image',1),(4978,336,159,'api::brand.brand','image',1),(4979,338,160,'api::brand.brand','image',1),(4980,338,161,'api::brand.brand','image',1),(5000,75,226,'api::service.service','listImage',1),(5020,75,227,'api::service.service','listImage',1),(5040,75,228,'api::service.service','listImage',1),(5062,16,29,'home.about-cme','image',1),(5092,16,30,'home.about-cme','image',1),(5136,16,31,'home.about-cme','image',1),(5166,74,236,'api::service.service','listImage',1),(5178,72,237,'api::service.service','listImage',1),(5188,74,238,'api::service.service','listImage',1),(5196,74,239,'api::service.service','listImage',1),(5197,358,41,'api::tyre-service.tyre-service','image',1),(5198,358,48,'api::tyre-service.tyre-service','image',1),(5199,356,46,'api::tyre-service.tyre-service','image',1),(5200,356,49,'api::tyre-service.tyre-service','image',1),(5201,357,44,'api::tyre-service.tyre-service','image',1),(5202,357,50,'api::tyre-service.tyre-service','image',1),(5205,151,9,'api::tyre-service.tyre-service','image',1),(5206,151,51,'api::tyre-service.tyre-service','image',1),(5207,360,11,'api::power-top-category.power-top-category','image',1),(5208,360,29,'api::power-top-category.power-top-category','image',1),(5209,361,5,'api::power-top-category.power-top-category','image',1),(5210,361,30,'api::power-top-category.power-top-category','image',1),(5214,195,1,'api::power-category.power-category','image',1),(5215,195,41,'api::power-category.power-category','image',1),(5216,196,13,'api::power-category.power-category','image',1),(5217,196,42,'api::power-category.power-category','image',1),(5218,201,17,'api::power-category.power-category','image',1),(5219,201,43,'api::power-category.power-category','image',1),(5220,199,11,'api::power-category.power-category','image',1),(5221,199,44,'api::power-category.power-category','image',1),(5222,200,15,'api::power-category.power-category','image',1),(5223,200,45,'api::power-category.power-category','image',1),(5234,21,8,'api::business-stream.business-stream','image',1),(5235,21,41,'api::business-stream.business-stream','image',1),(5236,20,6,'api::business-stream.business-stream','image',1),(5237,20,42,'api::business-stream.business-stream','image',1),(5238,206,1,'api::business-stream.business-stream','image',1),(5239,206,43,'api::business-stream.business-stream','image',1),(5240,19,3,'api::business-stream.business-stream','image',1),(5241,19,44,'api::business-stream.business-stream','image',1),(5242,9,1,'api::header.header','logo',1),(5243,8,1,'api::header.header','colorLogo',1),(5244,9,17,'api::header.header','logo',1),(5245,8,17,'api::header.header','colorLogo',1),(5249,74,240,'api::service.service','listImage',1),(5255,363,194,'api::branch.branch','image',1),(5257,363,195,'api::branch.branch','image',1),(5259,363,196,'api::branch.branch','image',1),(5261,363,197,'api::branch.branch','image',1),(5262,363,21,'api::branch.branch','image',1),(5263,363,198,'api::branch.branch','image',1),(5265,239,199,'api::branch.branch','image',1),(5267,239,200,'api::branch.branch','image',1),(5268,364,5,'api::branch.branch','image',1),(5269,364,201,'api::branch.branch','image',1),(5296,72,242,'api::service.service','listImage',1),(5297,365,52,'api::tyre-service.tyre-service','image',1),(5298,365,54,'api::tyre-service.tyre-service','image',1),(5308,72,243,'api::service.service','listImage',1),(5318,72,244,'api::service.service','listImage',1),(5328,72,245,'api::service.service','listImage',1),(5338,72,246,'api::service.service','listImage',1),(5348,72,247,'api::service.service','listImage',1),(5358,72,248,'api::service.service','listImage',1),(5368,72,249,'api::service.service','listImage',1),(5378,365,250,'api::service.service','listImage',1),(5388,365,251,'api::service.service','listImage',1),(5398,365,252,'api::service.service','listImage',1),(5408,365,253,'api::service.service','listImage',1),(5418,365,254,'api::service.service','listImage',1),(5428,365,255,'api::service.service','listImage',1),(5438,365,256,'api::service.service','listImage',1),(5469,142,5,'api::service-category-type.service-category-type','image',1),(5470,142,33,'api::service-category-type.service-category-type','image',1),(5471,140,9,'api::service-category-type.service-category-type','image',1),(5472,140,34,'api::service-category-type.service-category-type','image',1),(5473,139,7,'api::product-category.product-category','image',1),(5474,139,45,'api::product-category.product-category','image',1),(5476,380,202,'api::branch.branch','image',1),(5478,379,203,'api::branch.branch','image',1),(5480,378,204,'api::branch.branch','image',1),(5482,377,205,'api::branch.branch','image',1),(5484,376,206,'api::branch.branch','image',1),(5486,375,207,'api::branch.branch','image',1),(5488,374,208,'api::branch.branch','image',1),(5490,373,209,'api::branch.branch','image',1),(5492,372,210,'api::branch.branch','image',1),(5494,387,211,'api::branch.branch','image',1),(5496,396,213,'api::branch.branch','image',1),(5498,395,214,'api::branch.branch','image',1),(5500,394,215,'api::branch.branch','image',1),(5502,393,216,'api::branch.branch','image',1),(5504,392,217,'api::branch.branch','image',1),(5506,390,218,'api::branch.branch','image',1),(5508,397,219,'api::branch.branch','image',1),(5510,397,220,'api::branch.branch','image',1),(5512,374,221,'api::branch.branch','image',1),(5514,376,222,'api::branch.branch','image',1),(5516,374,223,'api::branch.branch','image',1),(5520,399,225,'api::branch.branch','image',1),(5522,392,226,'api::branch.branch','image',1),(5524,403,228,'api::branch.branch','image',1),(5526,404,229,'api::branch.branch','image',1),(5528,407,230,'api::branch.branch','image',1),(5530,406,231,'api::branch.branch','image',1),(5532,390,232,'api::branch.branch','image',1),(5534,405,233,'api::branch.branch','image',1),(5536,404,234,'api::branch.branch','image',1),(5538,403,235,'api::branch.branch','image',1),(5540,404,236,'api::branch.branch','image',1),(5542,407,237,'api::branch.branch','image',1),(5544,406,238,'api::branch.branch','image',1),(5546,405,239,'api::branch.branch','image',1),(5548,405,240,'api::branch.branch','image',1),(5550,405,241,'api::branch.branch','image',1),(5552,406,242,'api::branch.branch','image',1),(5554,407,243,'api::branch.branch','image',1),(5556,404,244,'api::branch.branch','image',1),(5558,403,245,'api::branch.branch','image',1),(5560,413,246,'api::branch.branch','image',1),(5562,414,247,'api::branch.branch','image',1),(5564,408,248,'api::branch.branch','image',1),(5566,417,249,'api::branch.branch','image',1),(5568,416,250,'api::branch.branch','image',1),(5570,421,251,'api::branch.branch','image',1),(5572,423,252,'api::branch.branch','image',1),(5574,420,253,'api::branch.branch','image',1),(5576,419,254,'api::branch.branch','image',1),(5578,403,255,'api::branch.branch','image',1),(5580,405,256,'api::branch.branch','image',1),(5582,406,257,'api::branch.branch','image',1),(5584,407,258,'api::branch.branch','image',1),(5586,404,259,'api::branch.branch','image',1),(5588,403,260,'api::branch.branch','image',1),(5590,403,261,'api::branch.branch','image',1),(5592,413,262,'api::branch.branch','image',1),(5594,414,263,'api::branch.branch','image',1),(5596,420,264,'api::branch.branch','image',1),(5598,408,265,'api::branch.branch','image',1),(5600,419,266,'api::branch.branch','image',1),(5602,416,267,'api::branch.branch','image',1),(5604,417,268,'api::branch.branch','image',1),(5606,400,269,'api::branch.branch','image',1),(5608,424,270,'api::branch.branch','image',1),(5610,410,271,'api::branch.branch','image',1),(5612,411,272,'api::branch.branch','image',1),(5615,416,274,'api::branch.branch','image',1),(5617,416,275,'api::branch.branch','image',1),(5619,416,276,'api::branch.branch','image',1),(5621,416,277,'api::branch.branch','image',1),(5623,416,278,'api::branch.branch','image',1),(5625,416,279,'api::branch.branch','image',1),(5662,83,56,'common.title-desc-with-img','image',1),(5663,205,58,'common.title-desc-with-img','image',1),(5664,204,59,'common.title-desc-with-img','image',1),(5665,20,8,'common.title-desc-btn-img','image',1),(5666,425,1,'common.title-desc-btn-img','image',1),(5667,19,7,'common.title-desc-btn-img','image',1),(5668,21,15,'common.title-desc-btn-img','image',1),(5669,83,800,'common.title-desc-with-img','image',1),(5670,205,801,'common.title-desc-with-img','image',1),(5671,204,802,'common.title-desc-with-img','image',1),(5672,20,76,'common.title-desc-btn-img','image',1),(5673,425,77,'common.title-desc-btn-img','image',1),(5674,19,78,'common.title-desc-btn-img','image',1),(5675,21,79,'common.title-desc-btn-img','image',1),(5724,163,260,'common.banner','media',1),(5725,314,8,'api::service-category.service-category','image',1),(5726,207,8,'api::service-category.service-category','menuImage',1),(5727,163,265,'common.banner','media',1),(5728,314,38,'api::service-category.service-category','image',1),(5729,207,38,'api::service-category.service-category','menuImage',1),(5739,434,257,'api::service.service','listImage',1),(5743,426,258,'api::service.service','listImage',1),(5744,271,133,'common.title-desc-img-position','images',1),(5745,302,443,'common.title-desc-with-img','image',1),(5746,303,445,'common.title-desc-with-img','image',1),(5747,299,446,'common.title-desc-with-img','image',1),(5748,301,471,'common.title-desc-with-img','image',1),(5749,300,472,'common.title-desc-with-img','image',1),(5750,277,159,'common.title-desc-img-position','images',1),(5751,278,171,'common.title-desc-img-position','images',1),(5752,428,27,'api::service.service','listImage',1),(5753,271,421,'common.title-desc-img-position','images',1),(5754,302,805,'common.title-desc-with-img','image',1),(5755,303,806,'common.title-desc-with-img','image',1),(5756,299,807,'common.title-desc-with-img','image',1),(5757,301,808,'common.title-desc-with-img','image',1),(5758,300,809,'common.title-desc-with-img','image',1),(5759,277,422,'common.title-desc-img-position','images',1),(5760,278,423,'common.title-desc-img-position','images',1),(5761,428,259,'api::service.service','listImage',1),(5771,427,260,'api::service.service','listImage',1),(5783,429,261,'api::service.service','listImage',1),(5799,73,262,'api::service.service','listImage',1),(5817,431,263,'api::service.service','listImage',1),(5818,339,1,'common.title-desc-img-position','images',1),(5819,340,166,'common.title-desc-with-img','image',1),(5820,341,167,'common.title-desc-with-img','image',1),(5821,342,258,'common.title-desc-with-img','image',1),(5822,343,259,'common.title-desc-with-img','image',1),(5823,344,260,'common.title-desc-with-img','image',1),(5824,345,261,'common.title-desc-with-img','image',1),(5825,346,19,'common.title-desc-img-position','images',1),(5826,347,175,'common.title-desc-img-position','images',1),(5827,433,5,'api::service.service','listImage',1),(5828,339,436,'common.title-desc-img-position','images',1),(5829,340,822,'common.title-desc-with-img','image',1),(5830,341,823,'common.title-desc-with-img','image',1),(5831,342,824,'common.title-desc-with-img','image',1),(5832,343,825,'common.title-desc-with-img','image',1),(5833,344,826,'common.title-desc-with-img','image',1),(5834,345,827,'common.title-desc-with-img','image',1),(5835,346,437,'common.title-desc-img-position','images',1),(5836,347,438,'common.title-desc-img-position','images',1),(5837,433,264,'api::service.service','listImage',1),(5841,430,265,'api::service.service','listImage',1),(5857,432,266,'api::service.service','listImage',1),(5859,416,280,'api::branch.branch','image',1),(5861,416,281,'api::branch.branch','image',1),(5863,416,282,'api::branch.branch','image',1),(5865,416,283,'api::branch.branch','image',1),(5867,416,284,'api::branch.branch','image',1),(5869,416,285,'api::branch.branch','image',1),(5871,416,286,'api::branch.branch','image',1),(5873,416,287,'api::branch.branch','image',1),(5875,416,288,'api::branch.branch','image',1),(5877,416,289,'api::branch.branch','image',1),(5880,416,290,'api::branch.branch','image',1),(5882,416,291,'api::branch.branch','image',1),(5883,49,20,'common.banner','media',1),(5884,8,1,'common.box-component','logo',1),(5885,8,1,'common.box-component','responsiveLogo',1),(5886,49,266,'common.banner','media',1),(5887,8,11,'common.box-component','logo',1),(5888,8,11,'common.box-component','responsiveLogo',1),(5922,16,32,'home.about-cme','image',1),(5933,438,273,'common.banner','media',1),(5934,350,232,'common.banner','media',1),(5935,351,235,'common.banner','media',1),(5936,352,236,'common.banner','media',1),(5937,16,1,'home.about-cme','image',1),(5938,115,1,'home.logos','logo',1),(5939,116,24,'home.logos','logo',1),(5940,96,52,'home.logos','logo',1),(5941,114,53,'home.logos','logo',1),(5942,113,54,'home.logos','logo',1),(5943,112,55,'home.logos','logo',1),(5944,111,56,'home.logos','logo',1),(5945,109,57,'home.logos','logo',1),(5946,105,58,'home.logos','logo',1),(5947,41,1,'common.content-with-link','image',1),(5948,438,279,'common.banner','media',1),(5949,350,280,'common.banner','media',1),(5950,351,281,'common.banner','media',1),(5951,352,282,'common.banner','media',1),(5952,16,33,'home.about-cme','image',1),(5953,115,210,'home.logos','logo',1),(5954,116,211,'home.logos','logo',1),(5955,96,212,'home.logos','logo',1),(5956,114,213,'home.logos','logo',1),(5957,113,214,'home.logos','logo',1),(5958,112,215,'home.logos','logo',1),(5959,111,216,'home.logos','logo',1),(5960,109,217,'home.logos','logo',1),(5961,105,218,'home.logos','logo',1),(5962,41,35,'common.content-with-link','image',1),(5963,447,283,'common.banner','media',1),(5964,444,107,'common.banner','media',1),(5965,446,128,'common.banner','media',1),(5966,445,184,'common.banner','media',1),(5967,444,284,'common.banner','media',1),(5968,446,285,'common.banner','media',1),(5969,445,286,'common.banner','media',1),(5970,447,287,'common.banner','media',1),(5985,435,59,'common.banner','media',1),(5986,93,3,'api::service-category.service-category','image',1),(5987,44,3,'api::service-category.service-category','menuImage',1),(5988,435,300,'common.banner','media',1),(5989,93,39,'api::service-category.service-category','image',1),(5990,44,39,'api::service-category.service-category','menuImage',1),(5991,448,258,'common.banner','media',1),(5992,313,1,'api::service-category.service-category','image',1),(5993,45,1,'api::service-category.service-category','menuImage',1),(5994,448,301,'common.banner','media',1),(5995,313,40,'api::service-category.service-category','image',1),(5996,45,40,'api::service-category.service-category','menuImage',1),(5997,365,386,'common.title-desc-img-position','images',1),(5998,369,760,'common.title-desc-with-img','image',1),(5999,371,761,'common.title-desc-with-img','image',1),(6000,368,387,'common.title-desc-img-position','images',1),(6001,434,241,'api::service.service','listImage',1),(6002,365,443,'common.title-desc-img-position','images',1),(6003,369,834,'common.title-desc-with-img','image',1),(6004,371,835,'common.title-desc-with-img','image',1),(6005,368,444,'common.title-desc-img-position','images',1),(6006,434,267,'api::service.service','listImage',1),(6007,312,259,'common.title-desc-img-position','images',1),(6008,426,180,'api::service.service','listImage',1),(6009,312,445,'common.title-desc-img-position','images',1),(6010,426,268,'api::service.service','listImage',1),(6018,72,269,'api::service.service','listImage',1),(6034,72,270,'api::service.service','listImage',1),(6037,308,242,'common.title-desc-img-position','images',1),(6038,309,243,'common.title-desc-img-position','images',1),(6039,310,586,'common.title-desc-with-img','image',1),(6040,311,587,'common.title-desc-with-img','image',1),(6041,427,172,'api::service.service','listImage',1),(6042,308,450,'common.title-desc-img-position','images',1),(6043,309,451,'common.title-desc-img-position','images',1),(6044,310,839,'common.title-desc-with-img','image',1),(6045,311,840,'common.title-desc-with-img','image',1),(6046,427,272,'api::service.service','listImage',1),(6047,279,179,'common.title-desc-img-position','images',1),(6048,280,509,'common.title-desc-with-img','image',1),(6049,281,510,'common.title-desc-with-img','image',1),(6050,282,511,'common.title-desc-with-img','image',1),(6051,283,180,'common.title-desc-img-position','images',1),(6052,429,31,'api::service.service','listImage',1),(6053,279,452,'common.title-desc-img-position','images',1),(6054,280,841,'common.title-desc-with-img','image',1),(6055,281,842,'common.title-desc-with-img','image',1),(6056,282,843,'common.title-desc-with-img','image',1),(6057,283,453,'common.title-desc-img-position','images',1),(6058,429,273,'api::service.service','listImage',1),(6061,315,267,'common.title-desc-img-position','images',1),(6062,316,270,'common.title-desc-img-position','images',1),(6063,317,613,'common.title-desc-with-img','image',1),(6064,318,614,'common.title-desc-with-img','image',1),(6065,319,615,'common.title-desc-with-img','image',1),(6066,320,281,'common.title-desc-img-position','images',1),(6067,321,349,'common.title-desc-img-position','images',1),(6068,322,350,'common.title-desc-img-position','images',1),(6069,431,179,'api::service.service','listImage',1),(6070,315,454,'common.title-desc-img-position','images',1),(6071,316,455,'common.title-desc-img-position','images',1),(6072,317,844,'common.title-desc-with-img','image',1),(6073,318,845,'common.title-desc-with-img','image',1),(6074,319,846,'common.title-desc-with-img','image',1),(6075,320,456,'common.title-desc-img-position','images',1),(6076,321,457,'common.title-desc-img-position','images',1),(6077,322,458,'common.title-desc-img-position','images',1),(6078,431,276,'api::service.service','listImage',1),(6079,255,59,'common.title-desc-img-position','images',1),(6080,430,29,'api::service.service','listImage',1),(6081,255,459,'common.title-desc-img-position','images',1),(6082,430,277,'api::service.service','listImage',1),(6083,284,153,'common.title-desc-img-position','images',1),(6084,285,515,'common.title-desc-with-img','image',1),(6085,286,516,'common.title-desc-with-img','image',1),(6086,287,517,'common.title-desc-with-img','image',1),(6087,288,518,'common.title-desc-with-img','image',1),(6088,289,183,'common.title-desc-img-position','images',1),(6089,290,184,'common.title-desc-img-position','images',1),(6090,432,135,'api::service.service','listImage',1),(6091,284,460,'common.title-desc-img-position','images',1),(6092,285,847,'common.title-desc-with-img','image',1),(6093,286,848,'common.title-desc-with-img','image',1),(6094,287,849,'common.title-desc-with-img','image',1),(6095,288,850,'common.title-desc-with-img','image',1),(6096,289,461,'common.title-desc-img-position','images',1),(6097,290,462,'common.title-desc-img-position','images',1),(6098,432,278,'api::service.service','listImage',1),(6102,72,279,'api::service.service','listImage',1),(6103,419,273,'api::branch.branch','image',1),(6104,419,292,'api::branch.branch','image',1),(6106,421,293,'api::branch.branch','image',1),(6108,423,294,'api::branch.branch','image',1),(6110,420,295,'api::branch.branch','image',1),(6112,405,296,'api::branch.branch','image',1),(6114,406,297,'api::branch.branch','image',1),(6116,407,298,'api::branch.branch','image',1),(6118,404,299,'api::branch.branch','image',1),(6120,403,300,'api::branch.branch','image',1),(6122,413,301,'api::branch.branch','image',1),(6124,414,302,'api::branch.branch','image',1),(6126,419,303,'api::branch.branch','image',1),(6128,417,304,'api::branch.branch','image',1),(6130,416,305,'api::branch.branch','image',1),(6132,400,306,'api::branch.branch','image',1),(6134,424,307,'api::branch.branch','image',1),(6136,410,308,'api::branch.branch','image',1),(6138,411,309,'api::branch.branch','image',1),(6140,419,310,'api::branch.branch','image',1),(6142,416,311,'api::branch.branch','image',1),(6144,417,312,'api::branch.branch','image',1),(6165,11,1,'common.social-links','icon',1),(6166,13,4,'common.social-links','icon',1),(6167,12,5,'common.social-links','icon',1),(6168,10,6,'common.social-links','icon',1),(6169,15,1,'api::footer.footer','logo',1),(6170,11,87,'common.social-links','icon',1),(6171,13,88,'common.social-links','icon',1),(6172,12,89,'common.social-links','icon',1),(6173,10,90,'common.social-links','icon',1),(6174,15,25,'api::footer.footer','logo',1),(6175,307,77,'common.title-desc-img-position','images',1),(6176,305,81,'common.title-desc-img-position','images',1),(6177,306,98,'common.title-desc-img-position','images',1),(6178,451,82,'api::service.service','listImage',1),(6179,307,464,'common.title-desc-img-position','images',1),(6180,305,465,'common.title-desc-img-position','images',1),(6181,306,466,'common.title-desc-img-position','images',1),(6182,451,280,'api::service.service','listImage',1),(6183,298,299,'common.title-desc-img-position','images',1),(6184,297,299,'common.title-desc-img-position','images',2),(6185,296,299,'common.title-desc-img-position','images',3),(6186,295,299,'common.title-desc-img-position','images',4),(6187,293,523,'common.title-desc-with-img','image',1),(6188,294,524,'common.title-desc-with-img','image',1),(6189,292,525,'common.title-desc-with-img','image',1),(6190,453,99,'api::service.service','listImage',1),(6191,298,467,'common.title-desc-img-position','images',1),(6192,297,467,'common.title-desc-img-position','images',2),(6193,296,467,'common.title-desc-img-position','images',3),(6194,295,467,'common.title-desc-img-position','images',4),(6195,293,851,'common.title-desc-with-img','image',1),(6196,294,852,'common.title-desc-with-img','image',1),(6197,292,853,'common.title-desc-with-img','image',1),(6198,453,281,'api::service.service','listImage',1),(6199,268,116,'common.title-desc-img-position','images',1),(6200,452,105,'api::service.service','listImage',1),(6201,268,468,'common.title-desc-img-position','images',1),(6202,452,282,'api::service.service','listImage',1),(6206,449,283,'api::service.service','listImage',1),(6210,450,284,'api::service.service','listImage',1),(6225,454,109,'common.banner','media',1),(6226,437,290,'common.banner','media',1),(6227,442,288,'common.banner','media',1),(6228,441,291,'common.banner','media',1),(6229,440,292,'common.banner','media',1),(6230,454,313,'common.banner','media',1),(6231,437,314,'common.banner','media',1),(6232,442,315,'common.banner','media',1),(6233,441,316,'common.banner','media',1),(6234,440,317,'common.banner','media',1),(6235,403,173,'api::branch.branch','image',1),(6236,403,313,'api::branch.branch','image',1),(6237,353,241,'common.banner','media',1),(6238,449,7,'api::service.service','listImage',1),(6239,353,318,'common.banner','media',1),(6240,449,285,'api::service.service','listImage',1),(6241,355,141,'common.banner','media',1),(6242,450,36,'api::service.service','listImage',1),(6243,355,319,'common.banner','media',1),(6244,450,286,'api::service.service','listImage',1),(6245,421,17,'api::branch.branch','image',1),(6246,421,314,'api::branch.branch','image',1),(6247,423,1,'api::branch.branch','image',1),(6248,423,315,'api::branch.branch','image',1),(6249,420,31,'api::branch.branch','image',1),(6250,420,316,'api::branch.branch','image',1),(6251,405,86,'api::branch.branch','image',1),(6252,405,317,'api::branch.branch','image',1),(6253,406,88,'api::branch.branch','image',1),(6254,406,318,'api::branch.branch','image',1),(6255,407,90,'api::branch.branch','image',1),(6256,407,319,'api::branch.branch','image',1),(6257,404,29,'api::branch.branch','image',1),(6258,404,320,'api::branch.branch','image',1),(6259,403,103,'api::branch.branch','image',1),(6260,403,321,'api::branch.branch','image',1),(6261,413,106,'api::branch.branch','image',1),(6262,413,322,'api::branch.branch','image',1),(6263,414,108,'api::branch.branch','image',1),(6264,414,323,'api::branch.branch','image',1),(6265,408,144,'api::branch.branch','image',1),(6266,408,324,'api::branch.branch','image',1),(6267,419,113,'api::branch.branch','image',1),(6268,419,325,'api::branch.branch','image',1),(6269,416,25,'api::branch.branch','image',1),(6270,416,326,'api::branch.branch','image',1),(6271,417,27,'api::branch.branch','image',1),(6272,417,327,'api::branch.branch','image',1),(6273,400,121,'api::branch.branch','image',1),(6274,400,328,'api::branch.branch','image',1),(6275,424,123,'api::branch.branch','image',1),(6276,424,329,'api::branch.branch','image',1),(6277,410,118,'api::branch.branch','image',1),(6278,410,330,'api::branch.branch','image',1),(6279,411,125,'api::branch.branch','image',1),(6280,411,331,'api::branch.branch','image',1);
/*!40000 ALTER TABLE `files_related_mph` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `footers`
--

DROP TABLE IF EXISTS `footers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `footers` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `document_id` varchar(255) DEFAULT NULL,
  `created_at` datetime(6) DEFAULT NULL,
  `updated_at` datetime(6) DEFAULT NULL,
  `published_at` datetime(6) DEFAULT NULL,
  `created_by_id` int unsigned DEFAULT NULL,
  `updated_by_id` int unsigned DEFAULT NULL,
  `locale` varchar(255) DEFAULT NULL,
  `copyright_text` longtext,
  `description` longtext,
  PRIMARY KEY (`id`),
  KEY `footers_documents_idx` (`document_id`,`locale`,`published_at`),
  KEY `footers_created_by_id_fk` (`created_by_id`),
  KEY `footers_updated_by_id_fk` (`updated_by_id`),
  CONSTRAINT `footers_created_by_id_fk` FOREIGN KEY (`created_by_id`) REFERENCES `admin_users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `footers_updated_by_id_fk` FOREIGN KEY (`updated_by_id`) REFERENCES `admin_users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=26 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `footers`
--

LOCK TABLES `footers` WRITE;
/*!40000 ALTER TABLE `footers` DISABLE KEYS */;
INSERT INTO `footers` VALUES (1,'kdzkmdya4gu6pu184qlei04d','2025-11-22 06:46:14.928000','2026-04-02 05:55:43.610000',NULL,1,1,'en','© Central Motors & Equipment 2026. All Rights Reserved.','Central Motors & Equipment'),(25,'kdzkmdya4gu6pu184qlei04d','2025-11-22 06:46:14.928000','2026-04-02 05:55:43.610000','2026-04-02 05:55:45.003000',1,1,'en','© Central Motors & Equipment 2026. All Rights Reserved.','Central Motors & Equipment');
/*!40000 ALTER TABLE `footers` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `footers_cmps`
--

DROP TABLE IF EXISTS `footers_cmps`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `footers_cmps` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `entity_id` int unsigned DEFAULT NULL,
  `cmp_id` int unsigned DEFAULT NULL,
  `component_type` varchar(255) DEFAULT NULL,
  `field` varchar(255) DEFAULT NULL,
  `order` double unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `footers_uq` (`entity_id`,`cmp_id`,`field`,`component_type`),
  KEY `footers_field_idx` (`field`),
  KEY `footers_component_type_idx` (`component_type`),
  KEY `footers_entity_fk` (`entity_id`),
  CONSTRAINT `footers_entity_fk` FOREIGN KEY (`entity_id`) REFERENCES `footers` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=409 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `footers_cmps`
--

LOCK TABLES `footers_cmps` WRITE;
/*!40000 ALTER TABLE `footers_cmps` DISABLE KEYS */;
INSERT INTO `footers_cmps` VALUES (1,1,1,'common.social-links','socialLinks',3),(2,1,11,'common.menu-item','bottomMenu',2),(3,1,12,'common.menu-item','bottomMenu',4),(4,1,1,'common.menu-item-w-sub','menu',1),(5,1,2,'common.menu-item-w-sub','menu',2),(21,1,4,'common.social-links','socialLinks',6),(22,1,5,'common.social-links','socialLinks',7),(23,1,6,'common.social-links','socialLinks',8),(401,25,87,'common.social-links','socialLinks',1),(402,25,88,'common.social-links','socialLinks',2),(403,25,89,'common.social-links','socialLinks',3),(404,25,90,'common.social-links','socialLinks',4),(405,25,306,'common.menu-item','bottomMenu',1),(406,25,307,'common.menu-item','bottomMenu',2),(407,25,58,'common.menu-item-w-sub','menu',1),(408,25,59,'common.menu-item-w-sub','menu',2);
/*!40000 ALTER TABLE `footers_cmps` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `headers`
--

DROP TABLE IF EXISTS `headers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `headers` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `document_id` varchar(255) DEFAULT NULL,
  `show_multilingual` tinyint(1) DEFAULT NULL,
  `created_at` datetime(6) DEFAULT NULL,
  `updated_at` datetime(6) DEFAULT NULL,
  `published_at` datetime(6) DEFAULT NULL,
  `created_by_id` int unsigned DEFAULT NULL,
  `updated_by_id` int unsigned DEFAULT NULL,
  `locale` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `headers_documents_idx` (`document_id`,`locale`,`published_at`),
  KEY `headers_created_by_id_fk` (`created_by_id`),
  KEY `headers_updated_by_id_fk` (`updated_by_id`),
  CONSTRAINT `headers_created_by_id_fk` FOREIGN KEY (`created_by_id`) REFERENCES `admin_users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `headers_updated_by_id_fk` FOREIGN KEY (`updated_by_id`) REFERENCES `admin_users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=18 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `headers`
--

LOCK TABLES `headers` WRITE;
/*!40000 ALTER TABLE `headers` DISABLE KEYS */;
INSERT INTO `headers` VALUES (1,'sp7t2jyo0s7xitjpftvi3mw1',0,'2025-11-22 06:41:06.614000','2026-03-27 09:49:08.400000',NULL,1,1,'en'),(17,'sp7t2jyo0s7xitjpftvi3mw1',0,'2025-11-22 06:41:06.614000','2026-03-27 09:49:08.400000','2026-03-27 09:49:09.199000',1,1,'en');
/*!40000 ALTER TABLE `headers` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `headers_cmps`
--

DROP TABLE IF EXISTS `headers_cmps`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `headers_cmps` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `entity_id` int unsigned DEFAULT NULL,
  `cmp_id` int unsigned DEFAULT NULL,
  `component_type` varchar(255) DEFAULT NULL,
  `field` varchar(255) DEFAULT NULL,
  `order` double unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `headers_uq` (`entity_id`,`cmp_id`,`field`,`component_type`),
  KEY `headers_field_idx` (`field`),
  KEY `headers_component_type_idx` (`component_type`),
  KEY `headers_entity_fk` (`entity_id`),
  CONSTRAINT `headers_entity_fk` FOREIGN KEY (`entity_id`) REFERENCES `headers` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=125 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `headers_cmps`
--

LOCK TABLES `headers_cmps` WRITE;
/*!40000 ALTER TABLE `headers_cmps` DISABLE KEYS */;
INSERT INTO `headers_cmps` VALUES (111,1,202,'common.menu-item','menu',1),(112,1,203,'common.menu-item','menu',2),(113,1,204,'common.menu-item','menu',3),(114,1,1,'common.menu-item-w-services','menu',4),(115,1,1,'common.menu-item','menu',5),(116,1,6,'common.menu-item','menu',6),(117,1,7,'common.menu-item','menu',7),(118,17,234,'common.menu-item','menu',1),(119,17,235,'common.menu-item','menu',2),(120,17,236,'common.menu-item','menu',3),(121,17,10,'common.menu-item-w-services','menu',4),(122,17,237,'common.menu-item','menu',5),(123,17,238,'common.menu-item','menu',6),(124,17,239,'common.menu-item','menu',7);
/*!40000 ALTER TABLE `headers_cmps` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `homes`
--

DROP TABLE IF EXISTS `homes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `homes` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `document_id` varchar(255) DEFAULT NULL,
  `created_at` datetime(6) DEFAULT NULL,
  `updated_at` datetime(6) DEFAULT NULL,
  `published_at` datetime(6) DEFAULT NULL,
  `created_by_id` int unsigned DEFAULT NULL,
  `updated_by_id` int unsigned DEFAULT NULL,
  `locale` varchar(255) DEFAULT NULL,
  `is_news_enabled` tinyint(1) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `homes_documents_idx` (`document_id`,`locale`,`published_at`),
  KEY `homes_created_by_id_fk` (`created_by_id`),
  KEY `homes_updated_by_id_fk` (`updated_by_id`),
  CONSTRAINT `homes_created_by_id_fk` FOREIGN KEY (`created_by_id`) REFERENCES `admin_users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `homes_updated_by_id_fk` FOREIGN KEY (`updated_by_id`) REFERENCES `admin_users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=51 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `homes`
--

LOCK TABLES `homes` WRITE;
/*!40000 ALTER TABLE `homes` DISABLE KEYS */;
INSERT INTO `homes` VALUES (1,'omwub2vqq79mjezdxrj80qmx','2025-11-22 05:40:07.852000','2026-04-01 09:50:45.955000',NULL,1,1,'en',1),(15,'omwub2vqq79mjezdxrj80qmx','2025-12-14 06:35:42.308000','2025-12-14 06:35:42.308000',NULL,1,1,'ar',1),(16,'omwub2vqq79mjezdxrj80qmx','2025-12-14 06:35:42.308000','2025-12-14 06:35:42.308000','2025-12-14 06:35:42.988000',1,1,'ar',1),(50,'omwub2vqq79mjezdxrj80qmx','2025-11-22 05:40:07.852000','2026-04-01 09:50:45.955000','2026-04-01 09:50:49.066000',1,1,'en',1);
/*!40000 ALTER TABLE `homes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `homes_cmps`
--

DROP TABLE IF EXISTS `homes_cmps`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `homes_cmps` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `entity_id` int unsigned DEFAULT NULL,
  `cmp_id` int unsigned DEFAULT NULL,
  `component_type` varchar(255) DEFAULT NULL,
  `field` varchar(255) DEFAULT NULL,
  `order` double unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `homes_uq` (`entity_id`,`cmp_id`,`field`,`component_type`),
  KEY `homes_field_idx` (`field`),
  KEY `homes_component_type_idx` (`component_type`),
  KEY `homes_entity_fk` (`entity_id`),
  CONSTRAINT `homes_entity_fk` FOREIGN KEY (`entity_id`) REFERENCES `homes` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=663 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `homes_cmps`
--

LOCK TABLES `homes_cmps` WRITE;
/*!40000 ALTER TABLE `homes_cmps` DISABLE KEYS */;
INSERT INTO `homes_cmps` VALUES (87,15,40,'common.banner','banner',1),(88,16,41,'common.banner','banner',1),(90,1,1,'common.content-with-link','aboutGroup',12),(98,1,1,'home.about-cme','aboutCme',7),(99,1,1,'home.business-stream','businessStreams',8),(100,1,1,'home.trusted-section','trustedPartners',10),(101,1,1,'home.content-section','socialFeeds',9),(102,1,2,'home.content-section','ourLocations',11),(114,1,5,'home.content-section','trustedBrands',6),(535,1,88,'common.seo','seo',1),(545,1,232,'common.banner','banner',2),(565,1,235,'common.banner','banner',3),(566,1,236,'common.banner','banner',4),(613,1,273,'common.banner','banner',1),(651,50,279,'common.banner','banner',1),(652,50,280,'common.banner','banner',2),(653,50,281,'common.banner','banner',3),(654,50,282,'common.banner','banner',4),(655,50,33,'home.about-cme','aboutCme',NULL),(656,50,33,'home.business-stream','businessStreams',NULL),(657,50,106,'home.content-section','trustedBrands',NULL),(658,50,33,'home.trusted-section','trustedPartners',NULL),(659,50,107,'home.content-section','socialFeeds',NULL),(660,50,108,'home.content-section','ourLocations',NULL),(661,50,35,'common.content-with-link','aboutGroup',NULL),(662,50,163,'common.seo','seo',NULL);
/*!40000 ALTER TABLE `homes_cmps` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `i18n_locale`
--

DROP TABLE IF EXISTS `i18n_locale`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `i18n_locale` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `document_id` varchar(255) DEFAULT NULL,
  `name` varchar(255) DEFAULT NULL,
  `code` varchar(255) DEFAULT NULL,
  `created_at` datetime(6) DEFAULT NULL,
  `updated_at` datetime(6) DEFAULT NULL,
  `published_at` datetime(6) DEFAULT NULL,
  `created_by_id` int unsigned DEFAULT NULL,
  `updated_by_id` int unsigned DEFAULT NULL,
  `locale` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `i18n_locale_documents_idx` (`document_id`,`locale`,`published_at`),
  KEY `i18n_locale_created_by_id_fk` (`created_by_id`),
  KEY `i18n_locale_updated_by_id_fk` (`updated_by_id`),
  CONSTRAINT `i18n_locale_created_by_id_fk` FOREIGN KEY (`created_by_id`) REFERENCES `admin_users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `i18n_locale_updated_by_id_fk` FOREIGN KEY (`updated_by_id`) REFERENCES `admin_users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `i18n_locale`
--

LOCK TABLES `i18n_locale` WRITE;
/*!40000 ALTER TABLE `i18n_locale` DISABLE KEYS */;
INSERT INTO `i18n_locale` VALUES (1,'sc34f0ritbxgoaf0bmfvixb5','English (en)','en','2025-11-21 05:39:29.301000','2025-11-21 05:39:29.301000','2025-11-21 05:39:29.303000',NULL,NULL,NULL),(2,'ttqlf2jrq3gjx11asw6ajbll','Arabic (ar)','ar','2025-11-28 09:33:47.290000','2025-11-28 09:33:47.290000','2025-11-28 09:33:47.291000',1,1,NULL);
/*!40000 ALTER TABLE `i18n_locale` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `locations`
--

DROP TABLE IF EXISTS `locations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `locations` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `document_id` varchar(255) DEFAULT NULL,
  `created_at` datetime(6) DEFAULT NULL,
  `updated_at` datetime(6) DEFAULT NULL,
  `published_at` datetime(6) DEFAULT NULL,
  `created_by_id` int unsigned DEFAULT NULL,
  `updated_by_id` int unsigned DEFAULT NULL,
  `locale` varchar(255) DEFAULT NULL,
  `sub_title` varchar(255) DEFAULT NULL,
  `title` varchar(255) DEFAULT NULL,
  `description` longtext,
  PRIMARY KEY (`id`),
  KEY `locations_documents_idx` (`document_id`,`locale`,`published_at`),
  KEY `locations_created_by_id_fk` (`created_by_id`),
  KEY `locations_updated_by_id_fk` (`updated_by_id`),
  CONSTRAINT `locations_created_by_id_fk` FOREIGN KEY (`created_by_id`) REFERENCES `admin_users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `locations_updated_by_id_fk` FOREIGN KEY (`updated_by_id`) REFERENCES `admin_users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `locations`
--

LOCK TABLES `locations` WRITE;
/*!40000 ALTER TABLE `locations` DISABLE KEYS */;
INSERT INTO `locations` VALUES (1,'qu6yjyv0cla8lq4yssqcrjaa','2025-11-27 06:26:40.295000','2026-02-05 06:47:09.587000',NULL,1,1,'en','Where to Find Us ','Explore Our Locations','<p>CME has expanded its portfolio taking in complementary brands with exclusive agency agreements for the UAE. The company functions under the major divisions: Tyres, Automotive, Services and Power Tools</p>'),(9,'qu6yjyv0cla8lq4yssqcrjaa','2025-11-27 06:26:40.295000','2026-02-05 06:47:09.587000','2026-02-05 06:47:10.232000',1,1,'en','Where to Find Us ','Explore Our Locations','<p>CME has expanded its portfolio taking in complementary brands with exclusive agency agreements for the UAE. The company functions under the major divisions: Tyres, Automotive, Services and Power Tools</p>');
/*!40000 ALTER TABLE `locations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `locations_cmps`
--

DROP TABLE IF EXISTS `locations_cmps`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `locations_cmps` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `entity_id` int unsigned DEFAULT NULL,
  `cmp_id` int unsigned DEFAULT NULL,
  `component_type` varchar(255) DEFAULT NULL,
  `field` varchar(255) DEFAULT NULL,
  `order` double unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `locations_uq` (`entity_id`,`cmp_id`,`field`,`component_type`),
  KEY `locations_field_idx` (`field`),
  KEY `locations_component_type_idx` (`component_type`),
  KEY `locations_entity_fk` (`entity_id`),
  CONSTRAINT `locations_entity_fk` FOREIGN KEY (`entity_id`) REFERENCES `locations` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `locations_cmps`
--

LOCK TABLES `locations_cmps` WRITE;
/*!40000 ALTER TABLE `locations_cmps` DISABLE KEYS */;
INSERT INTO `locations_cmps` VALUES (1,1,41,'common.seo','seo',NULL),(10,9,63,'common.seo','seo',NULL);
/*!40000 ALTER TABLE `locations_cmps` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `locations_location_types_lnk`
--

DROP TABLE IF EXISTS `locations_location_types_lnk`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `locations_location_types_lnk` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `location_id` int unsigned DEFAULT NULL,
  `branch_location_id` int unsigned DEFAULT NULL,
  `branch_location_ord` double unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `locations_location_types_lnk_uq` (`location_id`,`branch_location_id`),
  KEY `locations_location_types_lnk_fk` (`location_id`),
  KEY `locations_location_types_lnk_ifk` (`branch_location_id`),
  KEY `locations_location_types_lnk_ofk` (`branch_location_ord`),
  CONSTRAINT `locations_location_types_lnk_fk` FOREIGN KEY (`location_id`) REFERENCES `locations` (`id`) ON DELETE CASCADE,
  CONSTRAINT `locations_location_types_lnk_ifk` FOREIGN KEY (`branch_location_id`) REFERENCES `branch_locations` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `locations_location_types_lnk`
--

LOCK TABLES `locations_location_types_lnk` WRITE;
/*!40000 ALTER TABLE `locations_location_types_lnk` DISABLE KEYS */;
INSERT INTO `locations_location_types_lnk` VALUES (1,1,4,1),(3,1,7,2),(9,1,1,3),(10,9,6,1),(11,9,8,2),(12,9,3,3);
/*!40000 ALTER TABLE `locations_location_types_lnk` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `newes`
--

DROP TABLE IF EXISTS `newes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `newes` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `document_id` varchar(255) DEFAULT NULL,
  `title` varchar(255) DEFAULT NULL,
  `slug` varchar(255) DEFAULT NULL,
  `posted_date` date DEFAULT NULL,
  `small_description` longtext,
  `description` longtext,
  `is_featured` tinyint(1) DEFAULT NULL,
  `read_time` varchar(255) DEFAULT NULL,
  `created_at` datetime(6) DEFAULT NULL,
  `updated_at` datetime(6) DEFAULT NULL,
  `published_at` datetime(6) DEFAULT NULL,
  `created_by_id` int unsigned DEFAULT NULL,
  `updated_by_id` int unsigned DEFAULT NULL,
  `locale` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `newes_documents_idx` (`document_id`,`locale`,`published_at`),
  KEY `newes_created_by_id_fk` (`created_by_id`),
  KEY `newes_updated_by_id_fk` (`updated_by_id`),
  CONSTRAINT `newes_created_by_id_fk` FOREIGN KEY (`created_by_id`) REFERENCES `admin_users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `newes_updated_by_id_fk` FOREIGN KEY (`updated_by_id`) REFERENCES `admin_users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=63 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `newes`
--

LOCK TABLES `newes` WRITE;
/*!40000 ALTER TABLE `newes` DISABLE KEYS */;
INSERT INTO `newes` VALUES (1,'pabl6v25u1lp2r05v1fc77ub','A HISTORIC MOMENT FOR CENTRAL MOTORS & & EQUIPMENT! & WE ARE BEYOND EXCITED TO SHARE TRULY EXTRA ORDINARY NEWS!','awards1','2026-01-08','We are beyond excited to share truly extraordinary news!\n','<p>We are beyond excited to share truly extraordinary news!</p><p>Central Motors &amp; Equipment LLC has been honored on the world stage, winning the “Highly Commended Distributor of the Year” at the prestigious Automechanika 2025 Global Awards!</p><p>This remarkable distinction was presented by Mr. Michael Johannes, Vice President Mobility &amp; Logistics at Messe Frankfurt a true industry icon and received with pride by our General Manager, Mr. Sami Messaoudi, and Country Business Director, Mr. Rajkumar Venkatapathy.<br>&nbsp;</p>',1,'5 mins','2025-12-12 05:37:33.823000','2026-03-09 10:02:33.202000',NULL,1,1,'en'),(4,'lnfso4vkopvjvx8xkw9wpukv','A HISTORIC MOMENT FOR CENTRAL MOTORS & & EQUIPMENT! & WE ARE BEYOND EXCITED TO SHARE TRULY EXTRA ORDINARY NEWS!','awards2','2026-12-08','As Knorr Bremse strategic partner in Middle East Central Motors & Equipment LLC is honored to be appointed once again as an authorized UAE & Qatar TruckServices Expert Network Distributor until 09-09-2027.','<p style=\"line-height:108%;margin-bottom:0.28cm;\"><span style=\"background-color:#ffffff;font-family:Segoe UI, sans-serif;font-size:small;\"><font style=\"font-size:10pt;\">As Knorr Bremse strategic partner in Middle East Central Motors &amp; Equipment LLC is honored to be appointed once again as an authorized UAE &amp; Qatar TruckServices Expert Network Distributor until 09-09-2027.</font></span><br><br><span style=\"background-color:#ffffff;font-family:Segoe UI, sans-serif;font-size:small;\"><font style=\"font-size:10pt;\">Thanks to Mr. Ozan Cicek, Managing Director, Knorr-Bremse Türkiye &amp; MENA, Vishal Sanghavi, Head of Aftermarket Strategy EMEA, Yarkin Gul, Sales Manager Türkiye &amp; MENA, Savaş OK, Technical Services &amp; Account Manager, Knorr-Bremse Türkiye &amp; MENA for visiting CME stand at Automechanika 2025 and presenting the certificate.</font></span><br><br><span style=\"background-color:#ffffff;font-family:Segoe UI, sans-serif;font-size:small;\"><font style=\"font-size:10pt;\">We sincerely thanks to entire Knorr Bremse team and believe that we will accomplish many things in future as we have done till today together.</font></span></p>',1,'5 mins','2025-12-12 05:38:24.512000','2026-03-09 10:02:51.165000',NULL,1,1,'en'),(19,'k3ms928e4ebxrb5xczipghke','Central Motors and Equipment proudly congratulates Fine Tools on the Grand Opening of their New Experience Center.','news-3','2025-12-12',NULL,'<p style=\"line-height:108%;margin-bottom:0.28cm;\"><span style=\"color:#212121;font-family:Aptos, serif;\">Bosch Power Tools participated in the integration of Finetools’ new branch while celebrating their 25th anniversary milestone. The new location features a dedicated Bosch experience center, allowing customers to easily explore, understand, and use Bosch tools through hands-on demonstrations. This initiative strengthens our long-standing partnership with Finetools and reinforces our shared commitment to delivering innovative solutions, superior service, and an enhanced customer experience</span><br><br>Central Motors &amp; Equipment Lightup the season with BOSCH Powertools new activation to powering the festive spirit<br>Venue: ACE Hardware DFC, Dubai</p><p>BOSCH Power Tools collaborated with ACE Dubai Festival City as part of the Light Up Season, creating an engaging in-store experience for customers. The event attracted strong footfall, with many visitors witnessing live demonstrations and exploring the BOSCH Power Tools range.<br>The activation enhanced brand visibility and customer interaction, highlighting the effectiveness of festive in-store collaborations in driving awareness and engagement.</p>',1,NULL,'2026-01-13 09:19:31.679000','2026-03-09 10:03:05.880000',NULL,1,1,'en'),(21,'pdkwlj6e27rzzp0swewcjv7n','MICHELIN GUIDE Abu Dhabi 2026 ceremony held in October 2025.','news-4','2025-10-23',NULL,'<p>The event was a spectacular celebration of Abu Dhabi\'s culinary excellence, recognizing the city\'s finest chefs and restaurants.</p><p>CME – Tyre Division team has represented the company, the success of the event is a testament to the city\'s thriving food scene, which is rapidly becoming one of the region\'s most dynamic and sought-after destinations for foodies and connoisseurs alike.</p><p>CME thanked to Michelin AIM team for inviting and to have such wonderful experience.&nbsp;</p>',0,NULL,'2026-01-13 09:23:00.970000','2026-03-09 10:03:34.718000',NULL,1,1,'en'),(38,'eoyvkw49iyjnj6ipbx9o3mse','CME Tyre Division- Michelin collaborated with EMC – Mercedes for Track Day Event','news-5','2025-10-24','Venue: Yas Marina Circuit, Abu Dhabi UAE','<p>Central Motors and Equipment Tyre Division’s Brand Michelin has collaborated with Emirates Motor Company (Alfahim Group) for Mercedes Track Day Event, where all tyres for Track Day Car for customers were sponsored by CME-Michelin.</p><p>At this high-octane event, Michelin showcased its premium tire capabilities, providing top-notch tires for the track cars. The collaboration aimed to promote Michelin\'s brand excellence, cutting-edge technology, and exceptional performance.</p><p>The event provided a unique opportunity for guests to experience the thrill of driving Mercedes-Benz cars equipped with Michelin tires, highlighting the brand\'s commitment to safety, quality, and innovation.<br>Adding to the event\'s success, the CME Tyreplus van was on-site, providing expert tire services and showcasing the convenience of mobile tire care. Guests had the opportunity to experience firsthand the quality and efficiency of Tyreplus\'s services, further solidifying Central Motors and Equipment\'s commitment to customer satisfaction.</p><p>&nbsp;</p>',NULL,NULL,'2026-01-27 09:54:57.647000','2026-03-09 10:03:19.904000',NULL,1,1,'en'),(58,'pabl6v25u1lp2r05v1fc77ub','A HISTORIC MOMENT FOR CENTRAL MOTORS & & EQUIPMENT! & WE ARE BEYOND EXCITED TO SHARE TRULY EXTRA ORDINARY NEWS!','awards1','2026-01-08','We are beyond excited to share truly extraordinary news!\n','<p>We are beyond excited to share truly extraordinary news!</p><p>Central Motors &amp; Equipment LLC has been honored on the world stage, winning the “Highly Commended Distributor of the Year” at the prestigious Automechanika 2025 Global Awards!</p><p>This remarkable distinction was presented by Mr. Michael Johannes, Vice President Mobility &amp; Logistics at Messe Frankfurt a true industry icon and received with pride by our General Manager, Mr. Sami Messaoudi, and Country Business Director, Mr. Rajkumar Venkatapathy.<br>&nbsp;</p>',1,'5 mins','2025-12-12 05:37:33.823000','2026-03-09 10:02:33.202000','2026-03-09 10:02:33.961000',1,1,'en'),(59,'lnfso4vkopvjvx8xkw9wpukv','A HISTORIC MOMENT FOR CENTRAL MOTORS & & EQUIPMENT! & WE ARE BEYOND EXCITED TO SHARE TRULY EXTRA ORDINARY NEWS!','awards2','2026-12-08','As Knorr Bremse strategic partner in Middle East Central Motors & Equipment LLC is honored to be appointed once again as an authorized UAE & Qatar TruckServices Expert Network Distributor until 09-09-2027.','<p style=\"line-height:108%;margin-bottom:0.28cm;\"><span style=\"background-color:#ffffff;font-family:Segoe UI, sans-serif;font-size:small;\"><font style=\"font-size:10pt;\">As Knorr Bremse strategic partner in Middle East Central Motors &amp; Equipment LLC is honored to be appointed once again as an authorized UAE &amp; Qatar TruckServices Expert Network Distributor until 09-09-2027.</font></span><br><br><span style=\"background-color:#ffffff;font-family:Segoe UI, sans-serif;font-size:small;\"><font style=\"font-size:10pt;\">Thanks to Mr. Ozan Cicek, Managing Director, Knorr-Bremse Türkiye &amp; MENA, Vishal Sanghavi, Head of Aftermarket Strategy EMEA, Yarkin Gul, Sales Manager Türkiye &amp; MENA, Savaş OK, Technical Services &amp; Account Manager, Knorr-Bremse Türkiye &amp; MENA for visiting CME stand at Automechanika 2025 and presenting the certificate.</font></span><br><br><span style=\"background-color:#ffffff;font-family:Segoe UI, sans-serif;font-size:small;\"><font style=\"font-size:10pt;\">We sincerely thanks to entire Knorr Bremse team and believe that we will accomplish many things in future as we have done till today together.</font></span></p>',1,'5 mins','2025-12-12 05:38:24.512000','2026-03-09 10:02:51.165000','2026-03-09 10:02:51.840000',1,1,'en'),(60,'k3ms928e4ebxrb5xczipghke','Central Motors and Equipment proudly congratulates Fine Tools on the Grand Opening of their New Experience Center.','news-3','2025-12-12',NULL,'<p style=\"line-height:108%;margin-bottom:0.28cm;\"><span style=\"color:#212121;font-family:Aptos, serif;\">Bosch Power Tools participated in the integration of Finetools’ new branch while celebrating their 25th anniversary milestone. The new location features a dedicated Bosch experience center, allowing customers to easily explore, understand, and use Bosch tools through hands-on demonstrations. This initiative strengthens our long-standing partnership with Finetools and reinforces our shared commitment to delivering innovative solutions, superior service, and an enhanced customer experience</span><br><br>Central Motors &amp; Equipment Lightup the season with BOSCH Powertools new activation to powering the festive spirit<br>Venue: ACE Hardware DFC, Dubai</p><p>BOSCH Power Tools collaborated with ACE Dubai Festival City as part of the Light Up Season, creating an engaging in-store experience for customers. The event attracted strong footfall, with many visitors witnessing live demonstrations and exploring the BOSCH Power Tools range.<br>The activation enhanced brand visibility and customer interaction, highlighting the effectiveness of festive in-store collaborations in driving awareness and engagement.</p>',1,NULL,'2026-01-13 09:19:31.679000','2026-03-09 10:03:05.880000','2026-03-09 10:03:06.449000',1,1,'en'),(61,'eoyvkw49iyjnj6ipbx9o3mse','CME Tyre Division- Michelin collaborated with EMC – Mercedes for Track Day Event','news-5','2025-10-24','Venue: Yas Marina Circuit, Abu Dhabi UAE','<p>Central Motors and Equipment Tyre Division’s Brand Michelin has collaborated with Emirates Motor Company (Alfahim Group) for Mercedes Track Day Event, where all tyres for Track Day Car for customers were sponsored by CME-Michelin.</p><p>At this high-octane event, Michelin showcased its premium tire capabilities, providing top-notch tires for the track cars. The collaboration aimed to promote Michelin\'s brand excellence, cutting-edge technology, and exceptional performance.</p><p>The event provided a unique opportunity for guests to experience the thrill of driving Mercedes-Benz cars equipped with Michelin tires, highlighting the brand\'s commitment to safety, quality, and innovation.<br>Adding to the event\'s success, the CME Tyreplus van was on-site, providing expert tire services and showcasing the convenience of mobile tire care. Guests had the opportunity to experience firsthand the quality and efficiency of Tyreplus\'s services, further solidifying Central Motors and Equipment\'s commitment to customer satisfaction.</p><p>&nbsp;</p>',NULL,NULL,'2026-01-27 09:54:57.647000','2026-03-09 10:03:19.904000','2026-03-09 10:03:20.532000',1,1,'en'),(62,'pdkwlj6e27rzzp0swewcjv7n','MICHELIN GUIDE Abu Dhabi 2026 ceremony held in October 2025.','news-4','2025-10-23',NULL,'<p>The event was a spectacular celebration of Abu Dhabi\'s culinary excellence, recognizing the city\'s finest chefs and restaurants.</p><p>CME – Tyre Division team has represented the company, the success of the event is a testament to the city\'s thriving food scene, which is rapidly becoming one of the region\'s most dynamic and sought-after destinations for foodies and connoisseurs alike.</p><p>CME thanked to Michelin AIM team for inviting and to have such wonderful experience.&nbsp;</p>',0,NULL,'2026-01-13 09:23:00.970000','2026-03-09 10:03:34.718000','2026-03-09 10:03:35.340000',1,1,'en');
/*!40000 ALTER TABLE `newes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `newes_cmps`
--

DROP TABLE IF EXISTS `newes_cmps`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `newes_cmps` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `entity_id` int unsigned DEFAULT NULL,
  `cmp_id` int unsigned DEFAULT NULL,
  `component_type` varchar(255) DEFAULT NULL,
  `field` varchar(255) DEFAULT NULL,
  `order` double unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `newes_uq` (`entity_id`,`cmp_id`,`field`,`component_type`),
  KEY `newes_field_idx` (`field`),
  KEY `newes_component_type_idx` (`component_type`),
  KEY `newes_entity_fk` (`entity_id`),
  CONSTRAINT `newes_entity_fk` FOREIGN KEY (`entity_id`) REFERENCES `newes` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=52 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `newes_cmps`
--

LOCK TABLES `newes_cmps` WRITE;
/*!40000 ALTER TABLE `newes_cmps` DISABLE KEYS */;
INSERT INTO `newes_cmps` VALUES (1,1,35,'common.seo','seo',NULL),(3,4,37,'common.seo','seo',NULL),(43,58,76,'common.seo','seo',NULL),(45,59,77,'common.seo','seo',NULL),(46,19,78,'common.seo','seo',NULL),(47,60,79,'common.seo','seo',NULL),(48,38,80,'common.seo','seo',NULL),(49,61,81,'common.seo','seo',NULL),(50,21,82,'common.seo','seo',NULL),(51,62,83,'common.seo','seo',NULL);
/*!40000 ALTER TABLE `newes_cmps` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `newes_types_lnk`
--

DROP TABLE IF EXISTS `newes_types_lnk`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `newes_types_lnk` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `news_id` int unsigned DEFAULT NULL,
  `type_id` int unsigned DEFAULT NULL,
  `type_ord` double unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `newes_types_lnk_uq` (`news_id`,`type_id`),
  KEY `newes_types_lnk_fk` (`news_id`),
  KEY `newes_types_lnk_ifk` (`type_id`),
  KEY `newes_types_lnk_ofk` (`type_ord`),
  CONSTRAINT `newes_types_lnk_fk` FOREIGN KEY (`news_id`) REFERENCES `newes` (`id`) ON DELETE CASCADE,
  CONSTRAINT `newes_types_lnk_ifk` FOREIGN KEY (`type_id`) REFERENCES `types` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=40 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `newes_types_lnk`
--

LOCK TABLES `newes_types_lnk` WRITE;
/*!40000 ALTER TABLE `newes_types_lnk` DISABLE KEYS */;
INSERT INTO `newes_types_lnk` VALUES (1,21,7,1),(3,38,7,1),(5,19,1,1),(7,4,3,1),(9,1,3,1),(11,1,5,2),(14,4,5,2),(17,19,5,2),(32,58,4,1),(33,58,6,2),(34,59,4,1),(35,59,6,2),(36,60,9,1),(37,60,6,2),(38,61,8,1),(39,62,8,1);
/*!40000 ALTER TABLE `newes_types_lnk` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `news_landings`
--

DROP TABLE IF EXISTS `news_landings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `news_landings` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `document_id` varchar(255) DEFAULT NULL,
  `title` varchar(255) DEFAULT NULL,
  `created_at` datetime(6) DEFAULT NULL,
  `updated_at` datetime(6) DEFAULT NULL,
  `published_at` datetime(6) DEFAULT NULL,
  `created_by_id` int unsigned DEFAULT NULL,
  `updated_by_id` int unsigned DEFAULT NULL,
  `locale` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `news_landings_documents_idx` (`document_id`,`locale`,`published_at`),
  KEY `news_landings_created_by_id_fk` (`created_by_id`),
  KEY `news_landings_updated_by_id_fk` (`updated_by_id`),
  CONSTRAINT `news_landings_created_by_id_fk` FOREIGN KEY (`created_by_id`) REFERENCES `admin_users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `news_landings_updated_by_id_fk` FOREIGN KEY (`updated_by_id`) REFERENCES `admin_users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `news_landings`
--

LOCK TABLES `news_landings` WRITE;
/*!40000 ALTER TABLE `news_landings` DISABLE KEYS */;
INSERT INTO `news_landings` VALUES (1,'sgmumfmrfuzwa858hb2dn34u','test','2025-12-12 05:39:28.473000','2026-03-09 09:59:21.734000',NULL,1,1,'en'),(4,'sgmumfmrfuzwa858hb2dn34u','test','2025-12-12 05:39:28.473000','2026-03-09 09:59:21.734000','2026-03-09 09:59:22.255000',1,1,'en');
/*!40000 ALTER TABLE `news_landings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `news_landings_cmps`
--

DROP TABLE IF EXISTS `news_landings_cmps`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `news_landings_cmps` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `entity_id` int unsigned DEFAULT NULL,
  `cmp_id` int unsigned DEFAULT NULL,
  `component_type` varchar(255) DEFAULT NULL,
  `field` varchar(255) DEFAULT NULL,
  `order` double unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `news_landings_uq` (`entity_id`,`cmp_id`,`field`,`component_type`),
  KEY `news_landings_field_idx` (`field`),
  KEY `news_landings_component_type_idx` (`component_type`),
  KEY `news_landings_entity_fk` (`entity_id`),
  CONSTRAINT `news_landings_entity_fk` FOREIGN KEY (`entity_id`) REFERENCES `news_landings` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `news_landings_cmps`
--

LOCK TABLES `news_landings_cmps` WRITE;
/*!40000 ALTER TABLE `news_landings_cmps` DISABLE KEYS */;
INSERT INTO `news_landings_cmps` VALUES (1,1,39,'common.seo','seo',NULL),(6,4,69,'common.seo','seo',NULL);
/*!40000 ALTER TABLE `news_landings_cmps` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `power_categories`
--

DROP TABLE IF EXISTS `power_categories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `power_categories` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `document_id` varchar(255) DEFAULT NULL,
  `title` varchar(255) DEFAULT NULL,
  `slug` varchar(255) DEFAULT NULL,
  `created_at` datetime(6) DEFAULT NULL,
  `updated_at` datetime(6) DEFAULT NULL,
  `published_at` datetime(6) DEFAULT NULL,
  `created_by_id` int unsigned DEFAULT NULL,
  `updated_by_id` int unsigned DEFAULT NULL,
  `locale` varchar(255) DEFAULT NULL,
  `display_order` int DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `power_categories_documents_idx` (`document_id`,`locale`,`published_at`),
  KEY `power_categories_created_by_id_fk` (`created_by_id`),
  KEY `power_categories_updated_by_id_fk` (`updated_by_id`),
  CONSTRAINT `power_categories_created_by_id_fk` FOREIGN KEY (`created_by_id`) REFERENCES `admin_users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `power_categories_updated_by_id_fk` FOREIGN KEY (`updated_by_id`) REFERENCES `admin_users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=46 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `power_categories`
--

LOCK TABLES `power_categories` WRITE;
/*!40000 ALTER TABLE `power_categories` DISABLE KEYS */;
INSERT INTO `power_categories` VALUES (1,'ua7ijg1kgz5el0ue3ipnh6ku','Angle Grinders','power-tools/search?categoryKey=power-tools&subcategoryKey=angle-grinders','2026-02-05 05:41:06.602000','2026-03-19 08:55:03.740000',NULL,1,1,'en',1),(3,'h0366rc7skwy6d8uvwi242m5','Combo Kits',NULL,'2026-02-05 05:41:39.857000','2026-03-09 06:49:38.985000',NULL,1,1,'en',6),(11,'w5jlol53itgwhnof7e07b1o9','Cordless Rotary Hammers','power-tools/search?categoryKey=power-tools&subcategoryKey=rotary-hammers-demolition-hammers&page=1&limit=20&category=rotary-hammers-demolition-hammers','2026-02-05 10:56:25.760000','2026-03-19 08:59:51.177000',NULL,1,1,'en',3),(13,'kcxwsvlkmoe3ynlw89zxqvxs','Carrying Case','power-tools/search?categoryKey=power-tools&subcategoryKey=carrying-cases','2026-02-05 10:56:41.136000','2026-03-19 08:56:12.615000',NULL,1,1,'en',2),(15,'gorzvqh0p60s7sm6vh2sf4dh','High Pressure Washer','power-tools/search?categoryKey=power-tools&subcategoryKey=high-pressure-washers','2026-02-05 10:57:14.368000','2026-03-19 09:00:25.117000',NULL,1,1,'en',4),(17,'jx2ghowlp0n4pq76xxf010y1','Cordless Drills','power-tools/search?categoryKey=power-tools&subcategoryKey=cordless-tools','2026-02-05 10:57:50.132000','2026-03-19 08:59:01.884000',NULL,1,1,'en',5),(39,'h0366rc7skwy6d8uvwi242m5','Combo Kits',NULL,'2026-02-05 05:41:39.857000','2026-03-09 06:49:38.985000','2026-03-09 06:49:39.291000',1,1,'en',6),(41,'ua7ijg1kgz5el0ue3ipnh6ku','Angle Grinders','power-tools/search?categoryKey=power-tools&subcategoryKey=angle-grinders','2026-02-05 05:41:06.602000','2026-03-19 08:55:03.740000','2026-03-19 08:55:04.095000',1,1,'en',1),(42,'kcxwsvlkmoe3ynlw89zxqvxs','Carrying Case','power-tools/search?categoryKey=power-tools&subcategoryKey=carrying-cases','2026-02-05 10:56:41.136000','2026-03-19 08:56:12.615000','2026-03-19 08:56:12.923000',1,1,'en',2),(43,'jx2ghowlp0n4pq76xxf010y1','Cordless Drills','power-tools/search?categoryKey=power-tools&subcategoryKey=cordless-tools','2026-02-05 10:57:50.132000','2026-03-19 08:59:01.884000','2026-03-19 08:59:02.420000',1,1,'en',5),(44,'w5jlol53itgwhnof7e07b1o9','Cordless Rotary Hammers','power-tools/search?categoryKey=power-tools&subcategoryKey=rotary-hammers-demolition-hammers&page=1&limit=20&category=rotary-hammers-demolition-hammers','2026-02-05 10:56:25.760000','2026-03-19 08:59:51.177000','2026-03-19 08:59:51.641000',1,1,'en',3),(45,'gorzvqh0p60s7sm6vh2sf4dh','High Pressure Washer','power-tools/search?categoryKey=power-tools&subcategoryKey=high-pressure-washers','2026-02-05 10:57:14.368000','2026-03-19 09:00:25.117000','2026-03-19 09:00:25.470000',1,1,'en',4);
/*!40000 ALTER TABLE `power_categories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `power_tool_landings`
--

DROP TABLE IF EXISTS `power_tool_landings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `power_tool_landings` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `document_id` varchar(255) DEFAULT NULL,
  `title` varchar(255) DEFAULT NULL,
  `main_title` longtext,
  `main_description` longtext,
  `created_at` datetime(6) DEFAULT NULL,
  `updated_at` datetime(6) DEFAULT NULL,
  `published_at` datetime(6) DEFAULT NULL,
  `created_by_id` int unsigned DEFAULT NULL,
  `updated_by_id` int unsigned DEFAULT NULL,
  `locale` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `power_tool_landings_documents_idx` (`document_id`,`locale`,`published_at`),
  KEY `power_tool_landings_created_by_id_fk` (`created_by_id`),
  KEY `power_tool_landings_updated_by_id_fk` (`updated_by_id`),
  CONSTRAINT `power_tool_landings_created_by_id_fk` FOREIGN KEY (`created_by_id`) REFERENCES `admin_users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `power_tool_landings_updated_by_id_fk` FOREIGN KEY (`updated_by_id`) REFERENCES `admin_users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `power_tool_landings`
--

LOCK TABLES `power_tool_landings` WRITE;
/*!40000 ALTER TABLE `power_tool_landings` DISABLE KEYS */;
INSERT INTO `power_tool_landings` VALUES (1,'limjiv0szr0p1oto0nye2iun','Power Tools','<p><span style=\"white-space:pre-wrap;\">Wide Range of </span><br><span style=\"white-space:pre-wrap;\">Bosch Power Tools in UAE</span></p>','<p><span style=\"white-space:pre-wrap;\">Bosch power tools are renowned for their quality, durability, and innovative cordless technology. As the authorized distributor of Bosch Power Tools across Dubai, Sharjah, and the UAE, Central Motors &amp; Equipment (CME) offers a complete range of professional tools and accessories for every trade — making us your trusted destination for genuine Bosch products.</span></p>','2026-01-20 10:21:58.934000','2026-03-09 14:12:13.632000',NULL,1,1,'en'),(18,'limjiv0szr0p1oto0nye2iun','Power Tools','<p><span style=\"white-space:pre-wrap;\">Wide Range of </span><br><span style=\"white-space:pre-wrap;\">Bosch Power Tools in UAE</span></p>','<p><span style=\"white-space:pre-wrap;\">Bosch power tools are renowned for their quality, durability, and innovative cordless technology. As the authorized distributor of Bosch Power Tools across Dubai, Sharjah, and the UAE, Central Motors &amp; Equipment (CME) offers a complete range of professional tools and accessories for every trade — making us your trusted destination for genuine Bosch products.</span></p>','2026-01-20 10:21:58.934000','2026-03-09 14:12:13.632000','2026-03-09 14:12:14.516000',1,1,'en');
/*!40000 ALTER TABLE `power_tool_landings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `power_tool_landings_cmps`
--

DROP TABLE IF EXISTS `power_tool_landings_cmps`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `power_tool_landings_cmps` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `entity_id` int unsigned DEFAULT NULL,
  `cmp_id` int unsigned DEFAULT NULL,
  `component_type` varchar(255) DEFAULT NULL,
  `field` varchar(255) DEFAULT NULL,
  `order` double unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `power_tool_landings_uq` (`entity_id`,`cmp_id`,`field`,`component_type`),
  KEY `power_tool_landings_field_idx` (`field`),
  KEY `power_tool_landings_component_type_idx` (`component_type`),
  KEY `power_tool_landings_entity_fk` (`entity_id`),
  CONSTRAINT `power_tool_landings_entity_fk` FOREIGN KEY (`entity_id`) REFERENCES `power_tool_landings` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=67 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `power_tool_landings_cmps`
--

LOCK TABLES `power_tool_landings_cmps` WRITE;
/*!40000 ALTER TABLE `power_tool_landings_cmps` DISABLE KEYS */;
INSERT INTO `power_tool_landings_cmps` VALUES (1,1,111,'common.banner','banner',1),(9,1,124,'common.banner','banner',2),(63,1,86,'home.content-section','socialFeeds',NULL),(64,18,193,'common.banner','banner',1),(65,18,194,'common.banner','banner',2),(66,18,87,'home.content-section','socialFeeds',NULL);
/*!40000 ALTER TABLE `power_tool_landings_cmps` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `power_tool_landings_location_types_lnk`
--

DROP TABLE IF EXISTS `power_tool_landings_location_types_lnk`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `power_tool_landings_location_types_lnk` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `power_tool_landing_id` int unsigned DEFAULT NULL,
  `branch_location_id` int unsigned DEFAULT NULL,
  `branch_location_ord` double unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `power_tool_landings_location_types_lnk_uq` (`power_tool_landing_id`,`branch_location_id`),
  KEY `power_tool_landings_location_types_lnk_fk` (`power_tool_landing_id`),
  KEY `power_tool_landings_location_types_lnk_ifk` (`branch_location_id`),
  KEY `power_tool_landings_location_types_lnk_ofk` (`branch_location_ord`),
  CONSTRAINT `power_tool_landings_location_types_lnk_fk` FOREIGN KEY (`power_tool_landing_id`) REFERENCES `power_tool_landings` (`id`) ON DELETE CASCADE,
  CONSTRAINT `power_tool_landings_location_types_lnk_ifk` FOREIGN KEY (`branch_location_id`) REFERENCES `branch_locations` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=48 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `power_tool_landings_location_types_lnk`
--

LOCK TABLES `power_tool_landings_location_types_lnk` WRITE;
/*!40000 ALTER TABLE `power_tool_landings_location_types_lnk` DISABLE KEYS */;
INSERT INTO `power_tool_landings_location_types_lnk` VALUES (16,1,23,1),(25,1,25,2),(26,1,27,3),(45,18,24,1),(46,18,26,2),(47,18,28,3);
/*!40000 ALTER TABLE `power_tool_landings_location_types_lnk` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `power_top_categories`
--

DROP TABLE IF EXISTS `power_top_categories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `power_top_categories` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `document_id` varchar(255) DEFAULT NULL,
  `title` varchar(255) DEFAULT NULL,
  `slug` varchar(255) DEFAULT NULL,
  `created_at` datetime(6) DEFAULT NULL,
  `updated_at` datetime(6) DEFAULT NULL,
  `published_at` datetime(6) DEFAULT NULL,
  `created_by_id` int unsigned DEFAULT NULL,
  `updated_by_id` int unsigned DEFAULT NULL,
  `locale` varchar(255) DEFAULT NULL,
  `display_order` int DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `power_top_categories_documents_idx` (`document_id`,`locale`,`published_at`),
  KEY `power_top_categories_created_by_id_fk` (`created_by_id`),
  KEY `power_top_categories_updated_by_id_fk` (`updated_by_id`),
  CONSTRAINT `power_top_categories_created_by_id_fk` FOREIGN KEY (`created_by_id`) REFERENCES `admin_users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `power_top_categories_updated_by_id_fk` FOREIGN KEY (`updated_by_id`) REFERENCES `admin_users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=31 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `power_top_categories`
--

LOCK TABLES `power_top_categories` WRITE;
/*!40000 ALTER TABLE `power_top_categories` DISABLE KEYS */;
INSERT INTO `power_top_categories` VALUES (1,'w6cj4twoggawvqsue2i3g7mo','Power Tools','/power-tools/search?categoryKey=power-tools&page=1&limit=20&category=power-tools','2026-03-06 05:41:28.228000','2026-03-09 06:44:32.960000',NULL,1,1,'en',1),(3,'ugp9u37ut5dul5b0k8t1eqeu','Measuring Technology','/power-tools/search?categoryKey=power-tools&subcategoryKey=measuring-tools&page=1&limit=20&category=measuring-tools','2026-03-06 05:42:00.483000','2026-03-09 06:44:38.702000',NULL,1,1,'en',2),(5,'e73iomy9zhh9x12bjlxlob30','Accessories','/power-tools/search?categoryKey=power-tools&subcategoryKey=electric-test&page=1&limit=20&category=electric-test','2026-03-06 05:42:22.845000','2026-03-19 05:39:33.796000',NULL,1,1,'en',3),(7,'b5315qoj84bes2hn9xb3ksbs','Outdoor & Garden','/power-tools/search?page=1&limit=12','2026-03-06 05:43:07.942000','2026-03-09 06:44:49.422000',NULL,1,1,'en',4),(9,'qxji5z6wjsdw5u2axncpr7ah','DIY','/power-tools/search?categoryKey=power-tools&subcategoryKey=corded-impact-drills-386','2026-03-06 05:43:30.695000','2026-03-09 06:45:01.606000',NULL,1,1,'en',5),(11,'kdrfnfnw6jn2z4f8mbca42cw','Dremel','/power-tools/search?categoryKey=power-tools&subcategoryKey=dremel&page=1&limit=20&category=dremel','2026-03-06 05:44:16.874000','2026-03-19 05:36:35.774000',NULL,1,1,'en',6),(23,'w6cj4twoggawvqsue2i3g7mo','Power Tools','/power-tools/search?categoryKey=power-tools&page=1&limit=20&category=power-tools','2026-03-06 05:41:28.228000','2026-03-09 06:44:32.960000','2026-03-09 06:44:33.272000',1,1,'en',1),(24,'ugp9u37ut5dul5b0k8t1eqeu','Measuring Technology','/power-tools/search?categoryKey=power-tools&subcategoryKey=measuring-tools&page=1&limit=20&category=measuring-tools','2026-03-06 05:42:00.483000','2026-03-09 06:44:38.702000','2026-03-09 06:44:39.005000',1,1,'en',2),(25,'b5315qoj84bes2hn9xb3ksbs','Outdoor & Garden','/power-tools/search?page=1&limit=12','2026-03-06 05:43:07.942000','2026-03-09 06:44:49.422000','2026-03-09 06:44:49.732000',1,1,'en',4),(26,'qxji5z6wjsdw5u2axncpr7ah','DIY','/power-tools/search?categoryKey=power-tools&subcategoryKey=corded-impact-drills-386','2026-03-06 05:43:30.695000','2026-03-09 06:45:01.606000','2026-03-09 06:45:02.140000',1,1,'en',5),(29,'kdrfnfnw6jn2z4f8mbca42cw','Dremel','/power-tools/search?categoryKey=power-tools&subcategoryKey=dremel&page=1&limit=20&category=dremel','2026-03-06 05:44:16.874000','2026-03-19 05:36:35.774000','2026-03-19 05:36:36.090000',1,1,'en',6),(30,'e73iomy9zhh9x12bjlxlob30','Accessories','/power-tools/search?categoryKey=power-tools&subcategoryKey=electric-test&page=1&limit=20&category=electric-test','2026-03-06 05:42:22.845000','2026-03-19 05:39:33.796000','2026-03-19 05:39:34.117000',1,1,'en',3);
/*!40000 ALTER TABLE `power_top_categories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `privacy_policies`
--

DROP TABLE IF EXISTS `privacy_policies`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `privacy_policies` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `document_id` varchar(255) DEFAULT NULL,
  `title` varchar(255) DEFAULT NULL,
  `description` longtext,
  `created_at` datetime(6) DEFAULT NULL,
  `updated_at` datetime(6) DEFAULT NULL,
  `published_at` datetime(6) DEFAULT NULL,
  `created_by_id` int unsigned DEFAULT NULL,
  `updated_by_id` int unsigned DEFAULT NULL,
  `locale` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `privacy_policies_documents_idx` (`document_id`,`locale`,`published_at`),
  KEY `privacy_policies_created_by_id_fk` (`created_by_id`),
  KEY `privacy_policies_updated_by_id_fk` (`updated_by_id`),
  CONSTRAINT `privacy_policies_created_by_id_fk` FOREIGN KEY (`created_by_id`) REFERENCES `admin_users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `privacy_policies_updated_by_id_fk` FOREIGN KEY (`updated_by_id`) REFERENCES `admin_users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `privacy_policies`
--

LOCK TABLES `privacy_policies` WRITE;
/*!40000 ALTER TABLE `privacy_policies` DISABLE KEYS */;
INSERT INTO `privacy_policies` VALUES (1,'k0xo3wbimlm7mvar8na0u9lt','Privacy Policy','<p>CME website of ALFAHIM offers the present website to its customers. By using it, the user agrees to abide by all the Terms and Conditions published on this page or on any other part of the website.</p><p>Terms and Conditions are permanently subject to change or modification, without previous notice, knowing that the entire website is under the regulations of the United Arab Emirates.</p><p>Some pages of the website related to services, features and benefits, and offers are subject to their respective Terms and Conditions, upon which the user should agree. However, in the case of contradiction between them and the general Terms and Conditions, the one relevant to services, features and benefits, and offers take effect.</p><h2>Recruitment Applications</h2><p>All vacancies will be announced on the website where the users can enter and fill in the recruitment application and provide the group with the personal information required. Whereas the group is aware of the privacy of such information, it treats all the data with high security and never discloses them to any third party except its own consultants, who abide by the group’s privacy and security agreements.</p><p>This website may include links of other suppliers and third parties for the users to benefit from their products or services.</p><p>However, the group is not responsible of the procedure the third parties adopt when requesting the users’ personal information. Therefore, we recommend you as a user review the privacy and security policy of each link you log in to. In fact, when you log in to third parties’ websites, you will not be subject/or under the security and privacy zone provided by ALFAHIM. Moreover, the group is not responsible of their websites’ content and does not represent the third parties or the user in any case even while they both deal together to perform a transaction.</p><p>The user does not have the right to copy or save any part of this website, unless it is for personal use only. In this case, he has to save the copies and keep all the copyrights signs, notes and notices as per the original pages.</p><p>The user is also forbidden to copy any part of this website on other web pages or save it on any other public or private electronic system for data collection reasons, without previous written permission from the group.</p><p>Apart from a text stating the opposite, all the trademarks, brands and slogans displayed on the website are considered of the group’s property and the user is forbidden to copy or use them, without previous written permission from the group.</p><ul><li>lorem ipsum dolor sit amet</li><li>lorem ipsum dolor sit amet</li><li>lorem ipsum dolor sit amet</li><li>lorem ipsum dolor sit amet</li></ul><ol><li>lorem ipsum dolor sit ametlorem ipsum dolor sit amet</li><li>lorem ipsum dolor sit amet</li><li>lorem ipsum dolor sit ametlorem ipsum dolor sit ametlorem ipsum dolor sit amet</li><li>lorem ipsum dolor sit ametlorem ipsum dolor sit ametlorem ipsum dolor sit amet</li><li>lorem ipsum dolor sit amet</li></ol><p>lorem ipsum dolor sit ametlorem ipsum dolor sit ametlorem ipsum dolor sit ametlorem ipsum dolor sit ametlorem ipsum dolor sit ametlorem ipsum dolor sit amet</p><p>lorem ipsum dolor sit ametlorem ipsum dolor sit ametlorem ipsum dolor sit ametlorem ipsum dolor sit ametlorem ipsum dolor sit ametlorem ipsum dolor sit amet</p><p>lorem ipsum dolor sit ametlorem ipsum dolor sit ametlorem ipsum dolor sit amet</p>','2026-04-02 05:28:43.320000','2026-04-02 05:43:35.688000',NULL,1,1,'en');
/*!40000 ALTER TABLE `privacy_policies` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `privacy_policies_cmps`
--

DROP TABLE IF EXISTS `privacy_policies_cmps`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `privacy_policies_cmps` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `entity_id` int unsigned DEFAULT NULL,
  `cmp_id` int unsigned DEFAULT NULL,
  `component_type` varchar(255) DEFAULT NULL,
  `field` varchar(255) DEFAULT NULL,
  `order` double unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `privacy_policies_uq` (`entity_id`,`cmp_id`,`field`,`component_type`),
  KEY `privacy_policies_field_idx` (`field`),
  KEY `privacy_policies_component_type_idx` (`component_type`),
  KEY `privacy_policies_entity_fk` (`entity_id`),
  CONSTRAINT `privacy_policies_entity_fk` FOREIGN KEY (`entity_id`) REFERENCES `privacy_policies` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `privacy_policies_cmps`
--

LOCK TABLES `privacy_policies_cmps` WRITE;
/*!40000 ALTER TABLE `privacy_policies_cmps` DISABLE KEYS */;
INSERT INTO `privacy_policies_cmps` VALUES (1,1,168,'common.seo','seo',NULL);
/*!40000 ALTER TABLE `privacy_policies_cmps` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `product_categories`
--

DROP TABLE IF EXISTS `product_categories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `product_categories` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `document_id` varchar(255) DEFAULT NULL,
  `title` varchar(255) DEFAULT NULL,
  `slug` varchar(255) DEFAULT NULL,
  `created_at` datetime(6) DEFAULT NULL,
  `updated_at` datetime(6) DEFAULT NULL,
  `published_at` datetime(6) DEFAULT NULL,
  `created_by_id` int unsigned DEFAULT NULL,
  `updated_by_id` int unsigned DEFAULT NULL,
  `locale` varchar(255) DEFAULT NULL,
  `display_order` int DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `product_categories_documents_idx` (`document_id`,`locale`,`published_at`),
  KEY `product_categories_created_by_id_fk` (`created_by_id`),
  KEY `product_categories_updated_by_id_fk` (`updated_by_id`),
  CONSTRAINT `product_categories_created_by_id_fk` FOREIGN KEY (`created_by_id`) REFERENCES `admin_users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `product_categories_updated_by_id_fk` FOREIGN KEY (`updated_by_id`) REFERENCES `admin_users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=46 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `product_categories`
--

LOCK TABLES `product_categories` WRITE;
/*!40000 ALTER TABLE `product_categories` DISABLE KEYS */;
INSERT INTO `product_categories` VALUES (1,'tu05udnerlodd9kwxv8o7yjz','Passenger Vehicles','automotive-aftermarket/search?category=passenger-car-13','2026-01-20 12:13:26.783000','2026-03-09 06:52:33.779000',NULL,1,1,'en',1),(3,'y704u918i9ydtaxmfr96rawh','Commercial Vehicles ','automotive-aftermarket/search?category=light-commercial-vehicle-13','2026-01-20 18:13:28.855000','2026-03-09 06:52:49.481000',NULL,1,1,'en',2),(5,'k2shirleplau7xj4ndgz1e95','Industrial Vehicle & Marine','automotive-aftermarket/search?category=truck-13','2026-01-20 18:14:40.119000','2026-03-09 06:53:00.890000',NULL,1,1,'en',3),(7,'jptijdi6g46fr9hww6b9mji9','Workshop Test Equipment & Tools ','automotive-aftermarket/search?categoryKey=automotive&subcategoryKey=workshop-equipment-103','2026-01-20 18:15:35.914000','2026-03-31 04:40:46.465000',NULL,1,1,'en',4),(9,'jfxpfnc8fhxtgtm2s5aloqeh','Bosch Diesel Service ','automotive-aftermarket/search?category=diesel-systems-107','2026-01-20 18:16:03.695000','2026-03-09 06:54:06.078000',NULL,1,1,'en',5),(40,'tu05udnerlodd9kwxv8o7yjz','Passenger Vehicles','automotive-aftermarket/search?category=passenger-car-13','2026-01-20 12:13:26.783000','2026-03-09 06:52:33.779000','2026-03-09 06:52:34.081000',1,1,'en',1),(41,'y704u918i9ydtaxmfr96rawh','Commercial Vehicles ','automotive-aftermarket/search?category=light-commercial-vehicle-13','2026-01-20 18:13:28.855000','2026-03-09 06:52:49.481000','2026-03-09 06:52:49.783000',1,1,'en',2),(42,'k2shirleplau7xj4ndgz1e95','Industrial Vehicle & Marine','automotive-aftermarket/search?category=truck-13','2026-01-20 18:14:40.119000','2026-03-09 06:53:00.890000','2026-03-09 06:53:01.210000',1,1,'en',3),(44,'jfxpfnc8fhxtgtm2s5aloqeh','Bosch Diesel Service ','automotive-aftermarket/search?category=diesel-systems-107','2026-01-20 18:16:03.695000','2026-03-09 06:54:06.078000','2026-03-09 06:54:06.387000',1,1,'en',5),(45,'jptijdi6g46fr9hww6b9mji9','Workshop Test Equipment & Tools ','automotive-aftermarket/search?categoryKey=automotive&subcategoryKey=workshop-equipment-103','2026-01-20 18:15:35.914000','2026-03-31 04:40:46.465000','2026-03-31 04:40:46.759000',1,1,'en',4);
/*!40000 ALTER TABLE `product_categories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `service_categories`
--

DROP TABLE IF EXISTS `service_categories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `service_categories` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `document_id` varchar(255) DEFAULT NULL,
  `title` varchar(255) DEFAULT NULL,
  `slug` varchar(255) DEFAULT NULL,
  `description` longtext,
  `created_at` datetime(6) DEFAULT NULL,
  `updated_at` datetime(6) DEFAULT NULL,
  `published_at` datetime(6) DEFAULT NULL,
  `created_by_id` int unsigned DEFAULT NULL,
  `updated_by_id` int unsigned DEFAULT NULL,
  `locale` varchar(255) DEFAULT NULL,
  `header_services_sort_order` int DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `service_categories_documents_idx` (`document_id`,`locale`,`published_at`),
  KEY `service_categories_created_by_id_fk` (`created_by_id`),
  KEY `service_categories_updated_by_id_fk` (`updated_by_id`),
  CONSTRAINT `service_categories_created_by_id_fk` FOREIGN KEY (`created_by_id`) REFERENCES `admin_users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `service_categories_updated_by_id_fk` FOREIGN KEY (`updated_by_id`) REFERENCES `admin_users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=41 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `service_categories`
--

LOCK TABLES `service_categories` WRITE;
/*!40000 ALTER TABLE `service_categories` DISABLE KEYS */;
INSERT INTO `service_categories` VALUES (1,'o3lef0byy95ltwmijdu5pvj7','Automotive Aftermarket Services','automotive-aftermarket','Provide reliable maintenance, diagnostics, & parts solutions to keep your vehicle performing at its best.','2025-12-12 06:15:08.323000','2026-04-01 10:17:06.759000',NULL,1,1,'en',1),(3,'x5ph8rhtcpkc7lwp0ww5xj1v','Tyre Services','tyre','Ensure safety, performance, & longevity. From fitting & balancing to repairs and alignment, we provide expert care for passenger, commercial, & heavy-duty vehicles.','2025-12-12 07:04:23.558000','2026-04-01 10:16:17.594000',NULL,1,1,'en',2),(8,'b4axb05jyxple831e7n5ltxf','Power Tools Services','powertool','We offer comprehensive Power Tools Services, including maintenance, repairs, & diagnostics, to keep your tools operating efficiently & reliably for every task. ','2025-12-17 15:38:16.545000','2026-04-01 08:49:32.653000',NULL,1,1,'en',3),(31,'o3lef0byy95ltwmijdu5pvj7','Automotive Aftermarket Services','automotive-aftermarket','Provide reliable maintenance, diagnostics, & parts solutions to keep your vehicle performing at its best.','2026-03-13 05:15:21.868000','2026-03-13 05:15:21.868000',NULL,1,1,'ar',1),(32,'o3lef0byy95ltwmijdu5pvj7','Automotive Aftermarket Services','automotive-aftermarket','Provide reliable maintenance, diagnostics, & parts solutions to keep your vehicle performing at its best.','2026-03-13 05:15:21.868000','2026-03-13 05:15:21.868000','2026-03-13 05:15:22.419000',1,1,'ar',1),(38,'b4axb05jyxple831e7n5ltxf','Power Tools Services','powertool','We offer comprehensive Power Tools Services, including maintenance, repairs, & diagnostics, to keep your tools operating efficiently & reliably for every task. ','2025-12-17 15:38:16.545000','2026-04-01 08:49:32.653000','2026-04-01 08:49:33.821000',1,1,'en',3),(39,'x5ph8rhtcpkc7lwp0ww5xj1v','Tyre Services','tyre','Ensure safety, performance, & longevity. From fitting & balancing to repairs and alignment, we provide expert care for passenger, commercial, & heavy-duty vehicles.','2025-12-12 07:04:23.558000','2026-04-01 10:16:17.594000','2026-04-01 10:16:18.490000',1,1,'en',2),(40,'o3lef0byy95ltwmijdu5pvj7','Automotive Aftermarket Services','automotive-aftermarket','Provide reliable maintenance, diagnostics, & parts solutions to keep your vehicle performing at its best.','2025-12-12 06:15:08.323000','2026-04-01 10:17:06.759000','2026-04-01 10:17:07.636000',1,1,'en',1);
/*!40000 ALTER TABLE `service_categories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `service_categories_cmps`
--

DROP TABLE IF EXISTS `service_categories_cmps`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `service_categories_cmps` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `entity_id` int unsigned DEFAULT NULL,
  `cmp_id` int unsigned DEFAULT NULL,
  `component_type` varchar(255) DEFAULT NULL,
  `field` varchar(255) DEFAULT NULL,
  `order` double unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `service_categories_uq` (`entity_id`,`cmp_id`,`field`,`component_type`),
  KEY `service_categories_field_idx` (`field`),
  KEY `service_categories_component_type_idx` (`component_type`),
  KEY `service_categories_entity_fk` (`entity_id`),
  CONSTRAINT `service_categories_entity_fk` FOREIGN KEY (`entity_id`) REFERENCES `service_categories` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=77 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `service_categories_cmps`
--

LOCK TABLES `service_categories_cmps` WRITE;
/*!40000 ALTER TABLE `service_categories_cmps` DISABLE KEYS */;
INSERT INTO `service_categories_cmps` VALUES (1,3,59,'common.banner','banner',1),(4,3,18,'common.title-with-desc','servicesList',1),(15,8,90,'common.seo','seo',3),(35,31,328,'common.title-with-desc','servicesList',NULL),(36,31,131,'common.seo','seo',NULL),(37,32,329,'common.title-with-desc','servicesList',NULL),(38,32,132,'common.seo','seo',NULL),(39,1,258,'common.banner','banner',1),(40,1,379,'common.title-with-desc','servicesList',2),(43,8,260,'common.banner','banner',1),(44,8,381,'common.title-with-desc','servicesList',2),(66,38,265,'common.banner','banner',1),(67,38,386,'common.title-with-desc','servicesList',NULL),(68,38,157,'common.seo','seo',NULL),(71,39,300,'common.banner','banner',1),(72,39,402,'common.title-with-desc','servicesList',NULL),(75,40,301,'common.banner','banner',1),(76,40,403,'common.title-with-desc','servicesList',NULL);
/*!40000 ALTER TABLE `service_categories_cmps` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `service_category_types`
--

DROP TABLE IF EXISTS `service_category_types`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `service_category_types` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `document_id` varchar(255) DEFAULT NULL,
  `title` varchar(255) DEFAULT NULL,
  `slug` varchar(255) DEFAULT NULL,
  `created_at` datetime(6) DEFAULT NULL,
  `updated_at` datetime(6) DEFAULT NULL,
  `published_at` datetime(6) DEFAULT NULL,
  `created_by_id` int unsigned DEFAULT NULL,
  `updated_by_id` int unsigned DEFAULT NULL,
  `locale` varchar(255) DEFAULT NULL,
  `display_order` int DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `service_category_types_documents_idx` (`document_id`,`locale`,`published_at`),
  KEY `service_category_types_created_by_id_fk` (`created_by_id`),
  KEY `service_category_types_updated_by_id_fk` (`updated_by_id`),
  CONSTRAINT `service_category_types_created_by_id_fk` FOREIGN KEY (`created_by_id`) REFERENCES `admin_users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `service_category_types_updated_by_id_fk` FOREIGN KEY (`updated_by_id`) REFERENCES `admin_users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=35 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `service_category_types`
--

LOCK TABLES `service_category_types` WRITE;
/*!40000 ALTER TABLE `service_category_types` DISABLE KEYS */;
INSERT INTO `service_category_types` VALUES (1,'ij2obeqnotbo0ecuaaj31kdb','Passenger Vehicle','automotive-aftermarket/search?category=passenger-car-13','2026-01-20 12:15:31.677000','2026-03-09 06:54:53.152000',NULL,1,1,'en',1),(3,'pjar1kf9go5k9135zsqoqb5x','Batteries ','automotive-aftermarket/search?category=batteries-107','2026-01-20 18:16:39.651000','2026-03-09 06:57:41.439000',NULL,1,1,'en',2),(5,'zcep3z9x0lpdnkomn85lrzho','Workshop Test Equipment & Tools ','automotive-aftermarket/search?categoryKey=automotive&subcategoryKey=workshop-equipment-103','2026-01-20 18:17:26.467000','2026-03-31 04:39:39.970000',NULL,1,1,'en',4),(7,'zep4w6vz4nk6bpdqhs5qe6y9','Industrial Vehicles ','automotive-aftermarket/search?category=truck-13','2026-01-20 18:18:05.740000','2026-03-09 06:57:33.946000',NULL,1,1,'en',3),(9,'j6tiv8i5lv8tmnhga5l2x2bl','Bosch Diesel Service ','automotive-aftermarket/search?category=diesel-systems-107','2026-01-20 18:18:29.035000','2026-03-31 04:40:32.296000',NULL,1,1,'en',5),(25,'ij2obeqnotbo0ecuaaj31kdb','Passenger Vehicle','automotive-aftermarket/search?category=passenger-car-13','2026-01-20 12:15:31.677000','2026-03-09 06:54:53.152000','2026-03-09 06:54:53.451000',1,1,'en',1),(31,'zep4w6vz4nk6bpdqhs5qe6y9','Industrial Vehicles ','automotive-aftermarket/search?category=truck-13','2026-01-20 18:18:05.740000','2026-03-09 06:57:33.946000','2026-03-09 06:57:34.250000',1,1,'en',3),(32,'pjar1kf9go5k9135zsqoqb5x','Batteries ','automotive-aftermarket/search?category=batteries-107','2026-01-20 18:16:39.651000','2026-03-09 06:57:41.439000','2026-03-09 06:57:41.747000',1,1,'en',2),(33,'zcep3z9x0lpdnkomn85lrzho','Workshop Test Equipment & Tools ','automotive-aftermarket/search?categoryKey=automotive&subcategoryKey=workshop-equipment-103','2026-01-20 18:17:26.467000','2026-03-31 04:39:39.970000','2026-03-31 04:39:40.302000',1,1,'en',4),(34,'j6tiv8i5lv8tmnhga5l2x2bl','Bosch Diesel Service ','automotive-aftermarket/search?category=diesel-systems-107','2026-01-20 18:18:29.035000','2026-03-31 04:40:32.296000','2026-03-31 04:40:32.586000',1,1,'en',5);
/*!40000 ALTER TABLE `service_category_types` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `service_landings`
--

DROP TABLE IF EXISTS `service_landings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `service_landings` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `document_id` varchar(255) DEFAULT NULL,
  `service_heading` longtext,
  `description` longtext,
  `created_at` datetime(6) DEFAULT NULL,
  `updated_at` datetime(6) DEFAULT NULL,
  `published_at` datetime(6) DEFAULT NULL,
  `created_by_id` int unsigned DEFAULT NULL,
  `updated_by_id` int unsigned DEFAULT NULL,
  `locale` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `service_landings_documents_idx` (`document_id`,`locale`,`published_at`),
  KEY `service_landings_created_by_id_fk` (`created_by_id`),
  KEY `service_landings_updated_by_id_fk` (`updated_by_id`),
  CONSTRAINT `service_landings_created_by_id_fk` FOREIGN KEY (`created_by_id`) REFERENCES `admin_users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `service_landings_updated_by_id_fk` FOREIGN KEY (`updated_by_id`) REFERENCES `admin_users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `service_landings`
--

LOCK TABLES `service_landings` WRITE;
/*!40000 ALTER TABLE `service_landings` DISABLE KEYS */;
INSERT INTO `service_landings` VALUES (1,'jlubt3a23khvmr4905tupkyy','Expert Auto & Equipment Services, All in One Place','<p>We specialize in delivering expert solutions across three key service areas: Automotive Aftermarket Services, Tyre Services, and Power Tools Services. Whether you\'re maintaining a personal vehicle, managing a fleet, or keeping your tools in top condition, our team is here to ensure performance, safety, and reliability at every turn.</p><p>With a commitment to quality, precision, and customer satisfaction, we bring industry-leading expertise and technology to every job. From diagnostics and repairs to tyre fitting and balancing, and even power tool calibration and servicing – we\'ve got you covered.</p>','2025-12-12 13:05:54.447000','2026-03-09 10:00:45.263000',NULL,1,1,'en'),(3,'jlubt3a23khvmr4905tupkyy','Expert Auto & Equipment Services, All in One Place','<p>We specialize in delivering expert solutions across three key service areas: Automotive Aftermarket Services, Tyre Services, and Power Tools Services. Whether you\'re maintaining a personal vehicle, managing a fleet, or keeping your tools in top condition, our team is here to ensure performance, safety, and reliability at every turn.</p><p>With a commitment to quality, precision, and customer satisfaction, we bring industry-leading expertise and technology to every job. From diagnostics and repairs to tyre fitting and balancing, and even power tool calibration and servicing – we\'ve got you covered.</p>','2025-12-14 06:28:59.949000','2026-03-13 05:16:04.705000',NULL,1,1,'ar'),(15,'jlubt3a23khvmr4905tupkyy','Expert Auto & Equipment Services, All in One Place','<p>We specialize in delivering expert solutions across three key service areas: Automotive Aftermarket Services, Tyre Services, and Power Tools Services. Whether you\'re maintaining a personal vehicle, managing a fleet, or keeping your tools in top condition, our team is here to ensure performance, safety, and reliability at every turn.</p><p>With a commitment to quality, precision, and customer satisfaction, we bring industry-leading expertise and technology to every job. From diagnostics and repairs to tyre fitting and balancing, and even power tool calibration and servicing – we\'ve got you covered.</p>','2025-12-12 13:05:54.447000','2026-03-09 10:00:45.263000','2026-03-09 10:00:46.413000',1,1,'en'),(16,'jlubt3a23khvmr4905tupkyy','Expert Auto & Equipment Services, All in One Place','<p>We specialize in delivering expert solutions across three key service areas: Automotive Aftermarket Services, Tyre Services, and Power Tools Services. Whether you\'re maintaining a personal vehicle, managing a fleet, or keeping your tools in top condition, our team is here to ensure performance, safety, and reliability at every turn.</p><p>With a commitment to quality, precision, and customer satisfaction, we bring industry-leading expertise and technology to every job. From diagnostics and repairs to tyre fitting and balancing, and even power tool calibration and servicing – we\'ve got you covered.</p>','2025-12-14 06:28:59.949000','2026-03-13 05:16:04.705000','2026-03-13 05:16:05.759000',1,1,'ar');
/*!40000 ALTER TABLE `service_landings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `service_landings_cmps`
--

DROP TABLE IF EXISTS `service_landings_cmps`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `service_landings_cmps` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `entity_id` int unsigned DEFAULT NULL,
  `cmp_id` int unsigned DEFAULT NULL,
  `component_type` varchar(255) DEFAULT NULL,
  `field` varchar(255) DEFAULT NULL,
  `order` double unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `service_landings_uq` (`entity_id`,`cmp_id`,`field`,`component_type`),
  KEY `service_landings_field_idx` (`field`),
  KEY `service_landings_component_type_idx` (`component_type`),
  KEY `service_landings_entity_fk` (`entity_id`),
  CONSTRAINT `service_landings_entity_fk` FOREIGN KEY (`entity_id`) REFERENCES `service_landings` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=79 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `service_landings_cmps`
--

LOCK TABLES `service_landings_cmps` WRITE;
/*!40000 ALTER TABLE `service_landings_cmps` DISABLE KEYS */;
INSERT INTO `service_landings_cmps` VALUES (1,1,26,'common.banner','banner',3),(6,1,1,'service-landing.service-locations','serviceLocations',1),(14,1,4,'service-landing.service-locations','serviceLocations',2),(64,1,72,'common.seo','seo',1),(67,15,177,'common.banner','banner',1),(68,15,73,'common.seo','seo',NULL),(69,15,23,'service-landing.service-locations','serviceLocations',1),(70,15,24,'service-landing.service-locations','serviceLocations',2),(71,3,227,'common.banner','banner',2),(72,3,133,'common.seo','seo',1),(73,3,25,'service-landing.service-locations','serviceLocations',1),(74,3,26,'service-landing.service-locations','serviceLocations',2),(75,16,228,'common.banner','banner',1),(76,16,134,'common.seo','seo',NULL),(77,16,27,'service-landing.service-locations','serviceLocations',1),(78,16,28,'service-landing.service-locations','serviceLocations',2);
/*!40000 ALTER TABLE `service_landings_cmps` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `service_landings_location_types_lnk`
--

DROP TABLE IF EXISTS `service_landings_location_types_lnk`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `service_landings_location_types_lnk` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `service_landing_id` int unsigned DEFAULT NULL,
  `branch_location_id` int unsigned DEFAULT NULL,
  `branch_location_ord` double unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `service_landings_location_types_lnk_uq` (`service_landing_id`,`branch_location_id`),
  KEY `service_landings_location_types_lnk_fk` (`service_landing_id`),
  KEY `service_landings_location_types_lnk_ifk` (`branch_location_id`),
  KEY `service_landings_location_types_lnk_ofk` (`branch_location_ord`),
  CONSTRAINT `service_landings_location_types_lnk_fk` FOREIGN KEY (`service_landing_id`) REFERENCES `service_landings` (`id`) ON DELETE CASCADE,
  CONSTRAINT `service_landings_location_types_lnk_ifk` FOREIGN KEY (`branch_location_id`) REFERENCES `branch_locations` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `service_landings_location_types_lnk`
--

LOCK TABLES `service_landings_location_types_lnk` WRITE;
/*!40000 ALTER TABLE `service_landings_location_types_lnk` DISABLE KEYS */;
INSERT INTO `service_landings_location_types_lnk` VALUES (1,1,1,1),(2,1,4,2),(5,15,3,1),(6,15,6,2);
/*!40000 ALTER TABLE `service_landings_location_types_lnk` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `services`
--

DROP TABLE IF EXISTS `services`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `services` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `document_id` varchar(255) DEFAULT NULL,
  `title` varchar(255) DEFAULT NULL,
  `slug` varchar(255) DEFAULT NULL,
  `created_at` datetime(6) DEFAULT NULL,
  `updated_at` datetime(6) DEFAULT NULL,
  `published_at` datetime(6) DEFAULT NULL,
  `created_by_id` int unsigned DEFAULT NULL,
  `updated_by_id` int unsigned DEFAULT NULL,
  `locale` varchar(255) DEFAULT NULL,
  `list_desc` longtext,
  `show_book_service_form` tinyint(1) DEFAULT NULL,
  `show_mobile_service_form` tinyint(1) DEFAULT NULL,
  `header_service_sort_order` int DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `services_documents_idx` (`document_id`,`locale`,`published_at`),
  KEY `services_created_by_id_fk` (`created_by_id`),
  KEY `services_updated_by_id_fk` (`updated_by_id`),
  CONSTRAINT `services_created_by_id_fk` FOREIGN KEY (`created_by_id`) REFERENCES `admin_users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `services_updated_by_id_fk` FOREIGN KEY (`updated_by_id`) REFERENCES `admin_users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=287 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `services`
--

LOCK TABLES `services` WRITE;
/*!40000 ALTER TABLE `services` DISABLE KEYS */;
INSERT INTO `services` VALUES (1,'g18oof4nka4jou664eq4fy0e','Spare Parts','spare-parts','2025-12-12 06:14:34.619000','2026-04-01 10:31:35.102000',NULL,1,1,'en','Bosch offers you the appropriate spare parts for your tools, such as angle grinders or drills: from the armature, to the carbon brushes, through to the batteries and chargers.',NULL,NULL,NULL),(5,'padhr29nknzix7og066ybt5x','Tyre Repair','tyre-repair','2025-12-12 08:58:03.156000','2026-04-01 08:59:56.340000',NULL,1,1,'en','At CME Alfahim, we offer comprehensive tyre repair solutions for passenger, commercial, and heavy-duty vehicles.',1,1,1),(7,'rar5hdd51s37ji0k5p2qyh9r','Spare Parts Service','spare-parts-services','2025-12-12 08:58:31.818000','2026-04-08 09:08:31.853000',NULL,1,1,'en','Bosch offers you the appropriate spare parts for your tools, such as angle grinders or drills: from the armature, to the carbon brushes, through to the batteries and chargers.',1,NULL,1),(27,'neqskd16ndcmmi3pmsoymg7w','Brake Pads','brake-pads','2025-12-21 09:02:27.135000','2026-04-01 08:57:34.152000',NULL,1,1,'en','Brake safety is critical, and CME Alfahim’s expert technicians provide thorough inspections and timely replacement of brake pads.',1,0,2),(29,'w0axm3hwjk6c18n3ih1ozmql','Tyre Rotation','tyre-rotation','2025-12-21 09:03:17.068000','2026-04-01 10:33:53.919000',NULL,1,1,'en','Tyre rotation is a simple yet effective way to extend the life of your tyres and ensure even wear. By moving tyres from one position to another, we balance wear patterns and reduce stress on individual tyres.',1,1,4),(31,'adc29g15x63wxbq22awojzno','Oil Change','oil-change','2025-12-21 09:04:35.176000','2026-04-01 10:30:45.866000',NULL,1,1,'en','Oil is the lifeblood of your car\'s engine, playing a crucial role in its performance and longevity. It lubricates engine parts, reduces friction, and helps dissipate heat, ensuring smooth operation',1,1,3),(36,'ql0tp5nnlmk95jg8x1mao3pm','Callibration Service','calibration','2026-01-22 09:48:26.624000','2026-04-08 09:09:29.713000',NULL,1,1,'en','Our calibration services:\n\nCleaning the tool\nChecking the measuring accuracy\nIf required: Adjusting of the tool\nDocumenting all measured values',1,NULL,2),(82,'yxrw888gc89ht9zwlfwa8js3','Bosch Car Service','bosch-car-service','2026-03-11 11:21:12.735000','2026-04-02 07:18:17.060000',NULL,1,1,'en','Workshop solutions for the future. For professional service on modern vehicles, Bosch provides test and workshop equipment, software and expertise perfectly coordinated from a single source.',1,NULL,1),(99,'q5mbbvo7m4ds5r1tv4asgtqf','Bosch Diesel Service','bosch-diesel-service','2026-03-11 13:09:41.051000','2026-04-02 07:18:36.587000',NULL,1,1,'en','A wide range of services, partners of the Bosch network can benefit from access to all of Bosch’s knowledge, technological expertise and comprehensive practical experience from decades of workshop support. What we offer:',1,NULL,2),(105,'s09m8y34xek7obkn7evd33xj','Workshop Test Equipment Services','workshop-test-equipment-services','2026-03-11 13:29:24.675000','2026-04-02 07:18:58.303000',NULL,1,1,'en','Central Motors & Equipment brings the latest state-of-the-art workshop equipment services',1,NULL,3),(135,'wgckx3k125zray0hj1d742zr','Wheel Alignment','wheel-alignment','2026-03-12 06:11:27.809000','2026-04-01 10:34:34.126000',NULL,1,1,'en','At CME, our expert technicians use advanced equipment to adjust your wheels to manufacturer specs, ensuring smooth and safe driving',1,0,5),(172,'p917w95opaix2r5qrhh1w6sy','Nitrogen Inflation','nitrogen-inflation','2026-03-12 09:17:53.087000','2026-04-01 10:30:01.358000',NULL,1,1,'en','Tyre inflation is undoubtedly a key element in ensuring tyre longevity. The pressure recommended by the manufacturers is different for each vehicle and must be scrupulously respected for your safety',1,0,7),(179,'rpldpoo2plpfl7d6ff7izski','Tyre Change and Balancing / Tyre Replacement','tyre-change-balancing-replacement','2026-03-12 09:38:06.789000','2026-04-01 10:32:43.722000',NULL,1,1,'en','Proper tyre fitting and balancing are crucial for your vehicle\'s maintenance. Poorly fitted tyres can lead to a rough, uneven, and potentially unsafe ride. When fitting new tyres, make sure they\'re mounted correctly, are the right type for your vehicle, and are balanced accurately to ensure a smooth, safe drive and extend tyre lifespan.',1,1,6),(180,'hu8h55oswweuqxqu25d2b8cf','AC Maintenance','ac-maintenance','2026-03-12 09:45:41.292000','2026-04-01 10:25:17.781000',NULL,1,1,'en','Maintaining your vehicle\'s air conditioning system is crucial for a comfortable driving experience, particularly during extreme temperatures. The AC system not only regulates temperature but also controls humidity, contributing to a healthier in-cab environment',1,0,8),(202,'q5mbbvo7m4ds5r1tv4asgtqf','Bosch Diesel Service','bosch-diesel-service','2026-03-13 05:14:17.482000','2026-03-13 05:14:17.482000',NULL,1,1,'ar','Brake safety is critical, and CME Alfahim’s expert technicians provide thorough inspections and timely replacement of brake pads.',1,NULL,2),(203,'q5mbbvo7m4ds5r1tv4asgtqf','Bosch Diesel Service','bosch-diesel-service','2026-03-13 05:14:17.482000','2026-03-13 05:14:17.482000','2026-03-13 05:14:18.448000',1,1,'ar','Brake safety is critical, and CME Alfahim’s expert technicians provide thorough inspections and timely replacement of brake pads.',1,NULL,2),(241,'op8tlp3ajr50zwn0gok51mty',' Battery Replacement','battery-replacement','2026-03-30 15:29:06.120000','2026-04-01 10:23:55.698000',NULL,1,1,'en','Dead battery got you stuck?  Need a reliable car battery replacement in the UAE? CME TyrePlushas you covered! We offer fast, affordable, and top-notch battery replacement services across Dubai, Abu Dhabi, and the UAE. Our pros will come to you –whether you\'re at home, work, or stranded. Get back on the road pronto!',1,1,9),(259,'neqskd16ndcmmi3pmsoymg7w','Brake Pads','brake-pads','2025-12-21 09:02:27.135000','2026-04-01 08:57:34.152000','2026-04-01 08:57:36.276000',1,1,'en','Brake safety is critical, and CME Alfahim’s expert technicians provide thorough inspections and timely replacement of brake pads.',1,0,2),(264,'padhr29nknzix7og066ybt5x','Tyre Repair','tyre-repair','2025-12-12 08:58:03.156000','2026-04-01 08:59:56.340000','2026-04-01 08:59:58.692000',1,1,'en','At CME Alfahim, we offer comprehensive tyre repair solutions for passenger, commercial, and heavy-duty vehicles.',1,1,1),(267,'op8tlp3ajr50zwn0gok51mty',' Battery Replacement','battery-replacement','2026-03-30 15:29:06.120000','2026-04-01 10:23:55.698000','2026-04-01 10:23:57.489000',1,1,'en','Dead battery got you stuck?  Need a reliable car battery replacement in the UAE? CME TyrePlushas you covered! We offer fast, affordable, and top-notch battery replacement services across Dubai, Abu Dhabi, and the UAE. Our pros will come to you –whether you\'re at home, work, or stranded. Get back on the road pronto!',1,1,9),(268,'hu8h55oswweuqxqu25d2b8cf','AC Maintenance','ac-maintenance','2026-03-12 09:45:41.292000','2026-04-01 10:25:17.781000','2026-04-01 10:25:19.317000',1,1,'en','Maintaining your vehicle\'s air conditioning system is crucial for a comfortable driving experience, particularly during extreme temperatures. The AC system not only regulates temperature but also controls humidity, contributing to a healthier in-cab environment',1,0,8),(272,'p917w95opaix2r5qrhh1w6sy','Nitrogen Inflation','nitrogen-inflation','2026-03-12 09:17:53.087000','2026-04-01 10:30:01.358000','2026-04-01 10:30:04.842000',1,1,'en','Tyre inflation is undoubtedly a key element in ensuring tyre longevity. The pressure recommended by the manufacturers is different for each vehicle and must be scrupulously respected for your safety',1,0,7),(273,'adc29g15x63wxbq22awojzno','Oil Change','oil-change','2025-12-21 09:04:35.176000','2026-04-01 10:30:45.866000','2026-04-01 10:30:47.669000',1,1,'en','Oil is the lifeblood of your car\'s engine, playing a crucial role in its performance and longevity. It lubricates engine parts, reduces friction, and helps dissipate heat, ensuring smooth operation',1,1,3),(276,'rpldpoo2plpfl7d6ff7izski','Tyre Change and Balancing / Tyre Replacement','tyre-change-balancing-replacement','2026-03-12 09:38:06.789000','2026-04-01 10:32:43.722000','2026-04-01 10:32:45.895000',1,1,'en','Proper tyre fitting and balancing are crucial for your vehicle\'s maintenance. Poorly fitted tyres can lead to a rough, uneven, and potentially unsafe ride. When fitting new tyres, make sure they\'re mounted correctly, are the right type for your vehicle, and are balanced accurately to ensure a smooth, safe drive and extend tyre lifespan.',1,1,6),(277,'w0axm3hwjk6c18n3ih1ozmql','Tyre Rotation','tyre-rotation','2025-12-21 09:03:17.068000','2026-04-01 10:33:53.919000','2026-04-01 10:33:55.392000',1,1,'en','Tyre rotation is a simple yet effective way to extend the life of your tyres and ensure even wear. By moving tyres from one position to another, we balance wear patterns and reduce stress on individual tyres.',1,1,4),(278,'wgckx3k125zray0hj1d742zr','Wheel Alignment','wheel-alignment','2026-03-12 06:11:27.809000','2026-04-01 10:34:34.126000','2026-04-01 10:34:36.052000',1,1,'en','At CME, our expert technicians use advanced equipment to adjust your wheels to manufacturer specs, ensuring smooth and safe driving',1,0,5),(280,'yxrw888gc89ht9zwlfwa8js3','Bosch Car Service','bosch-car-service','2026-03-11 11:21:12.735000','2026-04-02 07:18:17.060000','2026-04-02 07:18:18.584000',1,1,'en','Workshop solutions for the future. For professional service on modern vehicles, Bosch provides test and workshop equipment, software and expertise perfectly coordinated from a single source.',1,NULL,1),(281,'q5mbbvo7m4ds5r1tv4asgtqf','Bosch Diesel Service','bosch-diesel-service','2026-03-11 13:09:41.051000','2026-04-02 07:18:36.587000','2026-04-02 07:18:38.359000',1,1,'en','A wide range of services, partners of the Bosch network can benefit from access to all of Bosch’s knowledge, technological expertise and comprehensive practical experience from decades of workshop support. What we offer:',1,NULL,2),(282,'s09m8y34xek7obkn7evd33xj','Workshop Test Equipment Services','workshop-test-equipment-services','2026-03-11 13:29:24.675000','2026-04-02 07:18:58.303000','2026-04-02 07:18:59.713000',1,1,'en','Central Motors & Equipment brings the latest state-of-the-art workshop equipment services',1,NULL,3),(285,'rar5hdd51s37ji0k5p2qyh9r','Spare Parts Service','spare-parts-services','2025-12-12 08:58:31.818000','2026-04-08 09:08:31.853000','2026-04-08 09:08:33.250000',1,1,'en','Bosch offers you the appropriate spare parts for your tools, such as angle grinders or drills: from the armature, to the carbon brushes, through to the batteries and chargers.',1,NULL,1),(286,'ql0tp5nnlmk95jg8x1mao3pm','Callibration Service','calibration','2026-01-22 09:48:26.624000','2026-04-08 09:09:29.713000','2026-04-08 09:09:31.124000',1,1,'en','Our calibration services:\n\nCleaning the tool\nChecking the measuring accuracy\nIf required: Adjusting of the tool\nDocumenting all measured values',1,NULL,2);
/*!40000 ALTER TABLE `services` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `services_cmps`
--

DROP TABLE IF EXISTS `services_cmps`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `services_cmps` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `entity_id` int unsigned DEFAULT NULL,
  `cmp_id` int unsigned DEFAULT NULL,
  `component_type` varchar(255) DEFAULT NULL,
  `field` varchar(255) DEFAULT NULL,
  `order` double unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `services_uq` (`entity_id`,`cmp_id`,`field`,`component_type`),
  KEY `services_field_idx` (`field`),
  KEY `services_component_type_idx` (`component_type`),
  KEY `services_entity_fk` (`entity_id`),
  CONSTRAINT `services_entity_fk` FOREIGN KEY (`entity_id`) REFERENCES `services` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=4210 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `services_cmps`
--

LOCK TABLES `services_cmps` WRITE;
/*!40000 ALTER TABLE `services_cmps` DISABLE KEYS */;
INSERT INTO `services_cmps` VALUES (6,5,1,'common.title-with-desc','trustedPartner',15),(7,5,1,'common.content-block','aboutBlock',14),(50,5,9,'common.content-block','tyreRepairMatters',13),(59,5,1,'common.locations','locations',12),(70,5,1,'common.faq','faq',11),(89,27,24,'common.title-with-desc','trustedPartner',10),(105,36,141,'common.banner','banner',2),(108,36,32,'common.title-with-desc','trustedPartner',9),(109,36,20,'common.content-block','aboutBlock',1),(158,5,84,'common.seo','seo',10),(170,5,115,'common.link-item','breadCrumb',1),(171,5,116,'common.link-item','breadCrumb',2),(242,5,123,'common.link-item','breadCrumb',3),(482,5,17,'common.title-desc','bookService',8),(483,5,18,'common.title-desc','mobileService',9),(745,29,37,'common.title-desc','bookService',1),(746,29,38,'common.title-desc','mobileService',9),(893,29,184,'common.link-item','breadCrumb',1),(894,29,185,'common.link-item','breadCrumb',2),(895,29,186,'common.link-item','breadCrumb',3),(896,29,187,'common.link-item','breadCrumb',4),(912,5,192,'common.link-item','breadCrumb',4),(935,82,197,'common.link-item','breadCrumb',1),(936,82,198,'common.link-item','breadCrumb',2),(937,82,199,'common.link-item','breadCrumb',3),(938,82,200,'common.link-item','breadCrumb',4),(951,82,67,'common.title-desc','bookService',7),(952,82,68,'common.title-desc','mobileService',8),(1177,99,265,'common.link-item','breadCrumb',1),(1178,99,266,'common.link-item','breadCrumb',2),(1179,99,267,'common.link-item','breadCrumb',3),(1180,99,268,'common.link-item','breadCrumb',4),(1183,99,99,'common.title-desc','bookService',7),(1184,99,100,'common.title-desc','mobileService',8),(1229,105,281,'common.link-item','breadCrumb',1),(1230,105,282,'common.link-item','breadCrumb',2),(1231,105,283,'common.link-item','breadCrumb',3),(1232,105,284,'common.link-item','breadCrumb',4),(1234,105,107,'common.title-desc','bookService',7),(1235,105,108,'common.title-desc','mobileService',8),(1564,135,357,'common.link-item','breadCrumb',1),(1565,135,358,'common.link-item','breadCrumb',2),(1566,135,359,'common.link-item','breadCrumb',3),(1567,135,360,'common.link-item','breadCrumb',4),(1571,135,145,'common.title-desc','bookService',8),(1572,135,146,'common.title-desc','mobileService',9),(1768,31,165,'common.title-desc','bookService',8),(1769,31,166,'common.title-desc','mobileService',9),(1793,27,393,'common.link-item','breadCrumb',1),(1794,27,394,'common.link-item','breadCrumb',2),(1795,27,395,'common.link-item','breadCrumb',3),(1796,27,396,'common.link-item','breadCrumb',4),(1842,27,171,'common.title-desc','bookService',8),(1843,27,172,'common.title-desc','mobileService',9),(2001,172,449,'common.link-item','breadCrumb',1),(2002,172,450,'common.link-item','breadCrumb',2),(2003,172,451,'common.link-item','breadCrumb',3),(2004,172,452,'common.link-item','breadCrumb',4),(2008,172,193,'common.title-desc','bookService',1),(2009,172,194,'common.title-desc','mobileService',14),(2170,179,477,'common.link-item','breadCrumb',1),(2171,179,478,'common.link-item','breadCrumb',2),(2172,179,479,'common.link-item','breadCrumb',3),(2173,179,480,'common.link-item','breadCrumb',4),(2182,179,207,'common.title-desc','bookService',1),(2183,179,208,'common.title-desc','mobileService',13),(2184,180,481,'common.link-item','breadCrumb',1),(2185,180,482,'common.link-item','breadCrumb',2),(2186,180,483,'common.link-item','breadCrumb',3),(2187,180,484,'common.link-item','breadCrumb',4),(2196,180,209,'common.title-desc','bookService',1),(2197,180,210,'common.title-desc','mobileService',12),(2678,202,569,'common.link-item','breadCrumb',1),(2679,202,570,'common.link-item','breadCrumb',2),(2680,202,571,'common.link-item','breadCrumb',3),(2681,202,572,'common.link-item','breadCrumb',4),(2682,202,168,'common.content-block','serviceContent',1),(2683,202,256,'common.content-block-variant','serviceContent',2),(2684,202,129,'common.seo','seo',NULL),(2685,202,253,'common.title-desc','bookService',NULL),(2686,202,254,'common.title-desc','mobileService',NULL),(2687,203,573,'common.link-item','breadCrumb',1),(2688,203,574,'common.link-item','breadCrumb',2),(2689,203,575,'common.link-item','breadCrumb',3),(2690,203,576,'common.link-item','breadCrumb',4),(2691,203,169,'common.content-block','serviceContent',1),(2692,203,257,'common.content-block-variant','serviceContent',2),(2693,203,130,'common.seo','seo',NULL),(2694,203,255,'common.title-desc','bookService',NULL),(2695,203,256,'common.title-desc','mobileService',NULL),(2858,31,613,'common.link-item','breadCrumb',1),(2859,31,614,'common.link-item','breadCrumb',2),(2860,31,615,'common.link-item','breadCrumb',3),(2861,31,616,'common.link-item','breadCrumb',4),(3184,7,241,'common.banner','banner',1),(3185,7,681,'common.link-item','breadCrumb',1),(3186,7,682,'common.link-item','breadCrumb',2),(3187,7,683,'common.link-item','breadCrumb',3),(3188,7,684,'common.link-item','breadCrumb',4),(3233,36,701,'common.link-item','breadCrumb',1),(3234,36,702,'common.link-item','breadCrumb',2),(3235,36,703,'common.link-item','breadCrumb',3),(3236,36,704,'common.link-item','breadCrumb',4),(3388,241,739,'common.link-item','breadCrumb',1),(3389,241,740,'common.link-item','breadCrumb',2),(3390,241,741,'common.link-item','breadCrumb',3),(3391,241,742,'common.link-item','breadCrumb',4),(3395,241,319,'common.title-desc','bookService',1),(3396,241,320,'common.title-desc','mobileService',9),(3722,27,113,'common.content-block-variant','serviceContent',1),(3723,27,103,'common.content-block','serviceContent',2),(3724,27,138,'common.content-block-variant','serviceContent',3),(3727,259,823,'common.link-item','breadCrumb',1),(3728,259,824,'common.link-item','breadCrumb',2),(3729,259,825,'common.link-item','breadCrumb',3),(3730,259,826,'common.link-item','breadCrumb',4),(3731,259,355,'common.content-block-variant','serviceContent',1),(3732,259,211,'common.content-block','serviceContent',2),(3733,259,356,'common.content-block-variant','serviceContent',3),(3734,259,355,'common.title-desc','bookService',NULL),(3735,259,356,'common.title-desc','mobileService',NULL),(3830,5,1,'common.content-block-variant','serviceContent',1),(3831,5,31,'common.content-block','serviceContent',2),(3832,5,10,'common.content-block-variant','serviceContent',3),(3836,264,843,'common.link-item','breadCrumb',1),(3837,264,844,'common.link-item','breadCrumb',2),(3838,264,845,'common.link-item','breadCrumb',3),(3839,264,846,'common.link-item','breadCrumb',4),(3840,264,366,'common.content-block-variant','serviceContent',1),(3841,264,216,'common.content-block','serviceContent',2),(3842,264,367,'common.content-block-variant','serviceContent',3),(3843,264,158,'common.seo','seo',NULL),(3844,264,365,'common.title-desc','bookService',NULL),(3845,264,366,'common.title-desc','mobileService',NULL),(3886,241,320,'common.content-block-variant','serviceContent',1),(3887,241,194,'common.content-block','serviceContent',2),(3888,241,321,'common.content-block-variant','serviceContent',3),(3891,267,859,'common.link-item','breadCrumb',1),(3892,267,860,'common.link-item','breadCrumb',2),(3893,267,861,'common.link-item','breadCrumb',3),(3894,267,862,'common.link-item','breadCrumb',4),(3895,267,371,'common.content-block-variant','serviceContent',1),(3896,267,218,'common.content-block','serviceContent',2),(3897,267,372,'common.content-block-variant','serviceContent',3),(3898,267,373,'common.title-desc','bookService',NULL),(3899,267,374,'common.title-desc','mobileService',NULL),(3904,180,265,'common.title-with-desc','serviceContent',1),(3905,180,266,'common.title-with-desc','serviceContent',2),(3906,180,267,'common.title-with-desc','serviceContent',3),(3907,180,215,'common.content-block-variant','serviceContent',4),(3908,180,268,'common.title-with-desc','serviceContent',5),(3909,180,269,'common.title-with-desc','serviceContent',6),(3912,268,863,'common.link-item','breadCrumb',1),(3913,268,864,'common.link-item','breadCrumb',2),(3914,268,865,'common.link-item','breadCrumb',3),(3915,268,866,'common.link-item','breadCrumb',4),(3916,268,404,'common.title-with-desc','serviceContent',1),(3917,268,405,'common.title-with-desc','serviceContent',2),(3918,268,406,'common.title-with-desc','serviceContent',3),(3919,268,373,'common.content-block-variant','serviceContent',4),(3920,268,407,'common.title-with-desc','serviceContent',5),(3921,268,408,'common.title-with-desc','serviceContent',6),(3922,268,375,'common.title-desc','bookService',NULL),(3923,268,376,'common.title-desc','mobileService',NULL),(3974,172,199,'common.content-block-variant','serviceContent',1),(3975,172,229,'common.title-with-desc','serviceContent',2),(3976,172,230,'common.title-with-desc','serviceContent',3),(3977,172,231,'common.title-with-desc','serviceContent',4),(3978,172,200,'common.content-block-variant','serviceContent',5),(3979,172,238,'common.title-with-desc','serviceContent',6),(3980,172,239,'common.title-with-desc','serviceContent',7),(3981,172,138,'common.content-block','serviceContent',8),(3984,272,879,'common.link-item','breadCrumb',1),(3985,272,880,'common.link-item','breadCrumb',2),(3986,272,881,'common.link-item','breadCrumb',3),(3987,272,882,'common.link-item','breadCrumb',4),(3988,272,377,'common.content-block-variant','serviceContent',1),(3989,272,411,'common.title-with-desc','serviceContent',2),(3990,272,412,'common.title-with-desc','serviceContent',3),(3991,272,413,'common.title-with-desc','serviceContent',4),(3992,272,378,'common.content-block-variant','serviceContent',5),(3993,272,414,'common.title-with-desc','serviceContent',6),(3994,272,415,'common.title-with-desc','serviceContent',7),(3995,272,220,'common.content-block','serviceContent',8),(3996,272,381,'common.title-desc','bookService',NULL),(3997,272,382,'common.title-desc','mobileService',NULL),(4002,31,154,'common.content-block-variant','serviceContent',1),(4003,31,119,'common.content-block','serviceContent',2),(4004,31,155,'common.content-block-variant','serviceContent',3),(4007,273,883,'common.link-item','breadCrumb',1),(4008,273,884,'common.link-item','breadCrumb',2),(4009,273,885,'common.link-item','breadCrumb',3),(4010,273,886,'common.link-item','breadCrumb',4),(4011,273,379,'common.content-block-variant','serviceContent',1),(4012,273,221,'common.content-block','serviceContent',2),(4013,273,380,'common.content-block-variant','serviceContent',3),(4014,273,383,'common.title-desc','bookService',NULL),(4015,273,384,'common.title-desc','mobileService',NULL),(4032,179,223,'common.content-block-variant','serviceContent',1),(4033,179,226,'common.content-block-variant','serviceContent',2),(4034,179,152,'common.content-block','serviceContent',3),(4035,179,308,'common.title-with-desc','serviceContent',4),(4036,179,311,'common.title-with-desc','serviceContent',5),(4037,179,312,'common.title-with-desc','serviceContent',6),(4038,179,235,'common.content-block-variant','serviceContent',7),(4041,276,891,'common.link-item','breadCrumb',1),(4042,276,892,'common.link-item','breadCrumb',2),(4043,276,893,'common.link-item','breadCrumb',3),(4044,276,894,'common.link-item','breadCrumb',4),(4045,276,381,'common.content-block-variant','serviceContent',1),(4046,276,382,'common.content-block-variant','serviceContent',2),(4047,276,222,'common.content-block','serviceContent',3),(4048,276,417,'common.title-with-desc','serviceContent',4),(4049,276,418,'common.title-with-desc','serviceContent',5),(4050,276,419,'common.title-with-desc','serviceContent',6),(4051,276,383,'common.content-block-variant','serviceContent',7),(4052,276,385,'common.title-desc','bookService',NULL),(4053,276,386,'common.title-desc','mobileService',NULL),(4058,29,175,'common.title-with-desc','serviceContent',1),(4059,29,176,'common.title-with-desc','serviceContent',2),(4060,29,45,'common.content-block-variant','serviceContent',3),(4063,277,895,'common.link-item','breadCrumb',1),(4064,277,896,'common.link-item','breadCrumb',2),(4065,277,897,'common.link-item','breadCrumb',3),(4066,277,898,'common.link-item','breadCrumb',4),(4067,277,420,'common.title-with-desc','serviceContent',1),(4068,277,421,'common.title-with-desc','serviceContent',2),(4069,277,384,'common.content-block-variant','serviceContent',3),(4070,277,387,'common.title-desc','bookService',NULL),(4071,277,388,'common.title-desc','mobileService',NULL),(4076,135,132,'common.content-block-variant','serviceContent',1),(4077,135,121,'common.content-block','serviceContent',2),(4078,135,158,'common.content-block-variant','serviceContent',3),(4081,278,899,'common.link-item','breadCrumb',1),(4082,278,900,'common.link-item','breadCrumb',2),(4083,278,901,'common.link-item','breadCrumb',3),(4084,278,902,'common.link-item','breadCrumb',4),(4085,278,385,'common.content-block-variant','serviceContent',1),(4086,278,223,'common.content-block','serviceContent',2),(4087,278,386,'common.content-block-variant','serviceContent',3),(4088,278,389,'common.title-desc','bookService',NULL),(4089,278,390,'common.title-desc','mobileService',NULL),(4110,82,63,'common.content-block-variant','serviceContent',1),(4111,82,67,'common.content-block-variant','serviceContent',2),(4114,280,907,'common.link-item','breadCrumb',1),(4115,280,908,'common.link-item','breadCrumb',2),(4116,280,909,'common.link-item','breadCrumb',3),(4117,280,910,'common.link-item','breadCrumb',4),(4118,280,388,'common.content-block-variant','serviceContent',1),(4119,280,389,'common.content-block-variant','serviceContent',2),(4120,280,393,'common.title-desc','bookService',NULL),(4121,280,394,'common.title-desc','mobileService',NULL),(4126,99,253,'common.content-block-variant','serviceContent',1),(4127,99,123,'common.content-block','serviceContent',2),(4130,281,911,'common.link-item','breadCrumb',1),(4131,281,912,'common.link-item','breadCrumb',2),(4132,281,913,'common.link-item','breadCrumb',3),(4133,281,914,'common.link-item','breadCrumb',4),(4134,281,390,'common.content-block-variant','serviceContent',1),(4135,281,224,'common.content-block','serviceContent',2),(4136,281,395,'common.title-desc','bookService',NULL),(4137,281,396,'common.title-desc','mobileService',NULL),(4142,105,96,'common.content-block-variant','serviceContent',1),(4143,105,215,'common.title-with-desc','serviceContent',2),(4146,282,915,'common.link-item','breadCrumb',1),(4147,282,916,'common.link-item','breadCrumb',2),(4148,282,917,'common.link-item','breadCrumb',3),(4149,282,918,'common.link-item','breadCrumb',4),(4150,282,391,'common.content-block-variant','serviceContent',1),(4151,282,423,'common.title-with-desc','serviceContent',2),(4152,282,397,'common.title-desc','bookService',NULL),(4153,282,398,'common.title-desc','mobileService',NULL),(4185,7,353,'common.title-with-desc','serviceContent',1),(4186,7,403,'common.title-desc','bookService',NULL),(4187,285,318,'common.banner','banner',1),(4188,285,927,'common.link-item','breadCrumb',1),(4189,285,928,'common.link-item','breadCrumb',2),(4190,285,929,'common.link-item','breadCrumb',3),(4191,285,930,'common.link-item','breadCrumb',4),(4192,285,427,'common.title-with-desc','serviceContent',1),(4193,285,404,'common.title-desc','bookService',NULL),(4199,36,357,'common.title-with-desc','serviceContent',1),(4200,36,358,'common.title-with-desc','serviceContent',2),(4201,36,405,'common.title-desc','bookService',NULL),(4202,286,319,'common.banner','banner',1),(4203,286,931,'common.link-item','breadCrumb',1),(4204,286,932,'common.link-item','breadCrumb',2),(4205,286,933,'common.link-item','breadCrumb',3),(4206,286,934,'common.link-item','breadCrumb',4),(4207,286,428,'common.title-with-desc','serviceContent',1),(4208,286,429,'common.title-with-desc','serviceContent',2),(4209,286,406,'common.title-desc','bookService',NULL);
/*!40000 ALTER TABLE `services_cmps` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `services_location_types_lnk`
--

DROP TABLE IF EXISTS `services_location_types_lnk`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `services_location_types_lnk` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `service_id` int unsigned DEFAULT NULL,
  `branch_location_id` int unsigned DEFAULT NULL,
  `branch_location_ord` double unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `services_location_types_lnk_uq` (`service_id`,`branch_location_id`),
  KEY `services_location_types_lnk_fk` (`service_id`),
  KEY `services_location_types_lnk_ifk` (`branch_location_id`),
  KEY `services_location_types_lnk_ofk` (`branch_location_ord`),
  CONSTRAINT `services_location_types_lnk_fk` FOREIGN KEY (`service_id`) REFERENCES `services` (`id`) ON DELETE CASCADE,
  CONSTRAINT `services_location_types_lnk_ifk` FOREIGN KEY (`branch_location_id`) REFERENCES `branch_locations` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=123 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `services_location_types_lnk`
--

LOCK TABLES `services_location_types_lnk` WRITE;
/*!40000 ALTER TABLE `services_location_types_lnk` DISABLE KEYS */;
INSERT INTO `services_location_types_lnk` VALUES (1,5,1,1),(2,5,4,2),(49,29,1,1),(50,29,4,2),(85,135,1,1),(86,135,4,2),(113,264,3,1),(114,264,6,2),(119,277,3,1),(120,277,6,2),(121,278,3,1),(122,278,6,2);
/*!40000 ALTER TABLE `services_location_types_lnk` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `services_service_type_lnk`
--

DROP TABLE IF EXISTS `services_service_type_lnk`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `services_service_type_lnk` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `service_id` int unsigned DEFAULT NULL,
  `service_category_id` int unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `services_service_type_lnk_uq` (`service_id`,`service_category_id`),
  KEY `services_service_type_lnk_fk` (`service_id`),
  KEY `services_service_type_lnk_ifk` (`service_category_id`),
  CONSTRAINT `services_service_type_lnk_fk` FOREIGN KEY (`service_id`) REFERENCES `services` (`id`) ON DELETE CASCADE,
  CONSTRAINT `services_service_type_lnk_ifk` FOREIGN KEY (`service_category_id`) REFERENCES `service_categories` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=283 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `services_service_type_lnk`
--

LOCK TABLES `services_service_type_lnk` WRITE;
/*!40000 ALTER TABLE `services_service_type_lnk` DISABLE KEYS */;
INSERT INTO `services_service_type_lnk` VALUES (133,1,8),(3,5,3),(5,7,8),(20,27,3),(22,29,3),(95,31,3),(30,36,8),(76,82,1),(93,99,1),(101,105,1),(131,135,3),(168,172,3),(175,179,3),(180,180,3),(237,241,3),(255,259,39),(260,264,39),(263,267,39),(264,268,39),(268,272,39),(269,273,39),(272,276,39),(273,277,39),(274,278,39),(276,280,40),(277,281,40),(278,282,40),(281,285,38),(282,286,38);
/*!40000 ALTER TABLE `services_service_type_lnk` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `socials`
--

DROP TABLE IF EXISTS `socials`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `socials` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `document_id` varchar(255) DEFAULT NULL,
  `title` varchar(255) DEFAULT NULL,
  `link` longtext,
  `type_external` tinyint(1) DEFAULT NULL,
  `created_at` datetime(6) DEFAULT NULL,
  `updated_at` datetime(6) DEFAULT NULL,
  `published_at` datetime(6) DEFAULT NULL,
  `created_by_id` int unsigned DEFAULT NULL,
  `updated_by_id` int unsigned DEFAULT NULL,
  `locale` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `socials_documents_idx` (`document_id`,`locale`,`published_at`),
  KEY `socials_created_by_id_fk` (`created_by_id`),
  KEY `socials_updated_by_id_fk` (`updated_by_id`),
  CONSTRAINT `socials_created_by_id_fk` FOREIGN KEY (`created_by_id`) REFERENCES `admin_users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `socials_updated_by_id_fk` FOREIGN KEY (`updated_by_id`) REFERENCES `admin_users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `socials`
--

LOCK TABLES `socials` WRITE;
/*!40000 ALTER TABLE `socials` DISABLE KEYS */;
INSERT INTO `socials` VALUES (1,'ucwk0rjd3g9ogkvioc9srocd','Fb1','/',1,'2026-01-20 06:46:22.583000','2026-01-20 06:46:22.583000',NULL,1,1,'en'),(2,'ucwk0rjd3g9ogkvioc9srocd','Fb1','/',1,'2026-01-20 06:46:22.583000','2026-01-20 06:46:22.583000','2026-01-20 06:46:22.894000',1,1,'en'),(3,'y0ti98ytimbt985g1jdf06ct','Fb2','/',1,'2026-01-20 06:46:43.268000','2026-01-20 06:46:43.268000',NULL,1,1,'en'),(4,'y0ti98ytimbt985g1jdf06ct','Fb2','/',1,'2026-01-20 06:46:43.268000','2026-01-20 06:46:43.268000','2026-01-20 06:46:43.560000',1,1,'en');
/*!40000 ALTER TABLE `socials` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `strapi_api_token_permissions`
--

DROP TABLE IF EXISTS `strapi_api_token_permissions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `strapi_api_token_permissions` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `document_id` varchar(255) DEFAULT NULL,
  `action` varchar(255) DEFAULT NULL,
  `created_at` datetime(6) DEFAULT NULL,
  `updated_at` datetime(6) DEFAULT NULL,
  `published_at` datetime(6) DEFAULT NULL,
  `created_by_id` int unsigned DEFAULT NULL,
  `updated_by_id` int unsigned DEFAULT NULL,
  `locale` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `strapi_api_token_permissions_documents_idx` (`document_id`,`locale`,`published_at`),
  KEY `strapi_api_token_permissions_created_by_id_fk` (`created_by_id`),
  KEY `strapi_api_token_permissions_updated_by_id_fk` (`updated_by_id`),
  CONSTRAINT `strapi_api_token_permissions_created_by_id_fk` FOREIGN KEY (`created_by_id`) REFERENCES `admin_users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `strapi_api_token_permissions_updated_by_id_fk` FOREIGN KEY (`updated_by_id`) REFERENCES `admin_users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `strapi_api_token_permissions`
--

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

--
-- Table structure for table `strapi_api_token_permissions_token_lnk`
--

DROP TABLE IF EXISTS `strapi_api_token_permissions_token_lnk`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `strapi_api_token_permissions_token_lnk` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `api_token_permission_id` int unsigned DEFAULT NULL,
  `api_token_id` int unsigned DEFAULT NULL,
  `api_token_permission_ord` double unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `strapi_api_token_permissions_token_lnk_uq` (`api_token_permission_id`,`api_token_id`),
  KEY `strapi_api_token_permissions_token_lnk_fk` (`api_token_permission_id`),
  KEY `strapi_api_token_permissions_token_lnk_ifk` (`api_token_id`),
  KEY `strapi_api_token_permissions_token_lnk_oifk` (`api_token_permission_ord`),
  CONSTRAINT `strapi_api_token_permissions_token_lnk_fk` FOREIGN KEY (`api_token_permission_id`) REFERENCES `strapi_api_token_permissions` (`id`) ON DELETE CASCADE,
  CONSTRAINT `strapi_api_token_permissions_token_lnk_ifk` FOREIGN KEY (`api_token_id`) REFERENCES `strapi_api_tokens` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `strapi_api_token_permissions_token_lnk`
--

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

--
-- Table structure for table `strapi_api_tokens`
--

DROP TABLE IF EXISTS `strapi_api_tokens`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `strapi_api_tokens` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `document_id` varchar(255) DEFAULT NULL,
  `name` varchar(255) DEFAULT NULL,
  `description` varchar(255) DEFAULT NULL,
  `type` varchar(255) DEFAULT NULL,
  `access_key` varchar(255) DEFAULT NULL,
  `encrypted_key` longtext,
  `last_used_at` datetime(6) DEFAULT NULL,
  `expires_at` datetime(6) DEFAULT NULL,
  `lifespan` bigint DEFAULT NULL,
  `created_at` datetime(6) DEFAULT NULL,
  `updated_at` datetime(6) DEFAULT NULL,
  `published_at` datetime(6) DEFAULT NULL,
  `created_by_id` int unsigned DEFAULT NULL,
  `updated_by_id` int unsigned DEFAULT NULL,
  `locale` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `strapi_api_tokens_documents_idx` (`document_id`,`locale`,`published_at`),
  KEY `strapi_api_tokens_created_by_id_fk` (`created_by_id`),
  KEY `strapi_api_tokens_updated_by_id_fk` (`updated_by_id`),
  CONSTRAINT `strapi_api_tokens_created_by_id_fk` FOREIGN KEY (`created_by_id`) REFERENCES `admin_users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `strapi_api_tokens_updated_by_id_fk` FOREIGN KEY (`updated_by_id`) REFERENCES `admin_users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `strapi_api_tokens`
--

LOCK TABLES `strapi_api_tokens` WRITE;
/*!40000 ALTER TABLE `strapi_api_tokens` DISABLE KEYS */;
INSERT INTO `strapi_api_tokens` VALUES (1,'cjhyu7s3ddr3x8dq05c2sp34','Read Only','A default API token with read-only permissions, only used for accessing resources','read-only','d7c518b5937e84590426f59cfb647822738a81f6af71c306daa7cff3099d0ab7909bc9aab337c7d21f408c10ddf003dccd6c40c0f4b9c578404348013c7cdc32','v1:f6474bbd3757df4538f7a6dac18b5f32:c4bd6ab23a16a297f565f4ba7afbe48ec9ecc0d16801b21827418abf35b97773b8689f4206fa5e5cb6968c25695a90c3a85553969bc8a3db6a0f4f47abb50cc137850b13dc54765df3d48391df31c91cd86e20a04c1ed7f253ec847fbe489b5f7c6c8b8c443943be80dea619ece09763306e32f2ba6ed352e5ffb9ad925784736b5b4d592c7df3382fd4d17d1db22345f9449f11ebfec5c5d737109657824d1e5d153fb321b6aaa54c3da6ebf2ca35804e9f0d2f6a615a1717e25bbc06136894654a0ab5bc69903dccd82a8dd668a66dfac5f9483fe20299bb38d8e19e488e9b26563c8aa3b476a77ac2cf9c6b827eb3603b5b7e6fdaa62ca9ca58c3570e2872:f30116e486a7cb014f66ad3a71bae8f8',NULL,NULL,NULL,'2025-11-21 05:39:57.105000','2025-11-21 05:39:57.105000','2025-11-21 05:39:57.105000',NULL,NULL,NULL),(2,'ykq3df6bwkmtjgd7fj2zoxc2','Full Access','A default API token with full access permissions, used for accessing or modifying resources','full-access','520f4bc524b865bedb79d5f60597a42915ad005d698c32f3e2e0ae416c3bea74b482ba57a079a42e9e3127f9badef896973413d7f9ba2947b8905559b17e9da2','v1:15d2879dc0155284a98865442804fea8:ccc12f85b77aa4649e0396b566160ba5e36e167010ecbc668f03ed7f9139112ca38dfc517837deb4116cb9e6df4558faae6213a3b9a314c7928a17cf9d924c5e17dcd8058769d3de1e52890be8e51b212bd246c12f0f259c7955f88fcd84adc17f0f1c6482ba7e15fda832728e9d8c35db86c5b140122247fd89fc5b68ba87e8543e5e7093663cf7a08b363fa01c5b792620f2a4b97f784e02a9d757251fa7ec5f92f6c6216bd0a8dc79a14b44495ae1bd0a6951012bbd702080b1445c8ab376ff7699f81eaaa6eb94eb587ab77e3e60b5625ac3f5d7fad103e57dfe30747c52731cc07c4989619d65458b358829dcb312545041bbd93a86cebcadb14766f01d:adc9f11578b281ec3320f4e440e025c5',NULL,NULL,NULL,'2025-11-21 05:39:57.189000','2025-11-21 05:39:57.189000','2025-11-21 05:39:57.189000',NULL,NULL,NULL);
/*!40000 ALTER TABLE `strapi_api_tokens` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `strapi_core_store_settings`
--

DROP TABLE IF EXISTS `strapi_core_store_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `strapi_core_store_settings` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `key` varchar(255) DEFAULT NULL,
  `value` longtext,
  `type` varchar(255) DEFAULT NULL,
  `environment` varchar(255) DEFAULT NULL,
  `tag` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=140 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `strapi_core_store_settings`
--

LOCK TABLES `strapi_core_store_settings` WRITE;
/*!40000 ALTER TABLE `strapi_core_store_settings` DISABLE KEYS */;
INSERT INTO `strapi_core_store_settings` VALUES (1,'strapi_content_types_schema','{\"plugin::upload.file\":{\"collectionName\":\"files\",\"info\":{\"singularName\":\"file\",\"pluralName\":\"files\",\"displayName\":\"File\",\"description\":\"\"},\"options\":{\"draftAndPublish\":false},\"pluginOptions\":{\"content-manager\":{\"visible\":false},\"content-type-builder\":{\"visible\":false}},\"attributes\":{\"name\":{\"type\":\"string\",\"configurable\":false,\"required\":true},\"alternativeText\":{\"type\":\"string\",\"configurable\":false},\"caption\":{\"type\":\"string\",\"configurable\":false},\"width\":{\"type\":\"integer\",\"configurable\":false},\"height\":{\"type\":\"integer\",\"configurable\":false},\"formats\":{\"type\":\"json\",\"configurable\":false},\"hash\":{\"type\":\"string\",\"configurable\":false,\"required\":true},\"ext\":{\"type\":\"string\",\"configurable\":false},\"mime\":{\"type\":\"string\",\"configurable\":false,\"required\":true},\"size\":{\"type\":\"decimal\",\"configurable\":false,\"required\":true},\"url\":{\"type\":\"string\",\"configurable\":false,\"required\":true},\"previewUrl\":{\"type\":\"string\",\"configurable\":false},\"provider\":{\"type\":\"string\",\"configurable\":false,\"required\":true},\"provider_metadata\":{\"type\":\"json\",\"configurable\":false},\"related\":{\"type\":\"relation\",\"relation\":\"morphToMany\",\"configurable\":false},\"folder\":{\"type\":\"relation\",\"relation\":\"manyToOne\",\"target\":\"plugin::upload.folder\",\"inversedBy\":\"files\",\"private\":true},\"folderPath\":{\"type\":\"string\",\"minLength\":1,\"required\":true,\"private\":true,\"searchable\":false},\"createdAt\":{\"type\":\"datetime\"},\"updatedAt\":{\"type\":\"datetime\"},\"publishedAt\":{\"type\":\"datetime\",\"configurable\":false,\"writable\":true,\"visible\":false},\"createdBy\":{\"type\":\"relation\",\"relation\":\"oneToOne\",\"target\":\"admin::user\",\"configurable\":false,\"writable\":false,\"visible\":false,\"useJoinTable\":false,\"private\":true},\"updatedBy\":{\"type\":\"relation\",\"relation\":\"oneToOne\",\"target\":\"admin::user\",\"configurable\":false,\"writable\":false,\"visible\":false,\"useJoinTable\":false,\"private\":true},\"locale\":{\"writable\":true,\"private\":true,\"configurable\":false,\"visible\":false,\"type\":\"string\"},\"localizations\":{\"type\":\"relation\",\"relation\":\"oneToMany\",\"target\":\"plugin::upload.file\",\"writable\":false,\"private\":true,\"configurable\":false,\"visible\":false,\"unstable_virtual\":true,\"joinColumn\":{\"name\":\"document_id\",\"referencedColumn\":\"document_id\",\"referencedTable\":\"files\"}}},\"indexes\":[{\"name\":\"upload_files_folder_path_index\",\"columns\":[\"folder_path\"],\"type\":null},{\"name\":\"upload_files_created_at_index\",\"columns\":[\"created_at\"],\"type\":null},{\"name\":\"upload_files_updated_at_index\",\"columns\":[\"updated_at\"],\"type\":null},{\"name\":\"upload_files_name_index\",\"columns\":[\"name\"],\"type\":null},{\"name\":\"upload_files_size_index\",\"columns\":[\"size\"],\"type\":null},{\"name\":\"upload_files_ext_index\",\"columns\":[\"ext\"],\"type\":null}],\"plugin\":\"upload\",\"globalId\":\"UploadFile\",\"uid\":\"plugin::upload.file\",\"modelType\":\"contentType\",\"kind\":\"collectionType\",\"__schema__\":{\"collectionName\":\"files\",\"info\":{\"singularName\":\"file\",\"pluralName\":\"files\",\"displayName\":\"File\",\"description\":\"\"},\"options\":{},\"pluginOptions\":{\"content-manager\":{\"visible\":false},\"content-type-builder\":{\"visible\":false}},\"attributes\":{\"name\":{\"type\":\"string\",\"configurable\":false,\"required\":true},\"alternativeText\":{\"type\":\"string\",\"configurable\":false},\"caption\":{\"type\":\"string\",\"configurable\":false},\"width\":{\"type\":\"integer\",\"configurable\":false},\"height\":{\"type\":\"integer\",\"configurable\":false},\"formats\":{\"type\":\"json\",\"configurable\":false},\"hash\":{\"type\":\"string\",\"configurable\":false,\"required\":true},\"ext\":{\"type\":\"string\",\"configurable\":false},\"mime\":{\"type\":\"string\",\"configurable\":false,\"required\":true},\"size\":{\"type\":\"decimal\",\"configurable\":false,\"required\":true},\"url\":{\"type\":\"string\",\"configurable\":false,\"required\":true},\"previewUrl\":{\"type\":\"string\",\"configurable\":false},\"provider\":{\"type\":\"string\",\"configurable\":false,\"required\":true},\"provider_metadata\":{\"type\":\"json\",\"configurable\":false},\"related\":{\"type\":\"relation\",\"relation\":\"morphToMany\",\"configurable\":false},\"folder\":{\"type\":\"relation\",\"relation\":\"manyToOne\",\"target\":\"plugin::upload.folder\",\"inversedBy\":\"files\",\"private\":true},\"folderPath\":{\"type\":\"string\",\"minLength\":1,\"required\":true,\"private\":true,\"searchable\":false}},\"kind\":\"collectionType\"},\"modelName\":\"file\"},\"plugin::upload.folder\":{\"collectionName\":\"upload_folders\",\"info\":{\"singularName\":\"folder\",\"pluralName\":\"folders\",\"displayName\":\"Folder\"},\"options\":{\"draftAndPublish\":false},\"pluginOptions\":{\"content-manager\":{\"visible\":false},\"content-type-builder\":{\"visible\":false}},\"attributes\":{\"name\":{\"type\":\"string\",\"minLength\":1,\"required\":true},\"pathId\":{\"type\":\"integer\",\"unique\":true,\"required\":true},\"parent\":{\"type\":\"relation\",\"relation\":\"manyToOne\",\"target\":\"plugin::upload.folder\",\"inversedBy\":\"children\"},\"children\":{\"type\":\"relation\",\"relation\":\"oneToMany\",\"target\":\"plugin::upload.folder\",\"mappedBy\":\"parent\"},\"files\":{\"type\":\"relation\",\"relation\":\"oneToMany\",\"target\":\"plugin::upload.file\",\"mappedBy\":\"folder\"},\"path\":{\"type\":\"string\",\"minLength\":1,\"required\":true},\"createdAt\":{\"type\":\"datetime\"},\"updatedAt\":{\"type\":\"datetime\"},\"publishedAt\":{\"type\":\"datetime\",\"configurable\":false,\"writable\":true,\"visible\":false},\"createdBy\":{\"type\":\"relation\",\"relation\":\"oneToOne\",\"target\":\"admin::user\",\"configurable\":false,\"writable\":false,\"visible\":false,\"useJoinTable\":false,\"private\":true},\"updatedBy\":{\"type\":\"relation\",\"relation\":\"oneToOne\",\"target\":\"admin::user\",\"configurable\":false,\"writable\":false,\"visible\":false,\"useJoinTable\":false,\"private\":true},\"locale\":{\"writable\":true,\"private\":true,\"configurable\":false,\"visible\":false,\"type\":\"string\"},\"localizations\":{\"type\":\"relation\",\"relation\":\"oneToMany\",\"target\":\"plugin::upload.folder\",\"writable\":false,\"private\":true,\"configurable\":false,\"visible\":false,\"unstable_virtual\":true,\"joinColumn\":{\"name\":\"document_id\",\"referencedColumn\":\"document_id\",\"referencedTable\":\"upload_folders\"}}},\"indexes\":[{\"name\":\"upload_folders_path_id_index\",\"columns\":[\"path_id\"],\"type\":\"unique\"},{\"name\":\"upload_folders_path_index\",\"columns\":[\"path\"],\"type\":\"unique\"}],\"plugin\":\"upload\",\"globalId\":\"UploadFolder\",\"uid\":\"plugin::upload.folder\",\"modelType\":\"contentType\",\"kind\":\"collectionType\",\"__schema__\":{\"collectionName\":\"upload_folders\",\"info\":{\"singularName\":\"folder\",\"pluralName\":\"folders\",\"displayName\":\"Folder\"},\"options\":{},\"pluginOptions\":{\"content-manager\":{\"visible\":false},\"content-type-builder\":{\"visible\":false}},\"attributes\":{\"name\":{\"type\":\"string\",\"minLength\":1,\"required\":true},\"pathId\":{\"type\":\"integer\",\"unique\":true,\"required\":true},\"parent\":{\"type\":\"relation\",\"relation\":\"manyToOne\",\"target\":\"plugin::upload.folder\",\"inversedBy\":\"children\"},\"children\":{\"type\":\"relation\",\"relation\":\"oneToMany\",\"target\":\"plugin::upload.folder\",\"mappedBy\":\"parent\"},\"files\":{\"type\":\"relation\",\"relation\":\"oneToMany\",\"target\":\"plugin::upload.file\",\"mappedBy\":\"folder\"},\"path\":{\"type\":\"string\",\"minLength\":1,\"required\":true}},\"kind\":\"collectionType\"},\"modelName\":\"folder\"},\"plugin::i18n.locale\":{\"info\":{\"singularName\":\"locale\",\"pluralName\":\"locales\",\"collectionName\":\"locales\",\"displayName\":\"Locale\",\"description\":\"\"},\"options\":{\"draftAndPublish\":false},\"pluginOptions\":{\"content-manager\":{\"visible\":false},\"content-type-builder\":{\"visible\":false}},\"attributes\":{\"name\":{\"type\":\"string\",\"min\":1,\"max\":50,\"configurable\":false},\"code\":{\"type\":\"string\",\"unique\":true,\"configurable\":false},\"createdAt\":{\"type\":\"datetime\"},\"updatedAt\":{\"type\":\"datetime\"},\"publishedAt\":{\"type\":\"datetime\",\"configurable\":false,\"writable\":true,\"visible\":false},\"createdBy\":{\"type\":\"relation\",\"relation\":\"oneToOne\",\"target\":\"admin::user\",\"configurable\":false,\"writable\":false,\"visible\":false,\"useJoinTable\":false,\"private\":true},\"updatedBy\":{\"type\":\"relation\",\"relation\":\"oneToOne\",\"target\":\"admin::user\",\"configurable\":false,\"writable\":false,\"visible\":false,\"useJoinTable\":false,\"private\":true},\"locale\":{\"writable\":true,\"private\":true,\"configurable\":false,\"visible\":false,\"type\":\"string\"},\"localizations\":{\"type\":\"relation\",\"relation\":\"oneToMany\",\"target\":\"plugin::i18n.locale\",\"writable\":false,\"private\":true,\"configurable\":false,\"visible\":false,\"unstable_virtual\":true,\"joinColumn\":{\"name\":\"document_id\",\"referencedColumn\":\"document_id\",\"referencedTable\":\"i18n_locale\"}}},\"plugin\":\"i18n\",\"collectionName\":\"i18n_locale\",\"globalId\":\"I18NLocale\",\"uid\":\"plugin::i18n.locale\",\"modelType\":\"contentType\",\"kind\":\"collectionType\",\"__schema__\":{\"collectionName\":\"i18n_locale\",\"info\":{\"singularName\":\"locale\",\"pluralName\":\"locales\",\"collectionName\":\"locales\",\"displayName\":\"Locale\",\"description\":\"\"},\"options\":{},\"pluginOptions\":{\"content-manager\":{\"visible\":false},\"content-type-builder\":{\"visible\":false}},\"attributes\":{\"name\":{\"type\":\"string\",\"min\":1,\"max\":50,\"configurable\":false},\"code\":{\"type\":\"string\",\"unique\":true,\"configurable\":false}},\"kind\":\"collectionType\"},\"modelName\":\"locale\"},\"plugin::content-releases.release\":{\"collectionName\":\"strapi_releases\",\"info\":{\"singularName\":\"release\",\"pluralName\":\"releases\",\"displayName\":\"Release\"},\"options\":{\"draftAndPublish\":false},\"pluginOptions\":{\"content-manager\":{\"visible\":false},\"content-type-builder\":{\"visible\":false}},\"attributes\":{\"name\":{\"type\":\"string\",\"required\":true},\"releasedAt\":{\"type\":\"datetime\"},\"scheduledAt\":{\"type\":\"datetime\"},\"timezone\":{\"type\":\"string\"},\"status\":{\"type\":\"enumeration\",\"enum\":[\"ready\",\"blocked\",\"failed\",\"done\",\"empty\"],\"required\":true},\"actions\":{\"type\":\"relation\",\"relation\":\"oneToMany\",\"target\":\"plugin::content-releases.release-action\",\"mappedBy\":\"release\"},\"createdAt\":{\"type\":\"datetime\"},\"updatedAt\":{\"type\":\"datetime\"},\"publishedAt\":{\"type\":\"datetime\",\"configurable\":false,\"writable\":true,\"visible\":false},\"createdBy\":{\"type\":\"relation\",\"relation\":\"oneToOne\",\"target\":\"admin::user\",\"configurable\":false,\"writable\":false,\"visible\":false,\"useJoinTable\":false,\"private\":true},\"updatedBy\":{\"type\":\"relation\",\"relation\":\"oneToOne\",\"target\":\"admin::user\",\"configurable\":false,\"writable\":false,\"visible\":false,\"useJoinTable\":false,\"private\":true},\"locale\":{\"writable\":true,\"private\":true,\"configurable\":false,\"visible\":false,\"type\":\"string\"},\"localizations\":{\"type\":\"relation\",\"relation\":\"oneToMany\",\"target\":\"plugin::content-releases.release\",\"writable\":false,\"private\":true,\"configurable\":false,\"visible\":false,\"unstable_virtual\":true,\"joinColumn\":{\"name\":\"document_id\",\"referencedColumn\":\"document_id\",\"referencedTable\":\"strapi_releases\"}}},\"plugin\":\"content-releases\",\"globalId\":\"ContentReleasesRelease\",\"uid\":\"plugin::content-releases.release\",\"modelType\":\"contentType\",\"kind\":\"collectionType\",\"__schema__\":{\"collectionName\":\"strapi_releases\",\"info\":{\"singularName\":\"release\",\"pluralName\":\"releases\",\"displayName\":\"Release\"},\"options\":{\"draftAndPublish\":false},\"pluginOptions\":{\"content-manager\":{\"visible\":false},\"content-type-builder\":{\"visible\":false}},\"attributes\":{\"name\":{\"type\":\"string\",\"required\":true},\"releasedAt\":{\"type\":\"datetime\"},\"scheduledAt\":{\"type\":\"datetime\"},\"timezone\":{\"type\":\"string\"},\"status\":{\"type\":\"enumeration\",\"enum\":[\"ready\",\"blocked\",\"failed\",\"done\",\"empty\"],\"required\":true},\"actions\":{\"type\":\"relation\",\"relation\":\"oneToMany\",\"target\":\"plugin::content-releases.release-action\",\"mappedBy\":\"release\"}},\"kind\":\"collectionType\"},\"modelName\":\"release\"},\"plugin::content-releases.release-action\":{\"collectionName\":\"strapi_release_actions\",\"info\":{\"singularName\":\"release-action\",\"pluralName\":\"release-actions\",\"displayName\":\"Release Action\"},\"options\":{\"draftAndPublish\":false},\"pluginOptions\":{\"content-manager\":{\"visible\":false},\"content-type-builder\":{\"visible\":false}},\"attributes\":{\"type\":{\"type\":\"enumeration\",\"enum\":[\"publish\",\"unpublish\"],\"required\":true},\"contentType\":{\"type\":\"string\",\"required\":true},\"entryDocumentId\":{\"type\":\"string\"},\"locale\":{\"writable\":true,\"private\":true,\"configurable\":false,\"visible\":false,\"type\":\"string\"},\"release\":{\"type\":\"relation\",\"relation\":\"manyToOne\",\"target\":\"plugin::content-releases.release\",\"inversedBy\":\"actions\"},\"isEntryValid\":{\"type\":\"boolean\"},\"createdAt\":{\"type\":\"datetime\"},\"updatedAt\":{\"type\":\"datetime\"},\"publishedAt\":{\"type\":\"datetime\",\"configurable\":false,\"writable\":true,\"visible\":false},\"createdBy\":{\"type\":\"relation\",\"relation\":\"oneToOne\",\"target\":\"admin::user\",\"configurable\":false,\"writable\":false,\"visible\":false,\"useJoinTable\":false,\"private\":true},\"updatedBy\":{\"type\":\"relation\",\"relation\":\"oneToOne\",\"target\":\"admin::user\",\"configurable\":false,\"writable\":false,\"visible\":false,\"useJoinTable\":false,\"private\":true},\"localizations\":{\"type\":\"relation\",\"relation\":\"oneToMany\",\"target\":\"plugin::content-releases.release-action\",\"writable\":false,\"private\":true,\"configurable\":false,\"visible\":false,\"unstable_virtual\":true,\"joinColumn\":{\"name\":\"document_id\",\"referencedColumn\":\"document_id\",\"referencedTable\":\"strapi_release_actions\"}}},\"plugin\":\"content-releases\",\"globalId\":\"ContentReleasesReleaseAction\",\"uid\":\"plugin::content-releases.release-action\",\"modelType\":\"contentType\",\"kind\":\"collectionType\",\"__schema__\":{\"collectionName\":\"strapi_release_actions\",\"info\":{\"singularName\":\"release-action\",\"pluralName\":\"release-actions\",\"displayName\":\"Release Action\"},\"options\":{\"draftAndPublish\":false},\"pluginOptions\":{\"content-manager\":{\"visible\":false},\"content-type-builder\":{\"visible\":false}},\"attributes\":{\"type\":{\"type\":\"enumeration\",\"enum\":[\"publish\",\"unpublish\"],\"required\":true},\"contentType\":{\"type\":\"string\",\"required\":true},\"entryDocumentId\":{\"type\":\"string\"},\"locale\":{\"type\":\"string\"},\"release\":{\"type\":\"relation\",\"relation\":\"manyToOne\",\"target\":\"plugin::content-releases.release\",\"inversedBy\":\"actions\"},\"isEntryValid\":{\"type\":\"boolean\"}},\"kind\":\"collectionType\"},\"modelName\":\"release-action\"},\"plugin::review-workflows.workflow\":{\"collectionName\":\"strapi_workflows\",\"info\":{\"name\":\"Workflow\",\"description\":\"\",\"singularName\":\"workflow\",\"pluralName\":\"workflows\",\"displayName\":\"Workflow\"},\"options\":{\"draftAndPublish\":false},\"pluginOptions\":{\"content-manager\":{\"visible\":false},\"content-type-builder\":{\"visible\":false}},\"attributes\":{\"name\":{\"type\":\"string\",\"required\":true,\"unique\":true},\"stages\":{\"type\":\"relation\",\"target\":\"plugin::review-workflows.workflow-stage\",\"relation\":\"oneToMany\",\"mappedBy\":\"workflow\"},\"stageRequiredToPublish\":{\"type\":\"relation\",\"target\":\"plugin::review-workflows.workflow-stage\",\"relation\":\"oneToOne\",\"required\":false},\"contentTypes\":{\"type\":\"json\",\"required\":true,\"default\":\"[]\"},\"createdAt\":{\"type\":\"datetime\"},\"updatedAt\":{\"type\":\"datetime\"},\"publishedAt\":{\"type\":\"datetime\",\"configurable\":false,\"writable\":true,\"visible\":false},\"createdBy\":{\"type\":\"relation\",\"relation\":\"oneToOne\",\"target\":\"admin::user\",\"configurable\":false,\"writable\":false,\"visible\":false,\"useJoinTable\":false,\"private\":true},\"updatedBy\":{\"type\":\"relation\",\"relation\":\"oneToOne\",\"target\":\"admin::user\",\"configurable\":false,\"writable\":false,\"visible\":false,\"useJoinTable\":false,\"private\":true},\"locale\":{\"writable\":true,\"private\":true,\"configurable\":false,\"visible\":false,\"type\":\"string\"},\"localizations\":{\"type\":\"relation\",\"relation\":\"oneToMany\",\"target\":\"plugin::review-workflows.workflow\",\"writable\":false,\"private\":true,\"configurable\":false,\"visible\":false,\"unstable_virtual\":true,\"joinColumn\":{\"name\":\"document_id\",\"referencedColumn\":\"document_id\",\"referencedTable\":\"strapi_workflows\"}}},\"plugin\":\"review-workflows\",\"globalId\":\"ReviewWorkflowsWorkflow\",\"uid\":\"plugin::review-workflows.workflow\",\"modelType\":\"contentType\",\"kind\":\"collectionType\",\"__schema__\":{\"collectionName\":\"strapi_workflows\",\"info\":{\"name\":\"Workflow\",\"description\":\"\",\"singularName\":\"workflow\",\"pluralName\":\"workflows\",\"displayName\":\"Workflow\"},\"options\":{},\"pluginOptions\":{\"content-manager\":{\"visible\":false},\"content-type-builder\":{\"visible\":false}},\"attributes\":{\"name\":{\"type\":\"string\",\"required\":true,\"unique\":true},\"stages\":{\"type\":\"relation\",\"target\":\"plugin::review-workflows.workflow-stage\",\"relation\":\"oneToMany\",\"mappedBy\":\"workflow\"},\"stageRequiredToPublish\":{\"type\":\"relation\",\"target\":\"plugin::review-workflows.workflow-stage\",\"relation\":\"oneToOne\",\"required\":false},\"contentTypes\":{\"type\":\"json\",\"required\":true,\"default\":\"[]\"}},\"kind\":\"collectionType\"},\"modelName\":\"workflow\"},\"plugin::review-workflows.workflow-stage\":{\"collectionName\":\"strapi_workflows_stages\",\"info\":{\"name\":\"Workflow Stage\",\"description\":\"\",\"singularName\":\"workflow-stage\",\"pluralName\":\"workflow-stages\",\"displayName\":\"Stages\"},\"options\":{\"version\":\"1.1.0\",\"draftAndPublish\":false},\"pluginOptions\":{\"content-manager\":{\"visible\":false},\"content-type-builder\":{\"visible\":false}},\"attributes\":{\"name\":{\"type\":\"string\",\"configurable\":false},\"color\":{\"type\":\"string\",\"configurable\":false,\"default\":\"#4945FF\"},\"workflow\":{\"type\":\"relation\",\"target\":\"plugin::review-workflows.workflow\",\"relation\":\"manyToOne\",\"inversedBy\":\"stages\",\"configurable\":false},\"permissions\":{\"type\":\"relation\",\"target\":\"admin::permission\",\"relation\":\"manyToMany\",\"configurable\":false},\"createdAt\":{\"type\":\"datetime\"},\"updatedAt\":{\"type\":\"datetime\"},\"publishedAt\":{\"type\":\"datetime\",\"configurable\":false,\"writable\":true,\"visible\":false},\"createdBy\":{\"type\":\"relation\",\"relation\":\"oneToOne\",\"target\":\"admin::user\",\"configurable\":false,\"writable\":false,\"visible\":false,\"useJoinTable\":false,\"private\":true},\"updatedBy\":{\"type\":\"relation\",\"relation\":\"oneToOne\",\"target\":\"admin::user\",\"configurable\":false,\"writable\":false,\"visible\":false,\"useJoinTable\":false,\"private\":true},\"locale\":{\"writable\":true,\"private\":true,\"configurable\":false,\"visible\":false,\"type\":\"string\"},\"localizations\":{\"type\":\"relation\",\"relation\":\"oneToMany\",\"target\":\"plugin::review-workflows.workflow-stage\",\"writable\":false,\"private\":true,\"configurable\":false,\"visible\":false,\"unstable_virtual\":true,\"joinColumn\":{\"name\":\"document_id\",\"referencedColumn\":\"document_id\",\"referencedTable\":\"strapi_workflows_stages\"}}},\"plugin\":\"review-workflows\",\"globalId\":\"ReviewWorkflowsWorkflowStage\",\"uid\":\"plugin::review-workflows.workflow-stage\",\"modelType\":\"contentType\",\"kind\":\"collectionType\",\"__schema__\":{\"collectionName\":\"strapi_workflows_stages\",\"info\":{\"name\":\"Workflow Stage\",\"description\":\"\",\"singularName\":\"workflow-stage\",\"pluralName\":\"workflow-stages\",\"displayName\":\"Stages\"},\"options\":{\"version\":\"1.1.0\"},\"pluginOptions\":{\"content-manager\":{\"visible\":false},\"content-type-builder\":{\"visible\":false}},\"attributes\":{\"name\":{\"type\":\"string\",\"configurable\":false},\"color\":{\"type\":\"string\",\"configurable\":false,\"default\":\"#4945FF\"},\"workflow\":{\"type\":\"relation\",\"target\":\"plugin::review-workflows.workflow\",\"relation\":\"manyToOne\",\"inversedBy\":\"stages\",\"configurable\":false},\"permissions\":{\"type\":\"relation\",\"target\":\"admin::permission\",\"relation\":\"manyToMany\",\"configurable\":false}},\"kind\":\"collectionType\"},\"modelName\":\"workflow-stage\"},\"plugin::users-permissions.permission\":{\"collectionName\":\"up_permissions\",\"info\":{\"name\":\"permission\",\"description\":\"\",\"singularName\":\"permission\",\"pluralName\":\"permissions\",\"displayName\":\"Permission\"},\"pluginOptions\":{\"content-manager\":{\"visible\":false},\"content-type-builder\":{\"visible\":false}},\"attributes\":{\"action\":{\"type\":\"string\",\"required\":true,\"configurable\":false},\"role\":{\"type\":\"relation\",\"relation\":\"manyToOne\",\"target\":\"plugin::users-permissions.role\",\"inversedBy\":\"permissions\",\"configurable\":false},\"createdAt\":{\"type\":\"datetime\"},\"updatedAt\":{\"type\":\"datetime\"},\"publishedAt\":{\"type\":\"datetime\",\"configurable\":false,\"writable\":true,\"visible\":false},\"createdBy\":{\"type\":\"relation\",\"relation\":\"oneToOne\",\"target\":\"admin::user\",\"configurable\":false,\"writable\":false,\"visible\":false,\"useJoinTable\":false,\"private\":true},\"updatedBy\":{\"type\":\"relation\",\"relation\":\"oneToOne\",\"target\":\"admin::user\",\"configurable\":false,\"writable\":false,\"visible\":false,\"useJoinTable\":false,\"private\":true},\"locale\":{\"writable\":true,\"private\":true,\"configurable\":false,\"visible\":false,\"type\":\"string\"},\"localizations\":{\"type\":\"relation\",\"relation\":\"oneToMany\",\"target\":\"plugin::users-permissions.permission\",\"writable\":false,\"private\":true,\"configurable\":false,\"visible\":false,\"unstable_virtual\":true,\"joinColumn\":{\"name\":\"document_id\",\"referencedColumn\":\"document_id\",\"referencedTable\":\"up_permissions\"}}},\"plugin\":\"users-permissions\",\"globalId\":\"UsersPermissionsPermission\",\"uid\":\"plugin::users-permissions.permission\",\"modelType\":\"contentType\",\"kind\":\"collectionType\",\"__schema__\":{\"collectionName\":\"up_permissions\",\"info\":{\"name\":\"permission\",\"description\":\"\",\"singularName\":\"permission\",\"pluralName\":\"permissions\",\"displayName\":\"Permission\"},\"pluginOptions\":{\"content-manager\":{\"visible\":false},\"content-type-builder\":{\"visible\":false}},\"attributes\":{\"action\":{\"type\":\"string\",\"required\":true,\"configurable\":false},\"role\":{\"type\":\"relation\",\"relation\":\"manyToOne\",\"target\":\"plugin::users-permissions.role\",\"inversedBy\":\"permissions\",\"configurable\":false}},\"kind\":\"collectionType\"},\"modelName\":\"permission\",\"options\":{\"draftAndPublish\":false}},\"plugin::users-permissions.role\":{\"collectionName\":\"up_roles\",\"info\":{\"name\":\"role\",\"description\":\"\",\"singularName\":\"role\",\"pluralName\":\"roles\",\"displayName\":\"Role\"},\"pluginOptions\":{\"content-manager\":{\"visible\":false},\"content-type-builder\":{\"visible\":false}},\"attributes\":{\"name\":{\"type\":\"string\",\"minLength\":3,\"required\":true,\"configurable\":false},\"description\":{\"type\":\"string\",\"configurable\":false},\"type\":{\"type\":\"string\",\"unique\":true,\"configurable\":false},\"permissions\":{\"type\":\"relation\",\"relation\":\"oneToMany\",\"target\":\"plugin::users-permissions.permission\",\"mappedBy\":\"role\",\"configurable\":false},\"users\":{\"type\":\"relation\",\"relation\":\"oneToMany\",\"target\":\"plugin::users-permissions.user\",\"mappedBy\":\"role\",\"configurable\":false},\"createdAt\":{\"type\":\"datetime\"},\"updatedAt\":{\"type\":\"datetime\"},\"publishedAt\":{\"type\":\"datetime\",\"configurable\":false,\"writable\":true,\"visible\":false},\"createdBy\":{\"type\":\"relation\",\"relation\":\"oneToOne\",\"target\":\"admin::user\",\"configurable\":false,\"writable\":false,\"visible\":false,\"useJoinTable\":false,\"private\":true},\"updatedBy\":{\"type\":\"relation\",\"relation\":\"oneToOne\",\"target\":\"admin::user\",\"configurable\":false,\"writable\":false,\"visible\":false,\"useJoinTable\":false,\"private\":true},\"locale\":{\"writable\":true,\"private\":true,\"configurable\":false,\"visible\":false,\"type\":\"string\"},\"localizations\":{\"type\":\"relation\",\"relation\":\"oneToMany\",\"target\":\"plugin::users-permissions.role\",\"writable\":false,\"private\":true,\"configurable\":false,\"visible\":false,\"unstable_virtual\":true,\"joinColumn\":{\"name\":\"document_id\",\"referencedColumn\":\"document_id\",\"referencedTable\":\"up_roles\"}}},\"plugin\":\"users-permissions\",\"globalId\":\"UsersPermissionsRole\",\"uid\":\"plugin::users-permissions.role\",\"modelType\":\"contentType\",\"kind\":\"collectionType\",\"__schema__\":{\"collectionName\":\"up_roles\",\"info\":{\"name\":\"role\",\"description\":\"\",\"singularName\":\"role\",\"pluralName\":\"roles\",\"displayName\":\"Role\"},\"pluginOptions\":{\"content-manager\":{\"visible\":false},\"content-type-builder\":{\"visible\":false}},\"attributes\":{\"name\":{\"type\":\"string\",\"minLength\":3,\"required\":true,\"configurable\":false},\"description\":{\"type\":\"string\",\"configurable\":false},\"type\":{\"type\":\"string\",\"unique\":true,\"configurable\":false},\"permissions\":{\"type\":\"relation\",\"relation\":\"oneToMany\",\"target\":\"plugin::users-permissions.permission\",\"mappedBy\":\"role\",\"configurable\":false},\"users\":{\"type\":\"relation\",\"relation\":\"oneToMany\",\"target\":\"plugin::users-permissions.user\",\"mappedBy\":\"role\",\"configurable\":false}},\"kind\":\"collectionType\"},\"modelName\":\"role\",\"options\":{\"draftAndPublish\":false}},\"plugin::users-permissions.user\":{\"collectionName\":\"up_users\",\"info\":{\"name\":\"user\",\"description\":\"\",\"singularName\":\"user\",\"pluralName\":\"users\",\"displayName\":\"User\"},\"options\":{\"timestamps\":true,\"draftAndPublish\":false},\"attributes\":{\"username\":{\"type\":\"string\",\"minLength\":3,\"unique\":true,\"configurable\":false,\"required\":true},\"email\":{\"type\":\"email\",\"minLength\":6,\"configurable\":false,\"required\":true},\"provider\":{\"type\":\"string\",\"configurable\":false},\"password\":{\"type\":\"password\",\"minLength\":6,\"configurable\":false,\"private\":true,\"searchable\":false},\"resetPasswordToken\":{\"type\":\"string\",\"configurable\":false,\"private\":true,\"searchable\":false},\"confirmationToken\":{\"type\":\"string\",\"configurable\":false,\"private\":true,\"searchable\":false},\"confirmed\":{\"type\":\"boolean\",\"default\":false,\"configurable\":false},\"blocked\":{\"type\":\"boolean\",\"default\":false,\"configurable\":false},\"role\":{\"type\":\"relation\",\"relation\":\"manyToOne\",\"target\":\"plugin::users-permissions.role\",\"inversedBy\":\"users\",\"configurable\":false},\"createdAt\":{\"type\":\"datetime\"},\"updatedAt\":{\"type\":\"datetime\"},\"publishedAt\":{\"type\":\"datetime\",\"configurable\":false,\"writable\":true,\"visible\":false},\"createdBy\":{\"type\":\"relation\",\"relation\":\"oneToOne\",\"target\":\"admin::user\",\"configurable\":false,\"writable\":false,\"visible\":false,\"useJoinTable\":false,\"private\":true},\"updatedBy\":{\"type\":\"relation\",\"relation\":\"oneToOne\",\"target\":\"admin::user\",\"configurable\":false,\"writable\":false,\"visible\":false,\"useJoinTable\":false,\"private\":true},\"locale\":{\"writable\":true,\"private\":true,\"configurable\":false,\"visible\":false,\"type\":\"string\"},\"localizations\":{\"type\":\"relation\",\"relation\":\"oneToMany\",\"target\":\"plugin::users-permissions.user\",\"writable\":false,\"private\":true,\"configurable\":false,\"visible\":false,\"unstable_virtual\":true,\"joinColumn\":{\"name\":\"document_id\",\"referencedColumn\":\"document_id\",\"referencedTable\":\"up_users\"}}},\"config\":{\"attributes\":{\"resetPasswordToken\":{\"hidden\":true},\"confirmationToken\":{\"hidden\":true},\"provider\":{\"hidden\":true}}},\"plugin\":\"users-permissions\",\"globalId\":\"UsersPermissionsUser\",\"uid\":\"plugin::users-permissions.user\",\"modelType\":\"contentType\",\"kind\":\"collectionType\",\"__schema__\":{\"collectionName\":\"up_users\",\"info\":{\"name\":\"user\",\"description\":\"\",\"singularName\":\"user\",\"pluralName\":\"users\",\"displayName\":\"User\"},\"options\":{\"timestamps\":true},\"attributes\":{\"username\":{\"type\":\"string\",\"minLength\":3,\"unique\":true,\"configurable\":false,\"required\":true},\"email\":{\"type\":\"email\",\"minLength\":6,\"configurable\":false,\"required\":true},\"provider\":{\"type\":\"string\",\"configurable\":false},\"password\":{\"type\":\"password\",\"minLength\":6,\"configurable\":false,\"private\":true,\"searchable\":false},\"resetPasswordToken\":{\"type\":\"string\",\"configurable\":false,\"private\":true,\"searchable\":false},\"confirmationToken\":{\"type\":\"string\",\"configurable\":false,\"private\":true,\"searchable\":false},\"confirmed\":{\"type\":\"boolean\",\"default\":false,\"configurable\":false},\"blocked\":{\"type\":\"boolean\",\"default\":false,\"configurable\":false},\"role\":{\"type\":\"relation\",\"relation\":\"manyToOne\",\"target\":\"plugin::users-permissions.role\",\"inversedBy\":\"users\",\"configurable\":false}},\"kind\":\"collectionType\"},\"modelName\":\"user\"},\"api::about-us.about-us\":{\"kind\":\"singleType\",\"collectionName\":\"about_uses\",\"info\":{\"singularName\":\"about-us\",\"pluralName\":\"about-uses\",\"displayName\":\"aboutUs\"},\"options\":{\"draftAndPublish\":true},\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"attributes\":{\"subTitle\":{\"type\":\"string\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"title\":{\"type\":\"string\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"description\":{\"type\":\"richtext\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"customField\":\"plugin::ckeditor5.CKEditor\",\"options\":{\"preset\":\"default\"}},\"aboutSection\":{\"type\":\"component\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"component\":\"common.title-desc-with-img\",\"repeatable\":false},\"cardSection\":{\"type\":\"component\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"component\":\"common.title-desc-with-img\",\"repeatable\":true},\"sectionTitle\":{\"type\":\"string\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"sectionDescription\":{\"type\":\"richtext\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"customField\":\"plugin::ckeditor5.CKEditor\",\"options\":{\"preset\":\"default\"}},\"sections\":{\"type\":\"component\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"component\":\"common.title-desc-btn-img\",\"repeatable\":true},\"seo\":{\"type\":\"component\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"component\":\"common.seo\",\"repeatable\":false},\"createdAt\":{\"type\":\"datetime\"},\"updatedAt\":{\"type\":\"datetime\"},\"publishedAt\":{\"type\":\"datetime\",\"configurable\":false,\"writable\":true,\"visible\":false},\"createdBy\":{\"type\":\"relation\",\"relation\":\"oneToOne\",\"target\":\"admin::user\",\"configurable\":false,\"writable\":false,\"visible\":false,\"useJoinTable\":false,\"private\":true},\"updatedBy\":{\"type\":\"relation\",\"relation\":\"oneToOne\",\"target\":\"admin::user\",\"configurable\":false,\"writable\":false,\"visible\":false,\"useJoinTable\":false,\"private\":true},\"locale\":{\"writable\":true,\"private\":false,\"configurable\":false,\"visible\":false,\"type\":\"string\"},\"localizations\":{\"type\":\"relation\",\"relation\":\"oneToMany\",\"target\":\"api::about-us.about-us\",\"writable\":false,\"private\":false,\"configurable\":false,\"visible\":false,\"unstable_virtual\":true,\"joinColumn\":{\"name\":\"document_id\",\"referencedColumn\":\"document_id\",\"referencedTable\":\"about_uses\"}}},\"apiName\":\"about-us\",\"globalId\":\"AboutUs\",\"uid\":\"api::about-us.about-us\",\"modelType\":\"contentType\",\"__schema__\":{\"collectionName\":\"about_uses\",\"info\":{\"singularName\":\"about-us\",\"pluralName\":\"about-uses\",\"displayName\":\"aboutUs\"},\"options\":{\"draftAndPublish\":true},\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"attributes\":{\"subTitle\":{\"type\":\"string\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"title\":{\"type\":\"string\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"description\":{\"type\":\"customField\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"customField\":\"plugin::ckeditor5.CKEditor\",\"options\":{\"preset\":\"default\"}},\"aboutSection\":{\"type\":\"component\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"component\":\"common.title-desc-with-img\",\"repeatable\":false},\"cardSection\":{\"type\":\"component\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"component\":\"common.title-desc-with-img\",\"repeatable\":true},\"sectionTitle\":{\"type\":\"string\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"sectionDescription\":{\"type\":\"customField\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"customField\":\"plugin::ckeditor5.CKEditor\",\"options\":{\"preset\":\"default\"}},\"sections\":{\"type\":\"component\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"component\":\"common.title-desc-btn-img\",\"repeatable\":true},\"seo\":{\"type\":\"component\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"component\":\"common.seo\",\"repeatable\":false}},\"kind\":\"singleType\"},\"modelName\":\"about-us\",\"actions\":{},\"lifecycles\":{}},\"api::automotive-landing.automotive-landing\":{\"kind\":\"singleType\",\"collectionName\":\"automotive_landings\",\"info\":{\"singularName\":\"automotive-landing\",\"pluralName\":\"automotive-landings\",\"displayName\":\"AutomotiveLanding\"},\"options\":{\"draftAndPublish\":true},\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"attributes\":{\"title\":{\"type\":\"string\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"banner\":{\"type\":\"component\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"component\":\"common.banner\",\"repeatable\":true},\"seo\":{\"type\":\"component\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"component\":\"common.seo\",\"repeatable\":false},\"locationTypes\":{\"type\":\"relation\",\"relation\":\"oneToMany\",\"target\":\"api::branch-location.branch-location\"},\"socialFeeds\":{\"type\":\"component\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"component\":\"home.content-section\",\"repeatable\":false},\"createdAt\":{\"type\":\"datetime\"},\"updatedAt\":{\"type\":\"datetime\"},\"publishedAt\":{\"type\":\"datetime\",\"configurable\":false,\"writable\":true,\"visible\":false},\"createdBy\":{\"type\":\"relation\",\"relation\":\"oneToOne\",\"target\":\"admin::user\",\"configurable\":false,\"writable\":false,\"visible\":false,\"useJoinTable\":false,\"private\":true},\"updatedBy\":{\"type\":\"relation\",\"relation\":\"oneToOne\",\"target\":\"admin::user\",\"configurable\":false,\"writable\":false,\"visible\":false,\"useJoinTable\":false,\"private\":true},\"locale\":{\"writable\":true,\"private\":false,\"configurable\":false,\"visible\":false,\"type\":\"string\"},\"localizations\":{\"type\":\"relation\",\"relation\":\"oneToMany\",\"target\":\"api::automotive-landing.automotive-landing\",\"writable\":false,\"private\":false,\"configurable\":false,\"visible\":false,\"unstable_virtual\":true,\"joinColumn\":{\"name\":\"document_id\",\"referencedColumn\":\"document_id\",\"referencedTable\":\"automotive_landings\"}}},\"apiName\":\"automotive-landing\",\"globalId\":\"AutomotiveLanding\",\"uid\":\"api::automotive-landing.automotive-landing\",\"modelType\":\"contentType\",\"__schema__\":{\"collectionName\":\"automotive_landings\",\"info\":{\"singularName\":\"automotive-landing\",\"pluralName\":\"automotive-landings\",\"displayName\":\"AutomotiveLanding\"},\"options\":{\"draftAndPublish\":true},\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"attributes\":{\"title\":{\"type\":\"string\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"banner\":{\"type\":\"component\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"component\":\"common.banner\",\"repeatable\":true},\"seo\":{\"type\":\"component\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"component\":\"common.seo\",\"repeatable\":false},\"locationTypes\":{\"type\":\"relation\",\"relation\":\"oneToMany\",\"target\":\"api::branch-location.branch-location\"},\"socialFeeds\":{\"type\":\"component\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"component\":\"home.content-section\",\"repeatable\":false}},\"kind\":\"singleType\"},\"modelName\":\"automotive-landing\",\"actions\":{},\"lifecycles\":{}},\"api::branch.branch\":{\"kind\":\"collectionType\",\"collectionName\":\"branches\",\"info\":{\"singularName\":\"branch\",\"pluralName\":\"branches\",\"displayName\":\"branch\"},\"options\":{\"draftAndPublish\":true},\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"attributes\":{\"title\":{\"type\":\"string\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"slug\":{\"type\":\"string\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"required\":true,\"unique\":true},\"address\":{\"type\":\"text\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"branchLocation\":{\"type\":\"relation\",\"relation\":\"oneToMany\",\"target\":\"api::branch-location.branch-location\"},\"phoneNumbers\":{\"type\":\"component\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"component\":\"common.phone\",\"repeatable\":true},\"image\":{\"type\":\"media\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"multiple\":false,\"allowedTypes\":[\"images\",\"files\",\"videos\",\"audios\"]},\"seo\":{\"type\":\"component\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"component\":\"common.seo\",\"repeatable\":false},\"previewImage\":{\"type\":\"media\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"multiple\":false,\"allowedTypes\":[\"images\",\"files\",\"videos\",\"audios\"]},\"embededMapUrl\":{\"type\":\"text\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"mapUrl\":{\"type\":\"text\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"isFeatured\":{\"type\":\"boolean\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"default\":false},\"type\":{\"type\":\"enumeration\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"enum\":[\"CME Branch Office\",\"Service Locations\",\"Ware houses\"]},\"locationSortOrder\":{\"type\":\"integer\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"products\":{\"type\":\"relation\",\"relation\":\"oneToMany\",\"target\":\"api::business-stream.business-stream\"},\"createdAt\":{\"type\":\"datetime\"},\"updatedAt\":{\"type\":\"datetime\"},\"publishedAt\":{\"type\":\"datetime\",\"configurable\":false,\"writable\":true,\"visible\":false},\"createdBy\":{\"type\":\"relation\",\"relation\":\"oneToOne\",\"target\":\"admin::user\",\"configurable\":false,\"writable\":false,\"visible\":false,\"useJoinTable\":false,\"private\":true},\"updatedBy\":{\"type\":\"relation\",\"relation\":\"oneToOne\",\"target\":\"admin::user\",\"configurable\":false,\"writable\":false,\"visible\":false,\"useJoinTable\":false,\"private\":true},\"locale\":{\"writable\":true,\"private\":false,\"configurable\":false,\"visible\":false,\"type\":\"string\"},\"localizations\":{\"type\":\"relation\",\"relation\":\"oneToMany\",\"target\":\"api::branch.branch\",\"writable\":false,\"private\":false,\"configurable\":false,\"visible\":false,\"unstable_virtual\":true,\"joinColumn\":{\"name\":\"document_id\",\"referencedColumn\":\"document_id\",\"referencedTable\":\"branches\"}}},\"apiName\":\"branch\",\"globalId\":\"Branch\",\"uid\":\"api::branch.branch\",\"modelType\":\"contentType\",\"__schema__\":{\"collectionName\":\"branches\",\"info\":{\"singularName\":\"branch\",\"pluralName\":\"branches\",\"displayName\":\"branch\"},\"options\":{\"draftAndPublish\":true},\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"attributes\":{\"title\":{\"type\":\"string\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"slug\":{\"type\":\"string\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"required\":true,\"unique\":true},\"address\":{\"type\":\"text\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"branchLocation\":{\"type\":\"relation\",\"relation\":\"oneToMany\",\"target\":\"api::branch-location.branch-location\"},\"phoneNumbers\":{\"type\":\"component\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"component\":\"common.phone\",\"repeatable\":true},\"image\":{\"type\":\"media\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"multiple\":false,\"allowedTypes\":[\"images\",\"files\",\"videos\",\"audios\"]},\"seo\":{\"type\":\"component\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"component\":\"common.seo\",\"repeatable\":false},\"previewImage\":{\"type\":\"media\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"multiple\":false,\"allowedTypes\":[\"images\",\"files\",\"videos\",\"audios\"]},\"embededMapUrl\":{\"type\":\"text\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"mapUrl\":{\"type\":\"text\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"isFeatured\":{\"type\":\"boolean\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"default\":false},\"type\":{\"type\":\"enumeration\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"enum\":[\"CME Branch Office\",\"Service Locations\",\"Ware houses\"]},\"locationSortOrder\":{\"type\":\"integer\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"products\":{\"type\":\"relation\",\"relation\":\"oneToMany\",\"target\":\"api::business-stream.business-stream\"}},\"kind\":\"collectionType\"},\"modelName\":\"branch\",\"actions\":{},\"lifecycles\":{}},\"api::branch-location.branch-location\":{\"kind\":\"collectionType\",\"collectionName\":\"branch_locations\",\"info\":{\"singularName\":\"branch-location\",\"pluralName\":\"branch-locations\",\"displayName\":\"branchLocation\"},\"options\":{\"draftAndPublish\":true},\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"attributes\":{\"title\":{\"type\":\"string\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"key\":{\"type\":\"string\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"tabSortOrder\":{\"type\":\"integer\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"createdAt\":{\"type\":\"datetime\"},\"updatedAt\":{\"type\":\"datetime\"},\"publishedAt\":{\"type\":\"datetime\",\"configurable\":false,\"writable\":true,\"visible\":false},\"createdBy\":{\"type\":\"relation\",\"relation\":\"oneToOne\",\"target\":\"admin::user\",\"configurable\":false,\"writable\":false,\"visible\":false,\"useJoinTable\":false,\"private\":true},\"updatedBy\":{\"type\":\"relation\",\"relation\":\"oneToOne\",\"target\":\"admin::user\",\"configurable\":false,\"writable\":false,\"visible\":false,\"useJoinTable\":false,\"private\":true},\"locale\":{\"writable\":true,\"private\":false,\"configurable\":false,\"visible\":false,\"type\":\"string\"},\"localizations\":{\"type\":\"relation\",\"relation\":\"oneToMany\",\"target\":\"api::branch-location.branch-location\",\"writable\":false,\"private\":false,\"configurable\":false,\"visible\":false,\"unstable_virtual\":true,\"joinColumn\":{\"name\":\"document_id\",\"referencedColumn\":\"document_id\",\"referencedTable\":\"branch_locations\"}}},\"apiName\":\"branch-location\",\"globalId\":\"BranchLocation\",\"uid\":\"api::branch-location.branch-location\",\"modelType\":\"contentType\",\"__schema__\":{\"collectionName\":\"branch_locations\",\"info\":{\"singularName\":\"branch-location\",\"pluralName\":\"branch-locations\",\"displayName\":\"branchLocation\"},\"options\":{\"draftAndPublish\":true},\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"attributes\":{\"title\":{\"type\":\"string\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"key\":{\"type\":\"string\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"tabSortOrder\":{\"type\":\"integer\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}}},\"kind\":\"collectionType\"},\"modelName\":\"branch-location\",\"actions\":{},\"lifecycles\":{}},\"api::brand.brand\":{\"kind\":\"collectionType\",\"collectionName\":\"brands\",\"info\":{\"singularName\":\"brand\",\"pluralName\":\"brands\",\"displayName\":\"brands\"},\"options\":{\"draftAndPublish\":true},\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"attributes\":{\"title\":{\"type\":\"string\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"image\":{\"type\":\"media\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"multiple\":false,\"allowedTypes\":[\"images\",\"files\",\"videos\",\"audios\"]},\"types\":{\"type\":\"relation\",\"relation\":\"oneToMany\",\"target\":\"api::type.type\"},\"commonUrl\":{\"type\":\"text\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"enableCommonUrl\":{\"type\":\"boolean\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"default\":false},\"automotiveUrl\":{\"type\":\"text\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"enableAutomotiveUrl\":{\"type\":\"boolean\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"default\":false},\"powerToolUrl\":{\"type\":\"text\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"enablePowerToolUrl\":{\"type\":\"boolean\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"default\":false},\"tyreUrl\":{\"type\":\"text\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"enableTyreUrl\":{\"type\":\"boolean\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"default\":false},\"isFeatured\":{\"type\":\"boolean\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"default\":false},\"createdAt\":{\"type\":\"datetime\"},\"updatedAt\":{\"type\":\"datetime\"},\"publishedAt\":{\"type\":\"datetime\",\"configurable\":false,\"writable\":true,\"visible\":false},\"createdBy\":{\"type\":\"relation\",\"relation\":\"oneToOne\",\"target\":\"admin::user\",\"configurable\":false,\"writable\":false,\"visible\":false,\"useJoinTable\":false,\"private\":true},\"updatedBy\":{\"type\":\"relation\",\"relation\":\"oneToOne\",\"target\":\"admin::user\",\"configurable\":false,\"writable\":false,\"visible\":false,\"useJoinTable\":false,\"private\":true},\"locale\":{\"writable\":true,\"private\":false,\"configurable\":false,\"visible\":false,\"type\":\"string\"},\"localizations\":{\"type\":\"relation\",\"relation\":\"oneToMany\",\"target\":\"api::brand.brand\",\"writable\":false,\"private\":false,\"configurable\":false,\"visible\":false,\"unstable_virtual\":true,\"joinColumn\":{\"name\":\"document_id\",\"referencedColumn\":\"document_id\",\"referencedTable\":\"brands\"}}},\"apiName\":\"brand\",\"globalId\":\"Brand\",\"uid\":\"api::brand.brand\",\"modelType\":\"contentType\",\"__schema__\":{\"collectionName\":\"brands\",\"info\":{\"singularName\":\"brand\",\"pluralName\":\"brands\",\"displayName\":\"brands\"},\"options\":{\"draftAndPublish\":true},\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"attributes\":{\"title\":{\"type\":\"string\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"image\":{\"type\":\"media\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"multiple\":false,\"allowedTypes\":[\"images\",\"files\",\"videos\",\"audios\"]},\"types\":{\"type\":\"relation\",\"relation\":\"oneToMany\",\"target\":\"api::type.type\"},\"commonUrl\":{\"type\":\"text\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"enableCommonUrl\":{\"type\":\"boolean\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"default\":false},\"automotiveUrl\":{\"type\":\"text\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"enableAutomotiveUrl\":{\"type\":\"boolean\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"default\":false},\"powerToolUrl\":{\"type\":\"text\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"enablePowerToolUrl\":{\"type\":\"boolean\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"default\":false},\"tyreUrl\":{\"type\":\"text\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"enableTyreUrl\":{\"type\":\"boolean\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"default\":false},\"isFeatured\":{\"type\":\"boolean\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"default\":false}},\"kind\":\"collectionType\"},\"modelName\":\"brand\",\"actions\":{},\"lifecycles\":{}},\"api::business-stream.business-stream\":{\"kind\":\"collectionType\",\"collectionName\":\"business_streams\",\"info\":{\"singularName\":\"business-stream\",\"pluralName\":\"business-streams\",\"displayName\":\"products\"},\"options\":{\"draftAndPublish\":true},\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"attributes\":{\"title\":{\"type\":\"string\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"slug\":{\"type\":\"string\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"required\":true,\"unique\":true},\"smallDescription\":{\"type\":\"text\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"image\":{\"type\":\"media\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"multiple\":false,\"allowedTypes\":[\"images\",\"files\",\"videos\",\"audios\"]},\"seo\":{\"type\":\"component\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"component\":\"common.seo\",\"repeatable\":false},\"homePageSortOrder\":{\"type\":\"integer\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"createdAt\":{\"type\":\"datetime\"},\"updatedAt\":{\"type\":\"datetime\"},\"publishedAt\":{\"type\":\"datetime\",\"configurable\":false,\"writable\":true,\"visible\":false},\"createdBy\":{\"type\":\"relation\",\"relation\":\"oneToOne\",\"target\":\"admin::user\",\"configurable\":false,\"writable\":false,\"visible\":false,\"useJoinTable\":false,\"private\":true},\"updatedBy\":{\"type\":\"relation\",\"relation\":\"oneToOne\",\"target\":\"admin::user\",\"configurable\":false,\"writable\":false,\"visible\":false,\"useJoinTable\":false,\"private\":true},\"locale\":{\"writable\":true,\"private\":false,\"configurable\":false,\"visible\":false,\"type\":\"string\"},\"localizations\":{\"type\":\"relation\",\"relation\":\"oneToMany\",\"target\":\"api::business-stream.business-stream\",\"writable\":false,\"private\":false,\"configurable\":false,\"visible\":false,\"unstable_virtual\":true,\"joinColumn\":{\"name\":\"document_id\",\"referencedColumn\":\"document_id\",\"referencedTable\":\"business_streams\"}}},\"apiName\":\"business-stream\",\"globalId\":\"BusinessStream\",\"uid\":\"api::business-stream.business-stream\",\"modelType\":\"contentType\",\"__schema__\":{\"collectionName\":\"business_streams\",\"info\":{\"singularName\":\"business-stream\",\"pluralName\":\"business-streams\",\"displayName\":\"products\"},\"options\":{\"draftAndPublish\":true},\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"attributes\":{\"title\":{\"type\":\"string\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"slug\":{\"type\":\"string\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"required\":true,\"unique\":true},\"smallDescription\":{\"type\":\"text\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"image\":{\"type\":\"media\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"multiple\":false,\"allowedTypes\":[\"images\",\"files\",\"videos\",\"audios\"]},\"seo\":{\"type\":\"component\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"component\":\"common.seo\",\"repeatable\":false},\"homePageSortOrder\":{\"type\":\"integer\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}}},\"kind\":\"collectionType\"},\"modelName\":\"business-stream\",\"actions\":{},\"lifecycles\":{}},\"api::contact-enquiry.contact-enquiry\":{\"kind\":\"collectionType\",\"collectionName\":\"contact_enquiries\",\"info\":{\"singularName\":\"contact-enquiry\",\"pluralName\":\"contact-enquiries\",\"displayName\":\"contactEnquiry\"},\"options\":{\"draftAndPublish\":true},\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"attributes\":{\"fullName\":{\"type\":\"string\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"email\":{\"type\":\"string\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"phoneNumber\":{\"type\":\"string\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"message\":{\"type\":\"text\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"enquiryType\":{\"type\":\"string\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"createdAt\":{\"type\":\"datetime\"},\"updatedAt\":{\"type\":\"datetime\"},\"publishedAt\":{\"type\":\"datetime\",\"configurable\":false,\"writable\":true,\"visible\":false},\"createdBy\":{\"type\":\"relation\",\"relation\":\"oneToOne\",\"target\":\"admin::user\",\"configurable\":false,\"writable\":false,\"visible\":false,\"useJoinTable\":false,\"private\":true},\"updatedBy\":{\"type\":\"relation\",\"relation\":\"oneToOne\",\"target\":\"admin::user\",\"configurable\":false,\"writable\":false,\"visible\":false,\"useJoinTable\":false,\"private\":true},\"locale\":{\"writable\":true,\"private\":false,\"configurable\":false,\"visible\":false,\"type\":\"string\"},\"localizations\":{\"type\":\"relation\",\"relation\":\"oneToMany\",\"target\":\"api::contact-enquiry.contact-enquiry\",\"writable\":false,\"private\":false,\"configurable\":false,\"visible\":false,\"unstable_virtual\":true,\"joinColumn\":{\"name\":\"document_id\",\"referencedColumn\":\"document_id\",\"referencedTable\":\"contact_enquiries\"}}},\"apiName\":\"contact-enquiry\",\"globalId\":\"ContactEnquiry\",\"uid\":\"api::contact-enquiry.contact-enquiry\",\"modelType\":\"contentType\",\"__schema__\":{\"collectionName\":\"contact_enquiries\",\"info\":{\"singularName\":\"contact-enquiry\",\"pluralName\":\"contact-enquiries\",\"displayName\":\"contactEnquiry\"},\"options\":{\"draftAndPublish\":true},\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"attributes\":{\"fullName\":{\"type\":\"string\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"email\":{\"type\":\"string\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"phoneNumber\":{\"type\":\"string\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"message\":{\"type\":\"text\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"enquiryType\":{\"type\":\"string\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}}},\"kind\":\"collectionType\"},\"modelName\":\"contact-enquiry\",\"actions\":{},\"lifecycles\":{}},\"api::contact-us.contact-us\":{\"kind\":\"singleType\",\"collectionName\":\"contact_uses\",\"info\":{\"singularName\":\"contact-us\",\"pluralName\":\"contact-uses\",\"displayName\":\"contactUs\"},\"options\":{\"draftAndPublish\":true},\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"attributes\":{\"banner\":{\"type\":\"component\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"component\":\"common.banner\",\"repeatable\":true},\"boxComponent\":{\"type\":\"component\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"component\":\"common.box-component\",\"repeatable\":false},\"formTitle\":{\"type\":\"string\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"seo\":{\"type\":\"component\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"component\":\"common.seo\",\"repeatable\":false},\"locations\":{\"type\":\"relation\",\"relation\":\"oneToMany\",\"target\":\"api::branch-location.branch-location\"},\"createdAt\":{\"type\":\"datetime\"},\"updatedAt\":{\"type\":\"datetime\"},\"publishedAt\":{\"type\":\"datetime\",\"configurable\":false,\"writable\":true,\"visible\":false},\"createdBy\":{\"type\":\"relation\",\"relation\":\"oneToOne\",\"target\":\"admin::user\",\"configurable\":false,\"writable\":false,\"visible\":false,\"useJoinTable\":false,\"private\":true},\"updatedBy\":{\"type\":\"relation\",\"relation\":\"oneToOne\",\"target\":\"admin::user\",\"configurable\":false,\"writable\":false,\"visible\":false,\"useJoinTable\":false,\"private\":true},\"locale\":{\"writable\":true,\"private\":false,\"configurable\":false,\"visible\":false,\"type\":\"string\"},\"localizations\":{\"type\":\"relation\",\"relation\":\"oneToMany\",\"target\":\"api::contact-us.contact-us\",\"writable\":false,\"private\":false,\"configurable\":false,\"visible\":false,\"unstable_virtual\":true,\"joinColumn\":{\"name\":\"document_id\",\"referencedColumn\":\"document_id\",\"referencedTable\":\"contact_uses\"}}},\"apiName\":\"contact-us\",\"globalId\":\"ContactUs\",\"uid\":\"api::contact-us.contact-us\",\"modelType\":\"contentType\",\"__schema__\":{\"collectionName\":\"contact_uses\",\"info\":{\"singularName\":\"contact-us\",\"pluralName\":\"contact-uses\",\"displayName\":\"contactUs\"},\"options\":{\"draftAndPublish\":true},\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"attributes\":{\"banner\":{\"type\":\"component\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"component\":\"common.banner\",\"repeatable\":true},\"boxComponent\":{\"type\":\"component\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"component\":\"common.box-component\",\"repeatable\":false},\"formTitle\":{\"type\":\"string\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"seo\":{\"type\":\"component\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"component\":\"common.seo\",\"repeatable\":false},\"locations\":{\"type\":\"relation\",\"relation\":\"oneToMany\",\"target\":\"api::branch-location.branch-location\"}},\"kind\":\"singleType\"},\"modelName\":\"contact-us\",\"actions\":{},\"lifecycles\":{}},\"api::footer.footer\":{\"kind\":\"singleType\",\"collectionName\":\"footers\",\"info\":{\"singularName\":\"footer\",\"pluralName\":\"footers\",\"displayName\":\"footer\"},\"options\":{\"draftAndPublish\":true},\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"attributes\":{\"logo\":{\"type\":\"media\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"multiple\":false,\"allowedTypes\":[\"images\",\"files\",\"videos\",\"audios\"]},\"description\":{\"type\":\"text\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"socialLinks\":{\"type\":\"component\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"component\":\"common.social-links\",\"repeatable\":true},\"bottomMenu\":{\"type\":\"component\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"component\":\"common.menu-item\",\"repeatable\":true},\"menu\":{\"type\":\"component\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"component\":\"common.menu-item-w-sub\",\"repeatable\":true},\"copyrightText\":{\"type\":\"text\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"createdAt\":{\"type\":\"datetime\"},\"updatedAt\":{\"type\":\"datetime\"},\"publishedAt\":{\"type\":\"datetime\",\"configurable\":false,\"writable\":true,\"visible\":false},\"createdBy\":{\"type\":\"relation\",\"relation\":\"oneToOne\",\"target\":\"admin::user\",\"configurable\":false,\"writable\":false,\"visible\":false,\"useJoinTable\":false,\"private\":true},\"updatedBy\":{\"type\":\"relation\",\"relation\":\"oneToOne\",\"target\":\"admin::user\",\"configurable\":false,\"writable\":false,\"visible\":false,\"useJoinTable\":false,\"private\":true},\"locale\":{\"writable\":true,\"private\":false,\"configurable\":false,\"visible\":false,\"type\":\"string\"},\"localizations\":{\"type\":\"relation\",\"relation\":\"oneToMany\",\"target\":\"api::footer.footer\",\"writable\":false,\"private\":false,\"configurable\":false,\"visible\":false,\"unstable_virtual\":true,\"joinColumn\":{\"name\":\"document_id\",\"referencedColumn\":\"document_id\",\"referencedTable\":\"footers\"}}},\"apiName\":\"footer\",\"globalId\":\"Footer\",\"uid\":\"api::footer.footer\",\"modelType\":\"contentType\",\"__schema__\":{\"collectionName\":\"footers\",\"info\":{\"singularName\":\"footer\",\"pluralName\":\"footers\",\"displayName\":\"footer\"},\"options\":{\"draftAndPublish\":true},\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"attributes\":{\"logo\":{\"type\":\"media\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"multiple\":false,\"allowedTypes\":[\"images\",\"files\",\"videos\",\"audios\"]},\"description\":{\"type\":\"text\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"socialLinks\":{\"type\":\"component\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"component\":\"common.social-links\",\"repeatable\":true},\"bottomMenu\":{\"type\":\"component\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"component\":\"common.menu-item\",\"repeatable\":true},\"menu\":{\"type\":\"component\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"component\":\"common.menu-item-w-sub\",\"repeatable\":true},\"copyrightText\":{\"type\":\"text\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}}},\"kind\":\"singleType\"},\"modelName\":\"footer\",\"actions\":{},\"lifecycles\":{}},\"api::header.header\":{\"kind\":\"singleType\",\"collectionName\":\"headers\",\"info\":{\"singularName\":\"header\",\"pluralName\":\"headers\",\"displayName\":\"header\"},\"options\":{\"draftAndPublish\":true},\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"attributes\":{\"logo\":{\"type\":\"media\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"multiple\":false,\"allowedTypes\":[\"images\",\"files\",\"videos\",\"audios\"]},\"colorLogo\":{\"type\":\"media\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"multiple\":false,\"allowedTypes\":[\"images\",\"files\",\"videos\",\"audios\"]},\"menu\":{\"type\":\"dynamiczone\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"components\":[\"common.menu-item\",\"common.menu-item-w-sub\",\"common.menu-item-w-services\"]},\"showMultilingual\":{\"type\":\"boolean\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"default\":true},\"createdAt\":{\"type\":\"datetime\"},\"updatedAt\":{\"type\":\"datetime\"},\"publishedAt\":{\"type\":\"datetime\",\"configurable\":false,\"writable\":true,\"visible\":false},\"createdBy\":{\"type\":\"relation\",\"relation\":\"oneToOne\",\"target\":\"admin::user\",\"configurable\":false,\"writable\":false,\"visible\":false,\"useJoinTable\":false,\"private\":true},\"updatedBy\":{\"type\":\"relation\",\"relation\":\"oneToOne\",\"target\":\"admin::user\",\"configurable\":false,\"writable\":false,\"visible\":false,\"useJoinTable\":false,\"private\":true},\"locale\":{\"writable\":true,\"private\":false,\"configurable\":false,\"visible\":false,\"type\":\"string\"},\"localizations\":{\"type\":\"relation\",\"relation\":\"oneToMany\",\"target\":\"api::header.header\",\"writable\":false,\"private\":false,\"configurable\":false,\"visible\":false,\"unstable_virtual\":true,\"joinColumn\":{\"name\":\"document_id\",\"referencedColumn\":\"document_id\",\"referencedTable\":\"headers\"}}},\"apiName\":\"header\",\"globalId\":\"Header\",\"uid\":\"api::header.header\",\"modelType\":\"contentType\",\"__schema__\":{\"collectionName\":\"headers\",\"info\":{\"singularName\":\"header\",\"pluralName\":\"headers\",\"displayName\":\"header\"},\"options\":{\"draftAndPublish\":true},\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"attributes\":{\"logo\":{\"type\":\"media\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"multiple\":false,\"allowedTypes\":[\"images\",\"files\",\"videos\",\"audios\"]},\"colorLogo\":{\"type\":\"media\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"multiple\":false,\"allowedTypes\":[\"images\",\"files\",\"videos\",\"audios\"]},\"menu\":{\"type\":\"dynamiczone\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"components\":[\"common.menu-item\",\"common.menu-item-w-sub\",\"common.menu-item-w-services\"]},\"showMultilingual\":{\"type\":\"boolean\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"default\":true}},\"kind\":\"singleType\"},\"modelName\":\"header\",\"actions\":{},\"lifecycles\":{}},\"api::home.home\":{\"kind\":\"singleType\",\"collectionName\":\"homes\",\"info\":{\"singularName\":\"home\",\"pluralName\":\"homes\",\"displayName\":\"home\"},\"options\":{\"draftAndPublish\":true},\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"attributes\":{\"banner\":{\"type\":\"component\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"component\":\"common.banner\",\"repeatable\":true},\"aboutCme\":{\"type\":\"component\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"component\":\"home.about-cme\",\"repeatable\":false},\"businessStreams\":{\"type\":\"component\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"component\":\"home.business-stream\",\"repeatable\":false},\"trustedBrands\":{\"type\":\"component\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"component\":\"home.content-section\",\"repeatable\":false},\"trustedPartners\":{\"type\":\"component\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"component\":\"home.trusted-section\",\"repeatable\":false},\"socialFeeds\":{\"type\":\"component\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"component\":\"home.content-section\",\"repeatable\":false},\"ourLocations\":{\"type\":\"component\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"component\":\"home.content-section\",\"repeatable\":false},\"aboutGroup\":{\"type\":\"component\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"component\":\"common.content-with-link\",\"repeatable\":false},\"isNewsEnabled\":{\"type\":\"boolean\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"default\":true},\"seo\":{\"type\":\"component\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"component\":\"common.seo\",\"repeatable\":false},\"createdAt\":{\"type\":\"datetime\"},\"updatedAt\":{\"type\":\"datetime\"},\"publishedAt\":{\"type\":\"datetime\",\"configurable\":false,\"writable\":true,\"visible\":false},\"createdBy\":{\"type\":\"relation\",\"relation\":\"oneToOne\",\"target\":\"admin::user\",\"configurable\":false,\"writable\":false,\"visible\":false,\"useJoinTable\":false,\"private\":true},\"updatedBy\":{\"type\":\"relation\",\"relation\":\"oneToOne\",\"target\":\"admin::user\",\"configurable\":false,\"writable\":false,\"visible\":false,\"useJoinTable\":false,\"private\":true},\"locale\":{\"writable\":true,\"private\":false,\"configurable\":false,\"visible\":false,\"type\":\"string\"},\"localizations\":{\"type\":\"relation\",\"relation\":\"oneToMany\",\"target\":\"api::home.home\",\"writable\":false,\"private\":false,\"configurable\":false,\"visible\":false,\"unstable_virtual\":true,\"joinColumn\":{\"name\":\"document_id\",\"referencedColumn\":\"document_id\",\"referencedTable\":\"homes\"}}},\"apiName\":\"home\",\"globalId\":\"Home\",\"uid\":\"api::home.home\",\"modelType\":\"contentType\",\"__schema__\":{\"collectionName\":\"homes\",\"info\":{\"singularName\":\"home\",\"pluralName\":\"homes\",\"displayName\":\"home\"},\"options\":{\"draftAndPublish\":true},\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"attributes\":{\"banner\":{\"type\":\"component\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"component\":\"common.banner\",\"repeatable\":true},\"aboutCme\":{\"type\":\"component\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"component\":\"home.about-cme\",\"repeatable\":false},\"businessStreams\":{\"type\":\"component\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"component\":\"home.business-stream\",\"repeatable\":false},\"trustedBrands\":{\"type\":\"component\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"component\":\"home.content-section\",\"repeatable\":false},\"trustedPartners\":{\"type\":\"component\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"component\":\"home.trusted-section\",\"repeatable\":false},\"socialFeeds\":{\"type\":\"component\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"component\":\"home.content-section\",\"repeatable\":false},\"ourLocations\":{\"type\":\"component\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"component\":\"home.content-section\",\"repeatable\":false},\"aboutGroup\":{\"type\":\"component\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"component\":\"common.content-with-link\",\"repeatable\":false},\"isNewsEnabled\":{\"type\":\"boolean\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"default\":true},\"seo\":{\"type\":\"component\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"component\":\"common.seo\",\"repeatable\":false}},\"kind\":\"singleType\"},\"modelName\":\"home\",\"actions\":{},\"lifecycles\":{}},\"api::location.location\":{\"kind\":\"singleType\",\"collectionName\":\"locations\",\"info\":{\"singularName\":\"location\",\"pluralName\":\"locations\",\"displayName\":\"location\"},\"options\":{\"draftAndPublish\":true},\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"attributes\":{\"subTitle\":{\"type\":\"string\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"title\":{\"type\":\"string\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"description\":{\"type\":\"richtext\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"customField\":\"plugin::ckeditor5.CKEditor\",\"options\":{\"preset\":\"default\"}},\"seo\":{\"type\":\"component\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"component\":\"common.seo\",\"repeatable\":false},\"locationTypes\":{\"type\":\"relation\",\"relation\":\"oneToMany\",\"target\":\"api::branch-location.branch-location\"},\"createdAt\":{\"type\":\"datetime\"},\"updatedAt\":{\"type\":\"datetime\"},\"publishedAt\":{\"type\":\"datetime\",\"configurable\":false,\"writable\":true,\"visible\":false},\"createdBy\":{\"type\":\"relation\",\"relation\":\"oneToOne\",\"target\":\"admin::user\",\"configurable\":false,\"writable\":false,\"visible\":false,\"useJoinTable\":false,\"private\":true},\"updatedBy\":{\"type\":\"relation\",\"relation\":\"oneToOne\",\"target\":\"admin::user\",\"configurable\":false,\"writable\":false,\"visible\":false,\"useJoinTable\":false,\"private\":true},\"locale\":{\"writable\":true,\"private\":false,\"configurable\":false,\"visible\":false,\"type\":\"string\"},\"localizations\":{\"type\":\"relation\",\"relation\":\"oneToMany\",\"target\":\"api::location.location\",\"writable\":false,\"private\":false,\"configurable\":false,\"visible\":false,\"unstable_virtual\":true,\"joinColumn\":{\"name\":\"document_id\",\"referencedColumn\":\"document_id\",\"referencedTable\":\"locations\"}}},\"apiName\":\"location\",\"globalId\":\"Location\",\"uid\":\"api::location.location\",\"modelType\":\"contentType\",\"__schema__\":{\"collectionName\":\"locations\",\"info\":{\"singularName\":\"location\",\"pluralName\":\"locations\",\"displayName\":\"location\"},\"options\":{\"draftAndPublish\":true},\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"attributes\":{\"subTitle\":{\"type\":\"string\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"title\":{\"type\":\"string\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"description\":{\"type\":\"customField\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"customField\":\"plugin::ckeditor5.CKEditor\",\"options\":{\"preset\":\"default\"}},\"seo\":{\"type\":\"component\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"component\":\"common.seo\",\"repeatable\":false},\"locationTypes\":{\"type\":\"relation\",\"relation\":\"oneToMany\",\"target\":\"api::branch-location.branch-location\"}},\"kind\":\"singleType\"},\"modelName\":\"location\",\"actions\":{},\"lifecycles\":{}},\"api::news.news\":{\"kind\":\"collectionType\",\"collectionName\":\"newes\",\"info\":{\"singularName\":\"news\",\"pluralName\":\"newes\",\"displayName\":\"news\"},\"options\":{\"draftAndPublish\":true},\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"attributes\":{\"title\":{\"type\":\"string\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"slug\":{\"type\":\"string\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"required\":true,\"unique\":true},\"postedDate\":{\"type\":\"date\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"smallDescription\":{\"type\":\"text\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"description\":{\"type\":\"richtext\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"customField\":\"plugin::ckeditor5.CKEditor\",\"options\":{\"preset\":\"default\"}},\"image\":{\"type\":\"media\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"multiple\":false,\"allowedTypes\":[\"images\",\"files\",\"videos\",\"audios\"]},\"isFeatured\":{\"type\":\"boolean\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"readTime\":{\"type\":\"string\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"seo\":{\"type\":\"component\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"component\":\"common.seo\",\"repeatable\":false},\"types\":{\"type\":\"relation\",\"relation\":\"oneToMany\",\"target\":\"api::type.type\"},\"createdAt\":{\"type\":\"datetime\"},\"updatedAt\":{\"type\":\"datetime\"},\"publishedAt\":{\"type\":\"datetime\",\"configurable\":false,\"writable\":true,\"visible\":false},\"createdBy\":{\"type\":\"relation\",\"relation\":\"oneToOne\",\"target\":\"admin::user\",\"configurable\":false,\"writable\":false,\"visible\":false,\"useJoinTable\":false,\"private\":true},\"updatedBy\":{\"type\":\"relation\",\"relation\":\"oneToOne\",\"target\":\"admin::user\",\"configurable\":false,\"writable\":false,\"visible\":false,\"useJoinTable\":false,\"private\":true},\"locale\":{\"writable\":true,\"private\":false,\"configurable\":false,\"visible\":false,\"type\":\"string\"},\"localizations\":{\"type\":\"relation\",\"relation\":\"oneToMany\",\"target\":\"api::news.news\",\"writable\":false,\"private\":false,\"configurable\":false,\"visible\":false,\"unstable_virtual\":true,\"joinColumn\":{\"name\":\"document_id\",\"referencedColumn\":\"document_id\",\"referencedTable\":\"newes\"}}},\"apiName\":\"news\",\"globalId\":\"News\",\"uid\":\"api::news.news\",\"modelType\":\"contentType\",\"__schema__\":{\"collectionName\":\"newes\",\"info\":{\"singularName\":\"news\",\"pluralName\":\"newes\",\"displayName\":\"news\"},\"options\":{\"draftAndPublish\":true},\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"attributes\":{\"title\":{\"type\":\"string\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"slug\":{\"type\":\"string\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"required\":true,\"unique\":true},\"postedDate\":{\"type\":\"date\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"smallDescription\":{\"type\":\"text\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"description\":{\"type\":\"customField\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"customField\":\"plugin::ckeditor5.CKEditor\",\"options\":{\"preset\":\"default\"}},\"image\":{\"type\":\"media\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"multiple\":false,\"allowedTypes\":[\"images\",\"files\",\"videos\",\"audios\"]},\"isFeatured\":{\"type\":\"boolean\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"readTime\":{\"type\":\"string\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"seo\":{\"type\":\"component\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"component\":\"common.seo\",\"repeatable\":false},\"types\":{\"type\":\"relation\",\"relation\":\"oneToMany\",\"target\":\"api::type.type\"}},\"kind\":\"collectionType\"},\"modelName\":\"news\",\"actions\":{},\"lifecycles\":{}},\"api::news-landing.news-landing\":{\"kind\":\"singleType\",\"collectionName\":\"news_landings\",\"info\":{\"singularName\":\"news-landing\",\"pluralName\":\"news-landings\",\"displayName\":\"newsLanding\"},\"options\":{\"draftAndPublish\":true},\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"attributes\":{\"title\":{\"type\":\"string\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"seo\":{\"type\":\"component\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"component\":\"common.seo\",\"repeatable\":false},\"createdAt\":{\"type\":\"datetime\"},\"updatedAt\":{\"type\":\"datetime\"},\"publishedAt\":{\"type\":\"datetime\",\"configurable\":false,\"writable\":true,\"visible\":false},\"createdBy\":{\"type\":\"relation\",\"relation\":\"oneToOne\",\"target\":\"admin::user\",\"configurable\":false,\"writable\":false,\"visible\":false,\"useJoinTable\":false,\"private\":true},\"updatedBy\":{\"type\":\"relation\",\"relation\":\"oneToOne\",\"target\":\"admin::user\",\"configurable\":false,\"writable\":false,\"visible\":false,\"useJoinTable\":false,\"private\":true},\"locale\":{\"writable\":true,\"private\":false,\"configurable\":false,\"visible\":false,\"type\":\"string\"},\"localizations\":{\"type\":\"relation\",\"relation\":\"oneToMany\",\"target\":\"api::news-landing.news-landing\",\"writable\":false,\"private\":false,\"configurable\":false,\"visible\":false,\"unstable_virtual\":true,\"joinColumn\":{\"name\":\"document_id\",\"referencedColumn\":\"document_id\",\"referencedTable\":\"news_landings\"}}},\"apiName\":\"news-landing\",\"globalId\":\"NewsLanding\",\"uid\":\"api::news-landing.news-landing\",\"modelType\":\"contentType\",\"__schema__\":{\"collectionName\":\"news_landings\",\"info\":{\"singularName\":\"news-landing\",\"pluralName\":\"news-landings\",\"displayName\":\"newsLanding\"},\"options\":{\"draftAndPublish\":true},\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"attributes\":{\"title\":{\"type\":\"string\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"seo\":{\"type\":\"component\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"component\":\"common.seo\",\"repeatable\":false}},\"kind\":\"singleType\"},\"modelName\":\"news-landing\",\"actions\":{},\"lifecycles\":{}},\"api::power-category.power-category\":{\"kind\":\"collectionType\",\"collectionName\":\"power_categories\",\"info\":{\"singularName\":\"power-category\",\"pluralName\":\"power-categories\",\"displayName\":\"powerCategory\"},\"options\":{\"draftAndPublish\":true},\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"attributes\":{\"title\":{\"type\":\"string\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"image\":{\"type\":\"media\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"multiple\":false,\"allowedTypes\":[\"images\"]},\"slug\":{\"type\":\"uid\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"regex\":\"^[A-Za-z0-9\\\\-._~\\\\/\\\\?\\\\=&]+$\"},\"displayOrder\":{\"type\":\"integer\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"unique\":true},\"createdAt\":{\"type\":\"datetime\"},\"updatedAt\":{\"type\":\"datetime\"},\"publishedAt\":{\"type\":\"datetime\",\"configurable\":false,\"writable\":true,\"visible\":false},\"createdBy\":{\"type\":\"relation\",\"relation\":\"oneToOne\",\"target\":\"admin::user\",\"configurable\":false,\"writable\":false,\"visible\":false,\"useJoinTable\":false,\"private\":true},\"updatedBy\":{\"type\":\"relation\",\"relation\":\"oneToOne\",\"target\":\"admin::user\",\"configurable\":false,\"writable\":false,\"visible\":false,\"useJoinTable\":false,\"private\":true},\"locale\":{\"writable\":true,\"private\":false,\"configurable\":false,\"visible\":false,\"type\":\"string\"},\"localizations\":{\"type\":\"relation\",\"relation\":\"oneToMany\",\"target\":\"api::power-category.power-category\",\"writable\":false,\"private\":false,\"configurable\":false,\"visible\":false,\"unstable_virtual\":true,\"joinColumn\":{\"name\":\"document_id\",\"referencedColumn\":\"document_id\",\"referencedTable\":\"power_categories\"}}},\"apiName\":\"power-category\",\"globalId\":\"PowerCategory\",\"uid\":\"api::power-category.power-category\",\"modelType\":\"contentType\",\"__schema__\":{\"collectionName\":\"power_categories\",\"info\":{\"singularName\":\"power-category\",\"pluralName\":\"power-categories\",\"displayName\":\"powerCategory\"},\"options\":{\"draftAndPublish\":true},\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"attributes\":{\"title\":{\"type\":\"string\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"image\":{\"type\":\"media\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"multiple\":false,\"allowedTypes\":[\"images\"]},\"slug\":{\"type\":\"uid\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"regex\":\"^[A-Za-z0-9\\\\-._~\\\\/\\\\?\\\\=&]+$\"},\"displayOrder\":{\"type\":\"integer\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"unique\":true}},\"kind\":\"collectionType\"},\"modelName\":\"power-category\",\"actions\":{},\"lifecycles\":{}},\"api::power-tool-landing.power-tool-landing\":{\"kind\":\"singleType\",\"collectionName\":\"power_tool_landings\",\"info\":{\"singularName\":\"power-tool-landing\",\"pluralName\":\"power-tool-landings\",\"displayName\":\"powerToolLanding\"},\"options\":{\"draftAndPublish\":true},\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"attributes\":{\"title\":{\"type\":\"string\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"banner\":{\"type\":\"component\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"component\":\"common.banner\",\"repeatable\":true},\"mainTitle\":{\"type\":\"richtext\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"customField\":\"plugin::ckeditor5.CKEditor\",\"options\":{\"preset\":\"default\"}},\"mainDescription\":{\"type\":\"richtext\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"customField\":\"plugin::ckeditor5.CKEditor\",\"options\":{\"preset\":\"default\"}},\"seo\":{\"type\":\"component\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"component\":\"common.seo\",\"repeatable\":false},\"locationTypes\":{\"type\":\"relation\",\"relation\":\"oneToMany\",\"target\":\"api::branch-location.branch-location\"},\"socialFeeds\":{\"type\":\"component\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"component\":\"home.content-section\",\"repeatable\":false},\"createdAt\":{\"type\":\"datetime\"},\"updatedAt\":{\"type\":\"datetime\"},\"publishedAt\":{\"type\":\"datetime\",\"configurable\":false,\"writable\":true,\"visible\":false},\"createdBy\":{\"type\":\"relation\",\"relation\":\"oneToOne\",\"target\":\"admin::user\",\"configurable\":false,\"writable\":false,\"visible\":false,\"useJoinTable\":false,\"private\":true},\"updatedBy\":{\"type\":\"relation\",\"relation\":\"oneToOne\",\"target\":\"admin::user\",\"configurable\":false,\"writable\":false,\"visible\":false,\"useJoinTable\":false,\"private\":true},\"locale\":{\"writable\":true,\"private\":false,\"configurable\":false,\"visible\":false,\"type\":\"string\"},\"localizations\":{\"type\":\"relation\",\"relation\":\"oneToMany\",\"target\":\"api::power-tool-landing.power-tool-landing\",\"writable\":false,\"private\":false,\"configurable\":false,\"visible\":false,\"unstable_virtual\":true,\"joinColumn\":{\"name\":\"document_id\",\"referencedColumn\":\"document_id\",\"referencedTable\":\"power_tool_landings\"}}},\"apiName\":\"power-tool-landing\",\"globalId\":\"PowerToolLanding\",\"uid\":\"api::power-tool-landing.power-tool-landing\",\"modelType\":\"contentType\",\"__schema__\":{\"collectionName\":\"power_tool_landings\",\"info\":{\"singularName\":\"power-tool-landing\",\"pluralName\":\"power-tool-landings\",\"displayName\":\"powerToolLanding\"},\"options\":{\"draftAndPublish\":true},\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"attributes\":{\"title\":{\"type\":\"string\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"banner\":{\"type\":\"component\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"component\":\"common.banner\",\"repeatable\":true},\"mainTitle\":{\"type\":\"customField\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"customField\":\"plugin::ckeditor5.CKEditor\",\"options\":{\"preset\":\"default\"}},\"mainDescription\":{\"type\":\"customField\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"customField\":\"plugin::ckeditor5.CKEditor\",\"options\":{\"preset\":\"default\"}},\"seo\":{\"type\":\"component\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"component\":\"common.seo\",\"repeatable\":false},\"locationTypes\":{\"type\":\"relation\",\"relation\":\"oneToMany\",\"target\":\"api::branch-location.branch-location\"},\"socialFeeds\":{\"type\":\"component\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"component\":\"home.content-section\",\"repeatable\":false}},\"kind\":\"singleType\"},\"modelName\":\"power-tool-landing\",\"actions\":{},\"lifecycles\":{}},\"api::power-top-category.power-top-category\":{\"kind\":\"collectionType\",\"collectionName\":\"power_top_categories\",\"info\":{\"singularName\":\"power-top-category\",\"pluralName\":\"power-top-categories\",\"displayName\":\"powerTopCategory\"},\"options\":{\"draftAndPublish\":true},\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"attributes\":{\"title\":{\"type\":\"string\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"image\":{\"type\":\"media\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"multiple\":false,\"allowedTypes\":[\"images\"]},\"slug\":{\"type\":\"uid\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"regex\":\"^[A-Za-z0-9\\\\-._~\\\\/\\\\?\\\\=&]+$\"},\"displayOrder\":{\"type\":\"integer\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"unique\":true},\"createdAt\":{\"type\":\"datetime\"},\"updatedAt\":{\"type\":\"datetime\"},\"publishedAt\":{\"type\":\"datetime\",\"configurable\":false,\"writable\":true,\"visible\":false},\"createdBy\":{\"type\":\"relation\",\"relation\":\"oneToOne\",\"target\":\"admin::user\",\"configurable\":false,\"writable\":false,\"visible\":false,\"useJoinTable\":false,\"private\":true},\"updatedBy\":{\"type\":\"relation\",\"relation\":\"oneToOne\",\"target\":\"admin::user\",\"configurable\":false,\"writable\":false,\"visible\":false,\"useJoinTable\":false,\"private\":true},\"locale\":{\"writable\":true,\"private\":false,\"configurable\":false,\"visible\":false,\"type\":\"string\"},\"localizations\":{\"type\":\"relation\",\"relation\":\"oneToMany\",\"target\":\"api::power-top-category.power-top-category\",\"writable\":false,\"private\":false,\"configurable\":false,\"visible\":false,\"unstable_virtual\":true,\"joinColumn\":{\"name\":\"document_id\",\"referencedColumn\":\"document_id\",\"referencedTable\":\"power_top_categories\"}}},\"apiName\":\"power-top-category\",\"globalId\":\"PowerTopCategory\",\"uid\":\"api::power-top-category.power-top-category\",\"modelType\":\"contentType\",\"__schema__\":{\"collectionName\":\"power_top_categories\",\"info\":{\"singularName\":\"power-top-category\",\"pluralName\":\"power-top-categories\",\"displayName\":\"powerTopCategory\"},\"options\":{\"draftAndPublish\":true},\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"attributes\":{\"title\":{\"type\":\"string\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"image\":{\"type\":\"media\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"multiple\":false,\"allowedTypes\":[\"images\"]},\"slug\":{\"type\":\"uid\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"regex\":\"^[A-Za-z0-9\\\\-._~\\\\/\\\\?\\\\=&]+$\"},\"displayOrder\":{\"type\":\"integer\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"unique\":true}},\"kind\":\"collectionType\"},\"modelName\":\"power-top-category\",\"actions\":{},\"lifecycles\":{}},\"api::privacy-policy.privacy-policy\":{\"kind\":\"singleType\",\"collectionName\":\"privacy_policies\",\"info\":{\"singularName\":\"privacy-policy\",\"pluralName\":\"privacy-policies\",\"displayName\":\"privacyPolicy\"},\"options\":{\"draftAndPublish\":true},\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"attributes\":{\"title\":{\"type\":\"string\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"description\":{\"type\":\"richtext\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"customField\":\"plugin::ckeditor5.CKEditor\",\"options\":{\"preset\":\"default\"}},\"seo\":{\"type\":\"component\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"component\":\"common.seo\",\"repeatable\":false},\"createdAt\":{\"type\":\"datetime\"},\"updatedAt\":{\"type\":\"datetime\"},\"publishedAt\":{\"type\":\"datetime\",\"configurable\":false,\"writable\":true,\"visible\":false},\"createdBy\":{\"type\":\"relation\",\"relation\":\"oneToOne\",\"target\":\"admin::user\",\"configurable\":false,\"writable\":false,\"visible\":false,\"useJoinTable\":false,\"private\":true},\"updatedBy\":{\"type\":\"relation\",\"relation\":\"oneToOne\",\"target\":\"admin::user\",\"configurable\":false,\"writable\":false,\"visible\":false,\"useJoinTable\":false,\"private\":true},\"locale\":{\"writable\":true,\"private\":false,\"configurable\":false,\"visible\":false,\"type\":\"string\"},\"localizations\":{\"type\":\"relation\",\"relation\":\"oneToMany\",\"target\":\"api::privacy-policy.privacy-policy\",\"writable\":false,\"private\":false,\"configurable\":false,\"visible\":false,\"unstable_virtual\":true,\"joinColumn\":{\"name\":\"document_id\",\"referencedColumn\":\"document_id\",\"referencedTable\":\"privacy_policies\"}}},\"apiName\":\"privacy-policy\",\"globalId\":\"PrivacyPolicy\",\"uid\":\"api::privacy-policy.privacy-policy\",\"modelType\":\"contentType\",\"__schema__\":{\"collectionName\":\"privacy_policies\",\"info\":{\"singularName\":\"privacy-policy\",\"pluralName\":\"privacy-policies\",\"displayName\":\"privacyPolicy\"},\"options\":{\"draftAndPublish\":true},\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"attributes\":{\"title\":{\"type\":\"string\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"description\":{\"type\":\"customField\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"customField\":\"plugin::ckeditor5.CKEditor\",\"options\":{\"preset\":\"default\"}},\"seo\":{\"type\":\"component\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"component\":\"common.seo\",\"repeatable\":false}},\"kind\":\"singleType\"},\"modelName\":\"privacy-policy\",\"actions\":{},\"lifecycles\":{}},\"api::product-category.product-category\":{\"kind\":\"collectionType\",\"collectionName\":\"product_categories\",\"info\":{\"singularName\":\"product-category\",\"pluralName\":\"product-categories\",\"displayName\":\"productCategory\"},\"options\":{\"draftAndPublish\":true},\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"attributes\":{\"title\":{\"type\":\"string\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"image\":{\"type\":\"media\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"multiple\":false,\"allowedTypes\":[\"images\"]},\"slug\":{\"type\":\"uid\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"regex\":\"^[A-Za-z0-9\\\\-._~\\\\/\\\\?\\\\=&]+$\"},\"displayOrder\":{\"type\":\"integer\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"unique\":true},\"createdAt\":{\"type\":\"datetime\"},\"updatedAt\":{\"type\":\"datetime\"},\"publishedAt\":{\"type\":\"datetime\",\"configurable\":false,\"writable\":true,\"visible\":false},\"createdBy\":{\"type\":\"relation\",\"relation\":\"oneToOne\",\"target\":\"admin::user\",\"configurable\":false,\"writable\":false,\"visible\":false,\"useJoinTable\":false,\"private\":true},\"updatedBy\":{\"type\":\"relation\",\"relation\":\"oneToOne\",\"target\":\"admin::user\",\"configurable\":false,\"writable\":false,\"visible\":false,\"useJoinTable\":false,\"private\":true},\"locale\":{\"writable\":true,\"private\":false,\"configurable\":false,\"visible\":false,\"type\":\"string\"},\"localizations\":{\"type\":\"relation\",\"relation\":\"oneToMany\",\"target\":\"api::product-category.product-category\",\"writable\":false,\"private\":false,\"configurable\":false,\"visible\":false,\"unstable_virtual\":true,\"joinColumn\":{\"name\":\"document_id\",\"referencedColumn\":\"document_id\",\"referencedTable\":\"product_categories\"}}},\"apiName\":\"product-category\",\"globalId\":\"ProductCategory\",\"uid\":\"api::product-category.product-category\",\"modelType\":\"contentType\",\"__schema__\":{\"collectionName\":\"product_categories\",\"info\":{\"singularName\":\"product-category\",\"pluralName\":\"product-categories\",\"displayName\":\"productCategory\"},\"options\":{\"draftAndPublish\":true},\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"attributes\":{\"title\":{\"type\":\"string\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"image\":{\"type\":\"media\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"multiple\":false,\"allowedTypes\":[\"images\"]},\"slug\":{\"type\":\"uid\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"regex\":\"^[A-Za-z0-9\\\\-._~\\\\/\\\\?\\\\=&]+$\"},\"displayOrder\":{\"type\":\"integer\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"unique\":true}},\"kind\":\"collectionType\"},\"modelName\":\"product-category\",\"actions\":{},\"lifecycles\":{}},\"api::service.service\":{\"kind\":\"collectionType\",\"collectionName\":\"services\",\"info\":{\"singularName\":\"service\",\"pluralName\":\"services\",\"displayName\":\"services\"},\"options\":{\"draftAndPublish\":true},\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"attributes\":{\"title\":{\"type\":\"string\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"slug\":{\"type\":\"uid\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"targetField\":\"title\"},\"serviceType\":{\"type\":\"relation\",\"relation\":\"oneToOne\",\"target\":\"api::service-category.service-category\"},\"banner\":{\"type\":\"component\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"component\":\"common.banner\",\"repeatable\":true},\"listDesc\":{\"type\":\"text\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"listImage\":{\"type\":\"media\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"multiple\":false,\"allowedTypes\":[\"images\",\"files\",\"videos\",\"audios\"]},\"locationTypes\":{\"type\":\"relation\",\"relation\":\"oneToMany\",\"target\":\"api::branch-location.branch-location\"},\"breadCrumb\":{\"type\":\"component\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"component\":\"common.link-item\",\"repeatable\":true},\"serviceContent\":{\"type\":\"dynamiczone\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"components\":[\"common.title-with-desc\",\"common.content-block\",\"common.faq\",\"common.content-block-variant\"]},\"seo\":{\"type\":\"component\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"component\":\"common.seo\",\"repeatable\":false},\"showBookServiceForm\":{\"type\":\"boolean\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"default\":false},\"showMobileServiceForm\":{\"type\":\"boolean\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"default\":false},\"bookService\":{\"type\":\"component\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"component\":\"common.title-desc\",\"repeatable\":false},\"mobileService\":{\"type\":\"component\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"component\":\"common.title-desc\",\"repeatable\":false},\"headerServiceSortOrder\":{\"type\":\"integer\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"createdAt\":{\"type\":\"datetime\"},\"updatedAt\":{\"type\":\"datetime\"},\"publishedAt\":{\"type\":\"datetime\",\"configurable\":false,\"writable\":true,\"visible\":false},\"createdBy\":{\"type\":\"relation\",\"relation\":\"oneToOne\",\"target\":\"admin::user\",\"configurable\":false,\"writable\":false,\"visible\":false,\"useJoinTable\":false,\"private\":true},\"updatedBy\":{\"type\":\"relation\",\"relation\":\"oneToOne\",\"target\":\"admin::user\",\"configurable\":false,\"writable\":false,\"visible\":false,\"useJoinTable\":false,\"private\":true},\"locale\":{\"writable\":true,\"private\":false,\"configurable\":false,\"visible\":false,\"type\":\"string\"},\"localizations\":{\"type\":\"relation\",\"relation\":\"oneToMany\",\"target\":\"api::service.service\",\"writable\":false,\"private\":false,\"configurable\":false,\"visible\":false,\"unstable_virtual\":true,\"joinColumn\":{\"name\":\"document_id\",\"referencedColumn\":\"document_id\",\"referencedTable\":\"services\"}}},\"apiName\":\"service\",\"globalId\":\"Service\",\"uid\":\"api::service.service\",\"modelType\":\"contentType\",\"__schema__\":{\"collectionName\":\"services\",\"info\":{\"singularName\":\"service\",\"pluralName\":\"services\",\"displayName\":\"services\"},\"options\":{\"draftAndPublish\":true},\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"attributes\":{\"title\":{\"type\":\"string\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"slug\":{\"type\":\"uid\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"targetField\":\"title\"},\"serviceType\":{\"type\":\"relation\",\"relation\":\"oneToOne\",\"target\":\"api::service-category.service-category\"},\"banner\":{\"type\":\"component\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"component\":\"common.banner\",\"repeatable\":true},\"listDesc\":{\"type\":\"text\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"listImage\":{\"type\":\"media\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"multiple\":false,\"allowedTypes\":[\"images\",\"files\",\"videos\",\"audios\"]},\"locationTypes\":{\"type\":\"relation\",\"relation\":\"oneToMany\",\"target\":\"api::branch-location.branch-location\"},\"breadCrumb\":{\"type\":\"component\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"component\":\"common.link-item\",\"repeatable\":true},\"serviceContent\":{\"type\":\"dynamiczone\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"components\":[\"common.title-with-desc\",\"common.content-block\",\"common.faq\",\"common.content-block-variant\"]},\"seo\":{\"type\":\"component\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"component\":\"common.seo\",\"repeatable\":false},\"showBookServiceForm\":{\"type\":\"boolean\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"default\":false},\"showMobileServiceForm\":{\"type\":\"boolean\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"default\":false},\"bookService\":{\"type\":\"component\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"component\":\"common.title-desc\",\"repeatable\":false},\"mobileService\":{\"type\":\"component\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"component\":\"common.title-desc\",\"repeatable\":false},\"headerServiceSortOrder\":{\"type\":\"integer\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}}},\"kind\":\"collectionType\"},\"modelName\":\"service\",\"actions\":{},\"lifecycles\":{}},\"api::service-category.service-category\":{\"kind\":\"collectionType\",\"collectionName\":\"service_categories\",\"info\":{\"singularName\":\"service-category\",\"pluralName\":\"service-categories\",\"displayName\":\"serviceType\"},\"options\":{\"draftAndPublish\":true},\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"attributes\":{\"title\":{\"type\":\"string\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"slug\":{\"type\":\"uid\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"targetField\":\"title\"},\"description\":{\"type\":\"text\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"image\":{\"type\":\"media\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"multiple\":false,\"allowedTypes\":[\"images\",\"files\",\"videos\",\"audios\"]},\"menuImage\":{\"type\":\"media\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"multiple\":false,\"allowedTypes\":[\"images\",\"files\",\"videos\",\"audios\"]},\"banner\":{\"type\":\"component\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"component\":\"common.banner\",\"repeatable\":true},\"servicesList\":{\"type\":\"component\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"component\":\"common.title-with-desc\",\"repeatable\":false},\"seo\":{\"type\":\"component\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"component\":\"common.seo\",\"repeatable\":false},\"headerServicesSortOrder\":{\"type\":\"integer\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"createdAt\":{\"type\":\"datetime\"},\"updatedAt\":{\"type\":\"datetime\"},\"publishedAt\":{\"type\":\"datetime\",\"configurable\":false,\"writable\":true,\"visible\":false},\"createdBy\":{\"type\":\"relation\",\"relation\":\"oneToOne\",\"target\":\"admin::user\",\"configurable\":false,\"writable\":false,\"visible\":false,\"useJoinTable\":false,\"private\":true},\"updatedBy\":{\"type\":\"relation\",\"relation\":\"oneToOne\",\"target\":\"admin::user\",\"configurable\":false,\"writable\":false,\"visible\":false,\"useJoinTable\":false,\"private\":true},\"locale\":{\"writable\":true,\"private\":false,\"configurable\":false,\"visible\":false,\"type\":\"string\"},\"localizations\":{\"type\":\"relation\",\"relation\":\"oneToMany\",\"target\":\"api::service-category.service-category\",\"writable\":false,\"private\":false,\"configurable\":false,\"visible\":false,\"unstable_virtual\":true,\"joinColumn\":{\"name\":\"document_id\",\"referencedColumn\":\"document_id\",\"referencedTable\":\"service_categories\"}}},\"apiName\":\"service-category\",\"globalId\":\"ServiceCategory\",\"uid\":\"api::service-category.service-category\",\"modelType\":\"contentType\",\"__schema__\":{\"collectionName\":\"service_categories\",\"info\":{\"singularName\":\"service-category\",\"pluralName\":\"service-categories\",\"displayName\":\"serviceType\"},\"options\":{\"draftAndPublish\":true},\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"attributes\":{\"title\":{\"type\":\"string\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"slug\":{\"type\":\"uid\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"targetField\":\"title\"},\"description\":{\"type\":\"text\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"image\":{\"type\":\"media\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"multiple\":false,\"allowedTypes\":[\"images\",\"files\",\"videos\",\"audios\"]},\"menuImage\":{\"type\":\"media\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"multiple\":false,\"allowedTypes\":[\"images\",\"files\",\"videos\",\"audios\"]},\"banner\":{\"type\":\"component\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"component\":\"common.banner\",\"repeatable\":true},\"servicesList\":{\"type\":\"component\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"component\":\"common.title-with-desc\",\"repeatable\":false},\"seo\":{\"type\":\"component\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"component\":\"common.seo\",\"repeatable\":false},\"headerServicesSortOrder\":{\"type\":\"integer\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}}},\"kind\":\"collectionType\"},\"modelName\":\"service-category\",\"actions\":{},\"lifecycles\":{}},\"api::service-category-type.service-category-type\":{\"kind\":\"collectionType\",\"collectionName\":\"service_category_types\",\"info\":{\"singularName\":\"service-category-type\",\"pluralName\":\"service-category-types\",\"displayName\":\"serviceCategoryType\"},\"options\":{\"draftAndPublish\":true},\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"attributes\":{\"title\":{\"type\":\"string\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"image\":{\"type\":\"media\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"multiple\":false,\"allowedTypes\":[\"images\"]},\"slug\":{\"type\":\"uid\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"regex\":\"^[A-Za-z0-9\\\\-._~\\\\/\\\\?\\\\=&]+$\"},\"displayOrder\":{\"type\":\"integer\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"unique\":true},\"createdAt\":{\"type\":\"datetime\"},\"updatedAt\":{\"type\":\"datetime\"},\"publishedAt\":{\"type\":\"datetime\",\"configurable\":false,\"writable\":true,\"visible\":false},\"createdBy\":{\"type\":\"relation\",\"relation\":\"oneToOne\",\"target\":\"admin::user\",\"configurable\":false,\"writable\":false,\"visible\":false,\"useJoinTable\":false,\"private\":true},\"updatedBy\":{\"type\":\"relation\",\"relation\":\"oneToOne\",\"target\":\"admin::user\",\"configurable\":false,\"writable\":false,\"visible\":false,\"useJoinTable\":false,\"private\":true},\"locale\":{\"writable\":true,\"private\":false,\"configurable\":false,\"visible\":false,\"type\":\"string\"},\"localizations\":{\"type\":\"relation\",\"relation\":\"oneToMany\",\"target\":\"api::service-category-type.service-category-type\",\"writable\":false,\"private\":false,\"configurable\":false,\"visible\":false,\"unstable_virtual\":true,\"joinColumn\":{\"name\":\"document_id\",\"referencedColumn\":\"document_id\",\"referencedTable\":\"service_category_types\"}}},\"apiName\":\"service-category-type\",\"globalId\":\"ServiceCategoryType\",\"uid\":\"api::service-category-type.service-category-type\",\"modelType\":\"contentType\",\"__schema__\":{\"collectionName\":\"service_category_types\",\"info\":{\"singularName\":\"service-category-type\",\"pluralName\":\"service-category-types\",\"displayName\":\"serviceCategoryType\"},\"options\":{\"draftAndPublish\":true},\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"attributes\":{\"title\":{\"type\":\"string\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"image\":{\"type\":\"media\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"multiple\":false,\"allowedTypes\":[\"images\"]},\"slug\":{\"type\":\"uid\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"regex\":\"^[A-Za-z0-9\\\\-._~\\\\/\\\\?\\\\=&]+$\"},\"displayOrder\":{\"type\":\"integer\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"unique\":true}},\"kind\":\"collectionType\"},\"modelName\":\"service-category-type\",\"actions\":{},\"lifecycles\":{}},\"api::service-landing.service-landing\":{\"kind\":\"singleType\",\"collectionName\":\"service_landings\",\"info\":{\"singularName\":\"service-landing\",\"pluralName\":\"service-landings\",\"displayName\":\"serviceLanding\"},\"options\":{\"draftAndPublish\":true},\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"attributes\":{\"banner\":{\"type\":\"component\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"component\":\"common.banner\",\"repeatable\":true},\"serviceHeading\":{\"type\":\"text\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"description\":{\"type\":\"richtext\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"customField\":\"plugin::ckeditor5.CKEditor\",\"options\":{\"preset\":\"default\"}},\"seo\":{\"type\":\"component\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"component\":\"common.seo\",\"repeatable\":false},\"serviceLocations\":{\"type\":\"component\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"component\":\"service-landing.service-locations\",\"repeatable\":true},\"locationTypes\":{\"type\":\"relation\",\"relation\":\"oneToMany\",\"target\":\"api::branch-location.branch-location\"},\"createdAt\":{\"type\":\"datetime\"},\"updatedAt\":{\"type\":\"datetime\"},\"publishedAt\":{\"type\":\"datetime\",\"configurable\":false,\"writable\":true,\"visible\":false},\"createdBy\":{\"type\":\"relation\",\"relation\":\"oneToOne\",\"target\":\"admin::user\",\"configurable\":false,\"writable\":false,\"visible\":false,\"useJoinTable\":false,\"private\":true},\"updatedBy\":{\"type\":\"relation\",\"relation\":\"oneToOne\",\"target\":\"admin::user\",\"configurable\":false,\"writable\":false,\"visible\":false,\"useJoinTable\":false,\"private\":true},\"locale\":{\"writable\":true,\"private\":false,\"configurable\":false,\"visible\":false,\"type\":\"string\"},\"localizations\":{\"type\":\"relation\",\"relation\":\"oneToMany\",\"target\":\"api::service-landing.service-landing\",\"writable\":false,\"private\":false,\"configurable\":false,\"visible\":false,\"unstable_virtual\":true,\"joinColumn\":{\"name\":\"document_id\",\"referencedColumn\":\"document_id\",\"referencedTable\":\"service_landings\"}}},\"apiName\":\"service-landing\",\"globalId\":\"ServiceLanding\",\"uid\":\"api::service-landing.service-landing\",\"modelType\":\"contentType\",\"__schema__\":{\"collectionName\":\"service_landings\",\"info\":{\"singularName\":\"service-landing\",\"pluralName\":\"service-landings\",\"displayName\":\"serviceLanding\"},\"options\":{\"draftAndPublish\":true},\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"attributes\":{\"banner\":{\"type\":\"component\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"component\":\"common.banner\",\"repeatable\":true},\"serviceHeading\":{\"type\":\"text\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"description\":{\"type\":\"customField\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"customField\":\"plugin::ckeditor5.CKEditor\",\"options\":{\"preset\":\"default\"}},\"seo\":{\"type\":\"component\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"component\":\"common.seo\",\"repeatable\":false},\"serviceLocations\":{\"type\":\"component\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"component\":\"service-landing.service-locations\",\"repeatable\":true},\"locationTypes\":{\"type\":\"relation\",\"relation\":\"oneToMany\",\"target\":\"api::branch-location.branch-location\"}},\"kind\":\"singleType\"},\"modelName\":\"service-landing\",\"actions\":{},\"lifecycles\":{}},\"api::social.social\":{\"kind\":\"collectionType\",\"collectionName\":\"socials\",\"info\":{\"singularName\":\"social\",\"pluralName\":\"socials\",\"displayName\":\"social\"},\"options\":{\"draftAndPublish\":true},\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"attributes\":{\"title\":{\"type\":\"string\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"image\":{\"type\":\"media\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"multiple\":false,\"allowedTypes\":[\"images\"]},\"icon\":{\"type\":\"media\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"multiple\":false,\"allowedTypes\":[\"images\"]},\"link\":{\"type\":\"text\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"typeExternal\":{\"type\":\"boolean\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"default\":true},\"createdAt\":{\"type\":\"datetime\"},\"updatedAt\":{\"type\":\"datetime\"},\"publishedAt\":{\"type\":\"datetime\",\"configurable\":false,\"writable\":true,\"visible\":false},\"createdBy\":{\"type\":\"relation\",\"relation\":\"oneToOne\",\"target\":\"admin::user\",\"configurable\":false,\"writable\":false,\"visible\":false,\"useJoinTable\":false,\"private\":true},\"updatedBy\":{\"type\":\"relation\",\"relation\":\"oneToOne\",\"target\":\"admin::user\",\"configurable\":false,\"writable\":false,\"visible\":false,\"useJoinTable\":false,\"private\":true},\"locale\":{\"writable\":true,\"private\":false,\"configurable\":false,\"visible\":false,\"type\":\"string\"},\"localizations\":{\"type\":\"relation\",\"relation\":\"oneToMany\",\"target\":\"api::social.social\",\"writable\":false,\"private\":false,\"configurable\":false,\"visible\":false,\"unstable_virtual\":true,\"joinColumn\":{\"name\":\"document_id\",\"referencedColumn\":\"document_id\",\"referencedTable\":\"socials\"}}},\"apiName\":\"social\",\"globalId\":\"Social\",\"uid\":\"api::social.social\",\"modelType\":\"contentType\",\"__schema__\":{\"collectionName\":\"socials\",\"info\":{\"singularName\":\"social\",\"pluralName\":\"socials\",\"displayName\":\"social\"},\"options\":{\"draftAndPublish\":true},\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"attributes\":{\"title\":{\"type\":\"string\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"image\":{\"type\":\"media\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"multiple\":false,\"allowedTypes\":[\"images\"]},\"icon\":{\"type\":\"media\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"multiple\":false,\"allowedTypes\":[\"images\"]},\"link\":{\"type\":\"text\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"typeExternal\":{\"type\":\"boolean\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"default\":true}},\"kind\":\"collectionType\"},\"modelName\":\"social\",\"actions\":{},\"lifecycles\":{}},\"api::terms-condition.terms-condition\":{\"kind\":\"singleType\",\"collectionName\":\"terms_conditions\",\"info\":{\"singularName\":\"terms-condition\",\"pluralName\":\"terms-conditions\",\"displayName\":\"termsCondition\"},\"options\":{\"draftAndPublish\":true},\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"attributes\":{\"title\":{\"type\":\"string\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"description\":{\"type\":\"richtext\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"customField\":\"plugin::ckeditor5.CKEditor\",\"options\":{\"preset\":\"default\"}},\"seo\":{\"type\":\"component\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"component\":\"common.seo\",\"repeatable\":false},\"createdAt\":{\"type\":\"datetime\"},\"updatedAt\":{\"type\":\"datetime\"},\"publishedAt\":{\"type\":\"datetime\",\"configurable\":false,\"writable\":true,\"visible\":false},\"createdBy\":{\"type\":\"relation\",\"relation\":\"oneToOne\",\"target\":\"admin::user\",\"configurable\":false,\"writable\":false,\"visible\":false,\"useJoinTable\":false,\"private\":true},\"updatedBy\":{\"type\":\"relation\",\"relation\":\"oneToOne\",\"target\":\"admin::user\",\"configurable\":false,\"writable\":false,\"visible\":false,\"useJoinTable\":false,\"private\":true},\"locale\":{\"writable\":true,\"private\":false,\"configurable\":false,\"visible\":false,\"type\":\"string\"},\"localizations\":{\"type\":\"relation\",\"relation\":\"oneToMany\",\"target\":\"api::terms-condition.terms-condition\",\"writable\":false,\"private\":false,\"configurable\":false,\"visible\":false,\"unstable_virtual\":true,\"joinColumn\":{\"name\":\"document_id\",\"referencedColumn\":\"document_id\",\"referencedTable\":\"terms_conditions\"}}},\"apiName\":\"terms-condition\",\"globalId\":\"TermsCondition\",\"uid\":\"api::terms-condition.terms-condition\",\"modelType\":\"contentType\",\"__schema__\":{\"collectionName\":\"terms_conditions\",\"info\":{\"singularName\":\"terms-condition\",\"pluralName\":\"terms-conditions\",\"displayName\":\"termsCondition\"},\"options\":{\"draftAndPublish\":true},\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"attributes\":{\"title\":{\"type\":\"string\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"description\":{\"type\":\"customField\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"customField\":\"plugin::ckeditor5.CKEditor\",\"options\":{\"preset\":\"default\"}},\"seo\":{\"type\":\"component\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"component\":\"common.seo\",\"repeatable\":false}},\"kind\":\"singleType\"},\"modelName\":\"terms-condition\",\"actions\":{},\"lifecycles\":{}},\"api::type.type\":{\"kind\":\"collectionType\",\"collectionName\":\"types\",\"info\":{\"singularName\":\"type\",\"pluralName\":\"types\",\"displayName\":\"type\"},\"options\":{\"draftAndPublish\":true},\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"attributes\":{\"title\":{\"type\":\"string\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"key\":{\"type\":\"string\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"createdAt\":{\"type\":\"datetime\"},\"updatedAt\":{\"type\":\"datetime\"},\"publishedAt\":{\"type\":\"datetime\",\"configurable\":false,\"writable\":true,\"visible\":false},\"createdBy\":{\"type\":\"relation\",\"relation\":\"oneToOne\",\"target\":\"admin::user\",\"configurable\":false,\"writable\":false,\"visible\":false,\"useJoinTable\":false,\"private\":true},\"updatedBy\":{\"type\":\"relation\",\"relation\":\"oneToOne\",\"target\":\"admin::user\",\"configurable\":false,\"writable\":false,\"visible\":false,\"useJoinTable\":false,\"private\":true},\"locale\":{\"writable\":true,\"private\":false,\"configurable\":false,\"visible\":false,\"type\":\"string\"},\"localizations\":{\"type\":\"relation\",\"relation\":\"oneToMany\",\"target\":\"api::type.type\",\"writable\":false,\"private\":false,\"configurable\":false,\"visible\":false,\"unstable_virtual\":true,\"joinColumn\":{\"name\":\"document_id\",\"referencedColumn\":\"document_id\",\"referencedTable\":\"types\"}}},\"apiName\":\"type\",\"globalId\":\"Type\",\"uid\":\"api::type.type\",\"modelType\":\"contentType\",\"__schema__\":{\"collectionName\":\"types\",\"info\":{\"singularName\":\"type\",\"pluralName\":\"types\",\"displayName\":\"type\"},\"options\":{\"draftAndPublish\":true},\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"attributes\":{\"title\":{\"type\":\"string\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"key\":{\"type\":\"string\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}}},\"kind\":\"collectionType\"},\"modelName\":\"type\",\"actions\":{},\"lifecycles\":{}},\"api::tyre-category.tyre-category\":{\"kind\":\"collectionType\",\"collectionName\":\"tyre_categories\",\"info\":{\"singularName\":\"tyre-category\",\"pluralName\":\"tyre-categories\",\"displayName\":\"tyreCategory\"},\"options\":{\"draftAndPublish\":true},\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"attributes\":{\"title\":{\"type\":\"string\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"image\":{\"type\":\"media\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"multiple\":false,\"allowedTypes\":[\"images\"]},\"slug\":{\"type\":\"uid\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"regex\":\"^[A-Za-z0-9\\\\-._~\\\\/\\\\?\\\\=&]+$\"},\"displayOrder\":{\"type\":\"integer\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"unique\":true},\"createdAt\":{\"type\":\"datetime\"},\"updatedAt\":{\"type\":\"datetime\"},\"publishedAt\":{\"type\":\"datetime\",\"configurable\":false,\"writable\":true,\"visible\":false},\"createdBy\":{\"type\":\"relation\",\"relation\":\"oneToOne\",\"target\":\"admin::user\",\"configurable\":false,\"writable\":false,\"visible\":false,\"useJoinTable\":false,\"private\":true},\"updatedBy\":{\"type\":\"relation\",\"relation\":\"oneToOne\",\"target\":\"admin::user\",\"configurable\":false,\"writable\":false,\"visible\":false,\"useJoinTable\":false,\"private\":true},\"locale\":{\"writable\":true,\"private\":false,\"configurable\":false,\"visible\":false,\"type\":\"string\"},\"localizations\":{\"type\":\"relation\",\"relation\":\"oneToMany\",\"target\":\"api::tyre-category.tyre-category\",\"writable\":false,\"private\":false,\"configurable\":false,\"visible\":false,\"unstable_virtual\":true,\"joinColumn\":{\"name\":\"document_id\",\"referencedColumn\":\"document_id\",\"referencedTable\":\"tyre_categories\"}}},\"apiName\":\"tyre-category\",\"globalId\":\"TyreCategory\",\"uid\":\"api::tyre-category.tyre-category\",\"modelType\":\"contentType\",\"__schema__\":{\"collectionName\":\"tyre_categories\",\"info\":{\"singularName\":\"tyre-category\",\"pluralName\":\"tyre-categories\",\"displayName\":\"tyreCategory\"},\"options\":{\"draftAndPublish\":true},\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"attributes\":{\"title\":{\"type\":\"string\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"image\":{\"type\":\"media\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"multiple\":false,\"allowedTypes\":[\"images\"]},\"slug\":{\"type\":\"uid\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"regex\":\"^[A-Za-z0-9\\\\-._~\\\\/\\\\?\\\\=&]+$\"},\"displayOrder\":{\"type\":\"integer\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"unique\":true}},\"kind\":\"collectionType\"},\"modelName\":\"tyre-category\",\"actions\":{},\"lifecycles\":{}},\"api::tyre-landing.tyre-landing\":{\"kind\":\"singleType\",\"collectionName\":\"tyre_landings\",\"info\":{\"singularName\":\"tyre-landing\",\"pluralName\":\"tyre-landings\",\"displayName\":\"tyreLanding\"},\"options\":{\"draftAndPublish\":true},\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"attributes\":{\"title\":{\"type\":\"string\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"banner\":{\"type\":\"component\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"component\":\"common.banner\",\"repeatable\":true},\"bookService\":{\"type\":\"component\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"component\":\"common.title-desc\",\"repeatable\":false},\"mobileService\":{\"type\":\"component\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"component\":\"common.title-desc\",\"repeatable\":false},\"seo\":{\"type\":\"component\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"component\":\"common.seo\",\"repeatable\":false},\"locationTypes\":{\"type\":\"relation\",\"relation\":\"oneToMany\",\"target\":\"api::branch-location.branch-location\"},\"socialFeeds\":{\"type\":\"component\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"component\":\"home.content-section\",\"repeatable\":false},\"createdAt\":{\"type\":\"datetime\"},\"updatedAt\":{\"type\":\"datetime\"},\"publishedAt\":{\"type\":\"datetime\",\"configurable\":false,\"writable\":true,\"visible\":false},\"createdBy\":{\"type\":\"relation\",\"relation\":\"oneToOne\",\"target\":\"admin::user\",\"configurable\":false,\"writable\":false,\"visible\":false,\"useJoinTable\":false,\"private\":true},\"updatedBy\":{\"type\":\"relation\",\"relation\":\"oneToOne\",\"target\":\"admin::user\",\"configurable\":false,\"writable\":false,\"visible\":false,\"useJoinTable\":false,\"private\":true},\"locale\":{\"writable\":true,\"private\":false,\"configurable\":false,\"visible\":false,\"type\":\"string\"},\"localizations\":{\"type\":\"relation\",\"relation\":\"oneToMany\",\"target\":\"api::tyre-landing.tyre-landing\",\"writable\":false,\"private\":false,\"configurable\":false,\"visible\":false,\"unstable_virtual\":true,\"joinColumn\":{\"name\":\"document_id\",\"referencedColumn\":\"document_id\",\"referencedTable\":\"tyre_landings\"}}},\"apiName\":\"tyre-landing\",\"globalId\":\"TyreLanding\",\"uid\":\"api::tyre-landing.tyre-landing\",\"modelType\":\"contentType\",\"__schema__\":{\"collectionName\":\"tyre_landings\",\"info\":{\"singularName\":\"tyre-landing\",\"pluralName\":\"tyre-landings\",\"displayName\":\"tyreLanding\"},\"options\":{\"draftAndPublish\":true},\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"attributes\":{\"title\":{\"type\":\"string\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"banner\":{\"type\":\"component\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"component\":\"common.banner\",\"repeatable\":true},\"bookService\":{\"type\":\"component\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"component\":\"common.title-desc\",\"repeatable\":false},\"mobileService\":{\"type\":\"component\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"component\":\"common.title-desc\",\"repeatable\":false},\"seo\":{\"type\":\"component\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"component\":\"common.seo\",\"repeatable\":false},\"locationTypes\":{\"type\":\"relation\",\"relation\":\"oneToMany\",\"target\":\"api::branch-location.branch-location\"},\"socialFeeds\":{\"type\":\"component\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"component\":\"home.content-section\",\"repeatable\":false}},\"kind\":\"singleType\"},\"modelName\":\"tyre-landing\",\"actions\":{},\"lifecycles\":{}},\"api::tyre-service.tyre-service\":{\"kind\":\"collectionType\",\"collectionName\":\"tyre_services\",\"info\":{\"singularName\":\"tyre-service\",\"pluralName\":\"tyre-services\",\"displayName\":\"tyreService\"},\"options\":{\"draftAndPublish\":true},\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"attributes\":{\"title\":{\"type\":\"string\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"image\":{\"type\":\"media\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"multiple\":false,\"allowedTypes\":[\"images\"]},\"slug\":{\"type\":\"uid\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"regex\":\"^[A-Za-z0-9\\\\-._~\\\\/\\\\?\\\\=&]+$\"},\"displayOrder\":{\"type\":\"integer\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"unique\":true},\"createdAt\":{\"type\":\"datetime\"},\"updatedAt\":{\"type\":\"datetime\"},\"publishedAt\":{\"type\":\"datetime\",\"configurable\":false,\"writable\":true,\"visible\":false},\"createdBy\":{\"type\":\"relation\",\"relation\":\"oneToOne\",\"target\":\"admin::user\",\"configurable\":false,\"writable\":false,\"visible\":false,\"useJoinTable\":false,\"private\":true},\"updatedBy\":{\"type\":\"relation\",\"relation\":\"oneToOne\",\"target\":\"admin::user\",\"configurable\":false,\"writable\":false,\"visible\":false,\"useJoinTable\":false,\"private\":true},\"locale\":{\"writable\":true,\"private\":false,\"configurable\":false,\"visible\":false,\"type\":\"string\"},\"localizations\":{\"type\":\"relation\",\"relation\":\"oneToMany\",\"target\":\"api::tyre-service.tyre-service\",\"writable\":false,\"private\":false,\"configurable\":false,\"visible\":false,\"unstable_virtual\":true,\"joinColumn\":{\"name\":\"document_id\",\"referencedColumn\":\"document_id\",\"referencedTable\":\"tyre_services\"}}},\"apiName\":\"tyre-service\",\"globalId\":\"TyreService\",\"uid\":\"api::tyre-service.tyre-service\",\"modelType\":\"contentType\",\"__schema__\":{\"collectionName\":\"tyre_services\",\"info\":{\"singularName\":\"tyre-service\",\"pluralName\":\"tyre-services\",\"displayName\":\"tyreService\"},\"options\":{\"draftAndPublish\":true},\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"attributes\":{\"title\":{\"type\":\"string\",\"pluginOptions\":{\"i18n\":{\"localized\":true}}},\"image\":{\"type\":\"media\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"multiple\":false,\"allowedTypes\":[\"images\"]},\"slug\":{\"type\":\"uid\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"regex\":\"^[A-Za-z0-9\\\\-._~\\\\/\\\\?\\\\=&]+$\"},\"displayOrder\":{\"type\":\"integer\",\"pluginOptions\":{\"i18n\":{\"localized\":true}},\"unique\":true}},\"kind\":\"collectionType\"},\"modelName\":\"tyre-service\",\"actions\":{},\"lifecycles\":{}},\"admin::permission\":{\"collectionName\":\"admin_permissions\",\"info\":{\"name\":\"Permission\",\"description\":\"\",\"singularName\":\"permission\",\"pluralName\":\"permissions\",\"displayName\":\"Permission\"},\"options\":{\"draftAndPublish\":false},\"pluginOptions\":{\"content-manager\":{\"visible\":false},\"content-type-builder\":{\"visible\":false}},\"attributes\":{\"action\":{\"type\":\"string\",\"minLength\":1,\"configurable\":false,\"required\":true},\"actionParameters\":{\"type\":\"json\",\"configurable\":false,\"required\":false,\"default\":{}},\"subject\":{\"type\":\"string\",\"minLength\":1,\"configurable\":false,\"required\":false},\"properties\":{\"type\":\"json\",\"configurable\":false,\"required\":false,\"default\":{}},\"conditions\":{\"type\":\"json\",\"configurable\":false,\"required\":false,\"default\":[]},\"role\":{\"configurable\":false,\"type\":\"relation\",\"relation\":\"manyToOne\",\"inversedBy\":\"permissions\",\"target\":\"admin::role\"},\"createdAt\":{\"type\":\"datetime\"},\"updatedAt\":{\"type\":\"datetime\"},\"publishedAt\":{\"type\":\"datetime\",\"configurable\":false,\"writable\":true,\"visible\":false},\"createdBy\":{\"type\":\"relation\",\"relation\":\"oneToOne\",\"target\":\"admin::user\",\"configurable\":false,\"writable\":false,\"visible\":false,\"useJoinTable\":false,\"private\":true},\"updatedBy\":{\"type\":\"relation\",\"relation\":\"oneToOne\",\"target\":\"admin::user\",\"configurable\":false,\"writable\":false,\"visible\":false,\"useJoinTable\":false,\"private\":true},\"locale\":{\"writable\":true,\"private\":true,\"configurable\":false,\"visible\":false,\"type\":\"string\"},\"localizations\":{\"type\":\"relation\",\"relation\":\"oneToMany\",\"target\":\"admin::permission\",\"writable\":false,\"private\":true,\"configurable\":false,\"visible\":false,\"unstable_virtual\":true,\"joinColumn\":{\"name\":\"document_id\",\"referencedColumn\":\"document_id\",\"referencedTable\":\"admin_permissions\"}}},\"plugin\":\"admin\",\"globalId\":\"AdminPermission\",\"uid\":\"admin::permission\",\"modelType\":\"contentType\",\"kind\":\"collectionType\",\"__schema__\":{\"collectionName\":\"admin_permissions\",\"info\":{\"name\":\"Permission\",\"description\":\"\",\"singularName\":\"permission\",\"pluralName\":\"permissions\",\"displayName\":\"Permission\"},\"options\":{},\"pluginOptions\":{\"content-manager\":{\"visible\":false},\"content-type-builder\":{\"visible\":false}},\"attributes\":{\"action\":{\"type\":\"string\",\"minLength\":1,\"configurable\":false,\"required\":true},\"actionParameters\":{\"type\":\"json\",\"configurable\":false,\"required\":false,\"default\":{}},\"subject\":{\"type\":\"string\",\"minLength\":1,\"configurable\":false,\"required\":false},\"properties\":{\"type\":\"json\",\"configurable\":false,\"required\":false,\"default\":{}},\"conditions\":{\"type\":\"json\",\"configurable\":false,\"required\":false,\"default\":[]},\"role\":{\"configurable\":false,\"type\":\"relation\",\"relation\":\"manyToOne\",\"inversedBy\":\"permissions\",\"target\":\"admin::role\"}},\"kind\":\"collectionType\"},\"modelName\":\"permission\"},\"admin::user\":{\"collectionName\":\"admin_users\",\"info\":{\"name\":\"User\",\"description\":\"\",\"singularName\":\"user\",\"pluralName\":\"users\",\"displayName\":\"User\"},\"pluginOptions\":{\"content-manager\":{\"visible\":false},\"content-type-builder\":{\"visible\":false}},\"attributes\":{\"firstname\":{\"type\":\"string\",\"unique\":false,\"minLength\":1,\"configurable\":false,\"required\":false},\"lastname\":{\"type\":\"string\",\"unique\":false,\"minLength\":1,\"configurable\":false,\"required\":false},\"username\":{\"type\":\"string\",\"unique\":false,\"configurable\":false,\"required\":false},\"email\":{\"type\":\"email\",\"minLength\":6,\"configurable\":false,\"required\":true,\"unique\":true,\"private\":true},\"password\":{\"type\":\"password\",\"minLength\":6,\"configurable\":false,\"required\":false,\"private\":true,\"searchable\":false},\"resetPasswordToken\":{\"type\":\"string\",\"configurable\":false,\"private\":true,\"searchable\":false},\"registrationToken\":{\"type\":\"string\",\"configurable\":false,\"private\":true,\"searchable\":false},\"isActive\":{\"type\":\"boolean\",\"default\":false,\"configurable\":false,\"private\":true},\"roles\":{\"configurable\":false,\"private\":true,\"type\":\"relation\",\"relation\":\"manyToMany\",\"inversedBy\":\"users\",\"target\":\"admin::role\",\"collectionName\":\"strapi_users_roles\"},\"blocked\":{\"type\":\"boolean\",\"default\":false,\"configurable\":false,\"private\":true},\"preferedLanguage\":{\"type\":\"string\",\"configurable\":false,\"required\":false,\"searchable\":false},\"createdAt\":{\"type\":\"datetime\"},\"updatedAt\":{\"type\":\"datetime\"},\"publishedAt\":{\"type\":\"datetime\",\"configurable\":false,\"writable\":true,\"visible\":false},\"createdBy\":{\"type\":\"relation\",\"relation\":\"oneToOne\",\"target\":\"admin::user\",\"configurable\":false,\"writable\":false,\"visible\":false,\"useJoinTable\":false,\"private\":true},\"updatedBy\":{\"type\":\"relation\",\"relation\":\"oneToOne\",\"target\":\"admin::user\",\"configurable\":false,\"writable\":false,\"visible\":false,\"useJoinTable\":false,\"private\":true},\"locale\":{\"writable\":true,\"private\":true,\"configurable\":false,\"visible\":false,\"type\":\"string\"},\"localizations\":{\"type\":\"relation\",\"relation\":\"oneToMany\",\"target\":\"admin::user\",\"writable\":false,\"private\":true,\"configurable\":false,\"visible\":false,\"unstable_virtual\":true,\"joinColumn\":{\"name\":\"document_id\",\"referencedColumn\":\"document_id\",\"referencedTable\":\"admin_users\"}}},\"config\":{\"attributes\":{\"resetPasswordToken\":{\"hidden\":true},\"registrationToken\":{\"hidden\":true}}},\"plugin\":\"admin\",\"globalId\":\"AdminUser\",\"uid\":\"admin::user\",\"modelType\":\"contentType\",\"kind\":\"collectionType\",\"__schema__\":{\"collectionName\":\"admin_users\",\"info\":{\"name\":\"User\",\"description\":\"\",\"singularName\":\"user\",\"pluralName\":\"users\",\"displayName\":\"User\"},\"pluginOptions\":{\"content-manager\":{\"visible\":false},\"content-type-builder\":{\"visible\":false}},\"attributes\":{\"firstname\":{\"type\":\"string\",\"unique\":false,\"minLength\":1,\"configurable\":false,\"required\":false},\"lastname\":{\"type\":\"string\",\"unique\":false,\"minLength\":1,\"configurable\":false,\"required\":false},\"username\":{\"type\":\"string\",\"unique\":false,\"configurable\":false,\"required\":false},\"email\":{\"type\":\"email\",\"minLength\":6,\"configurable\":false,\"required\":true,\"unique\":true,\"private\":true},\"password\":{\"type\":\"password\",\"minLength\":6,\"configurable\":false,\"required\":false,\"private\":true,\"searchable\":false},\"resetPasswordToken\":{\"type\":\"string\",\"configurable\":false,\"private\":true,\"searchable\":false},\"registrationToken\":{\"type\":\"string\",\"configurable\":false,\"private\":true,\"searchable\":false},\"isActive\":{\"type\":\"boolean\",\"default\":false,\"configurable\":false,\"private\":true},\"roles\":{\"configurable\":false,\"private\":true,\"type\":\"relation\",\"relation\":\"manyToMany\",\"inversedBy\":\"users\",\"target\":\"admin::role\",\"collectionName\":\"strapi_users_roles\"},\"blocked\":{\"type\":\"boolean\",\"default\":false,\"configurable\":false,\"private\":true},\"preferedLanguage\":{\"type\":\"string\",\"configurable\":false,\"required\":false,\"searchable\":false}},\"kind\":\"collectionType\"},\"modelName\":\"user\",\"options\":{\"draftAndPublish\":false}},\"admin::role\":{\"collectionName\":\"admin_roles\",\"info\":{\"name\":\"Role\",\"description\":\"\",\"singularName\":\"role\",\"pluralName\":\"roles\",\"displayName\":\"Role\"},\"options\":{\"draftAndPublish\":false},\"pluginOptions\":{\"content-manager\":{\"visible\":false},\"content-type-builder\":{\"visible\":false}},\"attributes\":{\"name\":{\"type\":\"string\",\"minLength\":1,\"unique\":true,\"configurable\":false,\"required\":true},\"code\":{\"type\":\"string\",\"minLength\":1,\"unique\":true,\"configurable\":false,\"required\":true},\"description\":{\"type\":\"string\",\"configurable\":false},\"users\":{\"configurable\":false,\"type\":\"relation\",\"relation\":\"manyToMany\",\"mappedBy\":\"roles\",\"target\":\"admin::user\"},\"permissions\":{\"configurable\":false,\"type\":\"relation\",\"relation\":\"oneToMany\",\"mappedBy\":\"role\",\"target\":\"admin::permission\"},\"createdAt\":{\"type\":\"datetime\"},\"updatedAt\":{\"type\":\"datetime\"},\"publishedAt\":{\"type\":\"datetime\",\"configurable\":false,\"writable\":true,\"visible\":false},\"createdBy\":{\"type\":\"relation\",\"relation\":\"oneToOne\",\"target\":\"admin::user\",\"configurable\":false,\"writable\":false,\"visible\":false,\"useJoinTable\":false,\"private\":true},\"updatedBy\":{\"type\":\"relation\",\"relation\":\"oneToOne\",\"target\":\"admin::user\",\"configurable\":false,\"writable\":false,\"visible\":false,\"useJoinTable\":false,\"private\":true},\"locale\":{\"writable\":true,\"private\":true,\"configurable\":false,\"visible\":false,\"type\":\"string\"},\"localizations\":{\"type\":\"relation\",\"relation\":\"oneToMany\",\"target\":\"admin::role\",\"writable\":false,\"private\":true,\"configurable\":false,\"visible\":false,\"unstable_virtual\":true,\"joinColumn\":{\"name\":\"document_id\",\"referencedColumn\":\"document_id\",\"referencedTable\":\"admin_roles\"}}},\"plugin\":\"admin\",\"globalId\":\"AdminRole\",\"uid\":\"admin::role\",\"modelType\":\"contentType\",\"kind\":\"collectionType\",\"__schema__\":{\"collectionName\":\"admin_roles\",\"info\":{\"name\":\"Role\",\"description\":\"\",\"singularName\":\"role\",\"pluralName\":\"roles\",\"displayName\":\"Role\"},\"options\":{},\"pluginOptions\":{\"content-manager\":{\"visible\":false},\"content-type-builder\":{\"visible\":false}},\"attributes\":{\"name\":{\"type\":\"string\",\"minLength\":1,\"unique\":true,\"configurable\":false,\"required\":true},\"code\":{\"type\":\"string\",\"minLength\":1,\"unique\":true,\"configurable\":false,\"required\":true},\"description\":{\"type\":\"string\",\"configurable\":false},\"users\":{\"configurable\":false,\"type\":\"relation\",\"relation\":\"manyToMany\",\"mappedBy\":\"roles\",\"target\":\"admin::user\"},\"permissions\":{\"configurable\":false,\"type\":\"relation\",\"relation\":\"oneToMany\",\"mappedBy\":\"role\",\"target\":\"admin::permission\"}},\"kind\":\"collectionType\"},\"modelName\":\"role\"},\"admin::api-token\":{\"collectionName\":\"strapi_api_tokens\",\"info\":{\"name\":\"Api Token\",\"singularName\":\"api-token\",\"pluralName\":\"api-tokens\",\"displayName\":\"Api Token\",\"description\":\"\"},\"options\":{\"draftAndPublish\":false},\"pluginOptions\":{\"content-manager\":{\"visible\":false},\"content-type-builder\":{\"visible\":false}},\"attributes\":{\"name\":{\"type\":\"string\",\"minLength\":1,\"configurable\":false,\"required\":true,\"unique\":true},\"description\":{\"type\":\"string\",\"minLength\":1,\"configurable\":false,\"required\":false,\"default\":\"\"},\"type\":{\"type\":\"enumeration\",\"enum\":[\"read-only\",\"full-access\",\"custom\"],\"configurable\":false,\"required\":true,\"default\":\"read-only\"},\"accessKey\":{\"type\":\"string\",\"minLength\":1,\"configurable\":false,\"required\":true,\"searchable\":false},\"encryptedKey\":{\"type\":\"text\",\"minLength\":1,\"configurable\":false,\"required\":false,\"searchable\":false},\"lastUsedAt\":{\"type\":\"datetime\",\"configurable\":false,\"required\":false},\"permissions\":{\"type\":\"relation\",\"target\":\"admin::api-token-permission\",\"relation\":\"oneToMany\",\"mappedBy\":\"token\",\"configurable\":false,\"required\":false},\"expiresAt\":{\"type\":\"datetime\",\"configurable\":false,\"required\":false},\"lifespan\":{\"type\":\"biginteger\",\"configurable\":false,\"required\":false},\"createdAt\":{\"type\":\"datetime\"},\"updatedAt\":{\"type\":\"datetime\"},\"publishedAt\":{\"type\":\"datetime\",\"configurable\":false,\"writable\":true,\"visible\":false},\"createdBy\":{\"type\":\"relation\",\"relation\":\"oneToOne\",\"target\":\"admin::user\",\"configurable\":false,\"writable\":false,\"visible\":false,\"useJoinTable\":false,\"private\":true},\"updatedBy\":{\"type\":\"relation\",\"relation\":\"oneToOne\",\"target\":\"admin::user\",\"configurable\":false,\"writable\":false,\"visible\":false,\"useJoinTable\":false,\"private\":true},\"locale\":{\"writable\":true,\"private\":true,\"configurable\":false,\"visible\":false,\"type\":\"string\"},\"localizations\":{\"type\":\"relation\",\"relation\":\"oneToMany\",\"target\":\"admin::api-token\",\"writable\":false,\"private\":true,\"configurable\":false,\"visible\":false,\"unstable_virtual\":true,\"joinColumn\":{\"name\":\"document_id\",\"referencedColumn\":\"document_id\",\"referencedTable\":\"strapi_api_tokens\"}}},\"plugin\":\"admin\",\"globalId\":\"AdminApiToken\",\"uid\":\"admin::api-token\",\"modelType\":\"contentType\",\"kind\":\"collectionType\",\"__schema__\":{\"collectionName\":\"strapi_api_tokens\",\"info\":{\"name\":\"Api Token\",\"singularName\":\"api-token\",\"pluralName\":\"api-tokens\",\"displayName\":\"Api Token\",\"description\":\"\"},\"options\":{},\"pluginOptions\":{\"content-manager\":{\"visible\":false},\"content-type-builder\":{\"visible\":false}},\"attributes\":{\"name\":{\"type\":\"string\",\"minLength\":1,\"configurable\":false,\"required\":true,\"unique\":true},\"description\":{\"type\":\"string\",\"minLength\":1,\"configurable\":false,\"required\":false,\"default\":\"\"},\"type\":{\"type\":\"enumeration\",\"enum\":[\"read-only\",\"full-access\",\"custom\"],\"configurable\":false,\"required\":true,\"default\":\"read-only\"},\"accessKey\":{\"type\":\"string\",\"minLength\":1,\"configurable\":false,\"required\":true,\"searchable\":false},\"encryptedKey\":{\"type\":\"text\",\"minLength\":1,\"configurable\":false,\"required\":false,\"searchable\":false},\"lastUsedAt\":{\"type\":\"datetime\",\"configurable\":false,\"required\":false},\"permissions\":{\"type\":\"relation\",\"target\":\"admin::api-token-permission\",\"relation\":\"oneToMany\",\"mappedBy\":\"token\",\"configurable\":false,\"required\":false},\"expiresAt\":{\"type\":\"datetime\",\"configurable\":false,\"required\":false},\"lifespan\":{\"type\":\"biginteger\",\"configurable\":false,\"required\":false}},\"kind\":\"collectionType\"},\"modelName\":\"api-token\"},\"admin::api-token-permission\":{\"collectionName\":\"strapi_api_token_permissions\",\"info\":{\"name\":\"API Token Permission\",\"description\":\"\",\"singularName\":\"api-token-permission\",\"pluralName\":\"api-token-permissions\",\"displayName\":\"API Token Permission\"},\"options\":{\"draftAndPublish\":false},\"pluginOptions\":{\"content-manager\":{\"visible\":false},\"content-type-builder\":{\"visible\":false}},\"attributes\":{\"action\":{\"type\":\"string\",\"minLength\":1,\"configurable\":false,\"required\":true},\"token\":{\"configurable\":false,\"type\":\"relation\",\"relation\":\"manyToOne\",\"inversedBy\":\"permissions\",\"target\":\"admin::api-token\"},\"createdAt\":{\"type\":\"datetime\"},\"updatedAt\":{\"type\":\"datetime\"},\"publishedAt\":{\"type\":\"datetime\",\"configurable\":false,\"writable\":true,\"visible\":false},\"createdBy\":{\"type\":\"relation\",\"relation\":\"oneToOne\",\"target\":\"admin::user\",\"configurable\":false,\"writable\":false,\"visible\":false,\"useJoinTable\":false,\"private\":true},\"updatedBy\":{\"type\":\"relation\",\"relation\":\"oneToOne\",\"target\":\"admin::user\",\"configurable\":false,\"writable\":false,\"visible\":false,\"useJoinTable\":false,\"private\":true},\"locale\":{\"writable\":true,\"private\":true,\"configurable\":false,\"visible\":false,\"type\":\"string\"},\"localizations\":{\"type\":\"relation\",\"relation\":\"oneToMany\",\"target\":\"admin::api-token-permission\",\"writable\":false,\"private\":true,\"configurable\":false,\"visible\":false,\"unstable_virtual\":true,\"joinColumn\":{\"name\":\"document_id\",\"referencedColumn\":\"document_id\",\"referencedTable\":\"strapi_api_token_permissions\"}}},\"plugin\":\"admin\",\"globalId\":\"AdminApiTokenPermission\",\"uid\":\"admin::api-token-permission\",\"modelType\":\"contentType\",\"kind\":\"collectionType\",\"__schema__\":{\"collectionName\":\"strapi_api_token_permissions\",\"info\":{\"name\":\"API Token Permission\",\"description\":\"\",\"singularName\":\"api-token-permission\",\"pluralName\":\"api-token-permissions\",\"displayName\":\"API Token Permission\"},\"options\":{},\"pluginOptions\":{\"content-manager\":{\"visible\":false},\"content-type-builder\":{\"visible\":false}},\"attributes\":{\"action\":{\"type\":\"string\",\"minLength\":1,\"configurable\":false,\"required\":true},\"token\":{\"configurable\":false,\"type\":\"relation\",\"relation\":\"manyToOne\",\"inversedBy\":\"permissions\",\"target\":\"admin::api-token\"}},\"kind\":\"collectionType\"},\"modelName\":\"api-token-permission\"},\"admin::transfer-token\":{\"collectionName\":\"strapi_transfer_tokens\",\"info\":{\"name\":\"Transfer Token\",\"singularName\":\"transfer-token\",\"pluralName\":\"transfer-tokens\",\"displayName\":\"Transfer Token\",\"description\":\"\"},\"options\":{\"draftAndPublish\":false},\"pluginOptions\":{\"content-manager\":{\"visible\":false},\"content-type-builder\":{\"visible\":false}},\"attributes\":{\"name\":{\"type\":\"string\",\"minLength\":1,\"configurable\":false,\"required\":true,\"unique\":true},\"description\":{\"type\":\"string\",\"minLength\":1,\"configurable\":false,\"required\":false,\"default\":\"\"},\"accessKey\":{\"type\":\"string\",\"minLength\":1,\"configurable\":false,\"required\":true},\"lastUsedAt\":{\"type\":\"datetime\",\"configurable\":false,\"required\":false},\"permissions\":{\"type\":\"relation\",\"target\":\"admin::transfer-token-permission\",\"relation\":\"oneToMany\",\"mappedBy\":\"token\",\"configurable\":false,\"required\":false},\"expiresAt\":{\"type\":\"datetime\",\"configurable\":false,\"required\":false},\"lifespan\":{\"type\":\"biginteger\",\"configurable\":false,\"required\":false},\"createdAt\":{\"type\":\"datetime\"},\"updatedAt\":{\"type\":\"datetime\"},\"publishedAt\":{\"type\":\"datetime\",\"configurable\":false,\"writable\":true,\"visible\":false},\"createdBy\":{\"type\":\"relation\",\"relation\":\"oneToOne\",\"target\":\"admin::user\",\"configurable\":false,\"writable\":false,\"visible\":false,\"useJoinTable\":false,\"private\":true},\"updatedBy\":{\"type\":\"relation\",\"relation\":\"oneToOne\",\"target\":\"admin::user\",\"configurable\":false,\"writable\":false,\"visible\":false,\"useJoinTable\":false,\"private\":true},\"locale\":{\"writable\":true,\"private\":true,\"configurable\":false,\"visible\":false,\"type\":\"string\"},\"localizations\":{\"type\":\"relation\",\"relation\":\"oneToMany\",\"target\":\"admin::transfer-token\",\"writable\":false,\"private\":true,\"configurable\":false,\"visible\":false,\"unstable_virtual\":true,\"joinColumn\":{\"name\":\"document_id\",\"referencedColumn\":\"document_id\",\"referencedTable\":\"strapi_transfer_tokens\"}}},\"plugin\":\"admin\",\"globalId\":\"AdminTransferToken\",\"uid\":\"admin::transfer-token\",\"modelType\":\"contentType\",\"kind\":\"collectionType\",\"__schema__\":{\"collectionName\":\"strapi_transfer_tokens\",\"info\":{\"name\":\"Transfer Token\",\"singularName\":\"transfer-token\",\"pluralName\":\"transfer-tokens\",\"displayName\":\"Transfer Token\",\"description\":\"\"},\"options\":{},\"pluginOptions\":{\"content-manager\":{\"visible\":false},\"content-type-builder\":{\"visible\":false}},\"attributes\":{\"name\":{\"type\":\"string\",\"minLength\":1,\"configurable\":false,\"required\":true,\"unique\":true},\"description\":{\"type\":\"string\",\"minLength\":1,\"configurable\":false,\"required\":false,\"default\":\"\"},\"accessKey\":{\"type\":\"string\",\"minLength\":1,\"configurable\":false,\"required\":true},\"lastUsedAt\":{\"type\":\"datetime\",\"configurable\":false,\"required\":false},\"permissions\":{\"type\":\"relation\",\"target\":\"admin::transfer-token-permission\",\"relation\":\"oneToMany\",\"mappedBy\":\"token\",\"configurable\":false,\"required\":false},\"expiresAt\":{\"type\":\"datetime\",\"configurable\":false,\"required\":false},\"lifespan\":{\"type\":\"biginteger\",\"configurable\":false,\"required\":false}},\"kind\":\"collectionType\"},\"modelName\":\"transfer-token\"},\"admin::transfer-token-permission\":{\"collectionName\":\"strapi_transfer_token_permissions\",\"info\":{\"name\":\"Transfer Token Permission\",\"description\":\"\",\"singularName\":\"transfer-token-permission\",\"pluralName\":\"transfer-token-permissions\",\"displayName\":\"Transfer Token Permission\"},\"options\":{\"draftAndPublish\":false},\"pluginOptions\":{\"content-manager\":{\"visible\":false},\"content-type-builder\":{\"visible\":false}},\"attributes\":{\"action\":{\"type\":\"string\",\"minLength\":1,\"configurable\":false,\"required\":true},\"token\":{\"configurable\":false,\"type\":\"relation\",\"relation\":\"manyToOne\",\"inversedBy\":\"permissions\",\"target\":\"admin::transfer-token\"},\"createdAt\":{\"type\":\"datetime\"},\"updatedAt\":{\"type\":\"datetime\"},\"publishedAt\":{\"type\":\"datetime\",\"configurable\":false,\"writable\":true,\"visible\":false},\"createdBy\":{\"type\":\"relation\",\"relation\":\"oneToOne\",\"target\":\"admin::user\",\"configurable\":false,\"writable\":false,\"visible\":false,\"useJoinTable\":false,\"private\":true},\"updatedBy\":{\"type\":\"relation\",\"relation\":\"oneToOne\",\"target\":\"admin::user\",\"configurable\":false,\"writable\":false,\"visible\":false,\"useJoinTable\":false,\"private\":true},\"locale\":{\"writable\":true,\"private\":true,\"configurable\":false,\"visible\":false,\"type\":\"string\"},\"localizations\":{\"type\":\"relation\",\"relation\":\"oneToMany\",\"target\":\"admin::transfer-token-permission\",\"writable\":false,\"private\":true,\"configurable\":false,\"visible\":false,\"unstable_virtual\":true,\"joinColumn\":{\"name\":\"document_id\",\"referencedColumn\":\"document_id\",\"referencedTable\":\"strapi_transfer_token_permissions\"}}},\"plugin\":\"admin\",\"globalId\":\"AdminTransferTokenPermission\",\"uid\":\"admin::transfer-token-permission\",\"modelType\":\"contentType\",\"kind\":\"collectionType\",\"__schema__\":{\"collectionName\":\"strapi_transfer_token_permissions\",\"info\":{\"name\":\"Transfer Token Permission\",\"description\":\"\",\"singularName\":\"transfer-token-permission\",\"pluralName\":\"transfer-token-permissions\",\"displayName\":\"Transfer Token Permission\"},\"options\":{},\"pluginOptions\":{\"content-manager\":{\"visible\":false},\"content-type-builder\":{\"visible\":false}},\"attributes\":{\"action\":{\"type\":\"string\",\"minLength\":1,\"configurable\":false,\"required\":true},\"token\":{\"configurable\":false,\"type\":\"relation\",\"relation\":\"manyToOne\",\"inversedBy\":\"permissions\",\"target\":\"admin::transfer-token\"}},\"kind\":\"collectionType\"},\"modelName\":\"transfer-token-permission\"}}','object',NULL,NULL),(7,'plugin_content_manager_configuration_components::common.social-links','{\"settings\":{\"bulkable\":true,\"filterable\":true,\"searchable\":true,\"pageSize\":10,\"mainField\":\"documentId\",\"defaultSortBy\":\"documentId\",\"defaultSortOrder\":\"ASC\"},\"metadatas\":{\"id\":{\"edit\":{},\"list\":{\"label\":\"id\",\"searchable\":false,\"sortable\":false}},\"title\":{\"edit\":{\"label\":\"title\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"title\",\"searchable\":true,\"sortable\":true}},\"link\":{\"edit\":{\"label\":\"link\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"link\",\"searchable\":true,\"sortable\":true}},\"icon\":{\"edit\":{\"label\":\"icon\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"icon\",\"searchable\":false,\"sortable\":false}},\"isActive\":{\"edit\":{\"label\":\"isActive\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"isActive\",\"searchable\":true,\"sortable\":true}},\"documentId\":{\"edit\":{},\"list\":{\"label\":\"documentId\",\"searchable\":true,\"sortable\":true}}},\"layouts\":{\"list\":[\"id\",\"icon\",\"title\",\"link\"],\"edit\":[[{\"name\":\"icon\",\"size\":6},{\"name\":\"title\",\"size\":6}],[{\"name\":\"link\",\"size\":6},{\"name\":\"isActive\",\"size\":4}]]},\"uid\":\"common.social-links\",\"isComponent\":true}','object',NULL,NULL),(8,'plugin_content_manager_configuration_components::common.seo','{\"settings\":{\"bulkable\":true,\"filterable\":true,\"searchable\":true,\"pageSize\":10,\"mainField\":\"documentId\",\"defaultSortBy\":\"documentId\",\"defaultSortOrder\":\"ASC\"},\"metadatas\":{\"id\":{\"edit\":{},\"list\":{\"label\":\"id\",\"searchable\":false,\"sortable\":false}},\"metaTitle\":{\"edit\":{\"label\":\"metaTitle\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"metaTitle\",\"searchable\":true,\"sortable\":true}},\"metaDescription\":{\"edit\":{\"label\":\"metaDescription\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"metaDescription\",\"searchable\":true,\"sortable\":true}},\"preventIndexing\":{\"edit\":{\"label\":\"preventIndexing\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"preventIndexing\",\"searchable\":true,\"sortable\":true}},\"keywords\":{\"edit\":{\"label\":\"keywords\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"keywords\",\"searchable\":true,\"sortable\":true}},\"canonicalUrl\":{\"edit\":{\"label\":\"canonicalUrl\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"canonicalUrl\",\"searchable\":true,\"sortable\":true}},\"metaHead\":{\"edit\":{\"label\":\"metaHead\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"metaHead\",\"searchable\":true,\"sortable\":true}},\"ogMeta\":{\"edit\":{\"label\":\"ogMeta\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"ogMeta\",\"searchable\":false,\"sortable\":false}},\"socialMediaMeta\":{\"edit\":{\"label\":\"socialMediaMeta\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"socialMediaMeta\",\"searchable\":false,\"sortable\":false}},\"wordDescription\":{\"edit\":{\"label\":\"wordDescription\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"wordDescription\",\"searchable\":false,\"sortable\":false}},\"metaImage\":{\"edit\":{\"label\":\"metaImage\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"metaImage\",\"searchable\":false,\"sortable\":false}},\"documentId\":{\"edit\":{},\"list\":{\"label\":\"documentId\",\"searchable\":true,\"sortable\":true}}},\"layouts\":{\"list\":[\"id\",\"metaTitle\",\"metaDescription\",\"preventIndexing\"],\"edit\":[[{\"name\":\"metaTitle\",\"size\":6},{\"name\":\"metaDescription\",\"size\":6}],[{\"name\":\"preventIndexing\",\"size\":4},{\"name\":\"keywords\",\"size\":6}],[{\"name\":\"canonicalUrl\",\"size\":6},{\"name\":\"metaHead\",\"size\":6}],[{\"name\":\"ogMeta\",\"size\":12}],[{\"name\":\"wordDescription\",\"size\":12}],[{\"name\":\"metaImage\",\"size\":6}],[{\"name\":\"socialMediaMeta\",\"size\":12}]]},\"uid\":\"common.seo\",\"isComponent\":true}','object',NULL,NULL),(10,'plugin_content_manager_configuration_components::common.meta','{\"settings\":{\"bulkable\":true,\"filterable\":true,\"searchable\":true,\"pageSize\":10,\"mainField\":\"name\",\"defaultSortBy\":\"name\",\"defaultSortOrder\":\"ASC\"},\"metadatas\":{\"id\":{\"edit\":{},\"list\":{\"label\":\"id\",\"searchable\":false,\"sortable\":false}},\"name\":{\"edit\":{\"label\":\"name\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"name\",\"searchable\":true,\"sortable\":true}},\"content\":{\"edit\":{\"label\":\"content\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"content\",\"searchable\":true,\"sortable\":true}},\"documentId\":{\"edit\":{},\"list\":{\"label\":\"documentId\",\"searchable\":true,\"sortable\":true}}},\"layouts\":{\"list\":[\"id\",\"name\",\"content\"],\"edit\":[[{\"name\":\"name\",\"size\":6},{\"name\":\"content\",\"size\":6}]]},\"uid\":\"common.meta\",\"isComponent\":true}','object',NULL,NULL),(11,'plugin_content_manager_configuration_components::common.menu-item','{\"settings\":{\"bulkable\":true,\"filterable\":true,\"searchable\":true,\"pageSize\":10,\"mainField\":\"documentId\",\"defaultSortBy\":\"documentId\",\"defaultSortOrder\":\"ASC\"},\"metadatas\":{\"id\":{\"edit\":{},\"list\":{\"label\":\"id\",\"searchable\":false,\"sortable\":false}},\"title\":{\"edit\":{\"label\":\"title\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"title\",\"searchable\":true,\"sortable\":true}},\"url\":{\"edit\":{\"label\":\"url\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"url\",\"searchable\":true,\"sortable\":true}},\"newTab\":{\"edit\":{\"label\":\"newTab\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"newTab\",\"searchable\":true,\"sortable\":true}},\"isActive\":{\"edit\":{\"label\":\"isActive\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"isActive\",\"searchable\":true,\"sortable\":true}},\"key\":{\"edit\":{\"label\":\"key\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"key\",\"searchable\":true,\"sortable\":true}},\"documentId\":{\"edit\":{},\"list\":{\"label\":\"documentId\",\"searchable\":true,\"sortable\":true}}},\"layouts\":{\"list\":[\"id\",\"title\",\"url\",\"newTab\"],\"edit\":[[{\"name\":\"title\",\"size\":6},{\"name\":\"url\",\"size\":6}],[{\"name\":\"newTab\",\"size\":4},{\"name\":\"isActive\",\"size\":4}],[{\"name\":\"key\",\"size\":6}]]},\"uid\":\"common.menu-item\",\"isComponent\":true}','object',NULL,NULL),(12,'plugin_content_manager_configuration_components::common.menu-item-w-sub','{\"settings\":{\"bulkable\":true,\"filterable\":true,\"searchable\":true,\"pageSize\":10,\"mainField\":\"documentId\",\"defaultSortBy\":\"documentId\",\"defaultSortOrder\":\"ASC\"},\"metadatas\":{\"id\":{\"edit\":{},\"list\":{\"label\":\"id\",\"searchable\":false,\"sortable\":false}},\"title\":{\"edit\":{\"label\":\"title\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"title\",\"searchable\":true,\"sortable\":true}},\"url\":{\"edit\":{\"label\":\"url\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"url\",\"searchable\":true,\"sortable\":true}},\"newTab\":{\"edit\":{\"label\":\"newTab\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"newTab\",\"searchable\":true,\"sortable\":true}},\"isActive\":{\"edit\":{\"label\":\"isActive\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"isActive\",\"searchable\":true,\"sortable\":true}},\"submenu\":{\"edit\":{\"label\":\"submenu\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"submenu\",\"searchable\":false,\"sortable\":false}},\"documentId\":{\"edit\":{},\"list\":{\"label\":\"documentId\",\"searchable\":true,\"sortable\":true}}},\"layouts\":{\"list\":[\"id\",\"title\",\"url\",\"newTab\"],\"edit\":[[{\"name\":\"title\",\"size\":6},{\"name\":\"url\",\"size\":6}],[{\"name\":\"newTab\",\"size\":4},{\"name\":\"isActive\",\"size\":4}],[{\"name\":\"submenu\",\"size\":12}]]},\"uid\":\"common.menu-item-w-sub\",\"isComponent\":true}','object',NULL,NULL),(16,'plugin_content_manager_configuration_components::common.banner','{\"settings\":{\"bulkable\":true,\"filterable\":true,\"searchable\":true,\"pageSize\":10,\"mainField\":\"title\",\"defaultSortBy\":\"title\",\"defaultSortOrder\":\"ASC\"},\"metadatas\":{\"id\":{\"edit\":{},\"list\":{\"label\":\"id\",\"searchable\":false,\"sortable\":false}},\"title\":{\"edit\":{\"label\":\"title\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"title\",\"searchable\":true,\"sortable\":true}},\"subtitle\":{\"edit\":{\"label\":\"subtitle\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"subtitle\",\"searchable\":true,\"sortable\":true}},\"media\":{\"edit\":{\"label\":\"media\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"media\",\"searchable\":false,\"sortable\":false}},\"responsiveMedia\":{\"edit\":{\"label\":\"responsiveMedia\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"responsiveMedia\",\"searchable\":false,\"sortable\":false}},\"type\":{\"edit\":{\"label\":\"type\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"type\",\"searchable\":true,\"sortable\":true}},\"callToAction\":{\"edit\":{\"label\":\"callToAction\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"callToAction\",\"searchable\":false,\"sortable\":false}},\"documentId\":{\"edit\":{},\"list\":{\"label\":\"documentId\",\"searchable\":true,\"sortable\":true}}},\"layouts\":{\"list\":[\"id\",\"title\",\"media\",\"subtitle\"],\"edit\":[[{\"name\":\"title\",\"size\":6}],[{\"name\":\"media\",\"size\":12}],[{\"name\":\"subtitle\",\"size\":6},{\"name\":\"responsiveMedia\",\"size\":6}],[{\"name\":\"type\",\"size\":6}],[{\"name\":\"callToAction\",\"size\":12}]]},\"uid\":\"common.banner\",\"isComponent\":true}','object',NULL,NULL),(17,'plugin_content_manager_configuration_content_types::plugin::upload.file','{\"settings\":{\"bulkable\":true,\"filterable\":true,\"searchable\":true,\"pageSize\":10,\"mainField\":\"name\",\"defaultSortBy\":\"name\",\"defaultSortOrder\":\"ASC\"},\"metadatas\":{\"id\":{\"edit\":{},\"list\":{\"label\":\"id\",\"searchable\":true,\"sortable\":true}},\"name\":{\"edit\":{\"label\":\"name\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"name\",\"searchable\":true,\"sortable\":true}},\"alternativeText\":{\"edit\":{\"label\":\"alternativeText\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"alternativeText\",\"searchable\":true,\"sortable\":true}},\"caption\":{\"edit\":{\"label\":\"caption\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"caption\",\"searchable\":true,\"sortable\":true}},\"width\":{\"edit\":{\"label\":\"width\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"width\",\"searchable\":true,\"sortable\":true}},\"height\":{\"edit\":{\"label\":\"height\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"height\",\"searchable\":true,\"sortable\":true}},\"formats\":{\"edit\":{\"label\":\"formats\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"formats\",\"searchable\":false,\"sortable\":false}},\"hash\":{\"edit\":{\"label\":\"hash\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"hash\",\"searchable\":true,\"sortable\":true}},\"ext\":{\"edit\":{\"label\":\"ext\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"ext\",\"searchable\":true,\"sortable\":true}},\"mime\":{\"edit\":{\"label\":\"mime\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"mime\",\"searchable\":true,\"sortable\":true}},\"size\":{\"edit\":{\"label\":\"size\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"size\",\"searchable\":true,\"sortable\":true}},\"url\":{\"edit\":{\"label\":\"url\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"url\",\"searchable\":true,\"sortable\":true}},\"previewUrl\":{\"edit\":{\"label\":\"previewUrl\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"previewUrl\",\"searchable\":true,\"sortable\":true}},\"provider\":{\"edit\":{\"label\":\"provider\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"provider\",\"searchable\":true,\"sortable\":true}},\"provider_metadata\":{\"edit\":{\"label\":\"provider_metadata\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"provider_metadata\",\"searchable\":false,\"sortable\":false}},\"folder\":{\"edit\":{\"label\":\"folder\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true,\"mainField\":\"name\"},\"list\":{\"label\":\"folder\",\"searchable\":true,\"sortable\":true}},\"folderPath\":{\"edit\":{\"label\":\"folderPath\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"folderPath\",\"searchable\":true,\"sortable\":true}},\"createdAt\":{\"edit\":{\"label\":\"createdAt\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true},\"list\":{\"label\":\"createdAt\",\"searchable\":true,\"sortable\":true}},\"updatedAt\":{\"edit\":{\"label\":\"updatedAt\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true},\"list\":{\"label\":\"updatedAt\",\"searchable\":true,\"sortable\":true}},\"createdBy\":{\"edit\":{\"label\":\"createdBy\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true,\"mainField\":\"firstname\"},\"list\":{\"label\":\"createdBy\",\"searchable\":true,\"sortable\":true}},\"updatedBy\":{\"edit\":{\"label\":\"updatedBy\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true,\"mainField\":\"firstname\"},\"list\":{\"label\":\"updatedBy\",\"searchable\":true,\"sortable\":true}},\"documentId\":{\"edit\":{},\"list\":{\"label\":\"documentId\",\"searchable\":true,\"sortable\":true}}},\"layouts\":{\"list\":[\"id\",\"name\",\"alternativeText\",\"caption\"],\"edit\":[[{\"name\":\"name\",\"size\":6},{\"name\":\"alternativeText\",\"size\":6}],[{\"name\":\"caption\",\"size\":6},{\"name\":\"width\",\"size\":4}],[{\"name\":\"height\",\"size\":4}],[{\"name\":\"formats\",\"size\":12}],[{\"name\":\"hash\",\"size\":6},{\"name\":\"ext\",\"size\":6}],[{\"name\":\"mime\",\"size\":6},{\"name\":\"size\",\"size\":4}],[{\"name\":\"url\",\"size\":6},{\"name\":\"previewUrl\",\"size\":6}],[{\"name\":\"provider\",\"size\":6}],[{\"name\":\"provider_metadata\",\"size\":12}],[{\"name\":\"folder\",\"size\":6},{\"name\":\"folderPath\",\"size\":6}]]},\"uid\":\"plugin::upload.file\"}','object',NULL,NULL),(18,'plugin_content_manager_configuration_content_types::plugin::upload.folder','{\"settings\":{\"bulkable\":true,\"filterable\":true,\"searchable\":true,\"pageSize\":10,\"mainField\":\"name\",\"defaultSortBy\":\"name\",\"defaultSortOrder\":\"ASC\"},\"metadatas\":{\"id\":{\"edit\":{},\"list\":{\"label\":\"id\",\"searchable\":true,\"sortable\":true}},\"name\":{\"edit\":{\"label\":\"name\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"name\",\"searchable\":true,\"sortable\":true}},\"pathId\":{\"edit\":{\"label\":\"pathId\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"pathId\",\"searchable\":true,\"sortable\":true}},\"parent\":{\"edit\":{\"label\":\"parent\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true,\"mainField\":\"name\"},\"list\":{\"label\":\"parent\",\"searchable\":true,\"sortable\":true}},\"children\":{\"edit\":{\"label\":\"children\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true,\"mainField\":\"name\"},\"list\":{\"label\":\"children\",\"searchable\":false,\"sortable\":false}},\"files\":{\"edit\":{\"label\":\"files\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true,\"mainField\":\"name\"},\"list\":{\"label\":\"files\",\"searchable\":false,\"sortable\":false}},\"path\":{\"edit\":{\"label\":\"path\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"path\",\"searchable\":true,\"sortable\":true}},\"createdAt\":{\"edit\":{\"label\":\"createdAt\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true},\"list\":{\"label\":\"createdAt\",\"searchable\":true,\"sortable\":true}},\"updatedAt\":{\"edit\":{\"label\":\"updatedAt\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true},\"list\":{\"label\":\"updatedAt\",\"searchable\":true,\"sortable\":true}},\"createdBy\":{\"edit\":{\"label\":\"createdBy\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true,\"mainField\":\"firstname\"},\"list\":{\"label\":\"createdBy\",\"searchable\":true,\"sortable\":true}},\"updatedBy\":{\"edit\":{\"label\":\"updatedBy\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true,\"mainField\":\"firstname\"},\"list\":{\"label\":\"updatedBy\",\"searchable\":true,\"sortable\":true}},\"documentId\":{\"edit\":{},\"list\":{\"label\":\"documentId\",\"searchable\":true,\"sortable\":true}}},\"layouts\":{\"list\":[\"id\",\"name\",\"pathId\",\"parent\"],\"edit\":[[{\"name\":\"name\",\"size\":6},{\"name\":\"pathId\",\"size\":4}],[{\"name\":\"parent\",\"size\":6},{\"name\":\"children\",\"size\":6}],[{\"name\":\"files\",\"size\":6},{\"name\":\"path\",\"size\":6}]]},\"uid\":\"plugin::upload.folder\"}','object',NULL,NULL),(19,'plugin_content_manager_configuration_content_types::plugin::i18n.locale','{\"settings\":{\"bulkable\":true,\"filterable\":true,\"searchable\":true,\"pageSize\":10,\"mainField\":\"name\",\"defaultSortBy\":\"name\",\"defaultSortOrder\":\"ASC\"},\"metadatas\":{\"id\":{\"edit\":{},\"list\":{\"label\":\"id\",\"searchable\":true,\"sortable\":true}},\"name\":{\"edit\":{\"label\":\"name\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"name\",\"searchable\":true,\"sortable\":true}},\"code\":{\"edit\":{\"label\":\"code\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"code\",\"searchable\":true,\"sortable\":true}},\"createdAt\":{\"edit\":{\"label\":\"createdAt\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true},\"list\":{\"label\":\"createdAt\",\"searchable\":true,\"sortable\":true}},\"updatedAt\":{\"edit\":{\"label\":\"updatedAt\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true},\"list\":{\"label\":\"updatedAt\",\"searchable\":true,\"sortable\":true}},\"createdBy\":{\"edit\":{\"label\":\"createdBy\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true,\"mainField\":\"firstname\"},\"list\":{\"label\":\"createdBy\",\"searchable\":true,\"sortable\":true}},\"updatedBy\":{\"edit\":{\"label\":\"updatedBy\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true,\"mainField\":\"firstname\"},\"list\":{\"label\":\"updatedBy\",\"searchable\":true,\"sortable\":true}},\"documentId\":{\"edit\":{},\"list\":{\"label\":\"documentId\",\"searchable\":true,\"sortable\":true}}},\"layouts\":{\"list\":[\"id\",\"name\",\"code\",\"createdAt\"],\"edit\":[[{\"name\":\"name\",\"size\":6},{\"name\":\"code\",\"size\":6}]]},\"uid\":\"plugin::i18n.locale\"}','object',NULL,NULL),(20,'plugin_content_manager_configuration_content_types::plugin::content-releases.release','{\"settings\":{\"bulkable\":true,\"filterable\":true,\"searchable\":true,\"pageSize\":10,\"mainField\":\"name\",\"defaultSortBy\":\"name\",\"defaultSortOrder\":\"ASC\"},\"metadatas\":{\"id\":{\"edit\":{},\"list\":{\"label\":\"id\",\"searchable\":true,\"sortable\":true}},\"name\":{\"edit\":{\"label\":\"name\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"name\",\"searchable\":true,\"sortable\":true}},\"releasedAt\":{\"edit\":{\"label\":\"releasedAt\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"releasedAt\",\"searchable\":true,\"sortable\":true}},\"scheduledAt\":{\"edit\":{\"label\":\"scheduledAt\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"scheduledAt\",\"searchable\":true,\"sortable\":true}},\"timezone\":{\"edit\":{\"label\":\"timezone\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"timezone\",\"searchable\":true,\"sortable\":true}},\"status\":{\"edit\":{\"label\":\"status\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"status\",\"searchable\":true,\"sortable\":true}},\"actions\":{\"edit\":{\"label\":\"actions\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true,\"mainField\":\"contentType\"},\"list\":{\"label\":\"actions\",\"searchable\":false,\"sortable\":false}},\"createdAt\":{\"edit\":{\"label\":\"createdAt\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true},\"list\":{\"label\":\"createdAt\",\"searchable\":true,\"sortable\":true}},\"updatedAt\":{\"edit\":{\"label\":\"updatedAt\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true},\"list\":{\"label\":\"updatedAt\",\"searchable\":true,\"sortable\":true}},\"createdBy\":{\"edit\":{\"label\":\"createdBy\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true,\"mainField\":\"firstname\"},\"list\":{\"label\":\"createdBy\",\"searchable\":true,\"sortable\":true}},\"updatedBy\":{\"edit\":{\"label\":\"updatedBy\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true,\"mainField\":\"firstname\"},\"list\":{\"label\":\"updatedBy\",\"searchable\":true,\"sortable\":true}},\"documentId\":{\"edit\":{},\"list\":{\"label\":\"documentId\",\"searchable\":true,\"sortable\":true}}},\"layouts\":{\"list\":[\"id\",\"name\",\"releasedAt\",\"scheduledAt\"],\"edit\":[[{\"name\":\"name\",\"size\":6},{\"name\":\"releasedAt\",\"size\":6}],[{\"name\":\"scheduledAt\",\"size\":6},{\"name\":\"timezone\",\"size\":6}],[{\"name\":\"status\",\"size\":6},{\"name\":\"actions\",\"size\":6}]]},\"uid\":\"plugin::content-releases.release\"}','object',NULL,NULL),(21,'plugin_content_manager_configuration_content_types::plugin::content-releases.release-action','{\"settings\":{\"bulkable\":true,\"filterable\":true,\"searchable\":true,\"pageSize\":10,\"mainField\":\"contentType\",\"defaultSortBy\":\"contentType\",\"defaultSortOrder\":\"ASC\"},\"metadatas\":{\"id\":{\"edit\":{},\"list\":{\"label\":\"id\",\"searchable\":true,\"sortable\":true}},\"type\":{\"edit\":{\"label\":\"type\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"type\",\"searchable\":true,\"sortable\":true}},\"contentType\":{\"edit\":{\"label\":\"contentType\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"contentType\",\"searchable\":true,\"sortable\":true}},\"entryDocumentId\":{\"edit\":{\"label\":\"entryDocumentId\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"entryDocumentId\",\"searchable\":true,\"sortable\":true}},\"release\":{\"edit\":{\"label\":\"release\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true,\"mainField\":\"name\"},\"list\":{\"label\":\"release\",\"searchable\":true,\"sortable\":true}},\"isEntryValid\":{\"edit\":{\"label\":\"isEntryValid\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"isEntryValid\",\"searchable\":true,\"sortable\":true}},\"createdAt\":{\"edit\":{\"label\":\"createdAt\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true},\"list\":{\"label\":\"createdAt\",\"searchable\":true,\"sortable\":true}},\"updatedAt\":{\"edit\":{\"label\":\"updatedAt\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true},\"list\":{\"label\":\"updatedAt\",\"searchable\":true,\"sortable\":true}},\"createdBy\":{\"edit\":{\"label\":\"createdBy\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true,\"mainField\":\"firstname\"},\"list\":{\"label\":\"createdBy\",\"searchable\":true,\"sortable\":true}},\"updatedBy\":{\"edit\":{\"label\":\"updatedBy\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true,\"mainField\":\"firstname\"},\"list\":{\"label\":\"updatedBy\",\"searchable\":true,\"sortable\":true}},\"documentId\":{\"edit\":{},\"list\":{\"label\":\"documentId\",\"searchable\":true,\"sortable\":true}}},\"layouts\":{\"list\":[\"id\",\"type\",\"contentType\",\"entryDocumentId\"],\"edit\":[[{\"name\":\"type\",\"size\":6},{\"name\":\"contentType\",\"size\":6}],[{\"name\":\"entryDocumentId\",\"size\":6},{\"name\":\"release\",\"size\":6}],[{\"name\":\"isEntryValid\",\"size\":4}]]},\"uid\":\"plugin::content-releases.release-action\"}','object',NULL,NULL),(22,'plugin_content_manager_configuration_content_types::plugin::review-workflows.workflow','{\"settings\":{\"bulkable\":true,\"filterable\":true,\"searchable\":true,\"pageSize\":10,\"mainField\":\"name\",\"defaultSortBy\":\"name\",\"defaultSortOrder\":\"ASC\"},\"metadatas\":{\"id\":{\"edit\":{},\"list\":{\"label\":\"id\",\"searchable\":true,\"sortable\":true}},\"name\":{\"edit\":{\"label\":\"name\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"name\",\"searchable\":true,\"sortable\":true}},\"stages\":{\"edit\":{\"label\":\"stages\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true,\"mainField\":\"name\"},\"list\":{\"label\":\"stages\",\"searchable\":false,\"sortable\":false}},\"stageRequiredToPublish\":{\"edit\":{\"label\":\"stageRequiredToPublish\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true,\"mainField\":\"name\"},\"list\":{\"label\":\"stageRequiredToPublish\",\"searchable\":true,\"sortable\":true}},\"contentTypes\":{\"edit\":{\"label\":\"contentTypes\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"contentTypes\",\"searchable\":false,\"sortable\":false}},\"createdAt\":{\"edit\":{\"label\":\"createdAt\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true},\"list\":{\"label\":\"createdAt\",\"searchable\":true,\"sortable\":true}},\"updatedAt\":{\"edit\":{\"label\":\"updatedAt\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true},\"list\":{\"label\":\"updatedAt\",\"searchable\":true,\"sortable\":true}},\"createdBy\":{\"edit\":{\"label\":\"createdBy\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true,\"mainField\":\"firstname\"},\"list\":{\"label\":\"createdBy\",\"searchable\":true,\"sortable\":true}},\"updatedBy\":{\"edit\":{\"label\":\"updatedBy\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true,\"mainField\":\"firstname\"},\"list\":{\"label\":\"updatedBy\",\"searchable\":true,\"sortable\":true}},\"documentId\":{\"edit\":{},\"list\":{\"label\":\"documentId\",\"searchable\":true,\"sortable\":true}}},\"layouts\":{\"list\":[\"id\",\"name\",\"stages\",\"stageRequiredToPublish\"],\"edit\":[[{\"name\":\"name\",\"size\":6},{\"name\":\"stages\",\"size\":6}],[{\"name\":\"stageRequiredToPublish\",\"size\":6}],[{\"name\":\"contentTypes\",\"size\":12}]]},\"uid\":\"plugin::review-workflows.workflow\"}','object',NULL,NULL),(23,'plugin_content_manager_configuration_content_types::plugin::review-workflows.workflow-stage','{\"settings\":{\"bulkable\":true,\"filterable\":true,\"searchable\":true,\"pageSize\":10,\"mainField\":\"name\",\"defaultSortBy\":\"name\",\"defaultSortOrder\":\"ASC\"},\"metadatas\":{\"id\":{\"edit\":{},\"list\":{\"label\":\"id\",\"searchable\":true,\"sortable\":true}},\"name\":{\"edit\":{\"label\":\"name\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"name\",\"searchable\":true,\"sortable\":true}},\"color\":{\"edit\":{\"label\":\"color\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"color\",\"searchable\":true,\"sortable\":true}},\"workflow\":{\"edit\":{\"label\":\"workflow\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true,\"mainField\":\"name\"},\"list\":{\"label\":\"workflow\",\"searchable\":true,\"sortable\":true}},\"permissions\":{\"edit\":{\"label\":\"permissions\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true,\"mainField\":\"action\"},\"list\":{\"label\":\"permissions\",\"searchable\":false,\"sortable\":false}},\"createdAt\":{\"edit\":{\"label\":\"createdAt\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true},\"list\":{\"label\":\"createdAt\",\"searchable\":true,\"sortable\":true}},\"updatedAt\":{\"edit\":{\"label\":\"updatedAt\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true},\"list\":{\"label\":\"updatedAt\",\"searchable\":true,\"sortable\":true}},\"createdBy\":{\"edit\":{\"label\":\"createdBy\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true,\"mainField\":\"firstname\"},\"list\":{\"label\":\"createdBy\",\"searchable\":true,\"sortable\":true}},\"updatedBy\":{\"edit\":{\"label\":\"updatedBy\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true,\"mainField\":\"firstname\"},\"list\":{\"label\":\"updatedBy\",\"searchable\":true,\"sortable\":true}},\"documentId\":{\"edit\":{},\"list\":{\"label\":\"documentId\",\"searchable\":true,\"sortable\":true}}},\"layouts\":{\"list\":[\"id\",\"name\",\"color\",\"workflow\"],\"edit\":[[{\"name\":\"name\",\"size\":6},{\"name\":\"color\",\"size\":6}],[{\"name\":\"workflow\",\"size\":6},{\"name\":\"permissions\",\"size\":6}]]},\"uid\":\"plugin::review-workflows.workflow-stage\"}','object',NULL,NULL),(24,'plugin_content_manager_configuration_content_types::plugin::users-permissions.permission','{\"settings\":{\"bulkable\":true,\"filterable\":true,\"searchable\":true,\"pageSize\":10,\"mainField\":\"action\",\"defaultSortBy\":\"action\",\"defaultSortOrder\":\"ASC\"},\"metadatas\":{\"id\":{\"edit\":{},\"list\":{\"label\":\"id\",\"searchable\":true,\"sortable\":true}},\"action\":{\"edit\":{\"label\":\"action\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"action\",\"searchable\":true,\"sortable\":true}},\"role\":{\"edit\":{\"label\":\"role\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true,\"mainField\":\"name\"},\"list\":{\"label\":\"role\",\"searchable\":true,\"sortable\":true}},\"createdAt\":{\"edit\":{\"label\":\"createdAt\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true},\"list\":{\"label\":\"createdAt\",\"searchable\":true,\"sortable\":true}},\"updatedAt\":{\"edit\":{\"label\":\"updatedAt\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true},\"list\":{\"label\":\"updatedAt\",\"searchable\":true,\"sortable\":true}},\"createdBy\":{\"edit\":{\"label\":\"createdBy\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true,\"mainField\":\"firstname\"},\"list\":{\"label\":\"createdBy\",\"searchable\":true,\"sortable\":true}},\"updatedBy\":{\"edit\":{\"label\":\"updatedBy\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true,\"mainField\":\"firstname\"},\"list\":{\"label\":\"updatedBy\",\"searchable\":true,\"sortable\":true}},\"documentId\":{\"edit\":{},\"list\":{\"label\":\"documentId\",\"searchable\":true,\"sortable\":true}}},\"layouts\":{\"list\":[\"id\",\"action\",\"role\",\"createdAt\"],\"edit\":[[{\"name\":\"action\",\"size\":6},{\"name\":\"role\",\"size\":6}]]},\"uid\":\"plugin::users-permissions.permission\"}','object',NULL,NULL),(25,'plugin_content_manager_configuration_content_types::plugin::users-permissions.role','{\"settings\":{\"bulkable\":true,\"filterable\":true,\"searchable\":true,\"pageSize\":10,\"mainField\":\"name\",\"defaultSortBy\":\"name\",\"defaultSortOrder\":\"ASC\"},\"metadatas\":{\"id\":{\"edit\":{},\"list\":{\"label\":\"id\",\"searchable\":true,\"sortable\":true}},\"name\":{\"edit\":{\"label\":\"name\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"name\",\"searchable\":true,\"sortable\":true}},\"description\":{\"edit\":{\"label\":\"description\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"description\",\"searchable\":true,\"sortable\":true}},\"type\":{\"edit\":{\"label\":\"type\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"type\",\"searchable\":true,\"sortable\":true}},\"permissions\":{\"edit\":{\"label\":\"permissions\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true,\"mainField\":\"action\"},\"list\":{\"label\":\"permissions\",\"searchable\":false,\"sortable\":false}},\"users\":{\"edit\":{\"label\":\"users\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true,\"mainField\":\"username\"},\"list\":{\"label\":\"users\",\"searchable\":false,\"sortable\":false}},\"createdAt\":{\"edit\":{\"label\":\"createdAt\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true},\"list\":{\"label\":\"createdAt\",\"searchable\":true,\"sortable\":true}},\"updatedAt\":{\"edit\":{\"label\":\"updatedAt\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true},\"list\":{\"label\":\"updatedAt\",\"searchable\":true,\"sortable\":true}},\"createdBy\":{\"edit\":{\"label\":\"createdBy\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true,\"mainField\":\"firstname\"},\"list\":{\"label\":\"createdBy\",\"searchable\":true,\"sortable\":true}},\"updatedBy\":{\"edit\":{\"label\":\"updatedBy\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true,\"mainField\":\"firstname\"},\"list\":{\"label\":\"updatedBy\",\"searchable\":true,\"sortable\":true}},\"documentId\":{\"edit\":{},\"list\":{\"label\":\"documentId\",\"searchable\":true,\"sortable\":true}}},\"layouts\":{\"list\":[\"id\",\"name\",\"description\",\"type\"],\"edit\":[[{\"name\":\"name\",\"size\":6},{\"name\":\"description\",\"size\":6}],[{\"name\":\"type\",\"size\":6},{\"name\":\"permissions\",\"size\":6}],[{\"name\":\"users\",\"size\":6}]]},\"uid\":\"plugin::users-permissions.role\"}','object',NULL,NULL),(26,'plugin_content_manager_configuration_content_types::plugin::users-permissions.user','{\"settings\":{\"bulkable\":true,\"filterable\":true,\"searchable\":true,\"pageSize\":10,\"mainField\":\"username\",\"defaultSortBy\":\"username\",\"defaultSortOrder\":\"ASC\"},\"metadatas\":{\"id\":{\"edit\":{},\"list\":{\"label\":\"id\",\"searchable\":true,\"sortable\":true}},\"username\":{\"edit\":{\"label\":\"username\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"username\",\"searchable\":true,\"sortable\":true}},\"email\":{\"edit\":{\"label\":\"email\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"email\",\"searchable\":true,\"sortable\":true}},\"provider\":{\"edit\":{\"label\":\"provider\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true},\"list\":{\"label\":\"provider\",\"searchable\":true,\"sortable\":true}},\"password\":{\"edit\":{\"label\":\"password\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"password\",\"searchable\":true,\"sortable\":true}},\"resetPasswordToken\":{\"edit\":{\"label\":\"resetPasswordToken\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true},\"list\":{\"label\":\"resetPasswordToken\",\"searchable\":true,\"sortable\":true}},\"confirmationToken\":{\"edit\":{\"label\":\"confirmationToken\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true},\"list\":{\"label\":\"confirmationToken\",\"searchable\":true,\"sortable\":true}},\"confirmed\":{\"edit\":{\"label\":\"confirmed\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"confirmed\",\"searchable\":true,\"sortable\":true}},\"blocked\":{\"edit\":{\"label\":\"blocked\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"blocked\",\"searchable\":true,\"sortable\":true}},\"role\":{\"edit\":{\"label\":\"role\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true,\"mainField\":\"name\"},\"list\":{\"label\":\"role\",\"searchable\":true,\"sortable\":true}},\"createdAt\":{\"edit\":{\"label\":\"createdAt\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true},\"list\":{\"label\":\"createdAt\",\"searchable\":true,\"sortable\":true}},\"updatedAt\":{\"edit\":{\"label\":\"updatedAt\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true},\"list\":{\"label\":\"updatedAt\",\"searchable\":true,\"sortable\":true}},\"createdBy\":{\"edit\":{\"label\":\"createdBy\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true,\"mainField\":\"firstname\"},\"list\":{\"label\":\"createdBy\",\"searchable\":true,\"sortable\":true}},\"updatedBy\":{\"edit\":{\"label\":\"updatedBy\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true,\"mainField\":\"firstname\"},\"list\":{\"label\":\"updatedBy\",\"searchable\":true,\"sortable\":true}},\"documentId\":{\"edit\":{},\"list\":{\"label\":\"documentId\",\"searchable\":true,\"sortable\":true}}},\"layouts\":{\"list\":[\"id\",\"username\",\"email\",\"confirmed\"],\"edit\":[[{\"name\":\"username\",\"size\":6},{\"name\":\"email\",\"size\":6}],[{\"name\":\"password\",\"size\":6},{\"name\":\"confirmed\",\"size\":4}],[{\"name\":\"blocked\",\"size\":4},{\"name\":\"role\",\"size\":6}]]},\"uid\":\"plugin::users-permissions.user\"}','object',NULL,NULL),(31,'plugin_content_manager_configuration_content_types::api::footer.footer','{\"settings\":{\"bulkable\":true,\"filterable\":true,\"searchable\":true,\"pageSize\":10,\"mainField\":\"documentId\",\"defaultSortBy\":\"documentId\",\"defaultSortOrder\":\"ASC\"},\"metadatas\":{\"id\":{\"edit\":{},\"list\":{\"label\":\"id\",\"searchable\":true,\"sortable\":true}},\"logo\":{\"edit\":{\"label\":\"logo\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"logo\",\"searchable\":false,\"sortable\":false}},\"description\":{\"edit\":{\"label\":\"description\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"description\",\"searchable\":true,\"sortable\":true}},\"socialLinks\":{\"edit\":{\"label\":\"socialLinks\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"socialLinks\",\"searchable\":false,\"sortable\":false}},\"bottomMenu\":{\"edit\":{\"label\":\"bottomMenu\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"bottomMenu\",\"searchable\":false,\"sortable\":false}},\"menu\":{\"edit\":{\"label\":\"menu\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"menu\",\"searchable\":false,\"sortable\":false}},\"copyrightText\":{\"edit\":{\"label\":\"copyrightText\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"copyrightText\",\"searchable\":true,\"sortable\":true}},\"createdAt\":{\"edit\":{\"label\":\"createdAt\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true},\"list\":{\"label\":\"createdAt\",\"searchable\":true,\"sortable\":true}},\"updatedAt\":{\"edit\":{\"label\":\"updatedAt\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true},\"list\":{\"label\":\"updatedAt\",\"searchable\":true,\"sortable\":true}},\"createdBy\":{\"edit\":{\"label\":\"createdBy\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true,\"mainField\":\"firstname\"},\"list\":{\"label\":\"createdBy\",\"searchable\":true,\"sortable\":true}},\"updatedBy\":{\"edit\":{\"label\":\"updatedBy\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true,\"mainField\":\"firstname\"},\"list\":{\"label\":\"updatedBy\",\"searchable\":true,\"sortable\":true}},\"documentId\":{\"edit\":{},\"list\":{\"label\":\"documentId\",\"searchable\":true,\"sortable\":true}}},\"layouts\":{\"list\":[\"id\",\"logo\",\"description\",\"socialLinks\"],\"edit\":[[{\"name\":\"copyrightText\",\"size\":6},{\"name\":\"logo\",\"size\":6}],[{\"name\":\"description\",\"size\":6}],[{\"name\":\"socialLinks\",\"size\":12}],[{\"name\":\"bottomMenu\",\"size\":12}],[{\"name\":\"menu\",\"size\":12}]]},\"uid\":\"api::footer.footer\"}','object',NULL,NULL),(32,'plugin_content_manager_configuration_content_types::api::header.header','{\"settings\":{\"bulkable\":true,\"filterable\":true,\"searchable\":true,\"pageSize\":10,\"mainField\":\"documentId\",\"defaultSortBy\":\"documentId\",\"defaultSortOrder\":\"ASC\"},\"metadatas\":{\"id\":{\"edit\":{},\"list\":{\"label\":\"id\",\"searchable\":true,\"sortable\":true}},\"logo\":{\"edit\":{\"label\":\"logo\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"logo\",\"searchable\":false,\"sortable\":false}},\"colorLogo\":{\"edit\":{\"label\":\"colorLogo\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"colorLogo\",\"searchable\":false,\"sortable\":false}},\"menu\":{\"edit\":{\"label\":\"menu\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"menu\",\"searchable\":false,\"sortable\":false}},\"showMultilingual\":{\"edit\":{\"label\":\"showMultilingual\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"showMultilingual\",\"searchable\":true,\"sortable\":true}},\"createdAt\":{\"edit\":{\"label\":\"createdAt\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true},\"list\":{\"label\":\"createdAt\",\"searchable\":true,\"sortable\":true}},\"updatedAt\":{\"edit\":{\"label\":\"updatedAt\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true},\"list\":{\"label\":\"updatedAt\",\"searchable\":true,\"sortable\":true}},\"createdBy\":{\"edit\":{\"label\":\"createdBy\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true,\"mainField\":\"firstname\"},\"list\":{\"label\":\"createdBy\",\"searchable\":true,\"sortable\":true}},\"updatedBy\":{\"edit\":{\"label\":\"updatedBy\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true,\"mainField\":\"firstname\"},\"list\":{\"label\":\"updatedBy\",\"searchable\":true,\"sortable\":true}},\"documentId\":{\"edit\":{},\"list\":{\"label\":\"documentId\",\"searchable\":true,\"sortable\":true}}},\"layouts\":{\"list\":[\"id\",\"logo\",\"showMultilingual\",\"colorLogo\"],\"edit\":[[{\"name\":\"menu\",\"size\":12}],[{\"name\":\"showMultilingual\",\"size\":4}],[{\"name\":\"logo\",\"size\":12}],[{\"name\":\"colorLogo\",\"size\":6}]]},\"uid\":\"api::header.header\"}','object',NULL,NULL),(33,'plugin_content_manager_configuration_content_types::api::home.home','{\"settings\":{\"bulkable\":true,\"filterable\":true,\"searchable\":true,\"pageSize\":10,\"mainField\":\"documentId\",\"defaultSortBy\":\"documentId\",\"defaultSortOrder\":\"ASC\"},\"metadatas\":{\"id\":{\"edit\":{},\"list\":{\"label\":\"id\",\"searchable\":true,\"sortable\":true}},\"banner\":{\"edit\":{\"label\":\"banner\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"banner\",\"searchable\":false,\"sortable\":false}},\"aboutCme\":{\"edit\":{\"label\":\"aboutCme\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"aboutCme\",\"searchable\":false,\"sortable\":false}},\"businessStreams\":{\"edit\":{\"label\":\"businessStreams\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"businessStreams\",\"searchable\":false,\"sortable\":false}},\"trustedBrands\":{\"edit\":{\"label\":\"trustedBrands\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"trustedBrands\",\"searchable\":false,\"sortable\":false}},\"trustedPartners\":{\"edit\":{\"label\":\"trustedPartners\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"trustedPartners\",\"searchable\":false,\"sortable\":false}},\"socialFeeds\":{\"edit\":{\"label\":\"socialFeeds\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"socialFeeds\",\"searchable\":false,\"sortable\":false}},\"ourLocations\":{\"edit\":{\"label\":\"ourLocations\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"ourLocations\",\"searchable\":false,\"sortable\":false}},\"aboutGroup\":{\"edit\":{\"label\":\"aboutGroup\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"aboutGroup\",\"searchable\":false,\"sortable\":false}},\"isNewsEnabled\":{\"edit\":{\"label\":\"isNewsEnabled\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"isNewsEnabled\",\"searchable\":true,\"sortable\":true}},\"seo\":{\"edit\":{\"label\":\"seo\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"seo\",\"searchable\":false,\"sortable\":false}},\"createdAt\":{\"edit\":{\"label\":\"createdAt\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true},\"list\":{\"label\":\"createdAt\",\"searchable\":true,\"sortable\":true}},\"updatedAt\":{\"edit\":{\"label\":\"updatedAt\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true},\"list\":{\"label\":\"updatedAt\",\"searchable\":true,\"sortable\":true}},\"createdBy\":{\"edit\":{\"label\":\"createdBy\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true,\"mainField\":\"firstname\"},\"list\":{\"label\":\"createdBy\",\"searchable\":true,\"sortable\":true}},\"updatedBy\":{\"edit\":{\"label\":\"updatedBy\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true,\"mainField\":\"firstname\"},\"list\":{\"label\":\"updatedBy\",\"searchable\":true,\"sortable\":true}},\"documentId\":{\"edit\":{},\"list\":{\"label\":\"documentId\",\"searchable\":true,\"sortable\":true}}},\"layouts\":{\"list\":[\"id\",\"banner\",\"aboutCme\",\"businessStreams\"],\"edit\":[[{\"name\":\"banner\",\"size\":12}],[{\"name\":\"seo\",\"size\":12}],[{\"name\":\"aboutCme\",\"size\":12}],[{\"name\":\"businessStreams\",\"size\":12}],[{\"name\":\"trustedBrands\",\"size\":12}],[{\"name\":\"trustedPartners\",\"size\":12}],[{\"name\":\"socialFeeds\",\"size\":12}],[{\"name\":\"ourLocations\",\"size\":12}],[{\"name\":\"aboutGroup\",\"size\":12}],[{\"name\":\"isNewsEnabled\",\"size\":4}]]},\"uid\":\"api::home.home\"}','object',NULL,NULL),(38,'plugin_content_manager_configuration_content_types::admin::permission','{\"settings\":{\"bulkable\":true,\"filterable\":true,\"searchable\":true,\"pageSize\":10,\"mainField\":\"action\",\"defaultSortBy\":\"action\",\"defaultSortOrder\":\"ASC\"},\"metadatas\":{\"id\":{\"edit\":{},\"list\":{\"label\":\"id\",\"searchable\":true,\"sortable\":true}},\"action\":{\"edit\":{\"label\":\"action\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"action\",\"searchable\":true,\"sortable\":true}},\"actionParameters\":{\"edit\":{\"label\":\"actionParameters\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"actionParameters\",\"searchable\":false,\"sortable\":false}},\"subject\":{\"edit\":{\"label\":\"subject\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"subject\",\"searchable\":true,\"sortable\":true}},\"properties\":{\"edit\":{\"label\":\"properties\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"properties\",\"searchable\":false,\"sortable\":false}},\"conditions\":{\"edit\":{\"label\":\"conditions\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"conditions\",\"searchable\":false,\"sortable\":false}},\"role\":{\"edit\":{\"label\":\"role\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true,\"mainField\":\"name\"},\"list\":{\"label\":\"role\",\"searchable\":true,\"sortable\":true}},\"createdAt\":{\"edit\":{\"label\":\"createdAt\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true},\"list\":{\"label\":\"createdAt\",\"searchable\":true,\"sortable\":true}},\"updatedAt\":{\"edit\":{\"label\":\"updatedAt\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true},\"list\":{\"label\":\"updatedAt\",\"searchable\":true,\"sortable\":true}},\"createdBy\":{\"edit\":{\"label\":\"createdBy\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true,\"mainField\":\"firstname\"},\"list\":{\"label\":\"createdBy\",\"searchable\":true,\"sortable\":true}},\"updatedBy\":{\"edit\":{\"label\":\"updatedBy\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true,\"mainField\":\"firstname\"},\"list\":{\"label\":\"updatedBy\",\"searchable\":true,\"sortable\":true}},\"documentId\":{\"edit\":{},\"list\":{\"label\":\"documentId\",\"searchable\":true,\"sortable\":true}}},\"layouts\":{\"list\":[\"id\",\"action\",\"subject\",\"role\"],\"edit\":[[{\"name\":\"action\",\"size\":6}],[{\"name\":\"actionParameters\",\"size\":12}],[{\"name\":\"subject\",\"size\":6}],[{\"name\":\"properties\",\"size\":12}],[{\"name\":\"conditions\",\"size\":12}],[{\"name\":\"role\",\"size\":6}]]},\"uid\":\"admin::permission\"}','object',NULL,NULL),(39,'plugin_content_manager_configuration_content_types::admin::user','{\"settings\":{\"bulkable\":true,\"filterable\":true,\"searchable\":true,\"pageSize\":10,\"mainField\":\"firstname\",\"defaultSortBy\":\"firstname\",\"defaultSortOrder\":\"ASC\"},\"metadatas\":{\"id\":{\"edit\":{},\"list\":{\"label\":\"id\",\"searchable\":true,\"sortable\":true}},\"firstname\":{\"edit\":{\"label\":\"firstname\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"firstname\",\"searchable\":true,\"sortable\":true}},\"lastname\":{\"edit\":{\"label\":\"lastname\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"lastname\",\"searchable\":true,\"sortable\":true}},\"username\":{\"edit\":{\"label\":\"username\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"username\",\"searchable\":true,\"sortable\":true}},\"email\":{\"edit\":{\"label\":\"email\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"email\",\"searchable\":true,\"sortable\":true}},\"password\":{\"edit\":{\"label\":\"password\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"password\",\"searchable\":true,\"sortable\":true}},\"resetPasswordToken\":{\"edit\":{\"label\":\"resetPasswordToken\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true},\"list\":{\"label\":\"resetPasswordToken\",\"searchable\":true,\"sortable\":true}},\"registrationToken\":{\"edit\":{\"label\":\"registrationToken\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true},\"list\":{\"label\":\"registrationToken\",\"searchable\":true,\"sortable\":true}},\"isActive\":{\"edit\":{\"label\":\"isActive\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"isActive\",\"searchable\":true,\"sortable\":true}},\"roles\":{\"edit\":{\"label\":\"roles\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true,\"mainField\":\"name\"},\"list\":{\"label\":\"roles\",\"searchable\":false,\"sortable\":false}},\"blocked\":{\"edit\":{\"label\":\"blocked\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"blocked\",\"searchable\":true,\"sortable\":true}},\"preferedLanguage\":{\"edit\":{\"label\":\"preferedLanguage\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"preferedLanguage\",\"searchable\":true,\"sortable\":true}},\"createdAt\":{\"edit\":{\"label\":\"createdAt\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true},\"list\":{\"label\":\"createdAt\",\"searchable\":true,\"sortable\":true}},\"updatedAt\":{\"edit\":{\"label\":\"updatedAt\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true},\"list\":{\"label\":\"updatedAt\",\"searchable\":true,\"sortable\":true}},\"createdBy\":{\"edit\":{\"label\":\"createdBy\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true,\"mainField\":\"firstname\"},\"list\":{\"label\":\"createdBy\",\"searchable\":true,\"sortable\":true}},\"updatedBy\":{\"edit\":{\"label\":\"updatedBy\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true,\"mainField\":\"firstname\"},\"list\":{\"label\":\"updatedBy\",\"searchable\":true,\"sortable\":true}},\"documentId\":{\"edit\":{},\"list\":{\"label\":\"documentId\",\"searchable\":true,\"sortable\":true}}},\"layouts\":{\"list\":[\"id\",\"firstname\",\"lastname\",\"username\"],\"edit\":[[{\"name\":\"firstname\",\"size\":6},{\"name\":\"lastname\",\"size\":6}],[{\"name\":\"username\",\"size\":6},{\"name\":\"email\",\"size\":6}],[{\"name\":\"password\",\"size\":6},{\"name\":\"isActive\",\"size\":4}],[{\"name\":\"roles\",\"size\":6},{\"name\":\"blocked\",\"size\":4}],[{\"name\":\"preferedLanguage\",\"size\":6}]]},\"uid\":\"admin::user\"}','object',NULL,NULL),(40,'plugin_content_manager_configuration_content_types::admin::role','{\"settings\":{\"bulkable\":true,\"filterable\":true,\"searchable\":true,\"pageSize\":10,\"mainField\":\"name\",\"defaultSortBy\":\"name\",\"defaultSortOrder\":\"ASC\"},\"metadatas\":{\"id\":{\"edit\":{},\"list\":{\"label\":\"id\",\"searchable\":true,\"sortable\":true}},\"name\":{\"edit\":{\"label\":\"name\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"name\",\"searchable\":true,\"sortable\":true}},\"code\":{\"edit\":{\"label\":\"code\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"code\",\"searchable\":true,\"sortable\":true}},\"description\":{\"edit\":{\"label\":\"description\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"description\",\"searchable\":true,\"sortable\":true}},\"users\":{\"edit\":{\"label\":\"users\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true,\"mainField\":\"firstname\"},\"list\":{\"label\":\"users\",\"searchable\":false,\"sortable\":false}},\"permissions\":{\"edit\":{\"label\":\"permissions\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true,\"mainField\":\"action\"},\"list\":{\"label\":\"permissions\",\"searchable\":false,\"sortable\":false}},\"createdAt\":{\"edit\":{\"label\":\"createdAt\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true},\"list\":{\"label\":\"createdAt\",\"searchable\":true,\"sortable\":true}},\"updatedAt\":{\"edit\":{\"label\":\"updatedAt\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true},\"list\":{\"label\":\"updatedAt\",\"searchable\":true,\"sortable\":true}},\"createdBy\":{\"edit\":{\"label\":\"createdBy\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true,\"mainField\":\"firstname\"},\"list\":{\"label\":\"createdBy\",\"searchable\":true,\"sortable\":true}},\"updatedBy\":{\"edit\":{\"label\":\"updatedBy\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true,\"mainField\":\"firstname\"},\"list\":{\"label\":\"updatedBy\",\"searchable\":true,\"sortable\":true}},\"documentId\":{\"edit\":{},\"list\":{\"label\":\"documentId\",\"searchable\":true,\"sortable\":true}}},\"layouts\":{\"list\":[\"id\",\"name\",\"code\",\"description\"],\"edit\":[[{\"name\":\"name\",\"size\":6},{\"name\":\"code\",\"size\":6}],[{\"name\":\"description\",\"size\":6},{\"name\":\"users\",\"size\":6}],[{\"name\":\"permissions\",\"size\":6}]]},\"uid\":\"admin::role\"}','object',NULL,NULL),(41,'plugin_content_manager_configuration_content_types::admin::api-token','{\"settings\":{\"bulkable\":true,\"filterable\":true,\"searchable\":true,\"pageSize\":10,\"mainField\":\"name\",\"defaultSortBy\":\"name\",\"defaultSortOrder\":\"ASC\"},\"metadatas\":{\"id\":{\"edit\":{},\"list\":{\"label\":\"id\",\"searchable\":true,\"sortable\":true}},\"name\":{\"edit\":{\"label\":\"name\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"name\",\"searchable\":true,\"sortable\":true}},\"description\":{\"edit\":{\"label\":\"description\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"description\",\"searchable\":true,\"sortable\":true}},\"type\":{\"edit\":{\"label\":\"type\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"type\",\"searchable\":true,\"sortable\":true}},\"accessKey\":{\"edit\":{\"label\":\"accessKey\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"accessKey\",\"searchable\":true,\"sortable\":true}},\"encryptedKey\":{\"edit\":{\"label\":\"encryptedKey\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"encryptedKey\",\"searchable\":true,\"sortable\":true}},\"lastUsedAt\":{\"edit\":{\"label\":\"lastUsedAt\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"lastUsedAt\",\"searchable\":true,\"sortable\":true}},\"permissions\":{\"edit\":{\"label\":\"permissions\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true,\"mainField\":\"action\"},\"list\":{\"label\":\"permissions\",\"searchable\":false,\"sortable\":false}},\"expiresAt\":{\"edit\":{\"label\":\"expiresAt\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"expiresAt\",\"searchable\":true,\"sortable\":true}},\"lifespan\":{\"edit\":{\"label\":\"lifespan\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"lifespan\",\"searchable\":true,\"sortable\":true}},\"createdAt\":{\"edit\":{\"label\":\"createdAt\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true},\"list\":{\"label\":\"createdAt\",\"searchable\":true,\"sortable\":true}},\"updatedAt\":{\"edit\":{\"label\":\"updatedAt\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true},\"list\":{\"label\":\"updatedAt\",\"searchable\":true,\"sortable\":true}},\"createdBy\":{\"edit\":{\"label\":\"createdBy\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true,\"mainField\":\"firstname\"},\"list\":{\"label\":\"createdBy\",\"searchable\":true,\"sortable\":true}},\"updatedBy\":{\"edit\":{\"label\":\"updatedBy\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true,\"mainField\":\"firstname\"},\"list\":{\"label\":\"updatedBy\",\"searchable\":true,\"sortable\":true}},\"documentId\":{\"edit\":{},\"list\":{\"label\":\"documentId\",\"searchable\":true,\"sortable\":true}}},\"layouts\":{\"list\":[\"id\",\"name\",\"description\",\"type\"],\"edit\":[[{\"name\":\"name\",\"size\":6},{\"name\":\"description\",\"size\":6}],[{\"name\":\"type\",\"size\":6},{\"name\":\"accessKey\",\"size\":6}],[{\"name\":\"encryptedKey\",\"size\":6},{\"name\":\"lastUsedAt\",\"size\":6}],[{\"name\":\"permissions\",\"size\":6},{\"name\":\"expiresAt\",\"size\":6}],[{\"name\":\"lifespan\",\"size\":4}]]},\"uid\":\"admin::api-token\"}','object',NULL,NULL),(42,'plugin_content_manager_configuration_content_types::admin::api-token-permission','{\"settings\":{\"bulkable\":true,\"filterable\":true,\"searchable\":true,\"pageSize\":10,\"mainField\":\"action\",\"defaultSortBy\":\"action\",\"defaultSortOrder\":\"ASC\"},\"metadatas\":{\"id\":{\"edit\":{},\"list\":{\"label\":\"id\",\"searchable\":true,\"sortable\":true}},\"action\":{\"edit\":{\"label\":\"action\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"action\",\"searchable\":true,\"sortable\":true}},\"token\":{\"edit\":{\"label\":\"token\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true,\"mainField\":\"name\"},\"list\":{\"label\":\"token\",\"searchable\":true,\"sortable\":true}},\"createdAt\":{\"edit\":{\"label\":\"createdAt\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true},\"list\":{\"label\":\"createdAt\",\"searchable\":true,\"sortable\":true}},\"updatedAt\":{\"edit\":{\"label\":\"updatedAt\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true},\"list\":{\"label\":\"updatedAt\",\"searchable\":true,\"sortable\":true}},\"createdBy\":{\"edit\":{\"label\":\"createdBy\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true,\"mainField\":\"firstname\"},\"list\":{\"label\":\"createdBy\",\"searchable\":true,\"sortable\":true}},\"updatedBy\":{\"edit\":{\"label\":\"updatedBy\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true,\"mainField\":\"firstname\"},\"list\":{\"label\":\"updatedBy\",\"searchable\":true,\"sortable\":true}},\"documentId\":{\"edit\":{},\"list\":{\"label\":\"documentId\",\"searchable\":true,\"sortable\":true}}},\"layouts\":{\"list\":[\"id\",\"action\",\"token\",\"createdAt\"],\"edit\":[[{\"name\":\"action\",\"size\":6},{\"name\":\"token\",\"size\":6}]]},\"uid\":\"admin::api-token-permission\"}','object',NULL,NULL),(43,'plugin_content_manager_configuration_content_types::admin::transfer-token','{\"settings\":{\"bulkable\":true,\"filterable\":true,\"searchable\":true,\"pageSize\":10,\"mainField\":\"name\",\"defaultSortBy\":\"name\",\"defaultSortOrder\":\"ASC\"},\"metadatas\":{\"id\":{\"edit\":{},\"list\":{\"label\":\"id\",\"searchable\":true,\"sortable\":true}},\"name\":{\"edit\":{\"label\":\"name\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"name\",\"searchable\":true,\"sortable\":true}},\"description\":{\"edit\":{\"label\":\"description\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"description\",\"searchable\":true,\"sortable\":true}},\"accessKey\":{\"edit\":{\"label\":\"accessKey\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"accessKey\",\"searchable\":true,\"sortable\":true}},\"lastUsedAt\":{\"edit\":{\"label\":\"lastUsedAt\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"lastUsedAt\",\"searchable\":true,\"sortable\":true}},\"permissions\":{\"edit\":{\"label\":\"permissions\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true,\"mainField\":\"action\"},\"list\":{\"label\":\"permissions\",\"searchable\":false,\"sortable\":false}},\"expiresAt\":{\"edit\":{\"label\":\"expiresAt\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"expiresAt\",\"searchable\":true,\"sortable\":true}},\"lifespan\":{\"edit\":{\"label\":\"lifespan\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"lifespan\",\"searchable\":true,\"sortable\":true}},\"createdAt\":{\"edit\":{\"label\":\"createdAt\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true},\"list\":{\"label\":\"createdAt\",\"searchable\":true,\"sortable\":true}},\"updatedAt\":{\"edit\":{\"label\":\"updatedAt\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true},\"list\":{\"label\":\"updatedAt\",\"searchable\":true,\"sortable\":true}},\"createdBy\":{\"edit\":{\"label\":\"createdBy\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true,\"mainField\":\"firstname\"},\"list\":{\"label\":\"createdBy\",\"searchable\":true,\"sortable\":true}},\"updatedBy\":{\"edit\":{\"label\":\"updatedBy\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true,\"mainField\":\"firstname\"},\"list\":{\"label\":\"updatedBy\",\"searchable\":true,\"sortable\":true}},\"documentId\":{\"edit\":{},\"list\":{\"label\":\"documentId\",\"searchable\":true,\"sortable\":true}}},\"layouts\":{\"list\":[\"id\",\"name\",\"description\",\"accessKey\"],\"edit\":[[{\"name\":\"name\",\"size\":6},{\"name\":\"description\",\"size\":6}],[{\"name\":\"accessKey\",\"size\":6},{\"name\":\"lastUsedAt\",\"size\":6}],[{\"name\":\"permissions\",\"size\":6},{\"name\":\"expiresAt\",\"size\":6}],[{\"name\":\"lifespan\",\"size\":4}]]},\"uid\":\"admin::transfer-token\"}','object',NULL,NULL),(44,'plugin_content_manager_configuration_content_types::admin::transfer-token-permission','{\"settings\":{\"bulkable\":true,\"filterable\":true,\"searchable\":true,\"pageSize\":10,\"mainField\":\"action\",\"defaultSortBy\":\"action\",\"defaultSortOrder\":\"ASC\"},\"metadatas\":{\"id\":{\"edit\":{},\"list\":{\"label\":\"id\",\"searchable\":true,\"sortable\":true}},\"action\":{\"edit\":{\"label\":\"action\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"action\",\"searchable\":true,\"sortable\":true}},\"token\":{\"edit\":{\"label\":\"token\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true,\"mainField\":\"name\"},\"list\":{\"label\":\"token\",\"searchable\":true,\"sortable\":true}},\"createdAt\":{\"edit\":{\"label\":\"createdAt\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true},\"list\":{\"label\":\"createdAt\",\"searchable\":true,\"sortable\":true}},\"updatedAt\":{\"edit\":{\"label\":\"updatedAt\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true},\"list\":{\"label\":\"updatedAt\",\"searchable\":true,\"sortable\":true}},\"createdBy\":{\"edit\":{\"label\":\"createdBy\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true,\"mainField\":\"firstname\"},\"list\":{\"label\":\"createdBy\",\"searchable\":true,\"sortable\":true}},\"updatedBy\":{\"edit\":{\"label\":\"updatedBy\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true,\"mainField\":\"firstname\"},\"list\":{\"label\":\"updatedBy\",\"searchable\":true,\"sortable\":true}},\"documentId\":{\"edit\":{},\"list\":{\"label\":\"documentId\",\"searchable\":true,\"sortable\":true}}},\"layouts\":{\"list\":[\"id\",\"action\",\"token\",\"createdAt\"],\"edit\":[[{\"name\":\"action\",\"size\":6},{\"name\":\"token\",\"size\":6}]]},\"uid\":\"admin::transfer-token-permission\"}','object',NULL,NULL),(45,'plugin_upload_settings','{\"sizeOptimization\":true,\"responsiveDimensions\":true,\"autoOrientation\":false,\"aiMetadata\":true}','object',NULL,NULL),(46,'plugin_upload_view_configuration','{\"pageSize\":10,\"sort\":\"createdAt:DESC\"}','object',NULL,NULL),(47,'plugin_upload_metrics','{\"weeklySchedule\":\"42 33 2 * * 1\",\"lastWeeklyUpdate\":1775442822100}','object',NULL,NULL),(48,'plugin_i18n_default_locale','\"en\"','string',NULL,NULL),(49,'plugin_users-permissions_grant','{\"email\":{\"icon\":\"envelope\",\"enabled\":true},\"discord\":{\"icon\":\"discord\",\"enabled\":false,\"key\":\"\",\"secret\":\"\",\"callbackUrl\":\"api/auth/discord/callback\",\"scope\":[\"identify\",\"email\"]},\"facebook\":{\"icon\":\"facebook-square\",\"enabled\":false,\"key\":\"\",\"secret\":\"\",\"callbackUrl\":\"api/auth/facebook/callback\",\"scope\":[\"email\"]},\"google\":{\"icon\":\"google\",\"enabled\":false,\"key\":\"\",\"secret\":\"\",\"callbackUrl\":\"api/auth/google/callback\",\"scope\":[\"email\"]},\"github\":{\"icon\":\"github\",\"enabled\":false,\"key\":\"\",\"secret\":\"\",\"callbackUrl\":\"api/auth/github/callback\",\"scope\":[\"user\",\"user:email\"]},\"microsoft\":{\"icon\":\"windows\",\"enabled\":false,\"key\":\"\",\"secret\":\"\",\"callbackUrl\":\"api/auth/microsoft/callback\",\"scope\":[\"user.read\"]},\"twitter\":{\"icon\":\"twitter\",\"enabled\":false,\"key\":\"\",\"secret\":\"\",\"callbackUrl\":\"api/auth/twitter/callback\"},\"instagram\":{\"icon\":\"instagram\",\"enabled\":false,\"key\":\"\",\"secret\":\"\",\"callbackUrl\":\"api/auth/instagram/callback\",\"scope\":[\"user_profile\"]},\"vk\":{\"icon\":\"vk\",\"enabled\":false,\"key\":\"\",\"secret\":\"\",\"callbackUrl\":\"api/auth/vk/callback\",\"scope\":[\"email\"]},\"twitch\":{\"icon\":\"twitch\",\"enabled\":false,\"key\":\"\",\"secret\":\"\",\"callbackUrl\":\"api/auth/twitch/callback\",\"scope\":[\"user:read:email\"]},\"linkedin\":{\"icon\":\"linkedin\",\"enabled\":false,\"key\":\"\",\"secret\":\"\",\"callbackUrl\":\"api/auth/linkedin/callback\",\"scope\":[\"r_liteprofile\",\"r_emailaddress\"]},\"cognito\":{\"icon\":\"aws\",\"enabled\":false,\"key\":\"\",\"secret\":\"\",\"subdomain\":\"my.subdomain.com\",\"callback\":\"api/auth/cognito/callback\",\"scope\":[\"email\",\"openid\",\"profile\"]},\"reddit\":{\"icon\":\"reddit\",\"enabled\":false,\"key\":\"\",\"secret\":\"\",\"callback\":\"api/auth/reddit/callback\",\"scope\":[\"identity\"]},\"auth0\":{\"icon\":\"\",\"enabled\":false,\"key\":\"\",\"secret\":\"\",\"subdomain\":\"my-tenant.eu\",\"callback\":\"api/auth/auth0/callback\",\"scope\":[\"openid\",\"email\",\"profile\"]},\"cas\":{\"icon\":\"book\",\"enabled\":false,\"key\":\"\",\"secret\":\"\",\"callback\":\"api/auth/cas/callback\",\"scope\":[\"openid email\"],\"subdomain\":\"my.subdomain.com/cas\"},\"patreon\":{\"icon\":\"\",\"enabled\":false,\"key\":\"\",\"secret\":\"\",\"callback\":\"api/auth/patreon/callback\",\"scope\":[\"identity\",\"identity[email]\"]},\"keycloak\":{\"icon\":\"\",\"enabled\":false,\"key\":\"\",\"secret\":\"\",\"subdomain\":\"myKeycloakProvider.com/realms/myrealm\",\"callback\":\"api/auth/keycloak/callback\",\"scope\":[\"openid\",\"email\",\"profile\"]}}','object',NULL,NULL),(50,'plugin_users-permissions_email','{\"reset_password\":{\"display\":\"Email.template.reset_password\",\"icon\":\"sync\",\"options\":{\"from\":{\"name\":\"Administration Panel\",\"email\":\"no-reply@strapi.io\"},\"response_email\":\"\",\"object\":\"Reset password\",\"message\":\"<p>We heard that you lost your password. Sorry about that!</p>\\n\\n<p>But don’t worry! You can use the following link to reset your password:</p>\\n<p><%= URL %>?code=<%= TOKEN %></p>\\n\\n<p>Thanks.</p>\"}},\"email_confirmation\":{\"display\":\"Email.template.email_confirmation\",\"icon\":\"check-square\",\"options\":{\"from\":{\"name\":\"Administration Panel\",\"email\":\"no-reply@strapi.io\"},\"response_email\":\"\",\"object\":\"Account confirmation\",\"message\":\"<p>Thank you for registering!</p>\\n\\n<p>You have to confirm your email address. Please click on the link below.</p>\\n\\n<p><%= URL %>?confirmation=<%= CODE %></p>\\n\\n<p>Thanks.</p>\"}}}','object',NULL,NULL),(51,'plugin_users-permissions_advanced','{\"unique_email\":true,\"allow_register\":true,\"email_confirmation\":false,\"email_reset_password\":null,\"email_confirmation_redirection\":null,\"default_role\":\"authenticated\"}','object',NULL,NULL),(52,'core_admin_auth','{\"providers\":{\"autoRegister\":false,\"defaultRole\":null,\"ssoLockedRoles\":null}}','object',NULL,NULL),(58,'plugin_content_manager_configuration_content_types::api::location.location','{\"settings\":{\"bulkable\":true,\"filterable\":true,\"searchable\":true,\"pageSize\":10,\"mainField\":\"subTitle\",\"defaultSortBy\":\"subTitle\",\"defaultSortOrder\":\"ASC\"},\"metadatas\":{\"id\":{\"edit\":{},\"list\":{\"label\":\"id\",\"searchable\":true,\"sortable\":true}},\"subTitle\":{\"edit\":{\"label\":\"subTitle\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"subTitle\",\"searchable\":true,\"sortable\":true}},\"title\":{\"edit\":{\"label\":\"title\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"title\",\"searchable\":true,\"sortable\":true}},\"description\":{\"edit\":{\"label\":\"description\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"description\",\"searchable\":false,\"sortable\":false}},\"seo\":{\"edit\":{\"label\":\"seo\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"seo\",\"searchable\":false,\"sortable\":false}},\"locationTypes\":{\"edit\":{\"label\":\"locationTypes\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true,\"mainField\":\"title\"},\"list\":{\"label\":\"locationTypes\",\"searchable\":false,\"sortable\":false}},\"createdAt\":{\"edit\":{\"label\":\"createdAt\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true},\"list\":{\"label\":\"createdAt\",\"searchable\":true,\"sortable\":true}},\"updatedAt\":{\"edit\":{\"label\":\"updatedAt\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true},\"list\":{\"label\":\"updatedAt\",\"searchable\":true,\"sortable\":true}},\"createdBy\":{\"edit\":{\"label\":\"createdBy\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true,\"mainField\":\"firstname\"},\"list\":{\"label\":\"createdBy\",\"searchable\":true,\"sortable\":true}},\"updatedBy\":{\"edit\":{\"label\":\"updatedBy\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true,\"mainField\":\"firstname\"},\"list\":{\"label\":\"updatedBy\",\"searchable\":true,\"sortable\":true}},\"documentId\":{\"edit\":{},\"list\":{\"label\":\"documentId\",\"searchable\":true,\"sortable\":true}}},\"layouts\":{\"list\":[\"id\",\"subTitle\",\"title\",\"seo\"],\"edit\":[[{\"name\":\"subTitle\",\"size\":6},{\"name\":\"title\",\"size\":6}],[{\"name\":\"description\",\"size\":12}],[{\"name\":\"seo\",\"size\":12}],[{\"name\":\"locationTypes\",\"size\":6}]]},\"uid\":\"api::location.location\"}','object',NULL,NULL),(63,'strapi_unidirectional-join-table-repair-ran','true','boolean',NULL,NULL),(84,'plugin_content_manager_configuration_components::home.trusted-section','{\"settings\":{\"bulkable\":true,\"filterable\":true,\"searchable\":true,\"pageSize\":10,\"mainField\":\"title\",\"defaultSortBy\":\"title\",\"defaultSortOrder\":\"ASC\"},\"metadatas\":{\"id\":{\"edit\":{},\"list\":{\"label\":\"id\",\"searchable\":false,\"sortable\":false}},\"title\":{\"edit\":{\"label\":\"title\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"title\",\"searchable\":true,\"sortable\":true}},\"subTitle\":{\"edit\":{\"label\":\"subTitle\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"subTitle\",\"searchable\":true,\"sortable\":true}},\"items\":{\"edit\":{\"label\":\"items\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"items\",\"searchable\":false,\"sortable\":false}},\"documentId\":{\"edit\":{},\"list\":{\"label\":\"documentId\",\"searchable\":true,\"sortable\":true}}},\"layouts\":{\"list\":[\"id\",\"title\",\"subTitle\",\"items\"],\"edit\":[[{\"name\":\"title\",\"size\":6},{\"name\":\"subTitle\",\"size\":6}],[{\"name\":\"items\",\"size\":12}]]},\"uid\":\"home.trusted-section\",\"isComponent\":true}','object',NULL,NULL),(85,'plugin_content_manager_configuration_components::home.logos','{\"settings\":{\"bulkable\":true,\"filterable\":true,\"searchable\":true,\"pageSize\":10,\"mainField\":\"title\",\"defaultSortBy\":\"title\",\"defaultSortOrder\":\"ASC\"},\"metadatas\":{\"id\":{\"edit\":{},\"list\":{\"label\":\"id\",\"searchable\":false,\"sortable\":false}},\"title\":{\"edit\":{\"label\":\"title\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"title\",\"searchable\":true,\"sortable\":true}},\"logo\":{\"edit\":{\"label\":\"logo\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"logo\",\"searchable\":false,\"sortable\":false}},\"documentId\":{\"edit\":{},\"list\":{\"label\":\"documentId\",\"searchable\":true,\"sortable\":true}}},\"layouts\":{\"list\":[\"id\",\"title\",\"logo\"],\"edit\":[[{\"name\":\"title\",\"size\":6},{\"name\":\"logo\",\"size\":6}]]},\"uid\":\"home.logos\",\"isComponent\":true}','object',NULL,NULL),(86,'plugin_content_manager_configuration_components::home.content-section','{\"settings\":{\"bulkable\":true,\"filterable\":true,\"searchable\":true,\"pageSize\":10,\"mainField\":\"title\",\"defaultSortBy\":\"title\",\"defaultSortOrder\":\"ASC\"},\"metadatas\":{\"id\":{\"edit\":{},\"list\":{\"label\":\"id\",\"searchable\":false,\"sortable\":false}},\"title\":{\"edit\":{\"label\":\"title\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"title\",\"searchable\":true,\"sortable\":true}},\"subTitle\":{\"edit\":{\"label\":\"subTitle\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"subTitle\",\"searchable\":true,\"sortable\":true}},\"documentId\":{\"edit\":{},\"list\":{\"label\":\"documentId\",\"searchable\":true,\"sortable\":true}}},\"layouts\":{\"list\":[\"id\",\"title\",\"subTitle\"],\"edit\":[[{\"name\":\"title\",\"size\":6},{\"name\":\"subTitle\",\"size\":6}]]},\"uid\":\"home.content-section\",\"isComponent\":true}','object',NULL,NULL),(87,'plugin_content_manager_configuration_components::common.title-desc-with-img','{\"settings\":{\"bulkable\":true,\"filterable\":true,\"searchable\":true,\"pageSize\":10,\"mainField\":\"title\",\"defaultSortBy\":\"title\",\"defaultSortOrder\":\"ASC\"},\"metadatas\":{\"id\":{\"edit\":{},\"list\":{\"label\":\"id\",\"searchable\":false,\"sortable\":false}},\"title\":{\"edit\":{\"label\":\"title\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"title\",\"searchable\":true,\"sortable\":true}},\"description\":{\"edit\":{\"label\":\"description\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"description\",\"searchable\":false,\"sortable\":false}},\"image\":{\"edit\":{\"label\":\"image\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"image\",\"searchable\":false,\"sortable\":false}},\"responsiveImage\":{\"edit\":{\"label\":\"responsiveImage\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"responsiveImage\",\"searchable\":false,\"sortable\":false}},\"documentId\":{\"edit\":{},\"list\":{\"label\":\"documentId\",\"searchable\":true,\"sortable\":true}}},\"layouts\":{\"list\":[\"id\",\"title\",\"image\",\"responsiveImage\"],\"edit\":[[{\"name\":\"title\",\"size\":6}],[{\"name\":\"description\",\"size\":12}],[{\"name\":\"image\",\"size\":6},{\"name\":\"responsiveImage\",\"size\":6}]]},\"uid\":\"common.title-desc-with-img\",\"isComponent\":true}','object',NULL,NULL),(88,'plugin_content_manager_configuration_components::common.title-desc-btn-img','{\"settings\":{\"bulkable\":true,\"filterable\":true,\"searchable\":true,\"pageSize\":10,\"mainField\":\"title\",\"defaultSortBy\":\"title\",\"defaultSortOrder\":\"ASC\"},\"metadatas\":{\"id\":{\"edit\":{},\"list\":{\"label\":\"id\",\"searchable\":false,\"sortable\":false}},\"title\":{\"edit\":{\"label\":\"title\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"title\",\"searchable\":true,\"sortable\":true}},\"description\":{\"edit\":{\"label\":\"description\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"description\",\"searchable\":false,\"sortable\":false}},\"image\":{\"edit\":{\"label\":\"image\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"image\",\"searchable\":false,\"sortable\":false}},\"responsiveImg\":{\"edit\":{\"label\":\"responsiveImg\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"responsiveImg\",\"searchable\":false,\"sortable\":false}},\"imagePosition\":{\"edit\":{\"label\":\"imagePosition\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"imagePosition\",\"searchable\":true,\"sortable\":true}},\"tags\":{\"edit\":{\"label\":\"tags\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"tags\",\"searchable\":false,\"sortable\":false}},\"button\":{\"edit\":{\"label\":\"button\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"button\",\"searchable\":false,\"sortable\":false}},\"documentId\":{\"edit\":{},\"list\":{\"label\":\"documentId\",\"searchable\":true,\"sortable\":true}}},\"layouts\":{\"list\":[\"id\",\"title\",\"image\",\"responsiveImg\"],\"edit\":[[{\"name\":\"title\",\"size\":6}],[{\"name\":\"description\",\"size\":12}],[{\"name\":\"image\",\"size\":6},{\"name\":\"responsiveImg\",\"size\":6}],[{\"name\":\"imagePosition\",\"size\":6}],[{\"name\":\"tags\",\"size\":12}],[{\"name\":\"button\",\"size\":12}]]},\"uid\":\"common.title-desc-btn-img\",\"isComponent\":true}','object',NULL,NULL),(89,'plugin_content_manager_configuration_components::home.business-stream','{\"settings\":{\"bulkable\":true,\"filterable\":true,\"searchable\":true,\"pageSize\":10,\"mainField\":\"title\",\"defaultSortBy\":\"title\",\"defaultSortOrder\":\"ASC\"},\"metadatas\":{\"id\":{\"edit\":{},\"list\":{\"label\":\"id\",\"searchable\":false,\"sortable\":false}},\"title\":{\"edit\":{\"label\":\"title\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"title\",\"searchable\":true,\"sortable\":true}},\"subTitle\":{\"edit\":{\"label\":\"subTitle\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"subTitle\",\"searchable\":true,\"sortable\":true}},\"serviceData\":{\"edit\":{\"label\":\"serviceData\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"serviceData\",\"searchable\":false,\"sortable\":false}},\"documentId\":{\"edit\":{},\"list\":{\"label\":\"documentId\",\"searchable\":true,\"sortable\":true}}},\"layouts\":{\"list\":[\"id\",\"title\",\"subTitle\",\"serviceData\"],\"edit\":[[{\"name\":\"title\",\"size\":6},{\"name\":\"subTitle\",\"size\":6}],[{\"name\":\"serviceData\",\"size\":12}]]},\"uid\":\"home.business-stream\",\"isComponent\":true}','object',NULL,NULL),(90,'plugin_content_manager_configuration_components::home.about-cme','{\"settings\":{\"bulkable\":true,\"filterable\":true,\"searchable\":true,\"pageSize\":10,\"mainField\":\"subTitle\",\"defaultSortBy\":\"subTitle\",\"defaultSortOrder\":\"ASC\"},\"metadatas\":{\"id\":{\"edit\":{},\"list\":{\"label\":\"id\",\"searchable\":false,\"sortable\":false}},\"title\":{\"edit\":{\"label\":\"title\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"title\",\"searchable\":false,\"sortable\":false}},\"subTitle\":{\"edit\":{\"label\":\"subTitle\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"subTitle\",\"searchable\":true,\"sortable\":true}},\"description\":{\"edit\":{\"label\":\"description\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"description\",\"searchable\":false,\"sortable\":false}},\"callToAction\":{\"edit\":{\"label\":\"callToAction\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"callToAction\",\"searchable\":false,\"sortable\":false}},\"image\":{\"edit\":{\"label\":\"image\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"image\",\"searchable\":false,\"sortable\":false}},\"documentId\":{\"edit\":{},\"list\":{\"label\":\"documentId\",\"searchable\":true,\"sortable\":true}}},\"layouts\":{\"list\":[\"id\",\"subTitle\",\"callToAction\",\"image\"],\"edit\":[[{\"name\":\"title\",\"size\":12}],[{\"name\":\"subTitle\",\"size\":6}],[{\"name\":\"description\",\"size\":12}],[{\"name\":\"callToAction\",\"size\":12}],[{\"name\":\"image\",\"size\":6}]]},\"uid\":\"home.about-cme\",\"isComponent\":true}','object',NULL,NULL),(91,'plugin_content_manager_configuration_components::common.tag','{\"settings\":{\"bulkable\":true,\"filterable\":true,\"searchable\":true,\"pageSize\":10,\"mainField\":\"title\",\"defaultSortBy\":\"title\",\"defaultSortOrder\":\"ASC\"},\"metadatas\":{\"id\":{\"edit\":{},\"list\":{\"label\":\"id\",\"searchable\":false,\"sortable\":false}},\"title\":{\"edit\":{\"label\":\"title\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"title\",\"searchable\":true,\"sortable\":true}},\"key\":{\"edit\":{\"label\":\"key\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"key\",\"searchable\":true,\"sortable\":true}},\"documentId\":{\"edit\":{},\"list\":{\"label\":\"documentId\",\"searchable\":true,\"sortable\":true}}},\"layouts\":{\"list\":[\"id\",\"title\",\"key\"],\"edit\":[[{\"name\":\"title\",\"size\":6},{\"name\":\"key\",\"size\":6}]]},\"uid\":\"common.tag\",\"isComponent\":true}','object',NULL,NULL),(92,'plugin_content_manager_configuration_components::common.phone','{\"settings\":{\"bulkable\":true,\"filterable\":true,\"searchable\":true,\"pageSize\":10,\"mainField\":\"phone\",\"defaultSortBy\":\"phone\",\"defaultSortOrder\":\"ASC\"},\"metadatas\":{\"id\":{\"edit\":{},\"list\":{\"label\":\"id\",\"searchable\":false,\"sortable\":false}},\"phone\":{\"edit\":{\"label\":\"phone\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"phone\",\"searchable\":true,\"sortable\":true}},\"documentId\":{\"edit\":{},\"list\":{\"label\":\"documentId\",\"searchable\":true,\"sortable\":true}}},\"layouts\":{\"list\":[\"id\",\"phone\"],\"edit\":[[{\"name\":\"phone\",\"size\":6}]]},\"uid\":\"common.phone\",\"isComponent\":true}','object',NULL,NULL),(93,'plugin_content_manager_configuration_components::common.box-component','{\"settings\":{\"bulkable\":true,\"filterable\":true,\"searchable\":true,\"pageSize\":10,\"mainField\":\"title\",\"defaultSortBy\":\"title\",\"defaultSortOrder\":\"ASC\"},\"metadatas\":{\"id\":{\"edit\":{},\"list\":{\"label\":\"id\",\"searchable\":false,\"sortable\":false}},\"logo\":{\"edit\":{\"label\":\"logo\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"logo\",\"searchable\":false,\"sortable\":false}},\"responsiveLogo\":{\"edit\":{\"label\":\"responsiveLogo\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"responsiveLogo\",\"searchable\":false,\"sortable\":false}},\"title\":{\"edit\":{\"label\":\"title\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"title\",\"searchable\":true,\"sortable\":true}},\"listItem\":{\"edit\":{\"label\":\"listItem\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"listItem\",\"searchable\":false,\"sortable\":false}},\"description\":{\"edit\":{\"label\":\"description\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"description\",\"searchable\":true,\"sortable\":true}},\"phone\":{\"edit\":{\"label\":\"phone\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"phone\",\"searchable\":true,\"sortable\":true}},\"latitude\":{\"edit\":{\"label\":\"latitude\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"latitude\",\"searchable\":true,\"sortable\":true}},\"longitude\":{\"edit\":{\"label\":\"longitude\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"longitude\",\"searchable\":true,\"sortable\":true}},\"subTitle\":{\"edit\":{\"label\":\"subTitle\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"subTitle\",\"searchable\":true,\"sortable\":true}},\"documentId\":{\"edit\":{},\"list\":{\"label\":\"documentId\",\"searchable\":true,\"sortable\":true}}},\"layouts\":{\"list\":[\"id\",\"logo\",\"responsiveLogo\",\"title\"],\"edit\":[[{\"name\":\"logo\",\"size\":6},{\"name\":\"responsiveLogo\",\"size\":6}],[{\"name\":\"title\",\"size\":6}],[{\"name\":\"listItem\",\"size\":12}],[{\"name\":\"description\",\"size\":6},{\"name\":\"phone\",\"size\":6}],[{\"name\":\"latitude\",\"size\":6},{\"name\":\"longitude\",\"size\":6}],[{\"name\":\"subTitle\",\"size\":6}]]},\"uid\":\"common.box-component\",\"isComponent\":true}','object',NULL,NULL),(94,'plugin_content_manager_configuration_components::common.menu-item-w-services','{\"settings\":{\"bulkable\":true,\"filterable\":true,\"searchable\":true,\"pageSize\":10,\"mainField\":\"title\",\"defaultSortBy\":\"title\",\"defaultSortOrder\":\"ASC\"},\"metadatas\":{\"id\":{\"edit\":{},\"list\":{\"label\":\"id\",\"searchable\":false,\"sortable\":false}},\"title\":{\"edit\":{\"label\":\"title\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"title\",\"searchable\":true,\"sortable\":true}},\"url\":{\"edit\":{\"label\":\"url\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"url\",\"searchable\":true,\"sortable\":true}},\"content\":{\"edit\":{\"label\":\"content\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"content\",\"searchable\":false,\"sortable\":false}},\"linkText\":{\"edit\":{\"label\":\"linkText\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"linkText\",\"searchable\":true,\"sortable\":true}},\"documentId\":{\"edit\":{},\"list\":{\"label\":\"documentId\",\"searchable\":true,\"sortable\":true}}},\"layouts\":{\"list\":[\"id\",\"title\",\"url\",\"linkText\"],\"edit\":[[{\"name\":\"title\",\"size\":6},{\"name\":\"url\",\"size\":6}],[{\"name\":\"content\",\"size\":12}],[{\"name\":\"linkText\",\"size\":6}]]},\"uid\":\"common.menu-item-w-services\",\"isComponent\":true}','object',NULL,NULL),(95,'plugin_content_manager_configuration_components::common.list','{\"settings\":{\"bulkable\":true,\"filterable\":true,\"searchable\":true,\"pageSize\":10,\"mainField\":\"item\",\"defaultSortBy\":\"item\",\"defaultSortOrder\":\"ASC\"},\"metadatas\":{\"id\":{\"edit\":{},\"list\":{\"label\":\"id\",\"searchable\":false,\"sortable\":false}},\"item\":{\"edit\":{\"label\":\"item\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"item\",\"searchable\":true,\"sortable\":true}},\"documentId\":{\"edit\":{},\"list\":{\"label\":\"documentId\",\"searchable\":true,\"sortable\":true}}},\"layouts\":{\"list\":[\"id\",\"item\"],\"edit\":[[{\"name\":\"item\",\"size\":6}]]},\"uid\":\"common.list\",\"isComponent\":true}','object',NULL,NULL),(96,'plugin_content_manager_configuration_components::common.link-item','{\"settings\":{\"bulkable\":true,\"filterable\":true,\"searchable\":true,\"pageSize\":10,\"mainField\":\"label\",\"defaultSortBy\":\"label\",\"defaultSortOrder\":\"ASC\"},\"metadatas\":{\"id\":{\"edit\":{},\"list\":{\"label\":\"id\",\"searchable\":false,\"sortable\":false}},\"label\":{\"edit\":{\"label\":\"label\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"label\",\"searchable\":true,\"sortable\":true}},\"url\":{\"edit\":{\"label\":\"url\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"url\",\"searchable\":true,\"sortable\":true}},\"newTab\":{\"edit\":{\"label\":\"newTab\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"newTab\",\"searchable\":true,\"sortable\":true}},\"documentId\":{\"edit\":{},\"list\":{\"label\":\"documentId\",\"searchable\":true,\"sortable\":true}}},\"layouts\":{\"list\":[\"id\",\"label\",\"url\",\"newTab\"],\"edit\":[[{\"name\":\"label\",\"size\":6},{\"name\":\"url\",\"size\":6}],[{\"name\":\"newTab\",\"size\":4}]]},\"uid\":\"common.link-item\",\"isComponent\":true}','object',NULL,NULL),(97,'plugin_content_manager_configuration_components::common.content-with-link','{\"settings\":{\"bulkable\":true,\"filterable\":true,\"searchable\":true,\"pageSize\":10,\"mainField\":\"title\",\"defaultSortBy\":\"title\",\"defaultSortOrder\":\"ASC\"},\"metadatas\":{\"id\":{\"edit\":{},\"list\":{\"label\":\"id\",\"searchable\":false,\"sortable\":false}},\"title\":{\"edit\":{\"label\":\"title\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"title\",\"searchable\":true,\"sortable\":true}},\"subTitle\":{\"edit\":{\"label\":\"subTitle\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"subTitle\",\"searchable\":true,\"sortable\":true}},\"description\":{\"edit\":{\"label\":\"description\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"description\",\"searchable\":false,\"sortable\":false}},\"image\":{\"edit\":{\"label\":\"image\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"image\",\"searchable\":false,\"sortable\":false}},\"callToAction\":{\"edit\":{\"label\":\"callToAction\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"callToAction\",\"searchable\":false,\"sortable\":false}},\"documentId\":{\"edit\":{},\"list\":{\"label\":\"documentId\",\"searchable\":true,\"sortable\":true}}},\"layouts\":{\"list\":[\"id\",\"title\",\"subTitle\",\"image\"],\"edit\":[[{\"name\":\"title\",\"size\":6},{\"name\":\"subTitle\",\"size\":6}],[{\"name\":\"description\",\"size\":12}],[{\"name\":\"image\",\"size\":6}],[{\"name\":\"callToAction\",\"size\":12}]]},\"uid\":\"common.content-with-link\",\"isComponent\":true}','object',NULL,NULL),(98,'plugin_content_manager_configuration_content_types::api::about-us.about-us','{\"settings\":{\"bulkable\":true,\"filterable\":true,\"searchable\":true,\"pageSize\":10,\"mainField\":\"subTitle\",\"defaultSortBy\":\"subTitle\",\"defaultSortOrder\":\"ASC\"},\"metadatas\":{\"id\":{\"edit\":{},\"list\":{\"label\":\"id\",\"searchable\":true,\"sortable\":true}},\"subTitle\":{\"edit\":{\"label\":\"subTitle\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"subTitle\",\"searchable\":true,\"sortable\":true}},\"title\":{\"edit\":{\"label\":\"title\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"title\",\"searchable\":true,\"sortable\":true}},\"description\":{\"edit\":{\"label\":\"description\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"description\",\"searchable\":false,\"sortable\":false}},\"aboutSection\":{\"edit\":{\"label\":\"aboutSection\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"aboutSection\",\"searchable\":false,\"sortable\":false}},\"cardSection\":{\"edit\":{\"label\":\"cardSection\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"cardSection\",\"searchable\":false,\"sortable\":false}},\"sectionTitle\":{\"edit\":{\"label\":\"sectionTitle\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"sectionTitle\",\"searchable\":true,\"sortable\":true}},\"sectionDescription\":{\"edit\":{\"label\":\"sectionDescription\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"sectionDescription\",\"searchable\":false,\"sortable\":false}},\"sections\":{\"edit\":{\"label\":\"sections\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"sections\",\"searchable\":false,\"sortable\":false}},\"seo\":{\"edit\":{\"label\":\"seo\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"seo\",\"searchable\":false,\"sortable\":false}},\"createdAt\":{\"edit\":{\"label\":\"createdAt\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true},\"list\":{\"label\":\"createdAt\",\"searchable\":true,\"sortable\":true}},\"updatedAt\":{\"edit\":{\"label\":\"updatedAt\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true},\"list\":{\"label\":\"updatedAt\",\"searchable\":true,\"sortable\":true}},\"createdBy\":{\"edit\":{\"label\":\"createdBy\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true,\"mainField\":\"firstname\"},\"list\":{\"label\":\"createdBy\",\"searchable\":true,\"sortable\":true}},\"updatedBy\":{\"edit\":{\"label\":\"updatedBy\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true,\"mainField\":\"firstname\"},\"list\":{\"label\":\"updatedBy\",\"searchable\":true,\"sortable\":true}},\"documentId\":{\"edit\":{},\"list\":{\"label\":\"documentId\",\"searchable\":true,\"sortable\":true}}},\"layouts\":{\"list\":[\"id\",\"subTitle\",\"title\",\"aboutSection\"],\"edit\":[[{\"name\":\"subTitle\",\"size\":6},{\"name\":\"title\",\"size\":6}],[{\"name\":\"description\",\"size\":12}],[{\"name\":\"aboutSection\",\"size\":12}],[{\"name\":\"cardSection\",\"size\":12}],[{\"name\":\"sectionTitle\",\"size\":6}],[{\"name\":\"sectionDescription\",\"size\":12}],[{\"name\":\"sections\",\"size\":12}],[{\"name\":\"seo\",\"size\":12}]]},\"uid\":\"api::about-us.about-us\"}','object',NULL,NULL),(99,'plugin_content_manager_configuration_content_types::api::branch.branch','{\"settings\":{\"bulkable\":true,\"filterable\":true,\"searchable\":true,\"pageSize\":10,\"mainField\":\"title\",\"defaultSortBy\":\"title\",\"defaultSortOrder\":\"ASC\"},\"metadatas\":{\"id\":{\"edit\":{},\"list\":{\"label\":\"id\",\"searchable\":true,\"sortable\":true}},\"title\":{\"edit\":{\"label\":\"title\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"title\",\"searchable\":true,\"sortable\":true}},\"slug\":{\"edit\":{\"label\":\"slug\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"slug\",\"searchable\":true,\"sortable\":true}},\"address\":{\"edit\":{\"label\":\"address\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"address\",\"searchable\":true,\"sortable\":true}},\"branchLocation\":{\"edit\":{\"label\":\"branchLocation\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true,\"mainField\":\"title\"},\"list\":{\"label\":\"branchLocation\",\"searchable\":false,\"sortable\":false}},\"phoneNumbers\":{\"edit\":{\"label\":\"phoneNumbers\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"phoneNumbers\",\"searchable\":false,\"sortable\":false}},\"image\":{\"edit\":{\"label\":\"image\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"image\",\"searchable\":false,\"sortable\":false}},\"seo\":{\"edit\":{\"label\":\"seo\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"seo\",\"searchable\":false,\"sortable\":false}},\"previewImage\":{\"edit\":{\"label\":\"previewImage\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"previewImage\",\"searchable\":false,\"sortable\":false}},\"embededMapUrl\":{\"edit\":{\"label\":\"embededMapUrl\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"embededMapUrl\",\"searchable\":true,\"sortable\":true}},\"mapUrl\":{\"edit\":{\"label\":\"mapUrl\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"mapUrl\",\"searchable\":true,\"sortable\":true}},\"isFeatured\":{\"edit\":{\"label\":\"isFeatured\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"isFeatured\",\"searchable\":true,\"sortable\":true}},\"type\":{\"edit\":{\"label\":\"type\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"type\",\"searchable\":true,\"sortable\":true}},\"locationSortOrder\":{\"edit\":{\"label\":\"locationSortOrder\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"locationSortOrder\",\"searchable\":true,\"sortable\":true}},\"products\":{\"edit\":{\"label\":\"products\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true,\"mainField\":\"title\"},\"list\":{\"label\":\"products\",\"searchable\":false,\"sortable\":false}},\"createdAt\":{\"edit\":{\"label\":\"createdAt\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true},\"list\":{\"label\":\"createdAt\",\"searchable\":true,\"sortable\":true}},\"updatedAt\":{\"edit\":{\"label\":\"updatedAt\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true},\"list\":{\"label\":\"updatedAt\",\"searchable\":true,\"sortable\":true}},\"createdBy\":{\"edit\":{\"label\":\"createdBy\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true,\"mainField\":\"firstname\"},\"list\":{\"label\":\"createdBy\",\"searchable\":true,\"sortable\":true}},\"updatedBy\":{\"edit\":{\"label\":\"updatedBy\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true,\"mainField\":\"firstname\"},\"list\":{\"label\":\"updatedBy\",\"searchable\":true,\"sortable\":true}},\"documentId\":{\"edit\":{},\"list\":{\"label\":\"documentId\",\"searchable\":true,\"sortable\":true}}},\"layouts\":{\"edit\":[[{\"name\":\"title\",\"size\":6},{\"name\":\"slug\",\"size\":6}],[{\"name\":\"address\",\"size\":6},{\"name\":\"branchLocation\",\"size\":6}],[{\"name\":\"phoneNumbers\",\"size\":12}],[{\"name\":\"image\",\"size\":6}],[{\"name\":\"seo\",\"size\":12}],[{\"name\":\"previewImage\",\"size\":6},{\"name\":\"embededMapUrl\",\"size\":6}],[{\"name\":\"mapUrl\",\"size\":6},{\"name\":\"isFeatured\",\"size\":4}],[{\"name\":\"type\",\"size\":6},{\"name\":\"locationSortOrder\",\"size\":4}],[{\"name\":\"products\",\"size\":6}]],\"list\":[\"id\",\"title\",\"slug\",\"products\",\"locationSortOrder\",\"address\"]},\"uid\":\"api::branch.branch\"}','object',NULL,NULL),(100,'plugin_content_manager_configuration_content_types::api::branch-location.branch-location','{\"settings\":{\"bulkable\":true,\"filterable\":true,\"searchable\":true,\"pageSize\":10,\"mainField\":\"title\",\"defaultSortBy\":\"title\",\"defaultSortOrder\":\"ASC\"},\"metadatas\":{\"id\":{\"edit\":{},\"list\":{\"label\":\"id\",\"searchable\":true,\"sortable\":true}},\"title\":{\"edit\":{\"label\":\"title\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"title\",\"searchable\":true,\"sortable\":true}},\"key\":{\"edit\":{\"label\":\"key\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"key\",\"searchable\":true,\"sortable\":true}},\"tabSortOrder\":{\"edit\":{\"label\":\"tabSortOrder\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"tabSortOrder\",\"searchable\":true,\"sortable\":true}},\"createdAt\":{\"edit\":{\"label\":\"createdAt\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true},\"list\":{\"label\":\"createdAt\",\"searchable\":true,\"sortable\":true}},\"updatedAt\":{\"edit\":{\"label\":\"updatedAt\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true},\"list\":{\"label\":\"updatedAt\",\"searchable\":true,\"sortable\":true}},\"createdBy\":{\"edit\":{\"label\":\"createdBy\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true,\"mainField\":\"firstname\"},\"list\":{\"label\":\"createdBy\",\"searchable\":true,\"sortable\":true}},\"updatedBy\":{\"edit\":{\"label\":\"updatedBy\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true,\"mainField\":\"firstname\"},\"list\":{\"label\":\"updatedBy\",\"searchable\":true,\"sortable\":true}},\"documentId\":{\"edit\":{},\"list\":{\"label\":\"documentId\",\"searchable\":true,\"sortable\":true}}},\"layouts\":{\"list\":[\"id\",\"title\",\"key\",\"createdAt\"],\"edit\":[[{\"name\":\"title\",\"size\":6},{\"name\":\"key\",\"size\":6}],[{\"name\":\"tabSortOrder\",\"size\":4}]]},\"uid\":\"api::branch-location.branch-location\"}','object',NULL,NULL),(101,'plugin_content_manager_configuration_content_types::api::contact-enquiry.contact-enquiry','{\"settings\":{\"bulkable\":true,\"filterable\":true,\"searchable\":true,\"pageSize\":10,\"mainField\":\"fullName\",\"defaultSortBy\":\"fullName\",\"defaultSortOrder\":\"ASC\"},\"metadatas\":{\"id\":{\"edit\":{},\"list\":{\"label\":\"id\",\"searchable\":true,\"sortable\":true}},\"fullName\":{\"edit\":{\"label\":\"fullName\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"fullName\",\"searchable\":true,\"sortable\":true}},\"email\":{\"edit\":{\"label\":\"email\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"email\",\"searchable\":true,\"sortable\":true}},\"phoneNumber\":{\"edit\":{\"label\":\"phoneNumber\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"phoneNumber\",\"searchable\":true,\"sortable\":true}},\"message\":{\"edit\":{\"label\":\"message\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"message\",\"searchable\":true,\"sortable\":true}},\"enquiryType\":{\"edit\":{\"label\":\"enquiryType\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"enquiryType\",\"searchable\":true,\"sortable\":true}},\"createdAt\":{\"edit\":{\"label\":\"createdAt\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true},\"list\":{\"label\":\"createdAt\",\"searchable\":true,\"sortable\":true}},\"updatedAt\":{\"edit\":{\"label\":\"updatedAt\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true},\"list\":{\"label\":\"updatedAt\",\"searchable\":true,\"sortable\":true}},\"createdBy\":{\"edit\":{\"label\":\"createdBy\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true,\"mainField\":\"firstname\"},\"list\":{\"label\":\"createdBy\",\"searchable\":true,\"sortable\":true}},\"updatedBy\":{\"edit\":{\"label\":\"updatedBy\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true,\"mainField\":\"firstname\"},\"list\":{\"label\":\"updatedBy\",\"searchable\":true,\"sortable\":true}},\"documentId\":{\"edit\":{},\"list\":{\"label\":\"documentId\",\"searchable\":true,\"sortable\":true}}},\"layouts\":{\"list\":[\"id\",\"fullName\",\"email\",\"phoneNumber\"],\"edit\":[[{\"name\":\"fullName\",\"size\":6},{\"name\":\"email\",\"size\":6}],[{\"name\":\"phoneNumber\",\"size\":6},{\"name\":\"message\",\"size\":6}],[{\"name\":\"enquiryType\",\"size\":6}]]},\"uid\":\"api::contact-enquiry.contact-enquiry\"}','object',NULL,NULL),(102,'plugin_content_manager_configuration_content_types::api::business-stream.business-stream','{\"settings\":{\"bulkable\":true,\"filterable\":true,\"searchable\":true,\"pageSize\":10,\"mainField\":\"title\",\"defaultSortBy\":\"title\",\"defaultSortOrder\":\"ASC\"},\"metadatas\":{\"id\":{\"edit\":{},\"list\":{\"label\":\"id\",\"searchable\":true,\"sortable\":true}},\"title\":{\"edit\":{\"label\":\"title\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"title\",\"searchable\":true,\"sortable\":true}},\"slug\":{\"edit\":{\"label\":\"slug\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"slug\",\"searchable\":true,\"sortable\":true}},\"smallDescription\":{\"edit\":{\"label\":\"smallDescription\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"smallDescription\",\"searchable\":true,\"sortable\":true}},\"image\":{\"edit\":{\"label\":\"image\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"image\",\"searchable\":false,\"sortable\":false}},\"seo\":{\"edit\":{\"label\":\"seo\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"seo\",\"searchable\":false,\"sortable\":false}},\"homePageSortOrder\":{\"edit\":{\"label\":\"homePageSortOrder\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"homePageSortOrder\",\"searchable\":true,\"sortable\":true}},\"createdAt\":{\"edit\":{\"label\":\"createdAt\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true},\"list\":{\"label\":\"createdAt\",\"searchable\":true,\"sortable\":true}},\"updatedAt\":{\"edit\":{\"label\":\"updatedAt\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true},\"list\":{\"label\":\"updatedAt\",\"searchable\":true,\"sortable\":true}},\"createdBy\":{\"edit\":{\"label\":\"createdBy\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true,\"mainField\":\"firstname\"},\"list\":{\"label\":\"createdBy\",\"searchable\":true,\"sortable\":true}},\"updatedBy\":{\"edit\":{\"label\":\"updatedBy\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true,\"mainField\":\"firstname\"},\"list\":{\"label\":\"updatedBy\",\"searchable\":true,\"sortable\":true}},\"documentId\":{\"edit\":{},\"list\":{\"label\":\"documentId\",\"searchable\":true,\"sortable\":true}}},\"layouts\":{\"list\":[\"id\",\"title\",\"slug\",\"smallDescription\"],\"edit\":[[{\"name\":\"title\",\"size\":6},{\"name\":\"slug\",\"size\":6}],[{\"name\":\"smallDescription\",\"size\":6},{\"name\":\"image\",\"size\":6}],[{\"name\":\"seo\",\"size\":12}],[{\"name\":\"homePageSortOrder\",\"size\":4}]]},\"uid\":\"api::business-stream.business-stream\"}','object',NULL,NULL),(103,'plugin_content_manager_configuration_content_types::api::contact-us.contact-us','{\"settings\":{\"bulkable\":true,\"filterable\":true,\"searchable\":true,\"pageSize\":10,\"mainField\":\"formTitle\",\"defaultSortBy\":\"formTitle\",\"defaultSortOrder\":\"ASC\"},\"metadatas\":{\"id\":{\"edit\":{},\"list\":{\"label\":\"id\",\"searchable\":true,\"sortable\":true}},\"banner\":{\"edit\":{\"label\":\"banner\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"banner\",\"searchable\":false,\"sortable\":false}},\"boxComponent\":{\"edit\":{\"label\":\"boxComponent\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"boxComponent\",\"searchable\":false,\"sortable\":false}},\"formTitle\":{\"edit\":{\"label\":\"formTitle\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"formTitle\",\"searchable\":true,\"sortable\":true}},\"seo\":{\"edit\":{\"label\":\"seo\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"seo\",\"searchable\":false,\"sortable\":false}},\"locations\":{\"edit\":{\"label\":\"locations\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true,\"mainField\":\"title\"},\"list\":{\"label\":\"locations\",\"searchable\":false,\"sortable\":false}},\"createdAt\":{\"edit\":{\"label\":\"createdAt\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true},\"list\":{\"label\":\"createdAt\",\"searchable\":true,\"sortable\":true}},\"updatedAt\":{\"edit\":{\"label\":\"updatedAt\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true},\"list\":{\"label\":\"updatedAt\",\"searchable\":true,\"sortable\":true}},\"createdBy\":{\"edit\":{\"label\":\"createdBy\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true,\"mainField\":\"firstname\"},\"list\":{\"label\":\"createdBy\",\"searchable\":true,\"sortable\":true}},\"updatedBy\":{\"edit\":{\"label\":\"updatedBy\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true,\"mainField\":\"firstname\"},\"list\":{\"label\":\"updatedBy\",\"searchable\":true,\"sortable\":true}},\"documentId\":{\"edit\":{},\"list\":{\"label\":\"documentId\",\"searchable\":true,\"sortable\":true}}},\"layouts\":{\"list\":[\"id\",\"banner\",\"boxComponent\",\"formTitle\"],\"edit\":[[{\"name\":\"banner\",\"size\":12}],[{\"name\":\"boxComponent\",\"size\":12}],[{\"name\":\"formTitle\",\"size\":6}],[{\"name\":\"seo\",\"size\":12}],[{\"name\":\"locations\",\"size\":6}]]},\"uid\":\"api::contact-us.contact-us\"}','object',NULL,NULL),(104,'plugin_content_manager_configuration_content_types::api::news.news','{\"settings\":{\"bulkable\":true,\"filterable\":true,\"searchable\":true,\"pageSize\":10,\"mainField\":\"title\",\"defaultSortBy\":\"title\",\"defaultSortOrder\":\"ASC\"},\"metadatas\":{\"id\":{\"edit\":{},\"list\":{\"label\":\"id\",\"searchable\":true,\"sortable\":true}},\"title\":{\"edit\":{\"label\":\"title\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"title\",\"searchable\":true,\"sortable\":true}},\"slug\":{\"edit\":{\"label\":\"slug\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"slug\",\"searchable\":true,\"sortable\":true}},\"postedDate\":{\"edit\":{\"label\":\"postedDate\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"postedDate\",\"searchable\":true,\"sortable\":true}},\"smallDescription\":{\"edit\":{\"label\":\"smallDescription\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"smallDescription\",\"searchable\":true,\"sortable\":true}},\"description\":{\"edit\":{\"label\":\"description\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"description\",\"searchable\":false,\"sortable\":false}},\"image\":{\"edit\":{\"label\":\"image\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"image\",\"searchable\":false,\"sortable\":false}},\"isFeatured\":{\"edit\":{\"label\":\"isFeatured\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"isFeatured\",\"searchable\":true,\"sortable\":true}},\"readTime\":{\"edit\":{\"label\":\"readTime\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"readTime\",\"searchable\":true,\"sortable\":true}},\"seo\":{\"edit\":{\"label\":\"seo\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"seo\",\"searchable\":false,\"sortable\":false}},\"types\":{\"edit\":{\"label\":\"types\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true,\"mainField\":\"title\"},\"list\":{\"label\":\"types\",\"searchable\":false,\"sortable\":false}},\"createdAt\":{\"edit\":{\"label\":\"createdAt\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true},\"list\":{\"label\":\"createdAt\",\"searchable\":true,\"sortable\":true}},\"updatedAt\":{\"edit\":{\"label\":\"updatedAt\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true},\"list\":{\"label\":\"updatedAt\",\"searchable\":true,\"sortable\":true}},\"createdBy\":{\"edit\":{\"label\":\"createdBy\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true,\"mainField\":\"firstname\"},\"list\":{\"label\":\"createdBy\",\"searchable\":true,\"sortable\":true}},\"updatedBy\":{\"edit\":{\"label\":\"updatedBy\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true,\"mainField\":\"firstname\"},\"list\":{\"label\":\"updatedBy\",\"searchable\":true,\"sortable\":true}},\"documentId\":{\"edit\":{},\"list\":{\"label\":\"documentId\",\"searchable\":true,\"sortable\":true}}},\"layouts\":{\"list\":[\"id\",\"title\",\"slug\",\"postedDate\"],\"edit\":[[{\"name\":\"title\",\"size\":6},{\"name\":\"slug\",\"size\":6}],[{\"name\":\"postedDate\",\"size\":4},{\"name\":\"smallDescription\",\"size\":6}],[{\"name\":\"description\",\"size\":12}],[{\"name\":\"image\",\"size\":6},{\"name\":\"isFeatured\",\"size\":4}],[{\"name\":\"readTime\",\"size\":6}],[{\"name\":\"seo\",\"size\":12}],[{\"name\":\"types\",\"size\":6}]]},\"uid\":\"api::news.news\"}','object',NULL,NULL),(105,'plugin_content_manager_configuration_content_types::api::news-landing.news-landing','{\"settings\":{\"bulkable\":true,\"filterable\":true,\"searchable\":true,\"pageSize\":10,\"mainField\":\"title\",\"defaultSortBy\":\"title\",\"defaultSortOrder\":\"ASC\"},\"metadatas\":{\"id\":{\"edit\":{},\"list\":{\"label\":\"id\",\"searchable\":true,\"sortable\":true}},\"title\":{\"edit\":{\"label\":\"title\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"title\",\"searchable\":true,\"sortable\":true}},\"seo\":{\"edit\":{\"label\":\"seo\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"seo\",\"searchable\":false,\"sortable\":false}},\"createdAt\":{\"edit\":{\"label\":\"createdAt\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true},\"list\":{\"label\":\"createdAt\",\"searchable\":true,\"sortable\":true}},\"updatedAt\":{\"edit\":{\"label\":\"updatedAt\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true},\"list\":{\"label\":\"updatedAt\",\"searchable\":true,\"sortable\":true}},\"createdBy\":{\"edit\":{\"label\":\"createdBy\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true,\"mainField\":\"firstname\"},\"list\":{\"label\":\"createdBy\",\"searchable\":true,\"sortable\":true}},\"updatedBy\":{\"edit\":{\"label\":\"updatedBy\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true,\"mainField\":\"firstname\"},\"list\":{\"label\":\"updatedBy\",\"searchable\":true,\"sortable\":true}},\"documentId\":{\"edit\":{},\"list\":{\"label\":\"documentId\",\"searchable\":true,\"sortable\":true}}},\"layouts\":{\"list\":[\"id\",\"title\",\"seo\",\"createdAt\"],\"edit\":[[{\"name\":\"title\",\"size\":6}],[{\"name\":\"seo\",\"size\":12}]]},\"uid\":\"api::news-landing.news-landing\"}','object',NULL,NULL),(106,'plugin_content_manager_configuration_content_types::api::service.service','{\"settings\":{\"bulkable\":true,\"filterable\":true,\"searchable\":true,\"pageSize\":10,\"mainField\":\"title\",\"defaultSortBy\":\"title\",\"defaultSortOrder\":\"ASC\"},\"metadatas\":{\"id\":{\"edit\":{},\"list\":{\"label\":\"id\",\"searchable\":true,\"sortable\":true}},\"title\":{\"edit\":{\"label\":\"title\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"title\",\"searchable\":true,\"sortable\":true}},\"slug\":{\"edit\":{\"label\":\"slug\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"slug\",\"searchable\":true,\"sortable\":true}},\"serviceType\":{\"edit\":{\"label\":\"serviceType\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true,\"mainField\":\"title\"},\"list\":{\"label\":\"serviceType\",\"searchable\":true,\"sortable\":true}},\"banner\":{\"edit\":{\"label\":\"banner\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"banner\",\"searchable\":false,\"sortable\":false}},\"listDesc\":{\"edit\":{\"label\":\"listDesc\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"listDesc\",\"searchable\":true,\"sortable\":true}},\"listImage\":{\"edit\":{\"label\":\"listImage\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"listImage\",\"searchable\":false,\"sortable\":false}},\"locationTypes\":{\"edit\":{\"label\":\"locationTypes\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true,\"mainField\":\"title\"},\"list\":{\"label\":\"locationTypes\",\"searchable\":false,\"sortable\":false}},\"breadCrumb\":{\"edit\":{\"label\":\"breadCrumb\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"breadCrumb\",\"searchable\":false,\"sortable\":false}},\"serviceContent\":{\"edit\":{\"label\":\"serviceContent\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"serviceContent\",\"searchable\":false,\"sortable\":false}},\"seo\":{\"edit\":{\"label\":\"seo\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"seo\",\"searchable\":false,\"sortable\":false}},\"showBookServiceForm\":{\"edit\":{\"label\":\"showBookServiceForm\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"showBookServiceForm\",\"searchable\":true,\"sortable\":true}},\"showMobileServiceForm\":{\"edit\":{\"label\":\"showMobileServiceForm\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"showMobileServiceForm\",\"searchable\":true,\"sortable\":true}},\"bookService\":{\"edit\":{\"label\":\"bookService\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"bookService\",\"searchable\":false,\"sortable\":false}},\"mobileService\":{\"edit\":{\"label\":\"mobileService\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"mobileService\",\"searchable\":false,\"sortable\":false}},\"headerServiceSortOrder\":{\"edit\":{\"label\":\"headerServiceSortOrder\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"headerServiceSortOrder\",\"searchable\":true,\"sortable\":true}},\"createdAt\":{\"edit\":{\"label\":\"createdAt\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true},\"list\":{\"label\":\"createdAt\",\"searchable\":true,\"sortable\":true}},\"updatedAt\":{\"edit\":{\"label\":\"updatedAt\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true},\"list\":{\"label\":\"updatedAt\",\"searchable\":true,\"sortable\":true}},\"createdBy\":{\"edit\":{\"label\":\"createdBy\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true,\"mainField\":\"firstname\"},\"list\":{\"label\":\"createdBy\",\"searchable\":true,\"sortable\":true}},\"updatedBy\":{\"edit\":{\"label\":\"updatedBy\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true,\"mainField\":\"firstname\"},\"list\":{\"label\":\"updatedBy\",\"searchable\":true,\"sortable\":true}},\"documentId\":{\"edit\":{},\"list\":{\"label\":\"documentId\",\"searchable\":true,\"sortable\":true}}},\"layouts\":{\"edit\":[[{\"name\":\"title\",\"size\":6},{\"name\":\"slug\",\"size\":6}],[{\"name\":\"serviceType\",\"size\":6}],[{\"name\":\"banner\",\"size\":12}],[{\"name\":\"breadCrumb\",\"size\":12}],[{\"name\":\"listDesc\",\"size\":6},{\"name\":\"listImage\",\"size\":6}],[{\"name\":\"locationTypes\",\"size\":6}],[{\"name\":\"serviceContent\",\"size\":12}],[{\"name\":\"showBookServiceForm\",\"size\":4},{\"name\":\"showMobileServiceForm\",\"size\":4}],[{\"name\":\"bookService\",\"size\":12}],[{\"name\":\"mobileService\",\"size\":12}],[{\"name\":\"seo\",\"size\":12}],[{\"name\":\"headerServiceSortOrder\",\"size\":4}]],\"list\":[\"id\",\"title\",\"slug\",\"serviceType\",\"headerServiceSortOrder\",\"listImage\"]},\"uid\":\"api::service.service\"}','object',NULL,NULL),(107,'plugin_content_manager_configuration_content_types::api::brand.brand','{\"settings\":{\"bulkable\":true,\"filterable\":true,\"searchable\":true,\"pageSize\":10,\"mainField\":\"title\",\"defaultSortBy\":\"title\",\"defaultSortOrder\":\"ASC\"},\"metadatas\":{\"id\":{\"edit\":{},\"list\":{\"label\":\"id\",\"searchable\":true,\"sortable\":true}},\"title\":{\"edit\":{\"label\":\"title\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"title\",\"searchable\":true,\"sortable\":true}},\"image\":{\"edit\":{\"label\":\"image\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"image\",\"searchable\":false,\"sortable\":false}},\"types\":{\"edit\":{\"label\":\"types\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true,\"mainField\":\"title\"},\"list\":{\"label\":\"types\",\"searchable\":false,\"sortable\":false}},\"commonUrl\":{\"edit\":{\"label\":\"commonUrl\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"commonUrl\",\"searchable\":true,\"sortable\":true}},\"enableCommonUrl\":{\"edit\":{\"label\":\"enableCommonUrl\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"enableCommonUrl\",\"searchable\":true,\"sortable\":true}},\"automotiveUrl\":{\"edit\":{\"label\":\"automotiveUrl\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"automotiveUrl\",\"searchable\":true,\"sortable\":true}},\"enableAutomotiveUrl\":{\"edit\":{\"label\":\"enableAutomotiveUrl\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"enableAutomotiveUrl\",\"searchable\":true,\"sortable\":true}},\"powerToolUrl\":{\"edit\":{\"label\":\"powerToolUrl\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"powerToolUrl\",\"searchable\":true,\"sortable\":true}},\"enablePowerToolUrl\":{\"edit\":{\"label\":\"enablePowerToolUrl\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"enablePowerToolUrl\",\"searchable\":true,\"sortable\":true}},\"tyreUrl\":{\"edit\":{\"label\":\"tyreUrl\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"tyreUrl\",\"searchable\":true,\"sortable\":true}},\"enableTyreUrl\":{\"edit\":{\"label\":\"enableTyreUrl\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"enableTyreUrl\",\"searchable\":true,\"sortable\":true}},\"isFeatured\":{\"edit\":{\"label\":\"isFeatured\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"isFeatured\",\"searchable\":true,\"sortable\":true}},\"createdAt\":{\"edit\":{\"label\":\"createdAt\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true},\"list\":{\"label\":\"createdAt\",\"searchable\":true,\"sortable\":true}},\"updatedAt\":{\"edit\":{\"label\":\"updatedAt\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true},\"list\":{\"label\":\"updatedAt\",\"searchable\":true,\"sortable\":true}},\"createdBy\":{\"edit\":{\"label\":\"createdBy\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true,\"mainField\":\"firstname\"},\"list\":{\"label\":\"createdBy\",\"searchable\":true,\"sortable\":true}},\"updatedBy\":{\"edit\":{\"label\":\"updatedBy\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true,\"mainField\":\"firstname\"},\"list\":{\"label\":\"updatedBy\",\"searchable\":true,\"sortable\":true}},\"documentId\":{\"edit\":{},\"list\":{\"label\":\"documentId\",\"searchable\":true,\"sortable\":true}}},\"layouts\":{\"list\":[\"id\",\"title\",\"image\",\"types\"],\"edit\":[[{\"name\":\"title\",\"size\":6},{\"name\":\"image\",\"size\":6}],[{\"name\":\"types\",\"size\":6},{\"name\":\"commonUrl\",\"size\":6}],[{\"name\":\"enableCommonUrl\",\"size\":4},{\"name\":\"automotiveUrl\",\"size\":6}],[{\"name\":\"enableAutomotiveUrl\",\"size\":4},{\"name\":\"powerToolUrl\",\"size\":6}],[{\"name\":\"enablePowerToolUrl\",\"size\":4},{\"name\":\"tyreUrl\",\"size\":6}],[{\"name\":\"enableTyreUrl\",\"size\":4},{\"name\":\"isFeatured\",\"size\":4}]]},\"uid\":\"api::brand.brand\"}','object',NULL,NULL),(108,'plugin_content_manager_configuration_content_types::api::service-category.service-category','{\"settings\":{\"bulkable\":true,\"filterable\":true,\"searchable\":true,\"pageSize\":10,\"mainField\":\"title\",\"defaultSortBy\":\"title\",\"defaultSortOrder\":\"ASC\"},\"metadatas\":{\"id\":{\"edit\":{},\"list\":{\"label\":\"id\",\"searchable\":true,\"sortable\":true}},\"title\":{\"edit\":{\"label\":\"title\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"title\",\"searchable\":true,\"sortable\":true}},\"slug\":{\"edit\":{\"label\":\"slug\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"slug\",\"searchable\":true,\"sortable\":true}},\"description\":{\"edit\":{\"label\":\"description\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"description\",\"searchable\":true,\"sortable\":true}},\"image\":{\"edit\":{\"label\":\"image\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"image\",\"searchable\":false,\"sortable\":false}},\"menuImage\":{\"edit\":{\"label\":\"menuImage\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"menuImage\",\"searchable\":false,\"sortable\":false}},\"banner\":{\"edit\":{\"label\":\"banner\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"banner\",\"searchable\":false,\"sortable\":false}},\"servicesList\":{\"edit\":{\"label\":\"servicesList\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"servicesList\",\"searchable\":false,\"sortable\":false}},\"seo\":{\"edit\":{\"label\":\"seo\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"seo\",\"searchable\":false,\"sortable\":false}},\"headerServicesSortOrder\":{\"edit\":{\"label\":\"headerServicesSortOrder\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"headerServicesSortOrder\",\"searchable\":true,\"sortable\":true}},\"createdAt\":{\"edit\":{\"label\":\"createdAt\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true},\"list\":{\"label\":\"createdAt\",\"searchable\":true,\"sortable\":true}},\"updatedAt\":{\"edit\":{\"label\":\"updatedAt\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true},\"list\":{\"label\":\"updatedAt\",\"searchable\":true,\"sortable\":true}},\"createdBy\":{\"edit\":{\"label\":\"createdBy\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true,\"mainField\":\"firstname\"},\"list\":{\"label\":\"createdBy\",\"searchable\":true,\"sortable\":true}},\"updatedBy\":{\"edit\":{\"label\":\"updatedBy\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true,\"mainField\":\"firstname\"},\"list\":{\"label\":\"updatedBy\",\"searchable\":true,\"sortable\":true}},\"documentId\":{\"edit\":{},\"list\":{\"label\":\"documentId\",\"searchable\":true,\"sortable\":true}}},\"layouts\":{\"list\":[\"id\",\"title\",\"slug\",\"description\"],\"edit\":[[{\"name\":\"title\",\"size\":6},{\"name\":\"slug\",\"size\":6}],[{\"name\":\"description\",\"size\":6},{\"name\":\"image\",\"size\":6}],[{\"name\":\"menuImage\",\"size\":6}],[{\"name\":\"banner\",\"size\":12}],[{\"name\":\"servicesList\",\"size\":12}],[{\"name\":\"seo\",\"size\":12}],[{\"name\":\"headerServicesSortOrder\",\"size\":4}]]},\"uid\":\"api::service-category.service-category\"}','object',NULL,NULL),(109,'plugin_content_manager_configuration_content_types::api::type.type','{\"settings\":{\"bulkable\":true,\"filterable\":true,\"searchable\":true,\"pageSize\":10,\"mainField\":\"title\",\"defaultSortBy\":\"title\",\"defaultSortOrder\":\"ASC\"},\"metadatas\":{\"id\":{\"edit\":{},\"list\":{\"label\":\"id\",\"searchable\":true,\"sortable\":true}},\"title\":{\"edit\":{\"label\":\"title\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"title\",\"searchable\":true,\"sortable\":true}},\"key\":{\"edit\":{\"label\":\"key\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"key\",\"searchable\":true,\"sortable\":true}},\"createdAt\":{\"edit\":{\"label\":\"createdAt\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true},\"list\":{\"label\":\"createdAt\",\"searchable\":true,\"sortable\":true}},\"updatedAt\":{\"edit\":{\"label\":\"updatedAt\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true},\"list\":{\"label\":\"updatedAt\",\"searchable\":true,\"sortable\":true}},\"createdBy\":{\"edit\":{\"label\":\"createdBy\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true,\"mainField\":\"firstname\"},\"list\":{\"label\":\"createdBy\",\"searchable\":true,\"sortable\":true}},\"updatedBy\":{\"edit\":{\"label\":\"updatedBy\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true,\"mainField\":\"firstname\"},\"list\":{\"label\":\"updatedBy\",\"searchable\":true,\"sortable\":true}},\"documentId\":{\"edit\":{},\"list\":{\"label\":\"documentId\",\"searchable\":true,\"sortable\":true}}},\"layouts\":{\"list\":[\"id\",\"title\",\"key\",\"createdAt\"],\"edit\":[[{\"name\":\"title\",\"size\":6},{\"name\":\"key\",\"size\":6}]]},\"uid\":\"api::type.type\"}','object',NULL,NULL),(110,'plugin_content_manager_configuration_components::service-landing.service-form-blk','{\"settings\":{\"bulkable\":true,\"filterable\":true,\"searchable\":true,\"pageSize\":10,\"mainField\":\"subHeading\",\"defaultSortBy\":\"subHeading\",\"defaultSortOrder\":\"ASC\"},\"metadatas\":{\"id\":{\"edit\":{},\"list\":{\"label\":\"id\",\"searchable\":false,\"sortable\":false}},\"title\":{\"edit\":{\"label\":\"title\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"title\",\"searchable\":true,\"sortable\":true}},\"subHeading\":{\"edit\":{\"label\":\"subHeading\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"subHeading\",\"searchable\":true,\"sortable\":true}},\"description\":{\"edit\":{\"label\":\"description\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"description\",\"searchable\":true,\"sortable\":true}},\"button\":{\"edit\":{\"label\":\"button\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"button\",\"searchable\":false,\"sortable\":false}},\"documentId\":{\"edit\":{},\"list\":{\"label\":\"documentId\",\"searchable\":true,\"sortable\":true}}},\"layouts\":{\"list\":[\"id\",\"title\",\"subHeading\",\"description\"],\"edit\":[[{\"name\":\"title\",\"size\":6},{\"name\":\"subHeading\",\"size\":6}],[{\"name\":\"description\",\"size\":6}],[{\"name\":\"button\",\"size\":12}]]},\"uid\":\"service-landing.service-form-blk\",\"isComponent\":true}','object',NULL,NULL),(111,'plugin_content_manager_configuration_components::service-landing.our-service','{\"settings\":{\"bulkable\":true,\"filterable\":true,\"searchable\":true,\"pageSize\":10,\"mainField\":\"title\",\"defaultSortBy\":\"title\",\"defaultSortOrder\":\"ASC\"},\"metadatas\":{\"id\":{\"edit\":{},\"list\":{\"label\":\"id\",\"searchable\":false,\"sortable\":false}},\"title\":{\"edit\":{\"label\":\"title\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"title\",\"searchable\":true,\"sortable\":true}},\"description\":{\"edit\":{\"label\":\"description\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"description\",\"searchable\":true,\"sortable\":true}},\"documentId\":{\"edit\":{},\"list\":{\"label\":\"documentId\",\"searchable\":true,\"sortable\":true}}},\"layouts\":{\"list\":[\"id\",\"title\",\"description\"],\"edit\":[[{\"name\":\"title\",\"size\":6},{\"name\":\"description\",\"size\":6}]]},\"uid\":\"service-landing.our-service\",\"isComponent\":true}','object',NULL,NULL),(112,'plugin_content_manager_configuration_components::common.button','{\"settings\":{\"bulkable\":true,\"filterable\":true,\"searchable\":true,\"pageSize\":10,\"mainField\":\"title\",\"defaultSortBy\":\"title\",\"defaultSortOrder\":\"ASC\"},\"metadatas\":{\"id\":{\"edit\":{},\"list\":{\"label\":\"id\",\"searchable\":false,\"sortable\":false}},\"title\":{\"edit\":{\"label\":\"title\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"title\",\"searchable\":true,\"sortable\":true}},\"url\":{\"edit\":{\"label\":\"url\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"url\",\"searchable\":true,\"sortable\":true}},\"typeExternal\":{\"edit\":{\"label\":\"typeExternal\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"typeExternal\",\"searchable\":true,\"sortable\":true}},\"documentId\":{\"edit\":{},\"list\":{\"label\":\"documentId\",\"searchable\":true,\"sortable\":true}}},\"layouts\":{\"list\":[\"id\",\"title\",\"url\",\"typeExternal\"],\"edit\":[[{\"name\":\"title\",\"size\":6},{\"name\":\"url\",\"size\":6}],[{\"name\":\"typeExternal\",\"size\":4}]]},\"uid\":\"common.button\",\"isComponent\":true}','object',NULL,NULL),(114,'plugin_content_manager_configuration_content_types::api::service-landing.service-landing','{\"settings\":{\"bulkable\":true,\"filterable\":true,\"searchable\":true,\"pageSize\":10,\"mainField\":\"documentId\",\"defaultSortBy\":\"documentId\",\"defaultSortOrder\":\"ASC\"},\"metadatas\":{\"id\":{\"edit\":{},\"list\":{\"label\":\"id\",\"searchable\":true,\"sortable\":true}},\"banner\":{\"edit\":{\"label\":\"banner\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"banner\",\"searchable\":false,\"sortable\":false}},\"serviceHeading\":{\"edit\":{\"label\":\"serviceHeading\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"serviceHeading\",\"searchable\":true,\"sortable\":true}},\"description\":{\"edit\":{\"label\":\"description\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"description\",\"searchable\":false,\"sortable\":false}},\"seo\":{\"edit\":{\"label\":\"seo\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"seo\",\"searchable\":false,\"sortable\":false}},\"serviceLocations\":{\"edit\":{\"label\":\"serviceLocations\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"serviceLocations\",\"searchable\":false,\"sortable\":false}},\"locationTypes\":{\"edit\":{\"label\":\"locationTypes\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true,\"mainField\":\"title\"},\"list\":{\"label\":\"locationTypes\",\"searchable\":false,\"sortable\":false}},\"createdAt\":{\"edit\":{\"label\":\"createdAt\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true},\"list\":{\"label\":\"createdAt\",\"searchable\":true,\"sortable\":true}},\"updatedAt\":{\"edit\":{\"label\":\"updatedAt\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true},\"list\":{\"label\":\"updatedAt\",\"searchable\":true,\"sortable\":true}},\"createdBy\":{\"edit\":{\"label\":\"createdBy\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true,\"mainField\":\"firstname\"},\"list\":{\"label\":\"createdBy\",\"searchable\":true,\"sortable\":true}},\"updatedBy\":{\"edit\":{\"label\":\"updatedBy\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true,\"mainField\":\"firstname\"},\"list\":{\"label\":\"updatedBy\",\"searchable\":true,\"sortable\":true}},\"documentId\":{\"edit\":{},\"list\":{\"label\":\"documentId\",\"searchable\":true,\"sortable\":true}}},\"layouts\":{\"list\":[\"id\",\"banner\",\"serviceHeading\",\"createdAt\"],\"edit\":[[{\"name\":\"banner\",\"size\":12}],[{\"name\":\"serviceHeading\",\"size\":6}],[{\"name\":\"description\",\"size\":12}],[{\"name\":\"seo\",\"size\":12}],[{\"name\":\"serviceLocations\",\"size\":12}],[{\"name\":\"locationTypes\",\"size\":6}]]},\"uid\":\"api::service-landing.service-landing\"}','object',NULL,NULL),(115,'plugin_content_manager_configuration_components::common.title-with-desc','{\"settings\":{\"bulkable\":true,\"filterable\":true,\"searchable\":true,\"pageSize\":10,\"mainField\":\"subTitle\",\"defaultSortBy\":\"subTitle\",\"defaultSortOrder\":\"ASC\"},\"metadatas\":{\"id\":{\"edit\":{},\"list\":{\"label\":\"id\",\"searchable\":false,\"sortable\":false}},\"title\":{\"edit\":{\"label\":\"title\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"title\",\"searchable\":true,\"sortable\":true}},\"subTitle\":{\"edit\":{\"label\":\"subTitle\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"subTitle\",\"searchable\":true,\"sortable\":true}},\"description\":{\"edit\":{\"label\":\"description\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"description\",\"searchable\":false,\"sortable\":false}},\"horizontalAlignment\":{\"edit\":{\"label\":\"horizontalAlignment\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"horizontalAlignment\",\"searchable\":true,\"sortable\":true}},\"documentId\":{\"edit\":{},\"list\":{\"label\":\"documentId\",\"searchable\":true,\"sortable\":true}}},\"layouts\":{\"list\":[\"id\",\"title\",\"subTitle\",\"horizontalAlignment\"],\"edit\":[[{\"name\":\"title\",\"size\":6},{\"name\":\"subTitle\",\"size\":6}],[{\"name\":\"description\",\"size\":12}],[{\"name\":\"horizontalAlignment\",\"size\":6}]]},\"uid\":\"common.title-with-desc\",\"isComponent\":true}','object',NULL,NULL),(116,'plugin_content_manager_configuration_components::common.locations','{\"settings\":{\"bulkable\":true,\"filterable\":true,\"searchable\":true,\"pageSize\":10,\"mainField\":\"title\",\"defaultSortBy\":\"title\",\"defaultSortOrder\":\"ASC\"},\"metadatas\":{\"id\":{\"edit\":{},\"list\":{\"label\":\"id\",\"searchable\":false,\"sortable\":false}},\"title\":{\"edit\":{\"label\":\"title\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"title\",\"searchable\":true,\"sortable\":true}},\"items\":{\"edit\":{\"label\":\"items\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"items\",\"searchable\":false,\"sortable\":false}},\"documentId\":{\"edit\":{},\"list\":{\"label\":\"documentId\",\"searchable\":true,\"sortable\":true}}},\"layouts\":{\"list\":[\"id\",\"title\",\"items\"],\"edit\":[[{\"name\":\"title\",\"size\":6}],[{\"name\":\"items\",\"size\":12}]]},\"uid\":\"common.locations\",\"isComponent\":true}','object',NULL,NULL),(117,'plugin_content_manager_configuration_components::common.location-card','{\"settings\":{\"bulkable\":true,\"filterable\":true,\"searchable\":true,\"pageSize\":10,\"mainField\":\"title\",\"defaultSortBy\":\"title\",\"defaultSortOrder\":\"ASC\"},\"metadatas\":{\"id\":{\"edit\":{},\"list\":{\"label\":\"id\",\"searchable\":false,\"sortable\":false}},\"title\":{\"edit\":{\"label\":\"title\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"title\",\"searchable\":true,\"sortable\":true}},\"branchLocation\":{\"edit\":{\"label\":\"branchLocation\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true,\"mainField\":\"title\"},\"list\":{\"label\":\"branchLocation\",\"searchable\":true,\"sortable\":true}},\"address\":{\"edit\":{\"label\":\"address\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"address\",\"searchable\":true,\"sortable\":true}},\"phoneNumbers\":{\"edit\":{\"label\":\"phoneNumbers\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"phoneNumbers\",\"searchable\":false,\"sortable\":false}},\"image\":{\"edit\":{\"label\":\"image\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"image\",\"searchable\":false,\"sortable\":false}},\"embededMapUrl\":{\"edit\":{\"label\":\"embededMapUrl\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"embededMapUrl\",\"searchable\":true,\"sortable\":true}},\"mapUrl\":{\"edit\":{\"label\":\"mapUrl\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"mapUrl\",\"searchable\":true,\"sortable\":true}},\"documentId\":{\"edit\":{},\"list\":{\"label\":\"documentId\",\"searchable\":true,\"sortable\":true}}},\"layouts\":{\"list\":[\"id\",\"title\",\"branchLocation\",\"address\"],\"edit\":[[{\"name\":\"title\",\"size\":6},{\"name\":\"branchLocation\",\"size\":6}],[{\"name\":\"address\",\"size\":6}],[{\"name\":\"phoneNumbers\",\"size\":12}],[{\"name\":\"image\",\"size\":6},{\"name\":\"embededMapUrl\",\"size\":6}],[{\"name\":\"mapUrl\",\"size\":6}]]},\"uid\":\"common.location-card\",\"isComponent\":true}','object',NULL,NULL),(118,'plugin_content_manager_configuration_components::common.faq','{\"settings\":{\"bulkable\":true,\"filterable\":true,\"searchable\":true,\"pageSize\":10,\"mainField\":\"title\",\"defaultSortBy\":\"title\",\"defaultSortOrder\":\"ASC\"},\"metadatas\":{\"id\":{\"edit\":{},\"list\":{\"label\":\"id\",\"searchable\":false,\"sortable\":false}},\"title\":{\"edit\":{\"label\":\"title\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"title\",\"searchable\":true,\"sortable\":true}},\"subTitle\":{\"edit\":{\"label\":\"subTitle\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"subTitle\",\"searchable\":true,\"sortable\":true}},\"items\":{\"edit\":{\"label\":\"items\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"items\",\"searchable\":false,\"sortable\":false}},\"documentId\":{\"edit\":{},\"list\":{\"label\":\"documentId\",\"searchable\":true,\"sortable\":true}}},\"layouts\":{\"list\":[\"id\",\"title\",\"subTitle\",\"items\"],\"edit\":[[{\"name\":\"title\",\"size\":6},{\"name\":\"subTitle\",\"size\":6}],[{\"name\":\"items\",\"size\":12}]]},\"uid\":\"common.faq\",\"isComponent\":true}','object',NULL,NULL),(119,'plugin_content_manager_configuration_components::common.content-block','{\"settings\":{\"bulkable\":true,\"filterable\":true,\"searchable\":true,\"pageSize\":10,\"mainField\":\"title\",\"defaultSortBy\":\"title\",\"defaultSortOrder\":\"ASC\"},\"metadatas\":{\"id\":{\"edit\":{},\"list\":{\"label\":\"id\",\"searchable\":false,\"sortable\":false}},\"title\":{\"edit\":{\"label\":\"title\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"title\",\"searchable\":true,\"sortable\":true}},\"subTitle\":{\"edit\":{\"label\":\"subTitle\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"subTitle\",\"searchable\":true,\"sortable\":true}},\"items\":{\"edit\":{\"label\":\"items\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"items\",\"searchable\":false,\"sortable\":false}},\"showGradientBg\":{\"edit\":{\"label\":\"showGradientBg\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"showGradientBg\",\"searchable\":true,\"sortable\":true}},\"serviceCardVariant\":{\"edit\":{\"label\":\"serviceCardVariant\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"serviceCardVariant\",\"searchable\":true,\"sortable\":true}},\"documentId\":{\"edit\":{},\"list\":{\"label\":\"documentId\",\"searchable\":true,\"sortable\":true}}},\"layouts\":{\"list\":[\"id\",\"title\",\"subTitle\",\"items\"],\"edit\":[[{\"name\":\"title\",\"size\":6},{\"name\":\"subTitle\",\"size\":6}],[{\"name\":\"items\",\"size\":12}],[{\"name\":\"showGradientBg\",\"size\":4},{\"name\":\"serviceCardVariant\",\"size\":4}]]},\"uid\":\"common.content-block\",\"isComponent\":true}','object',NULL,NULL),(120,'plugin_content_manager_configuration_components::service-landing.service-locations','{\"settings\":{\"bulkable\":true,\"filterable\":true,\"searchable\":true,\"pageSize\":10,\"mainField\":\"title\",\"defaultSortBy\":\"title\",\"defaultSortOrder\":\"ASC\"},\"metadatas\":{\"id\":{\"edit\":{},\"list\":{\"label\":\"id\",\"searchable\":false,\"sortable\":false}},\"title\":{\"edit\":{\"label\":\"title\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"title\",\"searchable\":true,\"sortable\":true}},\"slug\":{\"edit\":{\"label\":\"slug\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"slug\",\"searchable\":true,\"sortable\":true}},\"address\":{\"edit\":{\"label\":\"address\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"address\",\"searchable\":true,\"sortable\":true}},\"branchLocation\":{\"edit\":{\"label\":\"branchLocation\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true,\"mainField\":\"title\"},\"list\":{\"label\":\"branchLocation\",\"searchable\":true,\"sortable\":true}},\"phoneNumbers\":{\"edit\":{\"label\":\"phoneNumbers\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"phoneNumbers\",\"searchable\":false,\"sortable\":false}},\"image\":{\"edit\":{\"label\":\"image\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"image\",\"searchable\":false,\"sortable\":false}},\"previewImage\":{\"edit\":{\"label\":\"previewImage\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"previewImage\",\"searchable\":false,\"sortable\":false}},\"embededMapUrl\":{\"edit\":{\"label\":\"embededMapUrl\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"embededMapUrl\",\"searchable\":true,\"sortable\":true}},\"mapUrl\":{\"edit\":{\"label\":\"mapUrl\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"mapUrl\",\"searchable\":true,\"sortable\":true}},\"documentId\":{\"edit\":{},\"list\":{\"label\":\"documentId\",\"searchable\":true,\"sortable\":true}}},\"layouts\":{\"list\":[\"id\",\"title\",\"slug\",\"address\"],\"edit\":[[{\"name\":\"title\",\"size\":6},{\"name\":\"slug\",\"size\":6}],[{\"name\":\"address\",\"size\":6},{\"name\":\"branchLocation\",\"size\":6}],[{\"name\":\"phoneNumbers\",\"size\":12}],[{\"name\":\"image\",\"size\":6},{\"name\":\"previewImage\",\"size\":6}],[{\"name\":\"embededMapUrl\",\"size\":6},{\"name\":\"mapUrl\",\"size\":6}]]},\"uid\":\"service-landing.service-locations\",\"isComponent\":true}','object',NULL,NULL),(125,'plugin_content_manager_configuration_content_types::api::product-category.product-category','{\"settings\":{\"bulkable\":true,\"filterable\":true,\"searchable\":true,\"pageSize\":10,\"mainField\":\"title\",\"defaultSortBy\":\"title\",\"defaultSortOrder\":\"ASC\"},\"metadatas\":{\"id\":{\"edit\":{},\"list\":{\"label\":\"id\",\"searchable\":true,\"sortable\":true}},\"title\":{\"edit\":{\"label\":\"title\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"title\",\"searchable\":true,\"sortable\":true}},\"image\":{\"edit\":{\"label\":\"image\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"image\",\"searchable\":false,\"sortable\":false}},\"slug\":{\"edit\":{\"label\":\"slug\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"slug\",\"searchable\":true,\"sortable\":true}},\"displayOrder\":{\"edit\":{\"label\":\"displayOrder\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"displayOrder\",\"searchable\":true,\"sortable\":true}},\"createdAt\":{\"edit\":{\"label\":\"createdAt\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true},\"list\":{\"label\":\"createdAt\",\"searchable\":true,\"sortable\":true}},\"updatedAt\":{\"edit\":{\"label\":\"updatedAt\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true},\"list\":{\"label\":\"updatedAt\",\"searchable\":true,\"sortable\":true}},\"createdBy\":{\"edit\":{\"label\":\"createdBy\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true,\"mainField\":\"firstname\"},\"list\":{\"label\":\"createdBy\",\"searchable\":true,\"sortable\":true}},\"updatedBy\":{\"edit\":{\"label\":\"updatedBy\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true,\"mainField\":\"firstname\"},\"list\":{\"label\":\"updatedBy\",\"searchable\":true,\"sortable\":true}},\"documentId\":{\"edit\":{},\"list\":{\"label\":\"documentId\",\"searchable\":true,\"sortable\":true}}},\"layouts\":{\"edit\":[[{\"name\":\"title\",\"size\":6},{\"name\":\"image\",\"size\":6}],[{\"name\":\"slug\",\"size\":6},{\"name\":\"displayOrder\",\"size\":4}]],\"list\":[\"id\",\"title\",\"image\",\"slug\",\"displayOrder\"]},\"uid\":\"api::product-category.product-category\"}','object',NULL,NULL),(126,'plugin_content_manager_configuration_content_types::api::automotive-landing.automotive-landing','{\"settings\":{\"bulkable\":true,\"filterable\":true,\"searchable\":true,\"pageSize\":10,\"mainField\":\"title\",\"defaultSortBy\":\"title\",\"defaultSortOrder\":\"ASC\"},\"metadatas\":{\"id\":{\"edit\":{},\"list\":{\"label\":\"id\",\"searchable\":true,\"sortable\":true}},\"title\":{\"edit\":{\"label\":\"title\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"title\",\"searchable\":true,\"sortable\":true}},\"banner\":{\"edit\":{\"label\":\"banner\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"banner\",\"searchable\":false,\"sortable\":false}},\"seo\":{\"edit\":{\"label\":\"seo\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"seo\",\"searchable\":false,\"sortable\":false}},\"locationTypes\":{\"edit\":{\"label\":\"locationTypes\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true,\"mainField\":\"title\"},\"list\":{\"label\":\"locationTypes\",\"searchable\":false,\"sortable\":false}},\"socialFeeds\":{\"edit\":{\"label\":\"socialFeeds\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"socialFeeds\",\"searchable\":false,\"sortable\":false}},\"createdAt\":{\"edit\":{\"label\":\"createdAt\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true},\"list\":{\"label\":\"createdAt\",\"searchable\":true,\"sortable\":true}},\"updatedAt\":{\"edit\":{\"label\":\"updatedAt\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true},\"list\":{\"label\":\"updatedAt\",\"searchable\":true,\"sortable\":true}},\"createdBy\":{\"edit\":{\"label\":\"createdBy\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true,\"mainField\":\"firstname\"},\"list\":{\"label\":\"createdBy\",\"searchable\":true,\"sortable\":true}},\"updatedBy\":{\"edit\":{\"label\":\"updatedBy\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true,\"mainField\":\"firstname\"},\"list\":{\"label\":\"updatedBy\",\"searchable\":true,\"sortable\":true}},\"documentId\":{\"edit\":{},\"list\":{\"label\":\"documentId\",\"searchable\":true,\"sortable\":true}}},\"layouts\":{\"list\":[\"id\",\"title\",\"banner\",\"createdAt\"],\"edit\":[[{\"name\":\"title\",\"size\":6}],[{\"name\":\"banner\",\"size\":12}],[{\"name\":\"seo\",\"size\":12}],[{\"name\":\"locationTypes\",\"size\":6}],[{\"name\":\"socialFeeds\",\"size\":12}]]},\"uid\":\"api::automotive-landing.automotive-landing\"}','object',NULL,NULL),(127,'plugin_content_manager_configuration_content_types::api::social.social','{\"settings\":{\"bulkable\":true,\"filterable\":true,\"searchable\":true,\"pageSize\":10,\"mainField\":\"title\",\"defaultSortBy\":\"title\",\"defaultSortOrder\":\"ASC\"},\"metadatas\":{\"id\":{\"edit\":{},\"list\":{\"label\":\"id\",\"searchable\":true,\"sortable\":true}},\"title\":{\"edit\":{\"label\":\"title\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"title\",\"searchable\":true,\"sortable\":true}},\"image\":{\"edit\":{\"label\":\"image\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"image\",\"searchable\":false,\"sortable\":false}},\"icon\":{\"edit\":{\"label\":\"icon\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"icon\",\"searchable\":false,\"sortable\":false}},\"link\":{\"edit\":{\"label\":\"link\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"link\",\"searchable\":true,\"sortable\":true}},\"typeExternal\":{\"edit\":{\"label\":\"typeExternal\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"typeExternal\",\"searchable\":true,\"sortable\":true}},\"createdAt\":{\"edit\":{\"label\":\"createdAt\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true},\"list\":{\"label\":\"createdAt\",\"searchable\":true,\"sortable\":true}},\"updatedAt\":{\"edit\":{\"label\":\"updatedAt\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true},\"list\":{\"label\":\"updatedAt\",\"searchable\":true,\"sortable\":true}},\"createdBy\":{\"edit\":{\"label\":\"createdBy\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true,\"mainField\":\"firstname\"},\"list\":{\"label\":\"createdBy\",\"searchable\":true,\"sortable\":true}},\"updatedBy\":{\"edit\":{\"label\":\"updatedBy\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true,\"mainField\":\"firstname\"},\"list\":{\"label\":\"updatedBy\",\"searchable\":true,\"sortable\":true}},\"documentId\":{\"edit\":{},\"list\":{\"label\":\"documentId\",\"searchable\":true,\"sortable\":true}}},\"layouts\":{\"list\":[\"id\",\"title\",\"image\",\"icon\"],\"edit\":[[{\"name\":\"title\",\"size\":6},{\"name\":\"image\",\"size\":6}],[{\"name\":\"icon\",\"size\":6},{\"name\":\"link\",\"size\":6}],[{\"name\":\"typeExternal\",\"size\":4}]]},\"uid\":\"api::social.social\"}','object',NULL,NULL),(128,'plugin_content_manager_configuration_content_types::api::service-category-type.service-category-type','{\"settings\":{\"bulkable\":true,\"filterable\":true,\"searchable\":true,\"pageSize\":10,\"mainField\":\"title\",\"defaultSortBy\":\"title\",\"defaultSortOrder\":\"ASC\"},\"metadatas\":{\"id\":{\"edit\":{},\"list\":{\"label\":\"id\",\"searchable\":true,\"sortable\":true}},\"title\":{\"edit\":{\"label\":\"title\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"title\",\"searchable\":true,\"sortable\":true}},\"image\":{\"edit\":{\"label\":\"image\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"image\",\"searchable\":false,\"sortable\":false}},\"slug\":{\"edit\":{\"label\":\"slug\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"slug\",\"searchable\":true,\"sortable\":true}},\"displayOrder\":{\"edit\":{\"label\":\"displayOrder\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"displayOrder\",\"searchable\":true,\"sortable\":true}},\"createdAt\":{\"edit\":{\"label\":\"createdAt\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true},\"list\":{\"label\":\"createdAt\",\"searchable\":true,\"sortable\":true}},\"updatedAt\":{\"edit\":{\"label\":\"updatedAt\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true},\"list\":{\"label\":\"updatedAt\",\"searchable\":true,\"sortable\":true}},\"createdBy\":{\"edit\":{\"label\":\"createdBy\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true,\"mainField\":\"firstname\"},\"list\":{\"label\":\"createdBy\",\"searchable\":true,\"sortable\":true}},\"updatedBy\":{\"edit\":{\"label\":\"updatedBy\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true,\"mainField\":\"firstname\"},\"list\":{\"label\":\"updatedBy\",\"searchable\":true,\"sortable\":true}},\"documentId\":{\"edit\":{},\"list\":{\"label\":\"documentId\",\"searchable\":true,\"sortable\":true}}},\"layouts\":{\"edit\":[[{\"name\":\"title\",\"size\":6},{\"name\":\"image\",\"size\":6}],[{\"name\":\"slug\",\"size\":6},{\"name\":\"displayOrder\",\"size\":4}]],\"list\":[\"id\",\"title\",\"image\",\"slug\",\"displayOrder\"]},\"uid\":\"api::service-category-type.service-category-type\"}','object',NULL,NULL),(129,'plugin_content_manager_configuration_components::common.title-desc','{\"settings\":{\"bulkable\":true,\"filterable\":true,\"searchable\":true,\"pageSize\":10,\"mainField\":\"title\",\"defaultSortBy\":\"title\",\"defaultSortOrder\":\"ASC\"},\"metadatas\":{\"id\":{\"edit\":{},\"list\":{\"label\":\"id\",\"searchable\":false,\"sortable\":false}},\"title\":{\"edit\":{\"label\":\"title\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"title\",\"searchable\":true,\"sortable\":true}},\"description\":{\"edit\":{\"label\":\"description\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"description\",\"searchable\":true,\"sortable\":true}},\"documentId\":{\"edit\":{},\"list\":{\"label\":\"documentId\",\"searchable\":true,\"sortable\":true}}},\"layouts\":{\"list\":[\"id\",\"title\",\"description\"],\"edit\":[[{\"name\":\"title\",\"size\":6},{\"name\":\"description\",\"size\":6}]]},\"uid\":\"common.title-desc\",\"isComponent\":true}','object',NULL,NULL),(130,'plugin_content_manager_configuration_content_types::api::tyre-category.tyre-category','{\"settings\":{\"bulkable\":true,\"filterable\":true,\"searchable\":true,\"pageSize\":10,\"mainField\":\"title\",\"defaultSortBy\":\"title\",\"defaultSortOrder\":\"ASC\"},\"metadatas\":{\"id\":{\"edit\":{},\"list\":{\"label\":\"id\",\"searchable\":true,\"sortable\":true}},\"title\":{\"edit\":{\"label\":\"title\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"title\",\"searchable\":true,\"sortable\":true}},\"image\":{\"edit\":{\"label\":\"image\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"image\",\"searchable\":false,\"sortable\":false}},\"slug\":{\"edit\":{\"label\":\"slug\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"slug\",\"searchable\":true,\"sortable\":true}},\"displayOrder\":{\"edit\":{\"label\":\"displayOrder\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"displayOrder\",\"searchable\":true,\"sortable\":true}},\"createdAt\":{\"edit\":{\"label\":\"createdAt\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true},\"list\":{\"label\":\"createdAt\",\"searchable\":true,\"sortable\":true}},\"updatedAt\":{\"edit\":{\"label\":\"updatedAt\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true},\"list\":{\"label\":\"updatedAt\",\"searchable\":true,\"sortable\":true}},\"createdBy\":{\"edit\":{\"label\":\"createdBy\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true,\"mainField\":\"firstname\"},\"list\":{\"label\":\"createdBy\",\"searchable\":true,\"sortable\":true}},\"updatedBy\":{\"edit\":{\"label\":\"updatedBy\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true,\"mainField\":\"firstname\"},\"list\":{\"label\":\"updatedBy\",\"searchable\":true,\"sortable\":true}},\"documentId\":{\"edit\":{},\"list\":{\"label\":\"documentId\",\"searchable\":true,\"sortable\":true}}},\"layouts\":{\"edit\":[[{\"name\":\"title\",\"size\":6},{\"name\":\"image\",\"size\":6}],[{\"name\":\"slug\",\"size\":6},{\"name\":\"displayOrder\",\"size\":4}]],\"list\":[\"id\",\"title\",\"image\",\"slug\",\"displayOrder\"]},\"uid\":\"api::tyre-category.tyre-category\"}','object',NULL,NULL),(131,'plugin_content_manager_configuration_content_types::api::tyre-landing.tyre-landing','{\"settings\":{\"bulkable\":true,\"filterable\":true,\"searchable\":true,\"pageSize\":10,\"mainField\":\"title\",\"defaultSortBy\":\"title\",\"defaultSortOrder\":\"ASC\"},\"metadatas\":{\"id\":{\"edit\":{},\"list\":{\"label\":\"id\",\"searchable\":true,\"sortable\":true}},\"title\":{\"edit\":{\"label\":\"title\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"title\",\"searchable\":true,\"sortable\":true}},\"banner\":{\"edit\":{\"label\":\"banner\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"banner\",\"searchable\":false,\"sortable\":false}},\"bookService\":{\"edit\":{\"label\":\"bookService\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"bookService\",\"searchable\":false,\"sortable\":false}},\"mobileService\":{\"edit\":{\"label\":\"mobileService\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"mobileService\",\"searchable\":false,\"sortable\":false}},\"seo\":{\"edit\":{\"label\":\"seo\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"seo\",\"searchable\":false,\"sortable\":false}},\"locationTypes\":{\"edit\":{\"label\":\"locationTypes\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true,\"mainField\":\"title\"},\"list\":{\"label\":\"locationTypes\",\"searchable\":false,\"sortable\":false}},\"socialFeeds\":{\"edit\":{\"label\":\"socialFeeds\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"socialFeeds\",\"searchable\":false,\"sortable\":false}},\"createdAt\":{\"edit\":{\"label\":\"createdAt\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true},\"list\":{\"label\":\"createdAt\",\"searchable\":true,\"sortable\":true}},\"updatedAt\":{\"edit\":{\"label\":\"updatedAt\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true},\"list\":{\"label\":\"updatedAt\",\"searchable\":true,\"sortable\":true}},\"createdBy\":{\"edit\":{\"label\":\"createdBy\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true,\"mainField\":\"firstname\"},\"list\":{\"label\":\"createdBy\",\"searchable\":true,\"sortable\":true}},\"updatedBy\":{\"edit\":{\"label\":\"updatedBy\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true,\"mainField\":\"firstname\"},\"list\":{\"label\":\"updatedBy\",\"searchable\":true,\"sortable\":true}},\"documentId\":{\"edit\":{},\"list\":{\"label\":\"documentId\",\"searchable\":true,\"sortable\":true}}},\"layouts\":{\"list\":[\"id\",\"title\",\"banner\",\"bookService\"],\"edit\":[[{\"name\":\"title\",\"size\":6}],[{\"name\":\"banner\",\"size\":12}],[{\"name\":\"bookService\",\"size\":12}],[{\"name\":\"mobileService\",\"size\":12}],[{\"name\":\"seo\",\"size\":12}],[{\"name\":\"locationTypes\",\"size\":6}],[{\"name\":\"socialFeeds\",\"size\":12}]]},\"uid\":\"api::tyre-landing.tyre-landing\"}','object',NULL,NULL),(132,'plugin_content_manager_configuration_content_types::api::power-tool-landing.power-tool-landing','{\"settings\":{\"bulkable\":true,\"filterable\":true,\"searchable\":true,\"pageSize\":10,\"mainField\":\"title\",\"defaultSortBy\":\"title\",\"defaultSortOrder\":\"ASC\"},\"metadatas\":{\"id\":{\"edit\":{},\"list\":{\"label\":\"id\",\"searchable\":true,\"sortable\":true}},\"title\":{\"edit\":{\"label\":\"title\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"title\",\"searchable\":true,\"sortable\":true}},\"banner\":{\"edit\":{\"label\":\"banner\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"banner\",\"searchable\":false,\"sortable\":false}},\"mainTitle\":{\"edit\":{\"label\":\"mainTitle\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"mainTitle\",\"searchable\":false,\"sortable\":false}},\"mainDescription\":{\"edit\":{\"label\":\"mainDescription\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"mainDescription\",\"searchable\":false,\"sortable\":false}},\"seo\":{\"edit\":{\"label\":\"seo\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"seo\",\"searchable\":false,\"sortable\":false}},\"locationTypes\":{\"edit\":{\"label\":\"locationTypes\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true,\"mainField\":\"title\"},\"list\":{\"label\":\"locationTypes\",\"searchable\":false,\"sortable\":false}},\"socialFeeds\":{\"edit\":{\"label\":\"socialFeeds\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"socialFeeds\",\"searchable\":false,\"sortable\":false}},\"createdAt\":{\"edit\":{\"label\":\"createdAt\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true},\"list\":{\"label\":\"createdAt\",\"searchable\":true,\"sortable\":true}},\"updatedAt\":{\"edit\":{\"label\":\"updatedAt\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true},\"list\":{\"label\":\"updatedAt\",\"searchable\":true,\"sortable\":true}},\"createdBy\":{\"edit\":{\"label\":\"createdBy\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true,\"mainField\":\"firstname\"},\"list\":{\"label\":\"createdBy\",\"searchable\":true,\"sortable\":true}},\"updatedBy\":{\"edit\":{\"label\":\"updatedBy\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true,\"mainField\":\"firstname\"},\"list\":{\"label\":\"updatedBy\",\"searchable\":true,\"sortable\":true}},\"documentId\":{\"edit\":{},\"list\":{\"label\":\"documentId\",\"searchable\":true,\"sortable\":true}}},\"layouts\":{\"list\":[\"id\",\"title\",\"banner\",\"locationTypes\"],\"edit\":[[{\"name\":\"title\",\"size\":6}],[{\"name\":\"banner\",\"size\":12}],[{\"name\":\"mainTitle\",\"size\":12}],[{\"name\":\"mainDescription\",\"size\":12}],[{\"name\":\"seo\",\"size\":12}],[{\"name\":\"locationTypes\",\"size\":6}],[{\"name\":\"socialFeeds\",\"size\":12}]]},\"uid\":\"api::power-tool-landing.power-tool-landing\"}','object',NULL,NULL),(133,'plugin_content_manager_configuration_content_types::api::tyre-service.tyre-service','{\"settings\":{\"bulkable\":true,\"filterable\":true,\"searchable\":true,\"pageSize\":10,\"mainField\":\"title\",\"defaultSortBy\":\"title\",\"defaultSortOrder\":\"ASC\"},\"metadatas\":{\"id\":{\"edit\":{},\"list\":{\"label\":\"id\",\"searchable\":true,\"sortable\":true}},\"title\":{\"edit\":{\"label\":\"title\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"title\",\"searchable\":true,\"sortable\":true}},\"image\":{\"edit\":{\"label\":\"image\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"image\",\"searchable\":false,\"sortable\":false}},\"slug\":{\"edit\":{\"label\":\"slug\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"slug\",\"searchable\":true,\"sortable\":true}},\"displayOrder\":{\"edit\":{\"label\":\"displayOrder\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"displayOrder\",\"searchable\":true,\"sortable\":true}},\"createdAt\":{\"edit\":{\"label\":\"createdAt\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true},\"list\":{\"label\":\"createdAt\",\"searchable\":true,\"sortable\":true}},\"updatedAt\":{\"edit\":{\"label\":\"updatedAt\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true},\"list\":{\"label\":\"updatedAt\",\"searchable\":true,\"sortable\":true}},\"createdBy\":{\"edit\":{\"label\":\"createdBy\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true,\"mainField\":\"firstname\"},\"list\":{\"label\":\"createdBy\",\"searchable\":true,\"sortable\":true}},\"updatedBy\":{\"edit\":{\"label\":\"updatedBy\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true,\"mainField\":\"firstname\"},\"list\":{\"label\":\"updatedBy\",\"searchable\":true,\"sortable\":true}},\"documentId\":{\"edit\":{},\"list\":{\"label\":\"documentId\",\"searchable\":true,\"sortable\":true}}},\"layouts\":{\"edit\":[[{\"name\":\"title\",\"size\":6},{\"name\":\"image\",\"size\":6}],[{\"name\":\"slug\",\"size\":6},{\"name\":\"displayOrder\",\"size\":4}]],\"list\":[\"id\",\"title\",\"image\",\"slug\",\"displayOrder\"]},\"uid\":\"api::tyre-service.tyre-service\"}','object',NULL,NULL),(134,'plugin_content_manager_configuration_content_types::api::power-category.power-category','{\"settings\":{\"bulkable\":true,\"filterable\":true,\"searchable\":true,\"pageSize\":10,\"mainField\":\"title\",\"defaultSortBy\":\"title\",\"defaultSortOrder\":\"ASC\"},\"metadatas\":{\"id\":{\"edit\":{},\"list\":{\"label\":\"id\",\"searchable\":true,\"sortable\":true}},\"title\":{\"edit\":{\"label\":\"title\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"title\",\"searchable\":true,\"sortable\":true}},\"image\":{\"edit\":{\"label\":\"image\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"image\",\"searchable\":false,\"sortable\":false}},\"slug\":{\"edit\":{\"label\":\"slug\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"slug\",\"searchable\":true,\"sortable\":true}},\"displayOrder\":{\"edit\":{\"label\":\"displayOrder\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"displayOrder\",\"searchable\":true,\"sortable\":true}},\"createdAt\":{\"edit\":{\"label\":\"createdAt\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true},\"list\":{\"label\":\"createdAt\",\"searchable\":true,\"sortable\":true}},\"updatedAt\":{\"edit\":{\"label\":\"updatedAt\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true},\"list\":{\"label\":\"updatedAt\",\"searchable\":true,\"sortable\":true}},\"createdBy\":{\"edit\":{\"label\":\"createdBy\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true,\"mainField\":\"firstname\"},\"list\":{\"label\":\"createdBy\",\"searchable\":true,\"sortable\":true}},\"updatedBy\":{\"edit\":{\"label\":\"updatedBy\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true,\"mainField\":\"firstname\"},\"list\":{\"label\":\"updatedBy\",\"searchable\":true,\"sortable\":true}},\"documentId\":{\"edit\":{},\"list\":{\"label\":\"documentId\",\"searchable\":true,\"sortable\":true}}},\"layouts\":{\"list\":[\"id\",\"title\",\"image\",\"slug\"],\"edit\":[[{\"name\":\"title\",\"size\":6},{\"name\":\"image\",\"size\":6}],[{\"name\":\"slug\",\"size\":6},{\"name\":\"displayOrder\",\"size\":4}]]},\"uid\":\"api::power-category.power-category\"}','object',NULL,NULL),(135,'plugin_content_manager_configuration_content_types::api::power-top-category.power-top-category','{\"settings\":{\"bulkable\":true,\"filterable\":true,\"searchable\":true,\"pageSize\":10,\"mainField\":\"title\",\"defaultSortBy\":\"title\",\"defaultSortOrder\":\"ASC\"},\"metadatas\":{\"id\":{\"edit\":{},\"list\":{\"label\":\"id\",\"searchable\":true,\"sortable\":true}},\"title\":{\"edit\":{\"label\":\"title\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"title\",\"searchable\":true,\"sortable\":true}},\"image\":{\"edit\":{\"label\":\"image\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"image\",\"searchable\":false,\"sortable\":false}},\"slug\":{\"edit\":{\"label\":\"slug\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"slug\",\"searchable\":true,\"sortable\":true}},\"displayOrder\":{\"edit\":{\"label\":\"displayOrder\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"displayOrder\",\"searchable\":true,\"sortable\":true}},\"createdAt\":{\"edit\":{\"label\":\"createdAt\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true},\"list\":{\"label\":\"createdAt\",\"searchable\":true,\"sortable\":true}},\"updatedAt\":{\"edit\":{\"label\":\"updatedAt\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true},\"list\":{\"label\":\"updatedAt\",\"searchable\":true,\"sortable\":true}},\"createdBy\":{\"edit\":{\"label\":\"createdBy\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true,\"mainField\":\"firstname\"},\"list\":{\"label\":\"createdBy\",\"searchable\":true,\"sortable\":true}},\"updatedBy\":{\"edit\":{\"label\":\"updatedBy\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true,\"mainField\":\"firstname\"},\"list\":{\"label\":\"updatedBy\",\"searchable\":true,\"sortable\":true}},\"documentId\":{\"edit\":{},\"list\":{\"label\":\"documentId\",\"searchable\":true,\"sortable\":true}}},\"layouts\":{\"list\":[\"id\",\"title\",\"image\",\"slug\"],\"edit\":[[{\"name\":\"title\",\"size\":6},{\"name\":\"image\",\"size\":6}],[{\"name\":\"slug\",\"size\":6},{\"name\":\"displayOrder\",\"size\":4}]]},\"uid\":\"api::power-top-category.power-top-category\"}','object',NULL,NULL),(136,'plugin_content_manager_configuration_components::common.title-desc-img-position','{\"settings\":{\"bulkable\":true,\"filterable\":true,\"searchable\":true,\"pageSize\":10,\"mainField\":\"title\",\"defaultSortBy\":\"title\",\"defaultSortOrder\":\"ASC\"},\"metadatas\":{\"id\":{\"edit\":{},\"list\":{\"label\":\"id\",\"searchable\":false,\"sortable\":false}},\"title\":{\"edit\":{\"label\":\"title\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"title\",\"searchable\":true,\"sortable\":true}},\"description\":{\"edit\":{\"label\":\"description\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"description\",\"searchable\":false,\"sortable\":false}},\"imagePosition\":{\"edit\":{\"label\":\"imagePosition\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"imagePosition\",\"searchable\":true,\"sortable\":true}},\"showImageBorderRadius\":{\"edit\":{\"label\":\"showImageBorderRadius\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"showImageBorderRadius\",\"searchable\":true,\"sortable\":true}},\"customImgClass\":{\"edit\":{\"label\":\"customImgClass\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"customImgClass\",\"searchable\":true,\"sortable\":true}},\"customImgParentClass\":{\"edit\":{\"label\":\"customImgParentClass\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"customImgParentClass\",\"searchable\":true,\"sortable\":true}},\"images\":{\"edit\":{\"label\":\"images\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"images\",\"searchable\":false,\"sortable\":false}},\"responsiveImages\":{\"edit\":{\"label\":\"responsiveImages\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"responsiveImages\",\"searchable\":false,\"sortable\":false}},\"documentId\":{\"edit\":{},\"list\":{\"label\":\"documentId\",\"searchable\":true,\"sortable\":true}}},\"layouts\":{\"list\":[\"id\",\"title\",\"images\",\"responsiveImages\"],\"edit\":[[{\"name\":\"title\",\"size\":6}],[{\"name\":\"description\",\"size\":12}],[{\"name\":\"imagePosition\",\"size\":6},{\"name\":\"showImageBorderRadius\",\"size\":4}],[{\"name\":\"customImgClass\",\"size\":6},{\"name\":\"customImgParentClass\",\"size\":6}],[{\"name\":\"images\",\"size\":6},{\"name\":\"responsiveImages\",\"size\":6}]]},\"uid\":\"common.title-desc-img-position\",\"isComponent\":true}','object',NULL,NULL),(137,'plugin_content_manager_configuration_components::common.content-block-variant','{\"settings\":{\"bulkable\":true,\"filterable\":true,\"searchable\":true,\"pageSize\":10,\"mainField\":\"title\",\"defaultSortBy\":\"title\",\"defaultSortOrder\":\"ASC\"},\"metadatas\":{\"id\":{\"edit\":{},\"list\":{\"label\":\"id\",\"searchable\":false,\"sortable\":false}},\"title\":{\"edit\":{\"label\":\"title\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"title\",\"searchable\":true,\"sortable\":true}},\"subTitle\":{\"edit\":{\"label\":\"subTitle\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"subTitle\",\"searchable\":true,\"sortable\":true}},\"description\":{\"edit\":{\"label\":\"description\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"description\",\"searchable\":false,\"sortable\":false}},\"items\":{\"edit\":{\"label\":\"items\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"items\",\"searchable\":false,\"sortable\":false}},\"showGradientBg\":{\"edit\":{\"label\":\"showGradientBg\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"showGradientBg\",\"searchable\":true,\"sortable\":true}},\"documentId\":{\"edit\":{},\"list\":{\"label\":\"documentId\",\"searchable\":true,\"sortable\":true}}},\"layouts\":{\"list\":[\"id\",\"title\",\"subTitle\",\"items\"],\"edit\":[[{\"name\":\"title\",\"size\":6},{\"name\":\"subTitle\",\"size\":6}],[{\"name\":\"description\",\"size\":12}],[{\"name\":\"items\",\"size\":12}],[{\"name\":\"showGradientBg\",\"size\":4}]]},\"uid\":\"common.content-block-variant\",\"isComponent\":true}','object',NULL,NULL),(138,'plugin_content_manager_configuration_content_types::api::privacy-policy.privacy-policy','{\"settings\":{\"bulkable\":true,\"filterable\":true,\"searchable\":true,\"pageSize\":10,\"mainField\":\"title\",\"defaultSortBy\":\"title\",\"defaultSortOrder\":\"ASC\"},\"metadatas\":{\"id\":{\"edit\":{},\"list\":{\"label\":\"id\",\"searchable\":true,\"sortable\":true}},\"title\":{\"edit\":{\"label\":\"title\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"title\",\"searchable\":true,\"sortable\":true}},\"description\":{\"edit\":{\"label\":\"description\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"description\",\"searchable\":false,\"sortable\":false}},\"seo\":{\"edit\":{\"label\":\"seo\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"seo\",\"searchable\":false,\"sortable\":false}},\"createdAt\":{\"edit\":{\"label\":\"createdAt\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true},\"list\":{\"label\":\"createdAt\",\"searchable\":true,\"sortable\":true}},\"updatedAt\":{\"edit\":{\"label\":\"updatedAt\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true},\"list\":{\"label\":\"updatedAt\",\"searchable\":true,\"sortable\":true}},\"createdBy\":{\"edit\":{\"label\":\"createdBy\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true,\"mainField\":\"firstname\"},\"list\":{\"label\":\"createdBy\",\"searchable\":true,\"sortable\":true}},\"updatedBy\":{\"edit\":{\"label\":\"updatedBy\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true,\"mainField\":\"firstname\"},\"list\":{\"label\":\"updatedBy\",\"searchable\":true,\"sortable\":true}},\"documentId\":{\"edit\":{},\"list\":{\"label\":\"documentId\",\"searchable\":true,\"sortable\":true}}},\"layouts\":{\"list\":[\"id\",\"title\",\"seo\",\"createdAt\"],\"edit\":[[{\"name\":\"title\",\"size\":6}],[{\"name\":\"description\",\"size\":12}],[{\"name\":\"seo\",\"size\":12}]]},\"uid\":\"api::privacy-policy.privacy-policy\"}','object',NULL,NULL),(139,'plugin_content_manager_configuration_content_types::api::terms-condition.terms-condition','{\"settings\":{\"bulkable\":true,\"filterable\":true,\"searchable\":true,\"pageSize\":10,\"mainField\":\"title\",\"defaultSortBy\":\"title\",\"defaultSortOrder\":\"ASC\"},\"metadatas\":{\"id\":{\"edit\":{},\"list\":{\"label\":\"id\",\"searchable\":true,\"sortable\":true}},\"title\":{\"edit\":{\"label\":\"title\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"title\",\"searchable\":true,\"sortable\":true}},\"description\":{\"edit\":{\"label\":\"description\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"description\",\"searchable\":false,\"sortable\":false}},\"seo\":{\"edit\":{\"label\":\"seo\",\"description\":\"\",\"placeholder\":\"\",\"visible\":true,\"editable\":true},\"list\":{\"label\":\"seo\",\"searchable\":false,\"sortable\":false}},\"createdAt\":{\"edit\":{\"label\":\"createdAt\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true},\"list\":{\"label\":\"createdAt\",\"searchable\":true,\"sortable\":true}},\"updatedAt\":{\"edit\":{\"label\":\"updatedAt\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true},\"list\":{\"label\":\"updatedAt\",\"searchable\":true,\"sortable\":true}},\"createdBy\":{\"edit\":{\"label\":\"createdBy\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true,\"mainField\":\"firstname\"},\"list\":{\"label\":\"createdBy\",\"searchable\":true,\"sortable\":true}},\"updatedBy\":{\"edit\":{\"label\":\"updatedBy\",\"description\":\"\",\"placeholder\":\"\",\"visible\":false,\"editable\":true,\"mainField\":\"firstname\"},\"list\":{\"label\":\"updatedBy\",\"searchable\":true,\"sortable\":true}},\"documentId\":{\"edit\":{},\"list\":{\"label\":\"documentId\",\"searchable\":true,\"sortable\":true}}},\"layouts\":{\"list\":[\"id\",\"title\",\"seo\",\"createdAt\"],\"edit\":[[{\"name\":\"title\",\"size\":6}],[{\"name\":\"description\",\"size\":12}],[{\"name\":\"seo\",\"size\":12}]]},\"uid\":\"api::terms-condition.terms-condition\"}','object',NULL,NULL);
/*!40000 ALTER TABLE `strapi_core_store_settings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `strapi_database_schema`
--

DROP TABLE IF EXISTS `strapi_database_schema`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `strapi_database_schema` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `schema` json DEFAULT NULL,
  `time` datetime DEFAULT NULL,
  `hash` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=79 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `strapi_database_schema`
--

LOCK TABLES `strapi_database_schema` WRITE;
/*!40000 ALTER TABLE `strapi_database_schema` DISABLE KEYS */;
INSERT INTO `strapi_database_schema` VALUES (78,'{\"tables\": [{\"name\": \"files\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"document_id\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"name\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"alternative_text\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"caption\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"width\", \"type\": \"integer\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"height\", \"type\": \"integer\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"formats\", \"type\": \"jsonb\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"hash\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"ext\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"mime\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [10, 2], \"name\": \"size\", \"type\": \"decimal\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"url\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"preview_url\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"provider\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"provider_metadata\", \"type\": \"jsonb\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"folder_path\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"created_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"updated_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"published_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"created_by_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"updated_by_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"locale\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"upload_files_folder_path_index\", \"type\": null, \"columns\": [\"folder_path\"]}, {\"name\": \"upload_files_created_at_index\", \"type\": null, \"columns\": [\"created_at\"]}, {\"name\": \"upload_files_updated_at_index\", \"type\": null, \"columns\": [\"updated_at\"]}, {\"name\": \"upload_files_name_index\", \"type\": null, \"columns\": [\"name\"]}, {\"name\": \"upload_files_size_index\", \"type\": null, \"columns\": [\"size\"]}, {\"name\": \"upload_files_ext_index\", \"type\": null, \"columns\": [\"ext\"]}, {\"name\": \"files_documents_idx\", \"columns\": [\"document_id\", \"locale\", \"published_at\"]}, {\"name\": \"files_created_by_id_fk\", \"columns\": [\"created_by_id\"]}, {\"name\": \"files_updated_by_id_fk\", \"columns\": [\"updated_by_id\"]}], \"foreignKeys\": [{\"name\": \"files_created_by_id_fk\", \"columns\": [\"created_by_id\"], \"onDelete\": \"SET NULL\", \"referencedTable\": \"admin_users\", \"referencedColumns\": [\"id\"]}, {\"name\": \"files_updated_by_id_fk\", \"columns\": [\"updated_by_id\"], \"onDelete\": \"SET NULL\", \"referencedTable\": \"admin_users\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"upload_folders\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"document_id\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"name\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"path_id\", \"type\": \"integer\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"path\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"created_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"updated_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"published_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"created_by_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"updated_by_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"locale\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"upload_folders_path_id_index\", \"type\": \"unique\", \"columns\": [\"path_id\"]}, {\"name\": \"upload_folders_path_index\", \"type\": \"unique\", \"columns\": [\"path\"]}, {\"name\": \"upload_folders_documents_idx\", \"columns\": [\"document_id\", \"locale\", \"published_at\"]}, {\"name\": \"upload_folders_created_by_id_fk\", \"columns\": [\"created_by_id\"]}, {\"name\": \"upload_folders_updated_by_id_fk\", \"columns\": [\"updated_by_id\"]}], \"foreignKeys\": [{\"name\": \"upload_folders_created_by_id_fk\", \"columns\": [\"created_by_id\"], \"onDelete\": \"SET NULL\", \"referencedTable\": \"admin_users\", \"referencedColumns\": [\"id\"]}, {\"name\": \"upload_folders_updated_by_id_fk\", \"columns\": [\"updated_by_id\"], \"onDelete\": \"SET NULL\", \"referencedTable\": \"admin_users\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"i18n_locale\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"document_id\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"name\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"code\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"created_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"updated_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"published_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"created_by_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"updated_by_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"locale\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"i18n_locale_documents_idx\", \"columns\": [\"document_id\", \"locale\", \"published_at\"]}, {\"name\": \"i18n_locale_created_by_id_fk\", \"columns\": [\"created_by_id\"]}, {\"name\": \"i18n_locale_updated_by_id_fk\", \"columns\": [\"updated_by_id\"]}], \"foreignKeys\": [{\"name\": \"i18n_locale_created_by_id_fk\", \"columns\": [\"created_by_id\"], \"onDelete\": \"SET NULL\", \"referencedTable\": \"admin_users\", \"referencedColumns\": [\"id\"]}, {\"name\": \"i18n_locale_updated_by_id_fk\", \"columns\": [\"updated_by_id\"], \"onDelete\": \"SET NULL\", \"referencedTable\": \"admin_users\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"strapi_releases\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"document_id\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"name\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"released_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"scheduled_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"timezone\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"status\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"created_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"updated_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"published_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"created_by_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"updated_by_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"locale\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"strapi_releases_documents_idx\", \"columns\": [\"document_id\", \"locale\", \"published_at\"]}, {\"name\": \"strapi_releases_created_by_id_fk\", \"columns\": [\"created_by_id\"]}, {\"name\": \"strapi_releases_updated_by_id_fk\", \"columns\": [\"updated_by_id\"]}], \"foreignKeys\": [{\"name\": \"strapi_releases_created_by_id_fk\", \"columns\": [\"created_by_id\"], \"onDelete\": \"SET NULL\", \"referencedTable\": \"admin_users\", \"referencedColumns\": [\"id\"]}, {\"name\": \"strapi_releases_updated_by_id_fk\", \"columns\": [\"updated_by_id\"], \"onDelete\": \"SET NULL\", \"referencedTable\": \"admin_users\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"strapi_release_actions\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"document_id\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"type\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"content_type\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"entry_document_id\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"locale\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"is_entry_valid\", \"type\": \"boolean\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"created_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"updated_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"published_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"created_by_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"updated_by_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"strapi_release_actions_documents_idx\", \"columns\": [\"document_id\", \"locale\", \"published_at\"]}, {\"name\": \"strapi_release_actions_created_by_id_fk\", \"columns\": [\"created_by_id\"]}, {\"name\": \"strapi_release_actions_updated_by_id_fk\", \"columns\": [\"updated_by_id\"]}], \"foreignKeys\": [{\"name\": \"strapi_release_actions_created_by_id_fk\", \"columns\": [\"created_by_id\"], \"onDelete\": \"SET NULL\", \"referencedTable\": \"admin_users\", \"referencedColumns\": [\"id\"]}, {\"name\": \"strapi_release_actions_updated_by_id_fk\", \"columns\": [\"updated_by_id\"], \"onDelete\": \"SET NULL\", \"referencedTable\": \"admin_users\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"strapi_workflows\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"document_id\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"name\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"content_types\", \"type\": \"jsonb\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"created_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"updated_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"published_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"created_by_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"updated_by_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"locale\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"strapi_workflows_documents_idx\", \"columns\": [\"document_id\", \"locale\", \"published_at\"]}, {\"name\": \"strapi_workflows_created_by_id_fk\", \"columns\": [\"created_by_id\"]}, {\"name\": \"strapi_workflows_updated_by_id_fk\", \"columns\": [\"updated_by_id\"]}], \"foreignKeys\": [{\"name\": \"strapi_workflows_created_by_id_fk\", \"columns\": [\"created_by_id\"], \"onDelete\": \"SET NULL\", \"referencedTable\": \"admin_users\", \"referencedColumns\": [\"id\"]}, {\"name\": \"strapi_workflows_updated_by_id_fk\", \"columns\": [\"updated_by_id\"], \"onDelete\": \"SET NULL\", \"referencedTable\": \"admin_users\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"strapi_workflows_stages\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"document_id\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"name\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"color\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"created_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"updated_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"published_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"created_by_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"updated_by_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"locale\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"strapi_workflows_stages_documents_idx\", \"columns\": [\"document_id\", \"locale\", \"published_at\"]}, {\"name\": \"strapi_workflows_stages_created_by_id_fk\", \"columns\": [\"created_by_id\"]}, {\"name\": \"strapi_workflows_stages_updated_by_id_fk\", \"columns\": [\"updated_by_id\"]}], \"foreignKeys\": [{\"name\": \"strapi_workflows_stages_created_by_id_fk\", \"columns\": [\"created_by_id\"], \"onDelete\": \"SET NULL\", \"referencedTable\": \"admin_users\", \"referencedColumns\": [\"id\"]}, {\"name\": \"strapi_workflows_stages_updated_by_id_fk\", \"columns\": [\"updated_by_id\"], \"onDelete\": \"SET NULL\", \"referencedTable\": \"admin_users\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"up_permissions\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"document_id\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"action\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"created_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"updated_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"published_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"created_by_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"updated_by_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"locale\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"up_permissions_documents_idx\", \"columns\": [\"document_id\", \"locale\", \"published_at\"]}, {\"name\": \"up_permissions_created_by_id_fk\", \"columns\": [\"created_by_id\"]}, {\"name\": \"up_permissions_updated_by_id_fk\", \"columns\": [\"updated_by_id\"]}], \"foreignKeys\": [{\"name\": \"up_permissions_created_by_id_fk\", \"columns\": [\"created_by_id\"], \"onDelete\": \"SET NULL\", \"referencedTable\": \"admin_users\", \"referencedColumns\": [\"id\"]}, {\"name\": \"up_permissions_updated_by_id_fk\", \"columns\": [\"updated_by_id\"], \"onDelete\": \"SET NULL\", \"referencedTable\": \"admin_users\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"up_roles\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"document_id\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"name\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"description\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"type\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"created_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"updated_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"published_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"created_by_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"updated_by_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"locale\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"up_roles_documents_idx\", \"columns\": [\"document_id\", \"locale\", \"published_at\"]}, {\"name\": \"up_roles_created_by_id_fk\", \"columns\": [\"created_by_id\"]}, {\"name\": \"up_roles_updated_by_id_fk\", \"columns\": [\"updated_by_id\"]}], \"foreignKeys\": [{\"name\": \"up_roles_created_by_id_fk\", \"columns\": [\"created_by_id\"], \"onDelete\": \"SET NULL\", \"referencedTable\": \"admin_users\", \"referencedColumns\": [\"id\"]}, {\"name\": \"up_roles_updated_by_id_fk\", \"columns\": [\"updated_by_id\"], \"onDelete\": \"SET NULL\", \"referencedTable\": \"admin_users\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"up_users\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"document_id\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"username\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"email\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"provider\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"password\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"reset_password_token\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"confirmation_token\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"confirmed\", \"type\": \"boolean\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"blocked\", \"type\": \"boolean\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"created_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"updated_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"published_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"created_by_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"updated_by_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"locale\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"up_users_documents_idx\", \"columns\": [\"document_id\", \"locale\", \"published_at\"]}, {\"name\": \"up_users_created_by_id_fk\", \"columns\": [\"created_by_id\"]}, {\"name\": \"up_users_updated_by_id_fk\", \"columns\": [\"updated_by_id\"]}], \"foreignKeys\": [{\"name\": \"up_users_created_by_id_fk\", \"columns\": [\"created_by_id\"], \"onDelete\": \"SET NULL\", \"referencedTable\": \"admin_users\", \"referencedColumns\": [\"id\"]}, {\"name\": \"up_users_updated_by_id_fk\", \"columns\": [\"updated_by_id\"], \"onDelete\": \"SET NULL\", \"referencedTable\": \"admin_users\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"about_uses_cmps\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"entity_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"cmp_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"component_type\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"field\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"order\", \"type\": \"double\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"about_uses_field_idx\", \"columns\": [\"field\"]}, {\"name\": \"about_uses_component_type_idx\", \"columns\": [\"component_type\"]}, {\"name\": \"about_uses_entity_fk\", \"columns\": [\"entity_id\"]}, {\"name\": \"about_uses_uq\", \"type\": \"unique\", \"columns\": [\"entity_id\", \"cmp_id\", \"field\", \"component_type\"]}], \"foreignKeys\": [{\"name\": \"about_uses_entity_fk\", \"columns\": [\"entity_id\"], \"onDelete\": \"CASCADE\", \"referencedTable\": \"about_uses\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"about_uses\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"document_id\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"sub_title\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"title\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [\"longtext\"], \"name\": \"description\", \"type\": \"text\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"section_title\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [\"longtext\"], \"name\": \"section_description\", \"type\": \"text\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"created_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"updated_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"published_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"created_by_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"updated_by_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"locale\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"about_uses_documents_idx\", \"columns\": [\"document_id\", \"locale\", \"published_at\"]}, {\"name\": \"about_uses_created_by_id_fk\", \"columns\": [\"created_by_id\"]}, {\"name\": \"about_uses_updated_by_id_fk\", \"columns\": [\"updated_by_id\"]}], \"foreignKeys\": [{\"name\": \"about_uses_created_by_id_fk\", \"columns\": [\"created_by_id\"], \"onDelete\": \"SET NULL\", \"referencedTable\": \"admin_users\", \"referencedColumns\": [\"id\"]}, {\"name\": \"about_uses_updated_by_id_fk\", \"columns\": [\"updated_by_id\"], \"onDelete\": \"SET NULL\", \"referencedTable\": \"admin_users\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"automotive_landings_cmps\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"entity_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"cmp_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"component_type\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"field\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"order\", \"type\": \"double\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"automotive_landings_field_idx\", \"columns\": [\"field\"]}, {\"name\": \"automotive_landings_component_type_idx\", \"columns\": [\"component_type\"]}, {\"name\": \"automotive_landings_entity_fk\", \"columns\": [\"entity_id\"]}, {\"name\": \"automotive_landings_uq\", \"type\": \"unique\", \"columns\": [\"entity_id\", \"cmp_id\", \"field\", \"component_type\"]}], \"foreignKeys\": [{\"name\": \"automotive_landings_entity_fk\", \"columns\": [\"entity_id\"], \"onDelete\": \"CASCADE\", \"referencedTable\": \"automotive_landings\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"automotive_landings\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"document_id\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"title\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"created_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"updated_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"published_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"created_by_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"updated_by_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"locale\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"automotive_landings_documents_idx\", \"columns\": [\"document_id\", \"locale\", \"published_at\"]}, {\"name\": \"automotive_landings_created_by_id_fk\", \"columns\": [\"created_by_id\"]}, {\"name\": \"automotive_landings_updated_by_id_fk\", \"columns\": [\"updated_by_id\"]}], \"foreignKeys\": [{\"name\": \"automotive_landings_created_by_id_fk\", \"columns\": [\"created_by_id\"], \"onDelete\": \"SET NULL\", \"referencedTable\": \"admin_users\", \"referencedColumns\": [\"id\"]}, {\"name\": \"automotive_landings_updated_by_id_fk\", \"columns\": [\"updated_by_id\"], \"onDelete\": \"SET NULL\", \"referencedTable\": \"admin_users\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"branches_cmps\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"entity_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"cmp_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"component_type\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"field\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"order\", \"type\": \"double\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"branches_field_idx\", \"columns\": [\"field\"]}, {\"name\": \"branches_component_type_idx\", \"columns\": [\"component_type\"]}, {\"name\": \"branches_entity_fk\", \"columns\": [\"entity_id\"]}, {\"name\": \"branches_uq\", \"type\": \"unique\", \"columns\": [\"entity_id\", \"cmp_id\", \"field\", \"component_type\"]}], \"foreignKeys\": [{\"name\": \"branches_entity_fk\", \"columns\": [\"entity_id\"], \"onDelete\": \"CASCADE\", \"referencedTable\": \"branches\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"branches\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"document_id\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"title\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"slug\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [\"longtext\"], \"name\": \"address\", \"type\": \"text\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [\"longtext\"], \"name\": \"embeded_map_url\", \"type\": \"text\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [\"longtext\"], \"name\": \"map_url\", \"type\": \"text\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"is_featured\", \"type\": \"boolean\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"type\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"location_sort_order\", \"type\": \"integer\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"created_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"updated_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"published_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"created_by_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"updated_by_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"locale\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"branches_documents_idx\", \"columns\": [\"document_id\", \"locale\", \"published_at\"]}, {\"name\": \"branches_created_by_id_fk\", \"columns\": [\"created_by_id\"]}, {\"name\": \"branches_updated_by_id_fk\", \"columns\": [\"updated_by_id\"]}], \"foreignKeys\": [{\"name\": \"branches_created_by_id_fk\", \"columns\": [\"created_by_id\"], \"onDelete\": \"SET NULL\", \"referencedTable\": \"admin_users\", \"referencedColumns\": [\"id\"]}, {\"name\": \"branches_updated_by_id_fk\", \"columns\": [\"updated_by_id\"], \"onDelete\": \"SET NULL\", \"referencedTable\": \"admin_users\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"branch_locations\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"document_id\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"title\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"key\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"tab_sort_order\", \"type\": \"integer\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"created_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"updated_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"published_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"created_by_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"updated_by_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"locale\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"branch_locations_documents_idx\", \"columns\": [\"document_id\", \"locale\", \"published_at\"]}, {\"name\": \"branch_locations_created_by_id_fk\", \"columns\": [\"created_by_id\"]}, {\"name\": \"branch_locations_updated_by_id_fk\", \"columns\": [\"updated_by_id\"]}], \"foreignKeys\": [{\"name\": \"branch_locations_created_by_id_fk\", \"columns\": [\"created_by_id\"], \"onDelete\": \"SET NULL\", \"referencedTable\": \"admin_users\", \"referencedColumns\": [\"id\"]}, {\"name\": \"branch_locations_updated_by_id_fk\", \"columns\": [\"updated_by_id\"], \"onDelete\": \"SET NULL\", \"referencedTable\": \"admin_users\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"brands\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"document_id\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"title\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [\"longtext\"], \"name\": \"common_url\", \"type\": \"text\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"enable_common_url\", \"type\": \"boolean\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [\"longtext\"], \"name\": \"automotive_url\", \"type\": \"text\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"enable_automotive_url\", \"type\": \"boolean\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [\"longtext\"], \"name\": \"power_tool_url\", \"type\": \"text\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"enable_power_tool_url\", \"type\": \"boolean\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [\"longtext\"], \"name\": \"tyre_url\", \"type\": \"text\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"enable_tyre_url\", \"type\": \"boolean\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"is_featured\", \"type\": \"boolean\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"created_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"updated_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"published_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"created_by_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"updated_by_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"locale\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"brands_documents_idx\", \"columns\": [\"document_id\", \"locale\", \"published_at\"]}, {\"name\": \"brands_created_by_id_fk\", \"columns\": [\"created_by_id\"]}, {\"name\": \"brands_updated_by_id_fk\", \"columns\": [\"updated_by_id\"]}], \"foreignKeys\": [{\"name\": \"brands_created_by_id_fk\", \"columns\": [\"created_by_id\"], \"onDelete\": \"SET NULL\", \"referencedTable\": \"admin_users\", \"referencedColumns\": [\"id\"]}, {\"name\": \"brands_updated_by_id_fk\", \"columns\": [\"updated_by_id\"], \"onDelete\": \"SET NULL\", \"referencedTable\": \"admin_users\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"business_streams_cmps\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"entity_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"cmp_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"component_type\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"field\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"order\", \"type\": \"double\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"business_streams_field_idx\", \"columns\": [\"field\"]}, {\"name\": \"business_streams_component_type_idx\", \"columns\": [\"component_type\"]}, {\"name\": \"business_streams_entity_fk\", \"columns\": [\"entity_id\"]}, {\"name\": \"business_streams_uq\", \"type\": \"unique\", \"columns\": [\"entity_id\", \"cmp_id\", \"field\", \"component_type\"]}], \"foreignKeys\": [{\"name\": \"business_streams_entity_fk\", \"columns\": [\"entity_id\"], \"onDelete\": \"CASCADE\", \"referencedTable\": \"business_streams\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"business_streams\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"document_id\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"title\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"slug\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [\"longtext\"], \"name\": \"small_description\", \"type\": \"text\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"home_page_sort_order\", \"type\": \"integer\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"created_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"updated_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"published_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"created_by_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"updated_by_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"locale\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"business_streams_documents_idx\", \"columns\": [\"document_id\", \"locale\", \"published_at\"]}, {\"name\": \"business_streams_created_by_id_fk\", \"columns\": [\"created_by_id\"]}, {\"name\": \"business_streams_updated_by_id_fk\", \"columns\": [\"updated_by_id\"]}], \"foreignKeys\": [{\"name\": \"business_streams_created_by_id_fk\", \"columns\": [\"created_by_id\"], \"onDelete\": \"SET NULL\", \"referencedTable\": \"admin_users\", \"referencedColumns\": [\"id\"]}, {\"name\": \"business_streams_updated_by_id_fk\", \"columns\": [\"updated_by_id\"], \"onDelete\": \"SET NULL\", \"referencedTable\": \"admin_users\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"contact_enquiries\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"document_id\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"full_name\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"email\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"phone_number\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [\"longtext\"], \"name\": \"message\", \"type\": \"text\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"enquiry_type\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"created_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"updated_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"published_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"created_by_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"updated_by_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"locale\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"contact_enquiries_documents_idx\", \"columns\": [\"document_id\", \"locale\", \"published_at\"]}, {\"name\": \"contact_enquiries_created_by_id_fk\", \"columns\": [\"created_by_id\"]}, {\"name\": \"contact_enquiries_updated_by_id_fk\", \"columns\": [\"updated_by_id\"]}], \"foreignKeys\": [{\"name\": \"contact_enquiries_created_by_id_fk\", \"columns\": [\"created_by_id\"], \"onDelete\": \"SET NULL\", \"referencedTable\": \"admin_users\", \"referencedColumns\": [\"id\"]}, {\"name\": \"contact_enquiries_updated_by_id_fk\", \"columns\": [\"updated_by_id\"], \"onDelete\": \"SET NULL\", \"referencedTable\": \"admin_users\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"contact_uses_cmps\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"entity_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"cmp_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"component_type\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"field\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"order\", \"type\": \"double\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"contact_uses_field_idx\", \"columns\": [\"field\"]}, {\"name\": \"contact_uses_component_type_idx\", \"columns\": [\"component_type\"]}, {\"name\": \"contact_uses_entity_fk\", \"columns\": [\"entity_id\"]}, {\"name\": \"contact_uses_uq\", \"type\": \"unique\", \"columns\": [\"entity_id\", \"cmp_id\", \"field\", \"component_type\"]}], \"foreignKeys\": [{\"name\": \"contact_uses_entity_fk\", \"columns\": [\"entity_id\"], \"onDelete\": \"CASCADE\", \"referencedTable\": \"contact_uses\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"contact_uses\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"document_id\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"form_title\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"created_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"updated_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"published_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"created_by_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"updated_by_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"locale\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"contact_uses_documents_idx\", \"columns\": [\"document_id\", \"locale\", \"published_at\"]}, {\"name\": \"contact_uses_created_by_id_fk\", \"columns\": [\"created_by_id\"]}, {\"name\": \"contact_uses_updated_by_id_fk\", \"columns\": [\"updated_by_id\"]}], \"foreignKeys\": [{\"name\": \"contact_uses_created_by_id_fk\", \"columns\": [\"created_by_id\"], \"onDelete\": \"SET NULL\", \"referencedTable\": \"admin_users\", \"referencedColumns\": [\"id\"]}, {\"name\": \"contact_uses_updated_by_id_fk\", \"columns\": [\"updated_by_id\"], \"onDelete\": \"SET NULL\", \"referencedTable\": \"admin_users\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"footers_cmps\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"entity_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"cmp_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"component_type\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"field\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"order\", \"type\": \"double\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"footers_field_idx\", \"columns\": [\"field\"]}, {\"name\": \"footers_component_type_idx\", \"columns\": [\"component_type\"]}, {\"name\": \"footers_entity_fk\", \"columns\": [\"entity_id\"]}, {\"name\": \"footers_uq\", \"type\": \"unique\", \"columns\": [\"entity_id\", \"cmp_id\", \"field\", \"component_type\"]}], \"foreignKeys\": [{\"name\": \"footers_entity_fk\", \"columns\": [\"entity_id\"], \"onDelete\": \"CASCADE\", \"referencedTable\": \"footers\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"footers\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"document_id\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [\"longtext\"], \"name\": \"description\", \"type\": \"text\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [\"longtext\"], \"name\": \"copyright_text\", \"type\": \"text\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"created_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"updated_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"published_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"created_by_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"updated_by_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"locale\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"footers_documents_idx\", \"columns\": [\"document_id\", \"locale\", \"published_at\"]}, {\"name\": \"footers_created_by_id_fk\", \"columns\": [\"created_by_id\"]}, {\"name\": \"footers_updated_by_id_fk\", \"columns\": [\"updated_by_id\"]}], \"foreignKeys\": [{\"name\": \"footers_created_by_id_fk\", \"columns\": [\"created_by_id\"], \"onDelete\": \"SET NULL\", \"referencedTable\": \"admin_users\", \"referencedColumns\": [\"id\"]}, {\"name\": \"footers_updated_by_id_fk\", \"columns\": [\"updated_by_id\"], \"onDelete\": \"SET NULL\", \"referencedTable\": \"admin_users\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"headers_cmps\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"entity_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"cmp_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"component_type\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"field\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"order\", \"type\": \"double\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"headers_field_idx\", \"columns\": [\"field\"]}, {\"name\": \"headers_component_type_idx\", \"columns\": [\"component_type\"]}, {\"name\": \"headers_entity_fk\", \"columns\": [\"entity_id\"]}, {\"name\": \"headers_uq\", \"type\": \"unique\", \"columns\": [\"entity_id\", \"cmp_id\", \"field\", \"component_type\"]}], \"foreignKeys\": [{\"name\": \"headers_entity_fk\", \"columns\": [\"entity_id\"], \"onDelete\": \"CASCADE\", \"referencedTable\": \"headers\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"headers\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"document_id\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"show_multilingual\", \"type\": \"boolean\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"created_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"updated_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"published_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"created_by_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"updated_by_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"locale\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"headers_documents_idx\", \"columns\": [\"document_id\", \"locale\", \"published_at\"]}, {\"name\": \"headers_created_by_id_fk\", \"columns\": [\"created_by_id\"]}, {\"name\": \"headers_updated_by_id_fk\", \"columns\": [\"updated_by_id\"]}], \"foreignKeys\": [{\"name\": \"headers_created_by_id_fk\", \"columns\": [\"created_by_id\"], \"onDelete\": \"SET NULL\", \"referencedTable\": \"admin_users\", \"referencedColumns\": [\"id\"]}, {\"name\": \"headers_updated_by_id_fk\", \"columns\": [\"updated_by_id\"], \"onDelete\": \"SET NULL\", \"referencedTable\": \"admin_users\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"homes_cmps\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"entity_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"cmp_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"component_type\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"field\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"order\", \"type\": \"double\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"homes_field_idx\", \"columns\": [\"field\"]}, {\"name\": \"homes_component_type_idx\", \"columns\": [\"component_type\"]}, {\"name\": \"homes_entity_fk\", \"columns\": [\"entity_id\"]}, {\"name\": \"homes_uq\", \"type\": \"unique\", \"columns\": [\"entity_id\", \"cmp_id\", \"field\", \"component_type\"]}], \"foreignKeys\": [{\"name\": \"homes_entity_fk\", \"columns\": [\"entity_id\"], \"onDelete\": \"CASCADE\", \"referencedTable\": \"homes\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"homes\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"document_id\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"is_news_enabled\", \"type\": \"boolean\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"created_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"updated_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"published_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"created_by_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"updated_by_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"locale\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"homes_documents_idx\", \"columns\": [\"document_id\", \"locale\", \"published_at\"]}, {\"name\": \"homes_created_by_id_fk\", \"columns\": [\"created_by_id\"]}, {\"name\": \"homes_updated_by_id_fk\", \"columns\": [\"updated_by_id\"]}], \"foreignKeys\": [{\"name\": \"homes_created_by_id_fk\", \"columns\": [\"created_by_id\"], \"onDelete\": \"SET NULL\", \"referencedTable\": \"admin_users\", \"referencedColumns\": [\"id\"]}, {\"name\": \"homes_updated_by_id_fk\", \"columns\": [\"updated_by_id\"], \"onDelete\": \"SET NULL\", \"referencedTable\": \"admin_users\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"locations_cmps\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"entity_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"cmp_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"component_type\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"field\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"order\", \"type\": \"double\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"locations_field_idx\", \"columns\": [\"field\"]}, {\"name\": \"locations_component_type_idx\", \"columns\": [\"component_type\"]}, {\"name\": \"locations_entity_fk\", \"columns\": [\"entity_id\"]}, {\"name\": \"locations_uq\", \"type\": \"unique\", \"columns\": [\"entity_id\", \"cmp_id\", \"field\", \"component_type\"]}], \"foreignKeys\": [{\"name\": \"locations_entity_fk\", \"columns\": [\"entity_id\"], \"onDelete\": \"CASCADE\", \"referencedTable\": \"locations\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"locations\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"document_id\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"sub_title\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"title\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [\"longtext\"], \"name\": \"description\", \"type\": \"text\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"created_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"updated_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"published_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"created_by_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"updated_by_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"locale\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"locations_documents_idx\", \"columns\": [\"document_id\", \"locale\", \"published_at\"]}, {\"name\": \"locations_created_by_id_fk\", \"columns\": [\"created_by_id\"]}, {\"name\": \"locations_updated_by_id_fk\", \"columns\": [\"updated_by_id\"]}], \"foreignKeys\": [{\"name\": \"locations_created_by_id_fk\", \"columns\": [\"created_by_id\"], \"onDelete\": \"SET NULL\", \"referencedTable\": \"admin_users\", \"referencedColumns\": [\"id\"]}, {\"name\": \"locations_updated_by_id_fk\", \"columns\": [\"updated_by_id\"], \"onDelete\": \"SET NULL\", \"referencedTable\": \"admin_users\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"newes_cmps\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"entity_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"cmp_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"component_type\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"field\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"order\", \"type\": \"double\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"newes_field_idx\", \"columns\": [\"field\"]}, {\"name\": \"newes_component_type_idx\", \"columns\": [\"component_type\"]}, {\"name\": \"newes_entity_fk\", \"columns\": [\"entity_id\"]}, {\"name\": \"newes_uq\", \"type\": \"unique\", \"columns\": [\"entity_id\", \"cmp_id\", \"field\", \"component_type\"]}], \"foreignKeys\": [{\"name\": \"newes_entity_fk\", \"columns\": [\"entity_id\"], \"onDelete\": \"CASCADE\", \"referencedTable\": \"newes\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"newes\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"document_id\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"title\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"slug\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"posted_date\", \"type\": \"date\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [\"longtext\"], \"name\": \"small_description\", \"type\": \"text\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [\"longtext\"], \"name\": \"description\", \"type\": \"text\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"is_featured\", \"type\": \"boolean\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"read_time\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"created_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"updated_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"published_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"created_by_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"updated_by_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"locale\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"newes_documents_idx\", \"columns\": [\"document_id\", \"locale\", \"published_at\"]}, {\"name\": \"newes_created_by_id_fk\", \"columns\": [\"created_by_id\"]}, {\"name\": \"newes_updated_by_id_fk\", \"columns\": [\"updated_by_id\"]}], \"foreignKeys\": [{\"name\": \"newes_created_by_id_fk\", \"columns\": [\"created_by_id\"], \"onDelete\": \"SET NULL\", \"referencedTable\": \"admin_users\", \"referencedColumns\": [\"id\"]}, {\"name\": \"newes_updated_by_id_fk\", \"columns\": [\"updated_by_id\"], \"onDelete\": \"SET NULL\", \"referencedTable\": \"admin_users\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"news_landings_cmps\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"entity_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"cmp_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"component_type\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"field\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"order\", \"type\": \"double\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"news_landings_field_idx\", \"columns\": [\"field\"]}, {\"name\": \"news_landings_component_type_idx\", \"columns\": [\"component_type\"]}, {\"name\": \"news_landings_entity_fk\", \"columns\": [\"entity_id\"]}, {\"name\": \"news_landings_uq\", \"type\": \"unique\", \"columns\": [\"entity_id\", \"cmp_id\", \"field\", \"component_type\"]}], \"foreignKeys\": [{\"name\": \"news_landings_entity_fk\", \"columns\": [\"entity_id\"], \"onDelete\": \"CASCADE\", \"referencedTable\": \"news_landings\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"news_landings\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"document_id\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"title\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"created_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"updated_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"published_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"created_by_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"updated_by_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"locale\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"news_landings_documents_idx\", \"columns\": [\"document_id\", \"locale\", \"published_at\"]}, {\"name\": \"news_landings_created_by_id_fk\", \"columns\": [\"created_by_id\"]}, {\"name\": \"news_landings_updated_by_id_fk\", \"columns\": [\"updated_by_id\"]}], \"foreignKeys\": [{\"name\": \"news_landings_created_by_id_fk\", \"columns\": [\"created_by_id\"], \"onDelete\": \"SET NULL\", \"referencedTable\": \"admin_users\", \"referencedColumns\": [\"id\"]}, {\"name\": \"news_landings_updated_by_id_fk\", \"columns\": [\"updated_by_id\"], \"onDelete\": \"SET NULL\", \"referencedTable\": \"admin_users\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"power_categories\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"document_id\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"title\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"slug\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"display_order\", \"type\": \"integer\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"created_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"updated_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"published_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"created_by_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"updated_by_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"locale\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"power_categories_documents_idx\", \"columns\": [\"document_id\", \"locale\", \"published_at\"]}, {\"name\": \"power_categories_created_by_id_fk\", \"columns\": [\"created_by_id\"]}, {\"name\": \"power_categories_updated_by_id_fk\", \"columns\": [\"updated_by_id\"]}], \"foreignKeys\": [{\"name\": \"power_categories_created_by_id_fk\", \"columns\": [\"created_by_id\"], \"onDelete\": \"SET NULL\", \"referencedTable\": \"admin_users\", \"referencedColumns\": [\"id\"]}, {\"name\": \"power_categories_updated_by_id_fk\", \"columns\": [\"updated_by_id\"], \"onDelete\": \"SET NULL\", \"referencedTable\": \"admin_users\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"power_tool_landings_cmps\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"entity_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"cmp_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"component_type\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"field\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"order\", \"type\": \"double\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"power_tool_landings_field_idx\", \"columns\": [\"field\"]}, {\"name\": \"power_tool_landings_component_type_idx\", \"columns\": [\"component_type\"]}, {\"name\": \"power_tool_landings_entity_fk\", \"columns\": [\"entity_id\"]}, {\"name\": \"power_tool_landings_uq\", \"type\": \"unique\", \"columns\": [\"entity_id\", \"cmp_id\", \"field\", \"component_type\"]}], \"foreignKeys\": [{\"name\": \"power_tool_landings_entity_fk\", \"columns\": [\"entity_id\"], \"onDelete\": \"CASCADE\", \"referencedTable\": \"power_tool_landings\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"power_tool_landings\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"document_id\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"title\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [\"longtext\"], \"name\": \"main_title\", \"type\": \"text\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [\"longtext\"], \"name\": \"main_description\", \"type\": \"text\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"created_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"updated_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"published_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"created_by_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"updated_by_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"locale\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"power_tool_landings_documents_idx\", \"columns\": [\"document_id\", \"locale\", \"published_at\"]}, {\"name\": \"power_tool_landings_created_by_id_fk\", \"columns\": [\"created_by_id\"]}, {\"name\": \"power_tool_landings_updated_by_id_fk\", \"columns\": [\"updated_by_id\"]}], \"foreignKeys\": [{\"name\": \"power_tool_landings_created_by_id_fk\", \"columns\": [\"created_by_id\"], \"onDelete\": \"SET NULL\", \"referencedTable\": \"admin_users\", \"referencedColumns\": [\"id\"]}, {\"name\": \"power_tool_landings_updated_by_id_fk\", \"columns\": [\"updated_by_id\"], \"onDelete\": \"SET NULL\", \"referencedTable\": \"admin_users\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"power_top_categories\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"document_id\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"title\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"slug\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"display_order\", \"type\": \"integer\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"created_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"updated_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"published_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"created_by_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"updated_by_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"locale\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"power_top_categories_documents_idx\", \"columns\": [\"document_id\", \"locale\", \"published_at\"]}, {\"name\": \"power_top_categories_created_by_id_fk\", \"columns\": [\"created_by_id\"]}, {\"name\": \"power_top_categories_updated_by_id_fk\", \"columns\": [\"updated_by_id\"]}], \"foreignKeys\": [{\"name\": \"power_top_categories_created_by_id_fk\", \"columns\": [\"created_by_id\"], \"onDelete\": \"SET NULL\", \"referencedTable\": \"admin_users\", \"referencedColumns\": [\"id\"]}, {\"name\": \"power_top_categories_updated_by_id_fk\", \"columns\": [\"updated_by_id\"], \"onDelete\": \"SET NULL\", \"referencedTable\": \"admin_users\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"privacy_policies_cmps\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"entity_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"cmp_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"component_type\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"field\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"order\", \"type\": \"double\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"privacy_policies_field_idx\", \"columns\": [\"field\"]}, {\"name\": \"privacy_policies_component_type_idx\", \"columns\": [\"component_type\"]}, {\"name\": \"privacy_policies_entity_fk\", \"columns\": [\"entity_id\"]}, {\"name\": \"privacy_policies_uq\", \"type\": \"unique\", \"columns\": [\"entity_id\", \"cmp_id\", \"field\", \"component_type\"]}], \"foreignKeys\": [{\"name\": \"privacy_policies_entity_fk\", \"columns\": [\"entity_id\"], \"onDelete\": \"CASCADE\", \"referencedTable\": \"privacy_policies\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"privacy_policies\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"document_id\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"title\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [\"longtext\"], \"name\": \"description\", \"type\": \"text\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"created_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"updated_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"published_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"created_by_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"updated_by_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"locale\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"privacy_policies_documents_idx\", \"columns\": [\"document_id\", \"locale\", \"published_at\"]}, {\"name\": \"privacy_policies_created_by_id_fk\", \"columns\": [\"created_by_id\"]}, {\"name\": \"privacy_policies_updated_by_id_fk\", \"columns\": [\"updated_by_id\"]}], \"foreignKeys\": [{\"name\": \"privacy_policies_created_by_id_fk\", \"columns\": [\"created_by_id\"], \"onDelete\": \"SET NULL\", \"referencedTable\": \"admin_users\", \"referencedColumns\": [\"id\"]}, {\"name\": \"privacy_policies_updated_by_id_fk\", \"columns\": [\"updated_by_id\"], \"onDelete\": \"SET NULL\", \"referencedTable\": \"admin_users\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"product_categories\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"document_id\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"title\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"slug\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"display_order\", \"type\": \"integer\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"created_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"updated_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"published_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"created_by_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"updated_by_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"locale\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"product_categories_documents_idx\", \"columns\": [\"document_id\", \"locale\", \"published_at\"]}, {\"name\": \"product_categories_created_by_id_fk\", \"columns\": [\"created_by_id\"]}, {\"name\": \"product_categories_updated_by_id_fk\", \"columns\": [\"updated_by_id\"]}], \"foreignKeys\": [{\"name\": \"product_categories_created_by_id_fk\", \"columns\": [\"created_by_id\"], \"onDelete\": \"SET NULL\", \"referencedTable\": \"admin_users\", \"referencedColumns\": [\"id\"]}, {\"name\": \"product_categories_updated_by_id_fk\", \"columns\": [\"updated_by_id\"], \"onDelete\": \"SET NULL\", \"referencedTable\": \"admin_users\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"services_cmps\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"entity_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"cmp_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"component_type\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"field\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"order\", \"type\": \"double\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"services_field_idx\", \"columns\": [\"field\"]}, {\"name\": \"services_component_type_idx\", \"columns\": [\"component_type\"]}, {\"name\": \"services_entity_fk\", \"columns\": [\"entity_id\"]}, {\"name\": \"services_uq\", \"type\": \"unique\", \"columns\": [\"entity_id\", \"cmp_id\", \"field\", \"component_type\"]}], \"foreignKeys\": [{\"name\": \"services_entity_fk\", \"columns\": [\"entity_id\"], \"onDelete\": \"CASCADE\", \"referencedTable\": \"services\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"services\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"document_id\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"title\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"slug\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [\"longtext\"], \"name\": \"list_desc\", \"type\": \"text\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"show_book_service_form\", \"type\": \"boolean\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"show_mobile_service_form\", \"type\": \"boolean\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"header_service_sort_order\", \"type\": \"integer\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"created_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"updated_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"published_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"created_by_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"updated_by_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"locale\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"services_documents_idx\", \"columns\": [\"document_id\", \"locale\", \"published_at\"]}, {\"name\": \"services_created_by_id_fk\", \"columns\": [\"created_by_id\"]}, {\"name\": \"services_updated_by_id_fk\", \"columns\": [\"updated_by_id\"]}], \"foreignKeys\": [{\"name\": \"services_created_by_id_fk\", \"columns\": [\"created_by_id\"], \"onDelete\": \"SET NULL\", \"referencedTable\": \"admin_users\", \"referencedColumns\": [\"id\"]}, {\"name\": \"services_updated_by_id_fk\", \"columns\": [\"updated_by_id\"], \"onDelete\": \"SET NULL\", \"referencedTable\": \"admin_users\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"service_categories_cmps\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"entity_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"cmp_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"component_type\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"field\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"order\", \"type\": \"double\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"service_categories_field_idx\", \"columns\": [\"field\"]}, {\"name\": \"service_categories_component_type_idx\", \"columns\": [\"component_type\"]}, {\"name\": \"service_categories_entity_fk\", \"columns\": [\"entity_id\"]}, {\"name\": \"service_categories_uq\", \"type\": \"unique\", \"columns\": [\"entity_id\", \"cmp_id\", \"field\", \"component_type\"]}], \"foreignKeys\": [{\"name\": \"service_categories_entity_fk\", \"columns\": [\"entity_id\"], \"onDelete\": \"CASCADE\", \"referencedTable\": \"service_categories\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"service_categories\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"document_id\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"title\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"slug\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [\"longtext\"], \"name\": \"description\", \"type\": \"text\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"header_services_sort_order\", \"type\": \"integer\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"created_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"updated_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"published_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"created_by_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"updated_by_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"locale\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"service_categories_documents_idx\", \"columns\": [\"document_id\", \"locale\", \"published_at\"]}, {\"name\": \"service_categories_created_by_id_fk\", \"columns\": [\"created_by_id\"]}, {\"name\": \"service_categories_updated_by_id_fk\", \"columns\": [\"updated_by_id\"]}], \"foreignKeys\": [{\"name\": \"service_categories_created_by_id_fk\", \"columns\": [\"created_by_id\"], \"onDelete\": \"SET NULL\", \"referencedTable\": \"admin_users\", \"referencedColumns\": [\"id\"]}, {\"name\": \"service_categories_updated_by_id_fk\", \"columns\": [\"updated_by_id\"], \"onDelete\": \"SET NULL\", \"referencedTable\": \"admin_users\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"service_category_types\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"document_id\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"title\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"slug\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"display_order\", \"type\": \"integer\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"created_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"updated_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"published_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"created_by_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"updated_by_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"locale\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"service_category_types_documents_idx\", \"columns\": [\"document_id\", \"locale\", \"published_at\"]}, {\"name\": \"service_category_types_created_by_id_fk\", \"columns\": [\"created_by_id\"]}, {\"name\": \"service_category_types_updated_by_id_fk\", \"columns\": [\"updated_by_id\"]}], \"foreignKeys\": [{\"name\": \"service_category_types_created_by_id_fk\", \"columns\": [\"created_by_id\"], \"onDelete\": \"SET NULL\", \"referencedTable\": \"admin_users\", \"referencedColumns\": [\"id\"]}, {\"name\": \"service_category_types_updated_by_id_fk\", \"columns\": [\"updated_by_id\"], \"onDelete\": \"SET NULL\", \"referencedTable\": \"admin_users\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"service_landings_cmps\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"entity_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"cmp_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"component_type\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"field\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"order\", \"type\": \"double\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"service_landings_field_idx\", \"columns\": [\"field\"]}, {\"name\": \"service_landings_component_type_idx\", \"columns\": [\"component_type\"]}, {\"name\": \"service_landings_entity_fk\", \"columns\": [\"entity_id\"]}, {\"name\": \"service_landings_uq\", \"type\": \"unique\", \"columns\": [\"entity_id\", \"cmp_id\", \"field\", \"component_type\"]}], \"foreignKeys\": [{\"name\": \"service_landings_entity_fk\", \"columns\": [\"entity_id\"], \"onDelete\": \"CASCADE\", \"referencedTable\": \"service_landings\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"service_landings\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"document_id\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [\"longtext\"], \"name\": \"service_heading\", \"type\": \"text\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [\"longtext\"], \"name\": \"description\", \"type\": \"text\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"created_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"updated_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"published_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"created_by_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"updated_by_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"locale\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"service_landings_documents_idx\", \"columns\": [\"document_id\", \"locale\", \"published_at\"]}, {\"name\": \"service_landings_created_by_id_fk\", \"columns\": [\"created_by_id\"]}, {\"name\": \"service_landings_updated_by_id_fk\", \"columns\": [\"updated_by_id\"]}], \"foreignKeys\": [{\"name\": \"service_landings_created_by_id_fk\", \"columns\": [\"created_by_id\"], \"onDelete\": \"SET NULL\", \"referencedTable\": \"admin_users\", \"referencedColumns\": [\"id\"]}, {\"name\": \"service_landings_updated_by_id_fk\", \"columns\": [\"updated_by_id\"], \"onDelete\": \"SET NULL\", \"referencedTable\": \"admin_users\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"socials\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"document_id\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"title\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [\"longtext\"], \"name\": \"link\", \"type\": \"text\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"type_external\", \"type\": \"boolean\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"created_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"updated_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"published_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"created_by_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"updated_by_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"locale\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"socials_documents_idx\", \"columns\": [\"document_id\", \"locale\", \"published_at\"]}, {\"name\": \"socials_created_by_id_fk\", \"columns\": [\"created_by_id\"]}, {\"name\": \"socials_updated_by_id_fk\", \"columns\": [\"updated_by_id\"]}], \"foreignKeys\": [{\"name\": \"socials_created_by_id_fk\", \"columns\": [\"created_by_id\"], \"onDelete\": \"SET NULL\", \"referencedTable\": \"admin_users\", \"referencedColumns\": [\"id\"]}, {\"name\": \"socials_updated_by_id_fk\", \"columns\": [\"updated_by_id\"], \"onDelete\": \"SET NULL\", \"referencedTable\": \"admin_users\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"terms_conditions_cmps\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"entity_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"cmp_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"component_type\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"field\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"order\", \"type\": \"double\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"terms_conditions_field_idx\", \"columns\": [\"field\"]}, {\"name\": \"terms_conditions_component_type_idx\", \"columns\": [\"component_type\"]}, {\"name\": \"terms_conditions_entity_fk\", \"columns\": [\"entity_id\"]}, {\"name\": \"terms_conditions_uq\", \"type\": \"unique\", \"columns\": [\"entity_id\", \"cmp_id\", \"field\", \"component_type\"]}], \"foreignKeys\": [{\"name\": \"terms_conditions_entity_fk\", \"columns\": [\"entity_id\"], \"onDelete\": \"CASCADE\", \"referencedTable\": \"terms_conditions\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"terms_conditions\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"document_id\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"title\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [\"longtext\"], \"name\": \"description\", \"type\": \"text\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"created_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"updated_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"published_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"created_by_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"updated_by_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"locale\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"terms_conditions_documents_idx\", \"columns\": [\"document_id\", \"locale\", \"published_at\"]}, {\"name\": \"terms_conditions_created_by_id_fk\", \"columns\": [\"created_by_id\"]}, {\"name\": \"terms_conditions_updated_by_id_fk\", \"columns\": [\"updated_by_id\"]}], \"foreignKeys\": [{\"name\": \"terms_conditions_created_by_id_fk\", \"columns\": [\"created_by_id\"], \"onDelete\": \"SET NULL\", \"referencedTable\": \"admin_users\", \"referencedColumns\": [\"id\"]}, {\"name\": \"terms_conditions_updated_by_id_fk\", \"columns\": [\"updated_by_id\"], \"onDelete\": \"SET NULL\", \"referencedTable\": \"admin_users\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"types\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"document_id\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"title\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"key\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"created_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"updated_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"published_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"created_by_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"updated_by_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"locale\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"types_documents_idx\", \"columns\": [\"document_id\", \"locale\", \"published_at\"]}, {\"name\": \"types_created_by_id_fk\", \"columns\": [\"created_by_id\"]}, {\"name\": \"types_updated_by_id_fk\", \"columns\": [\"updated_by_id\"]}], \"foreignKeys\": [{\"name\": \"types_created_by_id_fk\", \"columns\": [\"created_by_id\"], \"onDelete\": \"SET NULL\", \"referencedTable\": \"admin_users\", \"referencedColumns\": [\"id\"]}, {\"name\": \"types_updated_by_id_fk\", \"columns\": [\"updated_by_id\"], \"onDelete\": \"SET NULL\", \"referencedTable\": \"admin_users\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"tyre_categories\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"document_id\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"title\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"slug\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"display_order\", \"type\": \"integer\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"created_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"updated_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"published_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"created_by_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"updated_by_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"locale\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"tyre_categories_documents_idx\", \"columns\": [\"document_id\", \"locale\", \"published_at\"]}, {\"name\": \"tyre_categories_created_by_id_fk\", \"columns\": [\"created_by_id\"]}, {\"name\": \"tyre_categories_updated_by_id_fk\", \"columns\": [\"updated_by_id\"]}], \"foreignKeys\": [{\"name\": \"tyre_categories_created_by_id_fk\", \"columns\": [\"created_by_id\"], \"onDelete\": \"SET NULL\", \"referencedTable\": \"admin_users\", \"referencedColumns\": [\"id\"]}, {\"name\": \"tyre_categories_updated_by_id_fk\", \"columns\": [\"updated_by_id\"], \"onDelete\": \"SET NULL\", \"referencedTable\": \"admin_users\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"tyre_landings_cmps\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"entity_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"cmp_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"component_type\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"field\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"order\", \"type\": \"double\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"tyre_landings_field_idx\", \"columns\": [\"field\"]}, {\"name\": \"tyre_landings_component_type_idx\", \"columns\": [\"component_type\"]}, {\"name\": \"tyre_landings_entity_fk\", \"columns\": [\"entity_id\"]}, {\"name\": \"tyre_landings_uq\", \"type\": \"unique\", \"columns\": [\"entity_id\", \"cmp_id\", \"field\", \"component_type\"]}], \"foreignKeys\": [{\"name\": \"tyre_landings_entity_fk\", \"columns\": [\"entity_id\"], \"onDelete\": \"CASCADE\", \"referencedTable\": \"tyre_landings\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"tyre_landings\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"document_id\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"title\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"created_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"updated_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"published_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"created_by_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"updated_by_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"locale\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"tyre_landings_documents_idx\", \"columns\": [\"document_id\", \"locale\", \"published_at\"]}, {\"name\": \"tyre_landings_created_by_id_fk\", \"columns\": [\"created_by_id\"]}, {\"name\": \"tyre_landings_updated_by_id_fk\", \"columns\": [\"updated_by_id\"]}], \"foreignKeys\": [{\"name\": \"tyre_landings_created_by_id_fk\", \"columns\": [\"created_by_id\"], \"onDelete\": \"SET NULL\", \"referencedTable\": \"admin_users\", \"referencedColumns\": [\"id\"]}, {\"name\": \"tyre_landings_updated_by_id_fk\", \"columns\": [\"updated_by_id\"], \"onDelete\": \"SET NULL\", \"referencedTable\": \"admin_users\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"tyre_services\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"document_id\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"title\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"slug\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"display_order\", \"type\": \"integer\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"created_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"updated_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"published_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"created_by_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"updated_by_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"locale\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"tyre_services_documents_idx\", \"columns\": [\"document_id\", \"locale\", \"published_at\"]}, {\"name\": \"tyre_services_created_by_id_fk\", \"columns\": [\"created_by_id\"]}, {\"name\": \"tyre_services_updated_by_id_fk\", \"columns\": [\"updated_by_id\"]}], \"foreignKeys\": [{\"name\": \"tyre_services_created_by_id_fk\", \"columns\": [\"created_by_id\"], \"onDelete\": \"SET NULL\", \"referencedTable\": \"admin_users\", \"referencedColumns\": [\"id\"]}, {\"name\": \"tyre_services_updated_by_id_fk\", \"columns\": [\"updated_by_id\"], \"onDelete\": \"SET NULL\", \"referencedTable\": \"admin_users\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"admin_permissions\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"document_id\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"action\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"action_parameters\", \"type\": \"jsonb\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"subject\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"properties\", \"type\": \"jsonb\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"conditions\", \"type\": \"jsonb\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"created_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"updated_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"published_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"created_by_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"updated_by_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"locale\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"admin_permissions_documents_idx\", \"columns\": [\"document_id\", \"locale\", \"published_at\"]}, {\"name\": \"admin_permissions_created_by_id_fk\", \"columns\": [\"created_by_id\"]}, {\"name\": \"admin_permissions_updated_by_id_fk\", \"columns\": [\"updated_by_id\"]}], \"foreignKeys\": [{\"name\": \"admin_permissions_created_by_id_fk\", \"columns\": [\"created_by_id\"], \"onDelete\": \"SET NULL\", \"referencedTable\": \"admin_users\", \"referencedColumns\": [\"id\"]}, {\"name\": \"admin_permissions_updated_by_id_fk\", \"columns\": [\"updated_by_id\"], \"onDelete\": \"SET NULL\", \"referencedTable\": \"admin_users\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"admin_users\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"document_id\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"firstname\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"lastname\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"username\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"email\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"password\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"reset_password_token\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"registration_token\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"is_active\", \"type\": \"boolean\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"blocked\", \"type\": \"boolean\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"prefered_language\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"created_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"updated_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"published_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"created_by_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"updated_by_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"locale\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"admin_users_documents_idx\", \"columns\": [\"document_id\", \"locale\", \"published_at\"]}, {\"name\": \"admin_users_created_by_id_fk\", \"columns\": [\"created_by_id\"]}, {\"name\": \"admin_users_updated_by_id_fk\", \"columns\": [\"updated_by_id\"]}], \"foreignKeys\": [{\"name\": \"admin_users_created_by_id_fk\", \"columns\": [\"created_by_id\"], \"onDelete\": \"SET NULL\", \"referencedTable\": \"admin_users\", \"referencedColumns\": [\"id\"]}, {\"name\": \"admin_users_updated_by_id_fk\", \"columns\": [\"updated_by_id\"], \"onDelete\": \"SET NULL\", \"referencedTable\": \"admin_users\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"admin_roles\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"document_id\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"name\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"code\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"description\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"created_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"updated_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"published_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"created_by_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"updated_by_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"locale\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"admin_roles_documents_idx\", \"columns\": [\"document_id\", \"locale\", \"published_at\"]}, {\"name\": \"admin_roles_created_by_id_fk\", \"columns\": [\"created_by_id\"]}, {\"name\": \"admin_roles_updated_by_id_fk\", \"columns\": [\"updated_by_id\"]}], \"foreignKeys\": [{\"name\": \"admin_roles_created_by_id_fk\", \"columns\": [\"created_by_id\"], \"onDelete\": \"SET NULL\", \"referencedTable\": \"admin_users\", \"referencedColumns\": [\"id\"]}, {\"name\": \"admin_roles_updated_by_id_fk\", \"columns\": [\"updated_by_id\"], \"onDelete\": \"SET NULL\", \"referencedTable\": \"admin_users\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"strapi_api_tokens\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"document_id\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"name\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"description\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"type\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"access_key\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [\"longtext\"], \"name\": \"encrypted_key\", \"type\": \"text\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"last_used_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"expires_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"lifespan\", \"type\": \"bigInteger\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"created_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"updated_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"published_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"created_by_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"updated_by_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"locale\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"strapi_api_tokens_documents_idx\", \"columns\": [\"document_id\", \"locale\", \"published_at\"]}, {\"name\": \"strapi_api_tokens_created_by_id_fk\", \"columns\": [\"created_by_id\"]}, {\"name\": \"strapi_api_tokens_updated_by_id_fk\", \"columns\": [\"updated_by_id\"]}], \"foreignKeys\": [{\"name\": \"strapi_api_tokens_created_by_id_fk\", \"columns\": [\"created_by_id\"], \"onDelete\": \"SET NULL\", \"referencedTable\": \"admin_users\", \"referencedColumns\": [\"id\"]}, {\"name\": \"strapi_api_tokens_updated_by_id_fk\", \"columns\": [\"updated_by_id\"], \"onDelete\": \"SET NULL\", \"referencedTable\": \"admin_users\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"strapi_api_token_permissions\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"document_id\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"action\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"created_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"updated_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"published_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"created_by_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"updated_by_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"locale\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"strapi_api_token_permissions_documents_idx\", \"columns\": [\"document_id\", \"locale\", \"published_at\"]}, {\"name\": \"strapi_api_token_permissions_created_by_id_fk\", \"columns\": [\"created_by_id\"]}, {\"name\": \"strapi_api_token_permissions_updated_by_id_fk\", \"columns\": [\"updated_by_id\"]}], \"foreignKeys\": [{\"name\": \"strapi_api_token_permissions_created_by_id_fk\", \"columns\": [\"created_by_id\"], \"onDelete\": \"SET NULL\", \"referencedTable\": \"admin_users\", \"referencedColumns\": [\"id\"]}, {\"name\": \"strapi_api_token_permissions_updated_by_id_fk\", \"columns\": [\"updated_by_id\"], \"onDelete\": \"SET NULL\", \"referencedTable\": \"admin_users\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"strapi_transfer_tokens\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"document_id\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"name\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"description\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"access_key\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"last_used_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"expires_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"lifespan\", \"type\": \"bigInteger\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"created_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"updated_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"published_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"created_by_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"updated_by_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"locale\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"strapi_transfer_tokens_documents_idx\", \"columns\": [\"document_id\", \"locale\", \"published_at\"]}, {\"name\": \"strapi_transfer_tokens_created_by_id_fk\", \"columns\": [\"created_by_id\"]}, {\"name\": \"strapi_transfer_tokens_updated_by_id_fk\", \"columns\": [\"updated_by_id\"]}], \"foreignKeys\": [{\"name\": \"strapi_transfer_tokens_created_by_id_fk\", \"columns\": [\"created_by_id\"], \"onDelete\": \"SET NULL\", \"referencedTable\": \"admin_users\", \"referencedColumns\": [\"id\"]}, {\"name\": \"strapi_transfer_tokens_updated_by_id_fk\", \"columns\": [\"updated_by_id\"], \"onDelete\": \"SET NULL\", \"referencedTable\": \"admin_users\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"strapi_transfer_token_permissions\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"document_id\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"action\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"created_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"updated_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"published_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"created_by_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"updated_by_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"locale\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"strapi_transfer_token_permissions_documents_idx\", \"columns\": [\"document_id\", \"locale\", \"published_at\"]}, {\"name\": \"strapi_transfer_token_permissions_created_by_id_fk\", \"columns\": [\"created_by_id\"]}, {\"name\": \"strapi_transfer_token_permissions_updated_by_id_fk\", \"columns\": [\"updated_by_id\"]}], \"foreignKeys\": [{\"name\": \"strapi_transfer_token_permissions_created_by_id_fk\", \"columns\": [\"created_by_id\"], \"onDelete\": \"SET NULL\", \"referencedTable\": \"admin_users\", \"referencedColumns\": [\"id\"]}, {\"name\": \"strapi_transfer_token_permissions_updated_by_id_fk\", \"columns\": [\"updated_by_id\"], \"onDelete\": \"SET NULL\", \"referencedTable\": \"admin_users\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"components_service_landing_service_locations_cmps\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"entity_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"cmp_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"component_type\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"field\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"order\", \"type\": \"double\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"components_service_landing_service_locations_field_idx\", \"columns\": [\"field\"]}, {\"name\": \"components_service_landing_serv54cca_component_type_idx\", \"columns\": [\"component_type\"]}, {\"name\": \"components_service_landing_service_locations_entity_fk\", \"columns\": [\"entity_id\"]}, {\"name\": \"components_service_landing_service_locations_uq\", \"type\": \"unique\", \"columns\": [\"entity_id\", \"cmp_id\", \"field\", \"component_type\"]}], \"foreignKeys\": [{\"name\": \"components_service_landing_service_locations_entity_fk\", \"columns\": [\"entity_id\"], \"onDelete\": \"CASCADE\", \"referencedTable\": \"components_service_landing_service_locations\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"components_service_landing_service_locations\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"title\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"slug\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [\"longtext\"], \"name\": \"address\", \"type\": \"text\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [\"longtext\"], \"name\": \"embeded_map_url\", \"type\": \"text\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [\"longtext\"], \"name\": \"map_url\", \"type\": \"text\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [], \"foreignKeys\": []}, {\"name\": \"components_service_landing_service_form_blks_cmps\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"entity_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"cmp_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"component_type\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"field\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"order\", \"type\": \"double\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"components_service_landing_service_form_blks_field_idx\", \"columns\": [\"field\"]}, {\"name\": \"components_service_landing_serve2d51_component_type_idx\", \"columns\": [\"component_type\"]}, {\"name\": \"components_service_landing_service_form_blks_entity_fk\", \"columns\": [\"entity_id\"]}, {\"name\": \"components_service_landing_service_form_blks_uq\", \"type\": \"unique\", \"columns\": [\"entity_id\", \"cmp_id\", \"field\", \"component_type\"]}], \"foreignKeys\": [{\"name\": \"components_service_landing_service_form_blks_entity_fk\", \"columns\": [\"entity_id\"], \"onDelete\": \"CASCADE\", \"referencedTable\": \"components_service_landing_service_form_blks\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"components_service_landing_service_form_blks\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [\"longtext\"], \"name\": \"title\", \"type\": \"text\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"sub_heading\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [\"longtext\"], \"name\": \"description\", \"type\": \"text\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [], \"foreignKeys\": []}, {\"name\": \"components_service_landing_our_services\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"title\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [\"longtext\"], \"name\": \"description\", \"type\": \"text\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [], \"foreignKeys\": []}, {\"name\": \"components_home_trusted_sections_cmps\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"entity_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"cmp_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"component_type\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"field\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"order\", \"type\": \"double\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"components_home_trusted_sections_field_idx\", \"columns\": [\"field\"]}, {\"name\": \"components_home_trusted_sections_component_type_idx\", \"columns\": [\"component_type\"]}, {\"name\": \"components_home_trusted_sections_entity_fk\", \"columns\": [\"entity_id\"]}, {\"name\": \"components_home_trusted_sections_uq\", \"type\": \"unique\", \"columns\": [\"entity_id\", \"cmp_id\", \"field\", \"component_type\"]}], \"foreignKeys\": [{\"name\": \"components_home_trusted_sections_entity_fk\", \"columns\": [\"entity_id\"], \"onDelete\": \"CASCADE\", \"referencedTable\": \"components_home_trusted_sections\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"components_home_trusted_sections\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"title\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"sub_title\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [], \"foreignKeys\": []}, {\"name\": \"components_home_logos\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"title\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [], \"foreignKeys\": []}, {\"name\": \"components_home_content_sections\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"title\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"sub_title\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [], \"foreignKeys\": []}, {\"name\": \"components_home_business_streams_cmps\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"entity_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"cmp_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"component_type\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"field\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"order\", \"type\": \"double\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"components_home_business_streams_field_idx\", \"columns\": [\"field\"]}, {\"name\": \"components_home_business_streams_component_type_idx\", \"columns\": [\"component_type\"]}, {\"name\": \"components_home_business_streams_entity_fk\", \"columns\": [\"entity_id\"]}, {\"name\": \"components_home_business_streams_uq\", \"type\": \"unique\", \"columns\": [\"entity_id\", \"cmp_id\", \"field\", \"component_type\"]}], \"foreignKeys\": [{\"name\": \"components_home_business_streams_entity_fk\", \"columns\": [\"entity_id\"], \"onDelete\": \"CASCADE\", \"referencedTable\": \"components_home_business_streams\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"components_home_business_streams\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"title\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [\"longtext\"], \"name\": \"sub_title\", \"type\": \"text\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [], \"foreignKeys\": []}, {\"name\": \"components_home_about_cmes_cmps\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"entity_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"cmp_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"component_type\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"field\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"order\", \"type\": \"double\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"components_home_about_cmes_field_idx\", \"columns\": [\"field\"]}, {\"name\": \"components_home_about_cmes_component_type_idx\", \"columns\": [\"component_type\"]}, {\"name\": \"components_home_about_cmes_entity_fk\", \"columns\": [\"entity_id\"]}, {\"name\": \"components_home_about_cmes_uq\", \"type\": \"unique\", \"columns\": [\"entity_id\", \"cmp_id\", \"field\", \"component_type\"]}], \"foreignKeys\": [{\"name\": \"components_home_about_cmes_entity_fk\", \"columns\": [\"entity_id\"], \"onDelete\": \"CASCADE\", \"referencedTable\": \"components_home_about_cmes\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"components_home_about_cmes\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [\"longtext\"], \"name\": \"title\", \"type\": \"text\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"sub_title\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [\"longtext\"], \"name\": \"description\", \"type\": \"text\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [], \"foreignKeys\": []}, {\"name\": \"components_common_title_with_descs\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [\"longtext\"], \"name\": \"title\", \"type\": \"text\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"sub_title\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [\"longtext\"], \"name\": \"description\", \"type\": \"text\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"horizontal_alignment\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [], \"foreignKeys\": []}, {\"name\": \"components_common_title_descs\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"title\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [\"longtext\"], \"name\": \"description\", \"type\": \"text\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [], \"foreignKeys\": []}, {\"name\": \"components_common_title_desc_with_imgs\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"title\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [\"longtext\"], \"name\": \"description\", \"type\": \"text\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [], \"foreignKeys\": []}, {\"name\": \"components_common_title_desc_img_positions\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"title\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [\"longtext\"], \"name\": \"description\", \"type\": \"text\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"image_position\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"show_image_border_radius\", \"type\": \"boolean\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"custom_img_class\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"custom_img_parent_class\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [], \"foreignKeys\": []}, {\"name\": \"components_common_title_desc_btn_imgs_cmps\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"entity_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"cmp_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"component_type\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"field\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"order\", \"type\": \"double\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"components_common_title_desc_btn_imgs_field_idx\", \"columns\": [\"field\"]}, {\"name\": \"components_common_title_desc_btfd575_component_type_idx\", \"columns\": [\"component_type\"]}, {\"name\": \"components_common_title_desc_btn_imgs_entity_fk\", \"columns\": [\"entity_id\"]}, {\"name\": \"components_common_title_desc_btn_imgs_uq\", \"type\": \"unique\", \"columns\": [\"entity_id\", \"cmp_id\", \"field\", \"component_type\"]}], \"foreignKeys\": [{\"name\": \"components_common_title_desc_btn_imgs_entity_fk\", \"columns\": [\"entity_id\"], \"onDelete\": \"CASCADE\", \"referencedTable\": \"components_common_title_desc_btn_imgs\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"components_common_title_desc_btn_imgs\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"title\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [\"longtext\"], \"name\": \"description\", \"type\": \"text\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"image_position\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [], \"foreignKeys\": []}, {\"name\": \"components_common_tags\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"title\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"key\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [], \"foreignKeys\": []}, {\"name\": \"components_common_social_links\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"title\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"link\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"is_active\", \"type\": \"boolean\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [], \"foreignKeys\": []}, {\"name\": \"components_common_seos_cmps\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"entity_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"cmp_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"component_type\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"field\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"order\", \"type\": \"double\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"components_common_seos_field_idx\", \"columns\": [\"field\"]}, {\"name\": \"components_common_seos_component_type_idx\", \"columns\": [\"component_type\"]}, {\"name\": \"components_common_seos_entity_fk\", \"columns\": [\"entity_id\"]}, {\"name\": \"components_common_seos_uq\", \"type\": \"unique\", \"columns\": [\"entity_id\", \"cmp_id\", \"field\", \"component_type\"]}], \"foreignKeys\": [{\"name\": \"components_common_seos_entity_fk\", \"columns\": [\"entity_id\"], \"onDelete\": \"CASCADE\", \"referencedTable\": \"components_common_seos\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"components_common_seos\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [\"longtext\"], \"name\": \"meta_title\", \"type\": \"text\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [\"longtext\"], \"name\": \"meta_description\", \"type\": \"text\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"prevent_indexing\", \"type\": \"boolean\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [\"longtext\"], \"name\": \"keywords\", \"type\": \"text\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [\"longtext\"], \"name\": \"canonical_url\", \"type\": \"text\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [\"longtext\"], \"name\": \"meta_head\", \"type\": \"text\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [\"longtext\"], \"name\": \"word_description\", \"type\": \"text\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [], \"foreignKeys\": []}, {\"name\": \"components_common_phones\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"phone\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [], \"foreignKeys\": []}, {\"name\": \"components_common_metas\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"name\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [\"longtext\"], \"name\": \"content\", \"type\": \"text\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [], \"foreignKeys\": []}, {\"name\": \"components_common_menu_items\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"title\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"url\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"new_tab\", \"type\": \"boolean\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"is_active\", \"type\": \"boolean\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"key\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [], \"foreignKeys\": []}, {\"name\": \"components_common_menu_item_w_subs_cmps\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"entity_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"cmp_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"component_type\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"field\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"order\", \"type\": \"double\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"components_common_menu_item_w_subs_field_idx\", \"columns\": [\"field\"]}, {\"name\": \"components_common_menu_item_w_subs_component_type_idx\", \"columns\": [\"component_type\"]}, {\"name\": \"components_common_menu_item_w_subs_entity_fk\", \"columns\": [\"entity_id\"]}, {\"name\": \"components_common_menu_item_w_subs_uq\", \"type\": \"unique\", \"columns\": [\"entity_id\", \"cmp_id\", \"field\", \"component_type\"]}], \"foreignKeys\": [{\"name\": \"components_common_menu_item_w_subs_entity_fk\", \"columns\": [\"entity_id\"], \"onDelete\": \"CASCADE\", \"referencedTable\": \"components_common_menu_item_w_subs\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"components_common_menu_item_w_subs\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"title\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"url\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"new_tab\", \"type\": \"boolean\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"is_active\", \"type\": \"boolean\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [], \"foreignKeys\": []}, {\"name\": \"components_common_menu_item_w_services\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"title\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"url\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [\"longtext\"], \"name\": \"content\", \"type\": \"text\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"link_text\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [], \"foreignKeys\": []}, {\"name\": \"components_common_locations_cmps\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"entity_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"cmp_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"component_type\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"field\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"order\", \"type\": \"double\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"components_common_locations_field_idx\", \"columns\": [\"field\"]}, {\"name\": \"components_common_locations_component_type_idx\", \"columns\": [\"component_type\"]}, {\"name\": \"components_common_locations_entity_fk\", \"columns\": [\"entity_id\"]}, {\"name\": \"components_common_locations_uq\", \"type\": \"unique\", \"columns\": [\"entity_id\", \"cmp_id\", \"field\", \"component_type\"]}], \"foreignKeys\": [{\"name\": \"components_common_locations_entity_fk\", \"columns\": [\"entity_id\"], \"onDelete\": \"CASCADE\", \"referencedTable\": \"components_common_locations\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"components_common_locations\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"title\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [], \"foreignKeys\": []}, {\"name\": \"components_common_location_cards_cmps\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"entity_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"cmp_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"component_type\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"field\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"order\", \"type\": \"double\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"components_common_location_cards_field_idx\", \"columns\": [\"field\"]}, {\"name\": \"components_common_location_cards_component_type_idx\", \"columns\": [\"component_type\"]}, {\"name\": \"components_common_location_cards_entity_fk\", \"columns\": [\"entity_id\"]}, {\"name\": \"components_common_location_cards_uq\", \"type\": \"unique\", \"columns\": [\"entity_id\", \"cmp_id\", \"field\", \"component_type\"]}], \"foreignKeys\": [{\"name\": \"components_common_location_cards_entity_fk\", \"columns\": [\"entity_id\"], \"onDelete\": \"CASCADE\", \"referencedTable\": \"components_common_location_cards\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"components_common_location_cards\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"title\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [\"longtext\"], \"name\": \"address\", \"type\": \"text\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [\"longtext\"], \"name\": \"embeded_map_url\", \"type\": \"text\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [\"longtext\"], \"name\": \"map_url\", \"type\": \"text\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [], \"foreignKeys\": []}, {\"name\": \"components_common_lists\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"item\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [], \"foreignKeys\": []}, {\"name\": \"components_common_link_items\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"label\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"url\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"new_tab\", \"type\": \"boolean\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [], \"foreignKeys\": []}, {\"name\": \"components_common_faqs_cmps\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"entity_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"cmp_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"component_type\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"field\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"order\", \"type\": \"double\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"components_common_faqs_field_idx\", \"columns\": [\"field\"]}, {\"name\": \"components_common_faqs_component_type_idx\", \"columns\": [\"component_type\"]}, {\"name\": \"components_common_faqs_entity_fk\", \"columns\": [\"entity_id\"]}, {\"name\": \"components_common_faqs_uq\", \"type\": \"unique\", \"columns\": [\"entity_id\", \"cmp_id\", \"field\", \"component_type\"]}], \"foreignKeys\": [{\"name\": \"components_common_faqs_entity_fk\", \"columns\": [\"entity_id\"], \"onDelete\": \"CASCADE\", \"referencedTable\": \"components_common_faqs\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"components_common_faqs\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"title\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [\"longtext\"], \"name\": \"sub_title\", \"type\": \"text\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [], \"foreignKeys\": []}, {\"name\": \"components_common_content_with_links_cmps\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"entity_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"cmp_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"component_type\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"field\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"order\", \"type\": \"double\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"components_common_content_with_links_field_idx\", \"columns\": [\"field\"]}, {\"name\": \"components_common_content_with_links_component_type_idx\", \"columns\": [\"component_type\"]}, {\"name\": \"components_common_content_with_links_entity_fk\", \"columns\": [\"entity_id\"]}, {\"name\": \"components_common_content_with_links_uq\", \"type\": \"unique\", \"columns\": [\"entity_id\", \"cmp_id\", \"field\", \"component_type\"]}], \"foreignKeys\": [{\"name\": \"components_common_content_with_links_entity_fk\", \"columns\": [\"entity_id\"], \"onDelete\": \"CASCADE\", \"referencedTable\": \"components_common_content_with_links\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"components_common_content_with_links\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"title\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"sub_title\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [\"longtext\"], \"name\": \"description\", \"type\": \"text\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [], \"foreignKeys\": []}, {\"name\": \"components_common_content_blocks_cmps\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"entity_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"cmp_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"component_type\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"field\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"order\", \"type\": \"double\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"components_common_content_blocks_field_idx\", \"columns\": [\"field\"]}, {\"name\": \"components_common_content_blocks_component_type_idx\", \"columns\": [\"component_type\"]}, {\"name\": \"components_common_content_blocks_entity_fk\", \"columns\": [\"entity_id\"]}, {\"name\": \"components_common_content_blocks_uq\", \"type\": \"unique\", \"columns\": [\"entity_id\", \"cmp_id\", \"field\", \"component_type\"]}], \"foreignKeys\": [{\"name\": \"components_common_content_blocks_entity_fk\", \"columns\": [\"entity_id\"], \"onDelete\": \"CASCADE\", \"referencedTable\": \"components_common_content_blocks\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"components_common_content_blocks\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"title\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"sub_title\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"show_gradient_bg\", \"type\": \"boolean\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"service_card_variant\", \"type\": \"boolean\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [], \"foreignKeys\": []}, {\"name\": \"components_common_content_block_variants_cmps\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"entity_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"cmp_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"component_type\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"field\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"order\", \"type\": \"double\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"components_common_content_block_variants_field_idx\", \"columns\": [\"field\"]}, {\"name\": \"components_common_content_block780de_component_type_idx\", \"columns\": [\"component_type\"]}, {\"name\": \"components_common_content_block_variants_entity_fk\", \"columns\": [\"entity_id\"]}, {\"name\": \"components_common_content_block_variants_uq\", \"type\": \"unique\", \"columns\": [\"entity_id\", \"cmp_id\", \"field\", \"component_type\"]}], \"foreignKeys\": [{\"name\": \"components_common_content_block_variants_entity_fk\", \"columns\": [\"entity_id\"], \"onDelete\": \"CASCADE\", \"referencedTable\": \"components_common_content_block_variants\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"components_common_content_block_variants\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"title\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"sub_title\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [\"longtext\"], \"name\": \"description\", \"type\": \"text\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"show_gradient_bg\", \"type\": \"boolean\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [], \"foreignKeys\": []}, {\"name\": \"components_common_buttons\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"title\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"url\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"type_external\", \"type\": \"boolean\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [], \"foreignKeys\": []}, {\"name\": \"components_common_box_components_cmps\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"entity_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"cmp_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"component_type\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"field\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"order\", \"type\": \"double\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"components_common_box_components_field_idx\", \"columns\": [\"field\"]}, {\"name\": \"components_common_box_components_component_type_idx\", \"columns\": [\"component_type\"]}, {\"name\": \"components_common_box_components_entity_fk\", \"columns\": [\"entity_id\"]}, {\"name\": \"components_common_box_components_uq\", \"type\": \"unique\", \"columns\": [\"entity_id\", \"cmp_id\", \"field\", \"component_type\"]}], \"foreignKeys\": [{\"name\": \"components_common_box_components_entity_fk\", \"columns\": [\"entity_id\"], \"onDelete\": \"CASCADE\", \"referencedTable\": \"components_common_box_components\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"components_common_box_components\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"title\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"description\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"phone\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"latitude\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"longitude\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [\"longtext\"], \"name\": \"sub_title\", \"type\": \"text\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [], \"foreignKeys\": []}, {\"name\": \"components_common_banners_cmps\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"entity_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"cmp_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"component_type\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"field\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"order\", \"type\": \"double\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"components_common_banners_field_idx\", \"columns\": [\"field\"]}, {\"name\": \"components_common_banners_component_type_idx\", \"columns\": [\"component_type\"]}, {\"name\": \"components_common_banners_entity_fk\", \"columns\": [\"entity_id\"]}, {\"name\": \"components_common_banners_uq\", \"type\": \"unique\", \"columns\": [\"entity_id\", \"cmp_id\", \"field\", \"component_type\"]}], \"foreignKeys\": [{\"name\": \"components_common_banners_entity_fk\", \"columns\": [\"entity_id\"], \"onDelete\": \"CASCADE\", \"referencedTable\": \"components_common_banners\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"components_common_banners\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"title\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"subtitle\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"type\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [], \"foreignKeys\": []}, {\"name\": \"strapi_core_store_settings\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"key\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [\"longtext\"], \"name\": \"value\", \"type\": \"text\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"type\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"environment\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"tag\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [], \"foreignKeys\": []}, {\"name\": \"strapi_webhooks\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"name\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [\"longtext\"], \"name\": \"url\", \"type\": \"text\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"headers\", \"type\": \"jsonb\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"events\", \"type\": \"jsonb\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"enabled\", \"type\": \"boolean\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [], \"foreignKeys\": []}, {\"name\": \"strapi_history_versions\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"content_type\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"related_document_id\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"locale\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"status\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"data\", \"type\": \"jsonb\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"schema\", \"type\": \"jsonb\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [{\"useTz\": false, \"precision\": 6}], \"name\": \"created_at\", \"type\": \"datetime\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"created_by_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"strapi_history_versions_created_by_id_fk\", \"columns\": [\"created_by_id\"]}], \"foreignKeys\": [{\"name\": \"strapi_history_versions_created_by_id_fk\", \"columns\": [\"created_by_id\"], \"onDelete\": \"SET NULL\", \"referencedTable\": \"admin_users\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"files_related_mph\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"file_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"related_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"related_type\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"field\", \"type\": \"string\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"order\", \"type\": \"double\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"files_related_mph_fk\", \"columns\": [\"file_id\"]}, {\"name\": \"files_related_mph_oidx\", \"columns\": [\"order\"]}, {\"name\": \"files_related_mph_idix\", \"columns\": [\"related_id\"]}], \"foreignKeys\": [{\"name\": \"files_related_mph_fk\", \"columns\": [\"file_id\"], \"onDelete\": \"CASCADE\", \"referencedTable\": \"files\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"files_folder_lnk\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"file_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"folder_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"file_ord\", \"type\": \"double\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"files_folder_lnk_fk\", \"columns\": [\"file_id\"]}, {\"name\": \"files_folder_lnk_ifk\", \"columns\": [\"folder_id\"]}, {\"name\": \"files_folder_lnk_uq\", \"type\": \"unique\", \"columns\": [\"file_id\", \"folder_id\"]}, {\"name\": \"files_folder_lnk_oifk\", \"columns\": [\"file_ord\"]}], \"foreignKeys\": [{\"name\": \"files_folder_lnk_fk\", \"columns\": [\"file_id\"], \"onDelete\": \"CASCADE\", \"referencedTable\": \"files\", \"referencedColumns\": [\"id\"]}, {\"name\": \"files_folder_lnk_ifk\", \"columns\": [\"folder_id\"], \"onDelete\": \"CASCADE\", \"referencedTable\": \"upload_folders\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"upload_folders_parent_lnk\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"folder_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"inv_folder_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"folder_ord\", \"type\": \"double\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"upload_folders_parent_lnk_fk\", \"columns\": [\"folder_id\"]}, {\"name\": \"upload_folders_parent_lnk_ifk\", \"columns\": [\"inv_folder_id\"]}, {\"name\": \"upload_folders_parent_lnk_uq\", \"type\": \"unique\", \"columns\": [\"folder_id\", \"inv_folder_id\"]}, {\"name\": \"upload_folders_parent_lnk_oifk\", \"columns\": [\"folder_ord\"]}], \"foreignKeys\": [{\"name\": \"upload_folders_parent_lnk_fk\", \"columns\": [\"folder_id\"], \"onDelete\": \"CASCADE\", \"referencedTable\": \"upload_folders\", \"referencedColumns\": [\"id\"]}, {\"name\": \"upload_folders_parent_lnk_ifk\", \"columns\": [\"inv_folder_id\"], \"onDelete\": \"CASCADE\", \"referencedTable\": \"upload_folders\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"strapi_release_actions_release_lnk\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"release_action_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"release_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"release_action_ord\", \"type\": \"double\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"strapi_release_actions_release_lnk_fk\", \"columns\": [\"release_action_id\"]}, {\"name\": \"strapi_release_actions_release_lnk_ifk\", \"columns\": [\"release_id\"]}, {\"name\": \"strapi_release_actions_release_lnk_uq\", \"type\": \"unique\", \"columns\": [\"release_action_id\", \"release_id\"]}, {\"name\": \"strapi_release_actions_release_lnk_oifk\", \"columns\": [\"release_action_ord\"]}], \"foreignKeys\": [{\"name\": \"strapi_release_actions_release_lnk_fk\", \"columns\": [\"release_action_id\"], \"onDelete\": \"CASCADE\", \"referencedTable\": \"strapi_release_actions\", \"referencedColumns\": [\"id\"]}, {\"name\": \"strapi_release_actions_release_lnk_ifk\", \"columns\": [\"release_id\"], \"onDelete\": \"CASCADE\", \"referencedTable\": \"strapi_releases\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"strapi_workflows_stage_required_to_publish_lnk\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"workflow_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"workflow_stage_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"strapi_workflows_stage_required_to_publish_lnk_fk\", \"columns\": [\"workflow_id\"]}, {\"name\": \"strapi_workflows_stage_required_to_publish_lnk_ifk\", \"columns\": [\"workflow_stage_id\"]}, {\"name\": \"strapi_workflows_stage_required_to_publish_lnk_uq\", \"type\": \"unique\", \"columns\": [\"workflow_id\", \"workflow_stage_id\"]}], \"foreignKeys\": [{\"name\": \"strapi_workflows_stage_required_to_publish_lnk_fk\", \"columns\": [\"workflow_id\"], \"onDelete\": \"CASCADE\", \"referencedTable\": \"strapi_workflows\", \"referencedColumns\": [\"id\"]}, {\"name\": \"strapi_workflows_stage_required_to_publish_lnk_ifk\", \"columns\": [\"workflow_stage_id\"], \"onDelete\": \"CASCADE\", \"referencedTable\": \"strapi_workflows_stages\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"strapi_workflows_stages_workflow_lnk\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"workflow_stage_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"workflow_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"workflow_stage_ord\", \"type\": \"double\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"strapi_workflows_stages_workflow_lnk_fk\", \"columns\": [\"workflow_stage_id\"]}, {\"name\": \"strapi_workflows_stages_workflow_lnk_ifk\", \"columns\": [\"workflow_id\"]}, {\"name\": \"strapi_workflows_stages_workflow_lnk_uq\", \"type\": \"unique\", \"columns\": [\"workflow_stage_id\", \"workflow_id\"]}, {\"name\": \"strapi_workflows_stages_workflow_lnk_oifk\", \"columns\": [\"workflow_stage_ord\"]}], \"foreignKeys\": [{\"name\": \"strapi_workflows_stages_workflow_lnk_fk\", \"columns\": [\"workflow_stage_id\"], \"onDelete\": \"CASCADE\", \"referencedTable\": \"strapi_workflows_stages\", \"referencedColumns\": [\"id\"]}, {\"name\": \"strapi_workflows_stages_workflow_lnk_ifk\", \"columns\": [\"workflow_id\"], \"onDelete\": \"CASCADE\", \"referencedTable\": \"strapi_workflows\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"strapi_workflows_stages_permissions_lnk\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"workflow_stage_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"permission_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"permission_ord\", \"type\": \"double\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"strapi_workflows_stages_permissions_lnk_fk\", \"columns\": [\"workflow_stage_id\"]}, {\"name\": \"strapi_workflows_stages_permissions_lnk_ifk\", \"columns\": [\"permission_id\"]}, {\"name\": \"strapi_workflows_stages_permissions_lnk_uq\", \"type\": \"unique\", \"columns\": [\"workflow_stage_id\", \"permission_id\"]}, {\"name\": \"strapi_workflows_stages_permissions_lnk_ofk\", \"columns\": [\"permission_ord\"]}], \"foreignKeys\": [{\"name\": \"strapi_workflows_stages_permissions_lnk_fk\", \"columns\": [\"workflow_stage_id\"], \"onDelete\": \"CASCADE\", \"referencedTable\": \"strapi_workflows_stages\", \"referencedColumns\": [\"id\"]}, {\"name\": \"strapi_workflows_stages_permissions_lnk_ifk\", \"columns\": [\"permission_id\"], \"onDelete\": \"CASCADE\", \"referencedTable\": \"admin_permissions\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"up_permissions_role_lnk\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"permission_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"role_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"permission_ord\", \"type\": \"double\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"up_permissions_role_lnk_fk\", \"columns\": [\"permission_id\"]}, {\"name\": \"up_permissions_role_lnk_ifk\", \"columns\": [\"role_id\"]}, {\"name\": \"up_permissions_role_lnk_uq\", \"type\": \"unique\", \"columns\": [\"permission_id\", \"role_id\"]}, {\"name\": \"up_permissions_role_lnk_oifk\", \"columns\": [\"permission_ord\"]}], \"foreignKeys\": [{\"name\": \"up_permissions_role_lnk_fk\", \"columns\": [\"permission_id\"], \"onDelete\": \"CASCADE\", \"referencedTable\": \"up_permissions\", \"referencedColumns\": [\"id\"]}, {\"name\": \"up_permissions_role_lnk_ifk\", \"columns\": [\"role_id\"], \"onDelete\": \"CASCADE\", \"referencedTable\": \"up_roles\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"up_users_role_lnk\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"user_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"role_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"user_ord\", \"type\": \"double\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"up_users_role_lnk_fk\", \"columns\": [\"user_id\"]}, {\"name\": \"up_users_role_lnk_ifk\", \"columns\": [\"role_id\"]}, {\"name\": \"up_users_role_lnk_uq\", \"type\": \"unique\", \"columns\": [\"user_id\", \"role_id\"]}, {\"name\": \"up_users_role_lnk_oifk\", \"columns\": [\"user_ord\"]}], \"foreignKeys\": [{\"name\": \"up_users_role_lnk_fk\", \"columns\": [\"user_id\"], \"onDelete\": \"CASCADE\", \"referencedTable\": \"up_users\", \"referencedColumns\": [\"id\"]}, {\"name\": \"up_users_role_lnk_ifk\", \"columns\": [\"role_id\"], \"onDelete\": \"CASCADE\", \"referencedTable\": \"up_roles\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"automotive_landings_location_types_lnk\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"automotive_landing_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"branch_location_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"branch_location_ord\", \"type\": \"double\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"automotive_landings_location_types_lnk_fk\", \"columns\": [\"automotive_landing_id\"]}, {\"name\": \"automotive_landings_location_types_lnk_ifk\", \"columns\": [\"branch_location_id\"]}, {\"name\": \"automotive_landings_location_types_lnk_uq\", \"type\": \"unique\", \"columns\": [\"automotive_landing_id\", \"branch_location_id\"]}, {\"name\": \"automotive_landings_location_types_lnk_ofk\", \"columns\": [\"branch_location_ord\"]}], \"foreignKeys\": [{\"name\": \"automotive_landings_location_types_lnk_fk\", \"columns\": [\"automotive_landing_id\"], \"onDelete\": \"CASCADE\", \"referencedTable\": \"automotive_landings\", \"referencedColumns\": [\"id\"]}, {\"name\": \"automotive_landings_location_types_lnk_ifk\", \"columns\": [\"branch_location_id\"], \"onDelete\": \"CASCADE\", \"referencedTable\": \"branch_locations\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"branches_branch_location_lnk\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"branch_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"branch_location_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"branch_location_ord\", \"type\": \"double\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"branches_branch_location_lnk_fk\", \"columns\": [\"branch_id\"]}, {\"name\": \"branches_branch_location_lnk_ifk\", \"columns\": [\"branch_location_id\"]}, {\"name\": \"branches_branch_location_lnk_uq\", \"type\": \"unique\", \"columns\": [\"branch_id\", \"branch_location_id\"]}, {\"name\": \"branches_branch_location_lnk_ofk\", \"columns\": [\"branch_location_ord\"]}], \"foreignKeys\": [{\"name\": \"branches_branch_location_lnk_fk\", \"columns\": [\"branch_id\"], \"onDelete\": \"CASCADE\", \"referencedTable\": \"branches\", \"referencedColumns\": [\"id\"]}, {\"name\": \"branches_branch_location_lnk_ifk\", \"columns\": [\"branch_location_id\"], \"onDelete\": \"CASCADE\", \"referencedTable\": \"branch_locations\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"branches_products_lnk\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"branch_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"business_stream_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"business_stream_ord\", \"type\": \"double\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"branches_products_lnk_fk\", \"columns\": [\"branch_id\"]}, {\"name\": \"branches_products_lnk_ifk\", \"columns\": [\"business_stream_id\"]}, {\"name\": \"branches_products_lnk_uq\", \"type\": \"unique\", \"columns\": [\"branch_id\", \"business_stream_id\"]}, {\"name\": \"branches_products_lnk_ofk\", \"columns\": [\"business_stream_ord\"]}], \"foreignKeys\": [{\"name\": \"branches_products_lnk_fk\", \"columns\": [\"branch_id\"], \"onDelete\": \"CASCADE\", \"referencedTable\": \"branches\", \"referencedColumns\": [\"id\"]}, {\"name\": \"branches_products_lnk_ifk\", \"columns\": [\"business_stream_id\"], \"onDelete\": \"CASCADE\", \"referencedTable\": \"business_streams\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"brands_types_lnk\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"brand_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"type_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"type_ord\", \"type\": \"double\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"brands_types_lnk_fk\", \"columns\": [\"brand_id\"]}, {\"name\": \"brands_types_lnk_ifk\", \"columns\": [\"type_id\"]}, {\"name\": \"brands_types_lnk_uq\", \"type\": \"unique\", \"columns\": [\"brand_id\", \"type_id\"]}, {\"name\": \"brands_types_lnk_ofk\", \"columns\": [\"type_ord\"]}], \"foreignKeys\": [{\"name\": \"brands_types_lnk_fk\", \"columns\": [\"brand_id\"], \"onDelete\": \"CASCADE\", \"referencedTable\": \"brands\", \"referencedColumns\": [\"id\"]}, {\"name\": \"brands_types_lnk_ifk\", \"columns\": [\"type_id\"], \"onDelete\": \"CASCADE\", \"referencedTable\": \"types\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"contact_uses_locations_lnk\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"contact_us_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"branch_location_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"branch_location_ord\", \"type\": \"double\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"contact_uses_locations_lnk_fk\", \"columns\": [\"contact_us_id\"]}, {\"name\": \"contact_uses_locations_lnk_ifk\", \"columns\": [\"branch_location_id\"]}, {\"name\": \"contact_uses_locations_lnk_uq\", \"type\": \"unique\", \"columns\": [\"contact_us_id\", \"branch_location_id\"]}, {\"name\": \"contact_uses_locations_lnk_ofk\", \"columns\": [\"branch_location_ord\"]}], \"foreignKeys\": [{\"name\": \"contact_uses_locations_lnk_fk\", \"columns\": [\"contact_us_id\"], \"onDelete\": \"CASCADE\", \"referencedTable\": \"contact_uses\", \"referencedColumns\": [\"id\"]}, {\"name\": \"contact_uses_locations_lnk_ifk\", \"columns\": [\"branch_location_id\"], \"onDelete\": \"CASCADE\", \"referencedTable\": \"branch_locations\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"locations_location_types_lnk\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"location_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"branch_location_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"branch_location_ord\", \"type\": \"double\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"locations_location_types_lnk_fk\", \"columns\": [\"location_id\"]}, {\"name\": \"locations_location_types_lnk_ifk\", \"columns\": [\"branch_location_id\"]}, {\"name\": \"locations_location_types_lnk_uq\", \"type\": \"unique\", \"columns\": [\"location_id\", \"branch_location_id\"]}, {\"name\": \"locations_location_types_lnk_ofk\", \"columns\": [\"branch_location_ord\"]}], \"foreignKeys\": [{\"name\": \"locations_location_types_lnk_fk\", \"columns\": [\"location_id\"], \"onDelete\": \"CASCADE\", \"referencedTable\": \"locations\", \"referencedColumns\": [\"id\"]}, {\"name\": \"locations_location_types_lnk_ifk\", \"columns\": [\"branch_location_id\"], \"onDelete\": \"CASCADE\", \"referencedTable\": \"branch_locations\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"newes_types_lnk\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"news_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"type_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"type_ord\", \"type\": \"double\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"newes_types_lnk_fk\", \"columns\": [\"news_id\"]}, {\"name\": \"newes_types_lnk_ifk\", \"columns\": [\"type_id\"]}, {\"name\": \"newes_types_lnk_uq\", \"type\": \"unique\", \"columns\": [\"news_id\", \"type_id\"]}, {\"name\": \"newes_types_lnk_ofk\", \"columns\": [\"type_ord\"]}], \"foreignKeys\": [{\"name\": \"newes_types_lnk_fk\", \"columns\": [\"news_id\"], \"onDelete\": \"CASCADE\", \"referencedTable\": \"newes\", \"referencedColumns\": [\"id\"]}, {\"name\": \"newes_types_lnk_ifk\", \"columns\": [\"type_id\"], \"onDelete\": \"CASCADE\", \"referencedTable\": \"types\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"power_tool_landings_location_types_lnk\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"power_tool_landing_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"branch_location_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"branch_location_ord\", \"type\": \"double\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"power_tool_landings_location_types_lnk_fk\", \"columns\": [\"power_tool_landing_id\"]}, {\"name\": \"power_tool_landings_location_types_lnk_ifk\", \"columns\": [\"branch_location_id\"]}, {\"name\": \"power_tool_landings_location_types_lnk_uq\", \"type\": \"unique\", \"columns\": [\"power_tool_landing_id\", \"branch_location_id\"]}, {\"name\": \"power_tool_landings_location_types_lnk_ofk\", \"columns\": [\"branch_location_ord\"]}], \"foreignKeys\": [{\"name\": \"power_tool_landings_location_types_lnk_fk\", \"columns\": [\"power_tool_landing_id\"], \"onDelete\": \"CASCADE\", \"referencedTable\": \"power_tool_landings\", \"referencedColumns\": [\"id\"]}, {\"name\": \"power_tool_landings_location_types_lnk_ifk\", \"columns\": [\"branch_location_id\"], \"onDelete\": \"CASCADE\", \"referencedTable\": \"branch_locations\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"services_service_type_lnk\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"service_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"service_category_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"services_service_type_lnk_fk\", \"columns\": [\"service_id\"]}, {\"name\": \"services_service_type_lnk_ifk\", \"columns\": [\"service_category_id\"]}, {\"name\": \"services_service_type_lnk_uq\", \"type\": \"unique\", \"columns\": [\"service_id\", \"service_category_id\"]}], \"foreignKeys\": [{\"name\": \"services_service_type_lnk_fk\", \"columns\": [\"service_id\"], \"onDelete\": \"CASCADE\", \"referencedTable\": \"services\", \"referencedColumns\": [\"id\"]}, {\"name\": \"services_service_type_lnk_ifk\", \"columns\": [\"service_category_id\"], \"onDelete\": \"CASCADE\", \"referencedTable\": \"service_categories\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"services_location_types_lnk\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"service_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"branch_location_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"branch_location_ord\", \"type\": \"double\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"services_location_types_lnk_fk\", \"columns\": [\"service_id\"]}, {\"name\": \"services_location_types_lnk_ifk\", \"columns\": [\"branch_location_id\"]}, {\"name\": \"services_location_types_lnk_uq\", \"type\": \"unique\", \"columns\": [\"service_id\", \"branch_location_id\"]}, {\"name\": \"services_location_types_lnk_ofk\", \"columns\": [\"branch_location_ord\"]}], \"foreignKeys\": [{\"name\": \"services_location_types_lnk_fk\", \"columns\": [\"service_id\"], \"onDelete\": \"CASCADE\", \"referencedTable\": \"services\", \"referencedColumns\": [\"id\"]}, {\"name\": \"services_location_types_lnk_ifk\", \"columns\": [\"branch_location_id\"], \"onDelete\": \"CASCADE\", \"referencedTable\": \"branch_locations\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"service_landings_location_types_lnk\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"service_landing_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"branch_location_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"branch_location_ord\", \"type\": \"double\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"service_landings_location_types_lnk_fk\", \"columns\": [\"service_landing_id\"]}, {\"name\": \"service_landings_location_types_lnk_ifk\", \"columns\": [\"branch_location_id\"]}, {\"name\": \"service_landings_location_types_lnk_uq\", \"type\": \"unique\", \"columns\": [\"service_landing_id\", \"branch_location_id\"]}, {\"name\": \"service_landings_location_types_lnk_ofk\", \"columns\": [\"branch_location_ord\"]}], \"foreignKeys\": [{\"name\": \"service_landings_location_types_lnk_fk\", \"columns\": [\"service_landing_id\"], \"onDelete\": \"CASCADE\", \"referencedTable\": \"service_landings\", \"referencedColumns\": [\"id\"]}, {\"name\": \"service_landings_location_types_lnk_ifk\", \"columns\": [\"branch_location_id\"], \"onDelete\": \"CASCADE\", \"referencedTable\": \"branch_locations\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"tyre_landings_location_types_lnk\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"tyre_landing_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"branch_location_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"branch_location_ord\", \"type\": \"double\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"tyre_landings_location_types_lnk_fk\", \"columns\": [\"tyre_landing_id\"]}, {\"name\": \"tyre_landings_location_types_lnk_ifk\", \"columns\": [\"branch_location_id\"]}, {\"name\": \"tyre_landings_location_types_lnk_uq\", \"type\": \"unique\", \"columns\": [\"tyre_landing_id\", \"branch_location_id\"]}, {\"name\": \"tyre_landings_location_types_lnk_ofk\", \"columns\": [\"branch_location_ord\"]}], \"foreignKeys\": [{\"name\": \"tyre_landings_location_types_lnk_fk\", \"columns\": [\"tyre_landing_id\"], \"onDelete\": \"CASCADE\", \"referencedTable\": \"tyre_landings\", \"referencedColumns\": [\"id\"]}, {\"name\": \"tyre_landings_location_types_lnk_ifk\", \"columns\": [\"branch_location_id\"], \"onDelete\": \"CASCADE\", \"referencedTable\": \"branch_locations\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"admin_permissions_role_lnk\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"permission_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"role_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"permission_ord\", \"type\": \"double\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"admin_permissions_role_lnk_fk\", \"columns\": [\"permission_id\"]}, {\"name\": \"admin_permissions_role_lnk_ifk\", \"columns\": [\"role_id\"]}, {\"name\": \"admin_permissions_role_lnk_uq\", \"type\": \"unique\", \"columns\": [\"permission_id\", \"role_id\"]}, {\"name\": \"admin_permissions_role_lnk_oifk\", \"columns\": [\"permission_ord\"]}], \"foreignKeys\": [{\"name\": \"admin_permissions_role_lnk_fk\", \"columns\": [\"permission_id\"], \"onDelete\": \"CASCADE\", \"referencedTable\": \"admin_permissions\", \"referencedColumns\": [\"id\"]}, {\"name\": \"admin_permissions_role_lnk_ifk\", \"columns\": [\"role_id\"], \"onDelete\": \"CASCADE\", \"referencedTable\": \"admin_roles\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"admin_users_roles_lnk\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"user_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"role_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"role_ord\", \"type\": \"double\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"user_ord\", \"type\": \"double\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"admin_users_roles_lnk_fk\", \"columns\": [\"user_id\"]}, {\"name\": \"admin_users_roles_lnk_ifk\", \"columns\": [\"role_id\"]}, {\"name\": \"admin_users_roles_lnk_uq\", \"type\": \"unique\", \"columns\": [\"user_id\", \"role_id\"]}, {\"name\": \"admin_users_roles_lnk_ofk\", \"columns\": [\"role_ord\"]}, {\"name\": \"admin_users_roles_lnk_oifk\", \"columns\": [\"user_ord\"]}], \"foreignKeys\": [{\"name\": \"admin_users_roles_lnk_fk\", \"columns\": [\"user_id\"], \"onDelete\": \"CASCADE\", \"referencedTable\": \"admin_users\", \"referencedColumns\": [\"id\"]}, {\"name\": \"admin_users_roles_lnk_ifk\", \"columns\": [\"role_id\"], \"onDelete\": \"CASCADE\", \"referencedTable\": \"admin_roles\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"strapi_api_token_permissions_token_lnk\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"api_token_permission_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"api_token_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"api_token_permission_ord\", \"type\": \"double\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"strapi_api_token_permissions_token_lnk_fk\", \"columns\": [\"api_token_permission_id\"]}, {\"name\": \"strapi_api_token_permissions_token_lnk_ifk\", \"columns\": [\"api_token_id\"]}, {\"name\": \"strapi_api_token_permissions_token_lnk_uq\", \"type\": \"unique\", \"columns\": [\"api_token_permission_id\", \"api_token_id\"]}, {\"name\": \"strapi_api_token_permissions_token_lnk_oifk\", \"columns\": [\"api_token_permission_ord\"]}], \"foreignKeys\": [{\"name\": \"strapi_api_token_permissions_token_lnk_fk\", \"columns\": [\"api_token_permission_id\"], \"onDelete\": \"CASCADE\", \"referencedTable\": \"strapi_api_token_permissions\", \"referencedColumns\": [\"id\"]}, {\"name\": \"strapi_api_token_permissions_token_lnk_ifk\", \"columns\": [\"api_token_id\"], \"onDelete\": \"CASCADE\", \"referencedTable\": \"strapi_api_tokens\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"strapi_transfer_token_permissions_token_lnk\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"transfer_token_permission_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"transfer_token_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"transfer_token_permission_ord\", \"type\": \"double\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"strapi_transfer_token_permissions_token_lnk_fk\", \"columns\": [\"transfer_token_permission_id\"]}, {\"name\": \"strapi_transfer_token_permissions_token_lnk_ifk\", \"columns\": [\"transfer_token_id\"]}, {\"name\": \"strapi_transfer_token_permissions_token_lnk_uq\", \"type\": \"unique\", \"columns\": [\"transfer_token_permission_id\", \"transfer_token_id\"]}, {\"name\": \"strapi_transfer_token_permissions_token_lnk_oifk\", \"columns\": [\"transfer_token_permission_ord\"]}], \"foreignKeys\": [{\"name\": \"strapi_transfer_token_permissions_token_lnk_fk\", \"columns\": [\"transfer_token_permission_id\"], \"onDelete\": \"CASCADE\", \"referencedTable\": \"strapi_transfer_token_permissions\", \"referencedColumns\": [\"id\"]}, {\"name\": \"strapi_transfer_token_permissions_token_lnk_ifk\", \"columns\": [\"transfer_token_id\"], \"onDelete\": \"CASCADE\", \"referencedTable\": \"strapi_transfer_tokens\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"components_service_landing_ser54cca_branch_location_lnk\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"service_locations_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"branch_location_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"components_service_landing_ser54cca_branch_loca44487_fk\", \"columns\": [\"service_locations_id\"]}, {\"name\": \"components_service_landing_ser54cca_branch_loc44487_ifk\", \"columns\": [\"branch_location_id\"]}, {\"name\": \"components_service_landing_ser54cca_branch_loca44487_uq\", \"type\": \"unique\", \"columns\": [\"service_locations_id\", \"branch_location_id\"]}], \"foreignKeys\": [{\"name\": \"components_service_landing_ser54cca_branch_loca44487_fk\", \"columns\": [\"service_locations_id\"], \"onDelete\": \"CASCADE\", \"referencedTable\": \"components_service_landing_service_locations\", \"referencedColumns\": [\"id\"]}, {\"name\": \"components_service_landing_ser54cca_branch_loc44487_ifk\", \"columns\": [\"branch_location_id\"], \"onDelete\": \"CASCADE\", \"referencedTable\": \"branch_locations\", \"referencedColumns\": [\"id\"]}]}, {\"name\": \"components_common_location_cards_branch_location_lnk\", \"columns\": [{\"args\": [{\"primary\": true, \"primaryKey\": true}], \"name\": \"id\", \"type\": \"increments\", \"unsigned\": false, \"defaultTo\": null, \"notNullable\": true}, {\"args\": [], \"name\": \"location_card_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}, {\"args\": [], \"name\": \"branch_location_id\", \"type\": \"integer\", \"unsigned\": true, \"defaultTo\": null, \"notNullable\": false}], \"indexes\": [{\"name\": \"components_common_location_cards_branch_location_lnk_fk\", \"columns\": [\"location_card_id\"]}, {\"name\": \"components_common_location_cards_branch_locati6432b_ifk\", \"columns\": [\"branch_location_id\"]}, {\"name\": \"components_common_location_cards_branch_location_lnk_uq\", \"type\": \"unique\", \"columns\": [\"location_card_id\", \"branch_location_id\"]}], \"foreignKeys\": [{\"name\": \"components_common_location_cards_branch_location_lnk_fk\", \"columns\": [\"location_card_id\"], \"onDelete\": \"CASCADE\", \"referencedTable\": \"components_common_location_cards\", \"referencedColumns\": [\"id\"]}, {\"name\": \"components_common_location_cards_branch_locati6432b_ifk\", \"columns\": [\"branch_location_id\"], \"onDelete\": \"CASCADE\", \"referencedTable\": \"branch_locations\", \"referencedColumns\": [\"id\"]}]}]}','2026-04-08 10:37:25','974ab6bb10726b0a2802abf89a78636b567afe99e7091c8141691eea7dd409d2');
/*!40000 ALTER TABLE `strapi_database_schema` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `strapi_history_versions`
--

DROP TABLE IF EXISTS `strapi_history_versions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `strapi_history_versions` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `content_type` varchar(255) NOT NULL,
  `related_document_id` varchar(255) DEFAULT NULL,
  `locale` varchar(255) DEFAULT NULL,
  `status` varchar(255) DEFAULT NULL,
  `data` json DEFAULT NULL,
  `schema` json DEFAULT NULL,
  `created_at` datetime(6) DEFAULT NULL,
  `created_by_id` int unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `strapi_history_versions_created_by_id_fk` (`created_by_id`),
  CONSTRAINT `strapi_history_versions_created_by_id_fk` FOREIGN KEY (`created_by_id`) REFERENCES `admin_users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `strapi_history_versions`
--

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

--
-- Table structure for table `strapi_migrations`
--

DROP TABLE IF EXISTS `strapi_migrations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `strapi_migrations` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `time` datetime DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `strapi_migrations`
--

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

--
-- Table structure for table `strapi_migrations_internal`
--

DROP TABLE IF EXISTS `strapi_migrations_internal`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `strapi_migrations_internal` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `time` datetime DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `strapi_migrations_internal`
--

LOCK TABLES `strapi_migrations_internal` WRITE;
/*!40000 ALTER TABLE `strapi_migrations_internal` DISABLE KEYS */;
INSERT INTO `strapi_migrations_internal` VALUES (1,'5.0.0-rename-identifiers-longer-than-max-length','2025-11-21 05:39:06'),(2,'5.0.0-02-created-document-id','2025-11-21 05:39:08'),(3,'5.0.0-03-created-locale','2025-11-21 05:39:09'),(4,'5.0.0-04-created-published-at','2025-11-21 05:39:10'),(5,'5.0.0-05-drop-slug-fields-index','2025-11-21 05:39:11'),(6,'core::5.0.0-discard-drafts','2025-11-21 05:39:12');
/*!40000 ALTER TABLE `strapi_migrations_internal` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `strapi_release_actions`
--

DROP TABLE IF EXISTS `strapi_release_actions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `strapi_release_actions` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `document_id` varchar(255) DEFAULT NULL,
  `type` varchar(255) DEFAULT NULL,
  `content_type` varchar(255) DEFAULT NULL,
  `entry_document_id` varchar(255) DEFAULT NULL,
  `locale` varchar(255) DEFAULT NULL,
  `is_entry_valid` tinyint(1) DEFAULT NULL,
  `created_at` datetime(6) DEFAULT NULL,
  `updated_at` datetime(6) DEFAULT NULL,
  `published_at` datetime(6) DEFAULT NULL,
  `created_by_id` int unsigned DEFAULT NULL,
  `updated_by_id` int unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `strapi_release_actions_documents_idx` (`document_id`,`locale`,`published_at`),
  KEY `strapi_release_actions_created_by_id_fk` (`created_by_id`),
  KEY `strapi_release_actions_updated_by_id_fk` (`updated_by_id`),
  CONSTRAINT `strapi_release_actions_created_by_id_fk` FOREIGN KEY (`created_by_id`) REFERENCES `admin_users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `strapi_release_actions_updated_by_id_fk` FOREIGN KEY (`updated_by_id`) REFERENCES `admin_users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `strapi_release_actions`
--

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

--
-- Table structure for table `strapi_release_actions_release_lnk`
--

DROP TABLE IF EXISTS `strapi_release_actions_release_lnk`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `strapi_release_actions_release_lnk` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `release_action_id` int unsigned DEFAULT NULL,
  `release_id` int unsigned DEFAULT NULL,
  `release_action_ord` double unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `strapi_release_actions_release_lnk_uq` (`release_action_id`,`release_id`),
  KEY `strapi_release_actions_release_lnk_fk` (`release_action_id`),
  KEY `strapi_release_actions_release_lnk_ifk` (`release_id`),
  KEY `strapi_release_actions_release_lnk_oifk` (`release_action_ord`),
  CONSTRAINT `strapi_release_actions_release_lnk_fk` FOREIGN KEY (`release_action_id`) REFERENCES `strapi_release_actions` (`id`) ON DELETE CASCADE,
  CONSTRAINT `strapi_release_actions_release_lnk_ifk` FOREIGN KEY (`release_id`) REFERENCES `strapi_releases` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `strapi_release_actions_release_lnk`
--

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

--
-- Table structure for table `strapi_releases`
--

DROP TABLE IF EXISTS `strapi_releases`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `strapi_releases` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `document_id` varchar(255) DEFAULT NULL,
  `name` varchar(255) DEFAULT NULL,
  `released_at` datetime(6) DEFAULT NULL,
  `scheduled_at` datetime(6) DEFAULT NULL,
  `timezone` varchar(255) DEFAULT NULL,
  `status` varchar(255) DEFAULT NULL,
  `created_at` datetime(6) DEFAULT NULL,
  `updated_at` datetime(6) DEFAULT NULL,
  `published_at` datetime(6) DEFAULT NULL,
  `created_by_id` int unsigned DEFAULT NULL,
  `updated_by_id` int unsigned DEFAULT NULL,
  `locale` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `strapi_releases_documents_idx` (`document_id`,`locale`,`published_at`),
  KEY `strapi_releases_created_by_id_fk` (`created_by_id`),
  KEY `strapi_releases_updated_by_id_fk` (`updated_by_id`),
  CONSTRAINT `strapi_releases_created_by_id_fk` FOREIGN KEY (`created_by_id`) REFERENCES `admin_users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `strapi_releases_updated_by_id_fk` FOREIGN KEY (`updated_by_id`) REFERENCES `admin_users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `strapi_releases`
--

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

--
-- Table structure for table `strapi_transfer_token_permissions`
--

DROP TABLE IF EXISTS `strapi_transfer_token_permissions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `strapi_transfer_token_permissions` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `document_id` varchar(255) DEFAULT NULL,
  `action` varchar(255) DEFAULT NULL,
  `created_at` datetime(6) DEFAULT NULL,
  `updated_at` datetime(6) DEFAULT NULL,
  `published_at` datetime(6) DEFAULT NULL,
  `created_by_id` int unsigned DEFAULT NULL,
  `updated_by_id` int unsigned DEFAULT NULL,
  `locale` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `strapi_transfer_token_permissions_documents_idx` (`document_id`,`locale`,`published_at`),
  KEY `strapi_transfer_token_permissions_created_by_id_fk` (`created_by_id`),
  KEY `strapi_transfer_token_permissions_updated_by_id_fk` (`updated_by_id`),
  CONSTRAINT `strapi_transfer_token_permissions_created_by_id_fk` FOREIGN KEY (`created_by_id`) REFERENCES `admin_users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `strapi_transfer_token_permissions_updated_by_id_fk` FOREIGN KEY (`updated_by_id`) REFERENCES `admin_users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `strapi_transfer_token_permissions`
--

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

--
-- Table structure for table `strapi_transfer_token_permissions_token_lnk`
--

DROP TABLE IF EXISTS `strapi_transfer_token_permissions_token_lnk`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `strapi_transfer_token_permissions_token_lnk` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `transfer_token_permission_id` int unsigned DEFAULT NULL,
  `transfer_token_id` int unsigned DEFAULT NULL,
  `transfer_token_permission_ord` double unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `strapi_transfer_token_permissions_token_lnk_uq` (`transfer_token_permission_id`,`transfer_token_id`),
  KEY `strapi_transfer_token_permissions_token_lnk_fk` (`transfer_token_permission_id`),
  KEY `strapi_transfer_token_permissions_token_lnk_ifk` (`transfer_token_id`),
  KEY `strapi_transfer_token_permissions_token_lnk_oifk` (`transfer_token_permission_ord`),
  CONSTRAINT `strapi_transfer_token_permissions_token_lnk_fk` FOREIGN KEY (`transfer_token_permission_id`) REFERENCES `strapi_transfer_token_permissions` (`id`) ON DELETE CASCADE,
  CONSTRAINT `strapi_transfer_token_permissions_token_lnk_ifk` FOREIGN KEY (`transfer_token_id`) REFERENCES `strapi_transfer_tokens` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `strapi_transfer_token_permissions_token_lnk`
--

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

--
-- Table structure for table `strapi_transfer_tokens`
--

DROP TABLE IF EXISTS `strapi_transfer_tokens`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `strapi_transfer_tokens` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `document_id` varchar(255) DEFAULT NULL,
  `name` varchar(255) DEFAULT NULL,
  `description` varchar(255) DEFAULT NULL,
  `access_key` varchar(255) DEFAULT NULL,
  `last_used_at` datetime(6) DEFAULT NULL,
  `expires_at` datetime(6) DEFAULT NULL,
  `lifespan` bigint DEFAULT NULL,
  `created_at` datetime(6) DEFAULT NULL,
  `updated_at` datetime(6) DEFAULT NULL,
  `published_at` datetime(6) DEFAULT NULL,
  `created_by_id` int unsigned DEFAULT NULL,
  `updated_by_id` int unsigned DEFAULT NULL,
  `locale` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `strapi_transfer_tokens_documents_idx` (`document_id`,`locale`,`published_at`),
  KEY `strapi_transfer_tokens_created_by_id_fk` (`created_by_id`),
  KEY `strapi_transfer_tokens_updated_by_id_fk` (`updated_by_id`),
  CONSTRAINT `strapi_transfer_tokens_created_by_id_fk` FOREIGN KEY (`created_by_id`) REFERENCES `admin_users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `strapi_transfer_tokens_updated_by_id_fk` FOREIGN KEY (`updated_by_id`) REFERENCES `admin_users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `strapi_transfer_tokens`
--

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

--
-- Table structure for table `strapi_webhooks`
--

DROP TABLE IF EXISTS `strapi_webhooks`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `strapi_webhooks` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `url` longtext,
  `headers` json DEFAULT NULL,
  `events` json DEFAULT NULL,
  `enabled` tinyint(1) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `strapi_webhooks`
--

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

--
-- Table structure for table `strapi_workflows`
--

DROP TABLE IF EXISTS `strapi_workflows`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `strapi_workflows` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `document_id` varchar(255) DEFAULT NULL,
  `name` varchar(255) DEFAULT NULL,
  `content_types` json DEFAULT NULL,
  `created_at` datetime(6) DEFAULT NULL,
  `updated_at` datetime(6) DEFAULT NULL,
  `published_at` datetime(6) DEFAULT NULL,
  `created_by_id` int unsigned DEFAULT NULL,
  `updated_by_id` int unsigned DEFAULT NULL,
  `locale` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `strapi_workflows_documents_idx` (`document_id`,`locale`,`published_at`),
  KEY `strapi_workflows_created_by_id_fk` (`created_by_id`),
  KEY `strapi_workflows_updated_by_id_fk` (`updated_by_id`),
  CONSTRAINT `strapi_workflows_created_by_id_fk` FOREIGN KEY (`created_by_id`) REFERENCES `admin_users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `strapi_workflows_updated_by_id_fk` FOREIGN KEY (`updated_by_id`) REFERENCES `admin_users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `strapi_workflows`
--

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

--
-- Table structure for table `strapi_workflows_stage_required_to_publish_lnk`
--

DROP TABLE IF EXISTS `strapi_workflows_stage_required_to_publish_lnk`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `strapi_workflows_stage_required_to_publish_lnk` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `workflow_id` int unsigned DEFAULT NULL,
  `workflow_stage_id` int unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `strapi_workflows_stage_required_to_publish_lnk_uq` (`workflow_id`,`workflow_stage_id`),
  KEY `strapi_workflows_stage_required_to_publish_lnk_fk` (`workflow_id`),
  KEY `strapi_workflows_stage_required_to_publish_lnk_ifk` (`workflow_stage_id`),
  CONSTRAINT `strapi_workflows_stage_required_to_publish_lnk_fk` FOREIGN KEY (`workflow_id`) REFERENCES `strapi_workflows` (`id`) ON DELETE CASCADE,
  CONSTRAINT `strapi_workflows_stage_required_to_publish_lnk_ifk` FOREIGN KEY (`workflow_stage_id`) REFERENCES `strapi_workflows_stages` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `strapi_workflows_stage_required_to_publish_lnk`
--

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

--
-- Table structure for table `strapi_workflows_stages`
--

DROP TABLE IF EXISTS `strapi_workflows_stages`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `strapi_workflows_stages` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `document_id` varchar(255) DEFAULT NULL,
  `name` varchar(255) DEFAULT NULL,
  `color` varchar(255) DEFAULT NULL,
  `created_at` datetime(6) DEFAULT NULL,
  `updated_at` datetime(6) DEFAULT NULL,
  `published_at` datetime(6) DEFAULT NULL,
  `created_by_id` int unsigned DEFAULT NULL,
  `updated_by_id` int unsigned DEFAULT NULL,
  `locale` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `strapi_workflows_stages_documents_idx` (`document_id`,`locale`,`published_at`),
  KEY `strapi_workflows_stages_created_by_id_fk` (`created_by_id`),
  KEY `strapi_workflows_stages_updated_by_id_fk` (`updated_by_id`),
  CONSTRAINT `strapi_workflows_stages_created_by_id_fk` FOREIGN KEY (`created_by_id`) REFERENCES `admin_users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `strapi_workflows_stages_updated_by_id_fk` FOREIGN KEY (`updated_by_id`) REFERENCES `admin_users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `strapi_workflows_stages`
--

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

--
-- Table structure for table `strapi_workflows_stages_permissions_lnk`
--

DROP TABLE IF EXISTS `strapi_workflows_stages_permissions_lnk`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `strapi_workflows_stages_permissions_lnk` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `workflow_stage_id` int unsigned DEFAULT NULL,
  `permission_id` int unsigned DEFAULT NULL,
  `permission_ord` double unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `strapi_workflows_stages_permissions_lnk_uq` (`workflow_stage_id`,`permission_id`),
  KEY `strapi_workflows_stages_permissions_lnk_fk` (`workflow_stage_id`),
  KEY `strapi_workflows_stages_permissions_lnk_ifk` (`permission_id`),
  KEY `strapi_workflows_stages_permissions_lnk_ofk` (`permission_ord`),
  CONSTRAINT `strapi_workflows_stages_permissions_lnk_fk` FOREIGN KEY (`workflow_stage_id`) REFERENCES `strapi_workflows_stages` (`id`) ON DELETE CASCADE,
  CONSTRAINT `strapi_workflows_stages_permissions_lnk_ifk` FOREIGN KEY (`permission_id`) REFERENCES `admin_permissions` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `strapi_workflows_stages_permissions_lnk`
--

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

--
-- Table structure for table `strapi_workflows_stages_workflow_lnk`
--

DROP TABLE IF EXISTS `strapi_workflows_stages_workflow_lnk`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `strapi_workflows_stages_workflow_lnk` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `workflow_stage_id` int unsigned DEFAULT NULL,
  `workflow_id` int unsigned DEFAULT NULL,
  `workflow_stage_ord` double unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `strapi_workflows_stages_workflow_lnk_uq` (`workflow_stage_id`,`workflow_id`),
  KEY `strapi_workflows_stages_workflow_lnk_fk` (`workflow_stage_id`),
  KEY `strapi_workflows_stages_workflow_lnk_ifk` (`workflow_id`),
  KEY `strapi_workflows_stages_workflow_lnk_oifk` (`workflow_stage_ord`),
  CONSTRAINT `strapi_workflows_stages_workflow_lnk_fk` FOREIGN KEY (`workflow_stage_id`) REFERENCES `strapi_workflows_stages` (`id`) ON DELETE CASCADE,
  CONSTRAINT `strapi_workflows_stages_workflow_lnk_ifk` FOREIGN KEY (`workflow_id`) REFERENCES `strapi_workflows` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `strapi_workflows_stages_workflow_lnk`
--

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

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

DROP TABLE IF EXISTS `terms_conditions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `terms_conditions` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `document_id` varchar(255) DEFAULT NULL,
  `title` varchar(255) DEFAULT NULL,
  `description` longtext,
  `created_at` datetime(6) DEFAULT NULL,
  `updated_at` datetime(6) DEFAULT NULL,
  `published_at` datetime(6) DEFAULT NULL,
  `created_by_id` int unsigned DEFAULT NULL,
  `updated_by_id` int unsigned DEFAULT NULL,
  `locale` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `terms_conditions_documents_idx` (`document_id`,`locale`,`published_at`),
  KEY `terms_conditions_created_by_id_fk` (`created_by_id`),
  KEY `terms_conditions_updated_by_id_fk` (`updated_by_id`),
  CONSTRAINT `terms_conditions_created_by_id_fk` FOREIGN KEY (`created_by_id`) REFERENCES `admin_users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `terms_conditions_updated_by_id_fk` FOREIGN KEY (`updated_by_id`) REFERENCES `admin_users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

LOCK TABLES `terms_conditions` WRITE;
/*!40000 ALTER TABLE `terms_conditions` DISABLE KEYS */;
INSERT INTO `terms_conditions` VALUES (1,'f3yx822xr1iwbwu6vutlvrvy','Terms & Conditions  ','<p>CME website of ALFAHIM offers the present website to its customers. By using it, the user agrees to abide by all the Terms and Conditions published on this page or on any other part of the website.</p><p>Terms and Conditions are permanently subject to change or modification, without previous notice, knowing that the entire website is under the regulations of the United Arab Emirates.</p><p>Some pages of the website related to services, features and benefits, and offers are subject to their respective Terms and Conditions, upon which the user should agree. However, in the case of contradiction between them and the general Terms and Conditions, the one relevant to services, features and benefits, and offers take effect.</p>','2026-04-02 05:27:55.382000','2026-04-07 12:11:58.021000',NULL,1,1,'en'),(4,'f3yx822xr1iwbwu6vutlvrvy','Terms & Conditions  ','<p>CME website of ALFAHIM offers the present website to its customers. By using it, the user agrees to abide by all the Terms and Conditions published on this page or on any other part of the website.</p><p>Terms and Conditions are permanently subject to change or modification, without previous notice, knowing that the entire website is under the regulations of the United Arab Emirates.</p><p>Some pages of the website related to services, features and benefits, and offers are subject to their respective Terms and Conditions, upon which the user should agree. However, in the case of contradiction between them and the general Terms and Conditions, the one relevant to services, features and benefits, and offers take effect.</p>','2026-04-02 05:27:55.382000','2026-04-07 12:11:58.021000','2026-04-07 12:11:58.541000',1,1,'en');
/*!40000 ALTER TABLE `terms_conditions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `terms_conditions_cmps`
--

DROP TABLE IF EXISTS `terms_conditions_cmps`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `terms_conditions_cmps` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `entity_id` int unsigned DEFAULT NULL,
  `cmp_id` int unsigned DEFAULT NULL,
  `component_type` varchar(255) DEFAULT NULL,
  `field` varchar(255) DEFAULT NULL,
  `order` double unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `terms_conditions_uq` (`entity_id`,`cmp_id`,`field`,`component_type`),
  KEY `terms_conditions_field_idx` (`field`),
  KEY `terms_conditions_component_type_idx` (`component_type`),
  KEY `terms_conditions_entity_fk` (`entity_id`),
  CONSTRAINT `terms_conditions_entity_fk` FOREIGN KEY (`entity_id`) REFERENCES `terms_conditions` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `terms_conditions_cmps`
--

LOCK TABLES `terms_conditions_cmps` WRITE;
/*!40000 ALTER TABLE `terms_conditions_cmps` DISABLE KEYS */;
INSERT INTO `terms_conditions_cmps` VALUES (1,1,166,'common.seo','seo',NULL),(4,4,173,'common.seo','seo',NULL);
/*!40000 ALTER TABLE `terms_conditions_cmps` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `types`
--

DROP TABLE IF EXISTS `types`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `types` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `document_id` varchar(255) DEFAULT NULL,
  `title` varchar(255) DEFAULT NULL,
  `key` varchar(255) DEFAULT NULL,
  `created_at` datetime(6) DEFAULT NULL,
  `updated_at` datetime(6) DEFAULT NULL,
  `published_at` datetime(6) DEFAULT NULL,
  `created_by_id` int unsigned DEFAULT NULL,
  `updated_by_id` int unsigned DEFAULT NULL,
  `locale` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `types_documents_idx` (`document_id`,`locale`,`published_at`),
  KEY `types_created_by_id_fk` (`created_by_id`),
  KEY `types_updated_by_id_fk` (`updated_by_id`),
  CONSTRAINT `types_created_by_id_fk` FOREIGN KEY (`created_by_id`) REFERENCES `admin_users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `types_updated_by_id_fk` FOREIGN KEY (`updated_by_id`) REFERENCES `admin_users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `types`
--

LOCK TABLES `types` WRITE;
/*!40000 ALTER TABLE `types` DISABLE KEYS */;
INSERT INTO `types` VALUES (1,'rdac8rq5qd6mzpkq02eqnz2i','powertools','pt','2025-12-12 08:50:48.707000','2026-02-02 11:48:38.512000',NULL,1,1,'en'),(3,'mcln7kjjcrxfjrj61960s5ip','Automotive Aftermarket','automotive-aftermarket','2026-01-20 06:39:24.695000','2026-01-20 06:39:24.695000',NULL,1,1,'en'),(4,'mcln7kjjcrxfjrj61960s5ip','Automotive Aftermarket','automotive-aftermarket','2026-01-20 06:39:24.695000','2026-01-20 06:39:24.695000','2026-01-20 06:39:24.891000',1,1,'en'),(5,'ywoosv1ckyc50ambgl8zwfnl','Home','home','2026-01-21 06:58:21.426000','2026-01-21 06:58:21.426000',NULL,1,1,'en'),(6,'ywoosv1ckyc50ambgl8zwfnl','Home','home','2026-01-21 06:58:21.426000','2026-01-21 06:58:21.426000','2026-01-21 06:58:21.622000',1,1,'en'),(7,'u3hxin2stnw4592oo3jbkvma','Tyre','tyre','2026-01-21 08:48:00.670000','2026-01-21 08:48:00.670000',NULL,1,1,'en'),(8,'u3hxin2stnw4592oo3jbkvma','Tyre','tyre','2026-01-21 08:48:00.670000','2026-01-21 08:48:00.670000','2026-01-21 08:48:00.879000',1,1,'en'),(9,'rdac8rq5qd6mzpkq02eqnz2i','powertools','pt','2025-12-12 08:50:48.707000','2026-02-02 11:48:38.512000','2026-02-02 11:48:38.776000',1,1,'en');
/*!40000 ALTER TABLE `types` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tyre_categories`
--

DROP TABLE IF EXISTS `tyre_categories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tyre_categories` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `document_id` varchar(255) DEFAULT NULL,
  `title` varchar(255) DEFAULT NULL,
  `slug` varchar(255) DEFAULT NULL,
  `created_at` datetime(6) DEFAULT NULL,
  `updated_at` datetime(6) DEFAULT NULL,
  `published_at` datetime(6) DEFAULT NULL,
  `created_by_id` int unsigned DEFAULT NULL,
  `updated_by_id` int unsigned DEFAULT NULL,
  `locale` varchar(255) DEFAULT NULL,
  `display_order` int DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `tyre_categories_documents_idx` (`document_id`,`locale`,`published_at`),
  KEY `tyre_categories_created_by_id_fk` (`created_by_id`),
  KEY `tyre_categories_updated_by_id_fk` (`updated_by_id`),
  CONSTRAINT `tyre_categories_created_by_id_fk` FOREIGN KEY (`created_by_id`) REFERENCES `admin_users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `tyre_categories_updated_by_id_fk` FOREIGN KEY (`updated_by_id`) REFERENCES `admin_users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=71 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tyre_categories`
--

LOCK TABLES `tyre_categories` WRITE;
/*!40000 ALTER TABLE `tyre_categories` DISABLE KEYS */;
INSERT INTO `tyre_categories` VALUES (1,'yc4o3bpsvxvlbi6a3si9e8sf','Passenger Vehicles ','tyres/search?category=car','2026-01-20 07:32:36.374000','2026-03-09 07:10:02.666000',NULL,1,1,'en',1),(3,'ny6032h3hvyo8vtvlkkuo4ud','Commercial Light Vehicle ','tyres/search?category=light-truck','2026-01-20 07:32:58.797000','2026-03-09 07:10:27.473000',NULL,1,1,'en',3),(5,'msltv7ngvsvuh6mbulmob5k0','SUV & 4*4 ','tyres/search?category=4x4','2026-01-20 18:19:56.345000','2026-03-09 07:10:16.627000',NULL,1,1,'en',2),(13,'v6ihmdhykp52f4d9xds0qs99','Truck & Bus ','tyres/search?category=light-truck&page=category=light-truck','2026-01-20 18:27:14.613000','2026-03-09 07:10:44.801000',NULL,1,1,'en',4),(15,'gmw4kge9x1ybwjejvghp7v4r','Industrial ',NULL,'2026-01-21 05:24:43.398000','2026-03-09 07:10:58.665000',NULL,1,1,'en',5),(19,'bncvfwtso165v2f79io9g8pi','Accessories(Tubes, Flap, Oring, Tyran)',NULL,'2026-01-21 05:26:54.607000','2026-03-09 07:13:49.705000',NULL,1,1,'en',7),(22,'pv1p1jqwepj492pweyuuny5p','Retread',NULL,'2026-01-22 06:35:52.100000','2026-03-09 07:11:11.046000',NULL,1,1,'en',6),(62,'yc4o3bpsvxvlbi6a3si9e8sf','Passenger Vehicles ','tyres/search?category=car','2026-01-20 07:32:36.374000','2026-03-09 07:10:02.666000','2026-03-09 07:10:03.096000',1,1,'en',1),(63,'msltv7ngvsvuh6mbulmob5k0','SUV & 4*4 ','tyres/search?category=4x4','2026-01-20 18:19:56.345000','2026-03-09 07:10:16.627000','2026-03-09 07:10:17.000000',1,1,'en',2),(64,'ny6032h3hvyo8vtvlkkuo4ud','Commercial Light Vehicle ','tyres/search?category=light-truck','2026-01-20 07:32:58.797000','2026-03-09 07:10:27.473000','2026-03-09 07:10:27.774000',1,1,'en',3),(65,'v6ihmdhykp52f4d9xds0qs99','Truck & Bus ','tyres/search?category=light-truck&page=category=light-truck','2026-01-20 18:27:14.613000','2026-03-09 07:10:44.801000','2026-03-09 07:10:45.105000',1,1,'en',4),(66,'gmw4kge9x1ybwjejvghp7v4r','Industrial ',NULL,'2026-01-21 05:24:43.398000','2026-03-09 07:10:58.665000','2026-03-09 07:10:58.964000',1,1,'en',5),(67,'pv1p1jqwepj492pweyuuny5p','Retread',NULL,'2026-01-22 06:35:52.100000','2026-03-09 07:11:11.046000','2026-03-09 07:11:11.349000',1,1,'en',6),(70,'bncvfwtso165v2f79io9g8pi','Accessories(Tubes, Flap, Oring, Tyran)',NULL,'2026-01-21 05:26:54.607000','2026-03-09 07:13:49.705000','2026-03-09 07:13:50.016000',1,1,'en',7);
/*!40000 ALTER TABLE `tyre_categories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tyre_landings`
--

DROP TABLE IF EXISTS `tyre_landings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tyre_landings` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `document_id` varchar(255) DEFAULT NULL,
  `title` varchar(255) DEFAULT NULL,
  `created_at` datetime(6) DEFAULT NULL,
  `updated_at` datetime(6) DEFAULT NULL,
  `published_at` datetime(6) DEFAULT NULL,
  `created_by_id` int unsigned DEFAULT NULL,
  `updated_by_id` int unsigned DEFAULT NULL,
  `locale` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `tyre_landings_documents_idx` (`document_id`,`locale`,`published_at`),
  KEY `tyre_landings_created_by_id_fk` (`created_by_id`),
  KEY `tyre_landings_updated_by_id_fk` (`updated_by_id`),
  CONSTRAINT `tyre_landings_created_by_id_fk` FOREIGN KEY (`created_by_id`) REFERENCES `admin_users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `tyre_landings_updated_by_id_fk` FOREIGN KEY (`updated_by_id`) REFERENCES `admin_users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tyre_landings`
--

LOCK TABLES `tyre_landings` WRITE;
/*!40000 ALTER TABLE `tyre_landings` DISABLE KEYS */;
INSERT INTO `tyre_landings` VALUES (1,'dm6kizg5rs0jm3mefuocbrgx','Tyre','2026-01-20 07:15:01.752000','2026-04-06 13:50:10.520000',NULL,1,1,'en'),(13,'dm6kizg5rs0jm3mefuocbrgx','Tyre','2026-01-20 07:15:01.752000','2026-04-06 13:50:10.520000','2026-04-06 13:50:12.297000',1,1,'en');
/*!40000 ALTER TABLE `tyre_landings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tyre_landings_cmps`
--

DROP TABLE IF EXISTS `tyre_landings_cmps`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tyre_landings_cmps` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `entity_id` int unsigned DEFAULT NULL,
  `cmp_id` int unsigned DEFAULT NULL,
  `component_type` varchar(255) DEFAULT NULL,
  `field` varchar(255) DEFAULT NULL,
  `order` double unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `tyre_landings_uq` (`entity_id`,`cmp_id`,`field`,`component_type`),
  KEY `tyre_landings_field_idx` (`field`),
  KEY `tyre_landings_component_type_idx` (`component_type`),
  KEY `tyre_landings_entity_fk` (`entity_id`),
  CONSTRAINT `tyre_landings_entity_fk` FOREIGN KEY (`entity_id`) REFERENCES `tyre_landings` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=129 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tyre_landings_cmps`
--

LOCK TABLES `tyre_landings_cmps` WRITE;
/*!40000 ALTER TABLE `tyre_landings_cmps` DISABLE KEYS */;
INSERT INTO `tyre_landings_cmps` VALUES (1,1,109,'common.banner','banner',1),(2,1,1,'common.title-desc','bookService',7),(3,1,2,'common.title-desc','mobileService',9),(37,1,74,'common.seo','seo',4),(48,1,88,'home.content-section','socialFeeds',1),(67,1,288,'common.banner','banner',3),(69,1,290,'common.banner','banner',2),(70,1,291,'common.banner','banner',4),(71,1,292,'common.banner','banner',5),(120,13,313,'common.banner','banner',1),(121,13,314,'common.banner','banner',2),(122,13,315,'common.banner','banner',3),(123,13,316,'common.banner','banner',4),(124,13,317,'common.banner','banner',5),(125,13,401,'common.title-desc','bookService',NULL),(126,13,402,'common.title-desc','mobileService',NULL),(127,13,172,'common.seo','seo',NULL),(128,13,112,'home.content-section','socialFeeds',NULL);
/*!40000 ALTER TABLE `tyre_landings_cmps` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tyre_landings_location_types_lnk`
--

DROP TABLE IF EXISTS `tyre_landings_location_types_lnk`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tyre_landings_location_types_lnk` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `tyre_landing_id` int unsigned DEFAULT NULL,
  `branch_location_id` int unsigned DEFAULT NULL,
  `branch_location_ord` double unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `tyre_landings_location_types_lnk_uq` (`tyre_landing_id`,`branch_location_id`),
  KEY `tyre_landings_location_types_lnk_fk` (`tyre_landing_id`),
  KEY `tyre_landings_location_types_lnk_ifk` (`branch_location_id`),
  KEY `tyre_landings_location_types_lnk_ofk` (`branch_location_ord`),
  CONSTRAINT `tyre_landings_location_types_lnk_fk` FOREIGN KEY (`tyre_landing_id`) REFERENCES `tyre_landings` (`id`) ON DELETE CASCADE,
  CONSTRAINT `tyre_landings_location_types_lnk_ifk` FOREIGN KEY (`branch_location_id`) REFERENCES `branch_locations` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tyre_landings_location_types_lnk`
--

LOCK TABLES `tyre_landings_location_types_lnk` WRITE;
/*!40000 ALTER TABLE `tyre_landings_location_types_lnk` DISABLE KEYS */;
INSERT INTO `tyre_landings_location_types_lnk` VALUES (1,1,15,1),(11,13,16,1);
/*!40000 ALTER TABLE `tyre_landings_location_types_lnk` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tyre_services`
--

DROP TABLE IF EXISTS `tyre_services`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tyre_services` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `document_id` varchar(255) DEFAULT NULL,
  `title` varchar(255) DEFAULT NULL,
  `slug` varchar(255) DEFAULT NULL,
  `created_at` datetime(6) DEFAULT NULL,
  `updated_at` datetime(6) DEFAULT NULL,
  `published_at` datetime(6) DEFAULT NULL,
  `created_by_id` int unsigned DEFAULT NULL,
  `updated_by_id` int unsigned DEFAULT NULL,
  `locale` varchar(255) DEFAULT NULL,
  `display_order` int DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `tyre_services_documents_idx` (`document_id`,`locale`,`published_at`),
  KEY `tyre_services_created_by_id_fk` (`created_by_id`),
  KEY `tyre_services_updated_by_id_fk` (`updated_by_id`),
  CONSTRAINT `tyre_services_created_by_id_fk` FOREIGN KEY (`created_by_id`) REFERENCES `admin_users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `tyre_services_updated_by_id_fk` FOREIGN KEY (`updated_by_id`) REFERENCES `admin_users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=55 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tyre_services`
--

LOCK TABLES `tyre_services` WRITE;
/*!40000 ALTER TABLE `tyre_services` DISABLE KEYS */;
INSERT INTO `tyre_services` VALUES (1,'d55pjrpd00flr77mhb28xl1q','Tyre Repair ','services/tyre/tyre-repair','2026-01-20 07:33:55.742000','2026-03-12 08:22:52.335000',NULL,1,1,'en',1),(3,'ifflgu563yfa7wo6wki5tf94','Brake Pads ','services/tyre/brake-pads','2026-01-20 07:34:15.485000','2026-03-12 08:21:27.459000',NULL,1,1,'en',2),(7,'juwcwf7x05dxoa8q7wry09mn','Oil Change ','services/tyre/oil-change','2026-01-20 18:29:23.868000','2026-03-12 08:22:10.481000',NULL,1,1,'en',3),(9,'p34ims56dw7c50pfva0063zh','Tyre Rotation ','services/tyre/tyre-rotation','2026-01-20 18:30:03.597000','2026-03-19 04:14:28.637000',NULL,1,1,'en',4),(11,'tz91nno9hp3artzm6dd40byz','Wheel Alignment ','services/tyre/wheel-alignment','2026-01-20 18:30:54.632000','2026-03-12 08:23:37.345000',NULL,1,1,'en',5),(13,'flllgytra3iqgej3y8oj2kce','Tyre Fitting',NULL,'2026-01-22 06:38:56.343000','2026-03-09 07:36:40.711000',NULL,1,1,'en',6),(36,'ifflgu563yfa7wo6wki5tf94','Brake Pads ','services/tyre/brake-pads','2026-01-20 07:34:15.485000','2026-03-12 08:21:27.459000','2026-03-12 08:21:27.803000',1,1,'en',2),(37,'juwcwf7x05dxoa8q7wry09mn','Oil Change ','services/tyre/oil-change','2026-01-20 18:29:23.868000','2026-03-12 08:22:10.481000','2026-03-12 08:22:10.792000',1,1,'en',3),(38,'d55pjrpd00flr77mhb28xl1q','Tyre Repair ','services/tyre/tyre-repair','2026-01-20 07:33:55.742000','2026-03-12 08:22:52.335000','2026-03-12 08:22:52.650000',1,1,'en',1),(40,'tz91nno9hp3artzm6dd40byz','Wheel Alignment ','services/tyre/wheel-alignment','2026-01-20 18:30:54.632000','2026-03-12 08:23:37.345000','2026-03-12 08:23:37.673000',1,1,'en',5),(41,'p9z7b3eju30t0jfm23hsn9rm','Tyre Change and Balancing / Tyre Replacement','services/tyre/tyre-change-balancing-replacement','2026-03-18 11:22:15.179000','2026-03-18 11:27:01.044000',NULL,1,1,'en',7),(44,'shekhegt054et5jy53i7yl4v','Nitrogen Inflation','services/tyre/nitrogen-inflation','2026-03-18 11:23:01.487000','2026-03-18 11:28:02.247000',NULL,1,1,'en',8),(46,'s21na7xe2868i3r0n9l60n53','AC Maintenance','services/tyre/ac-maintenance','2026-03-18 11:23:29.037000','2026-03-18 11:27:19.674000',NULL,1,1,'en',9),(48,'p9z7b3eju30t0jfm23hsn9rm','Tyre Change and Balancing / Tyre Replacement','services/tyre/tyre-change-balancing-replacement','2026-03-18 11:22:15.179000','2026-03-18 11:27:01.044000','2026-03-18 11:27:01.424000',1,1,'en',7),(49,'s21na7xe2868i3r0n9l60n53','AC Maintenance','services/tyre/ac-maintenance','2026-03-18 11:23:29.037000','2026-03-18 11:27:19.674000','2026-03-18 11:27:20.059000',1,1,'en',9),(50,'shekhegt054et5jy53i7yl4v','Nitrogen Inflation','services/tyre/nitrogen-inflation','2026-03-18 11:23:01.487000','2026-03-18 11:28:02.247000','2026-03-18 11:28:02.570000',1,1,'en',8),(51,'p34ims56dw7c50pfva0063zh','Tyre Rotation ','services/tyre/tyre-rotation','2026-01-20 18:30:03.597000','2026-03-19 04:14:28.637000','2026-03-19 04:14:29.011000',1,1,'en',4),(52,'veosaeqilse0qqxvh34gv2no','Car Battery Replacement ','services/tyre/battery-replacement','2026-03-30 15:17:57.496000','2026-03-30 15:32:45.004000',NULL,1,1,'en',11),(54,'veosaeqilse0qqxvh34gv2no','Car Battery Replacement ','services/tyre/battery-replacement','2026-03-30 15:17:57.496000','2026-03-30 15:32:45.004000','2026-03-30 15:32:45.322000',1,1,'en',11);
/*!40000 ALTER TABLE `tyre_services` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `up_permissions`
--

DROP TABLE IF EXISTS `up_permissions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `up_permissions` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `document_id` varchar(255) DEFAULT NULL,
  `action` varchar(255) DEFAULT NULL,
  `created_at` datetime(6) DEFAULT NULL,
  `updated_at` datetime(6) DEFAULT NULL,
  `published_at` datetime(6) DEFAULT NULL,
  `created_by_id` int unsigned DEFAULT NULL,
  `updated_by_id` int unsigned DEFAULT NULL,
  `locale` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `up_permissions_documents_idx` (`document_id`,`locale`,`published_at`),
  KEY `up_permissions_created_by_id_fk` (`created_by_id`),
  KEY `up_permissions_updated_by_id_fk` (`updated_by_id`),
  CONSTRAINT `up_permissions_created_by_id_fk` FOREIGN KEY (`created_by_id`) REFERENCES `admin_users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `up_permissions_updated_by_id_fk` FOREIGN KEY (`updated_by_id`) REFERENCES `admin_users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=83 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `up_permissions`
--

LOCK TABLES `up_permissions` WRITE;
/*!40000 ALTER TABLE `up_permissions` DISABLE KEYS */;
INSERT INTO `up_permissions` VALUES (1,'iul0225wu9awt7kdxhgn8an2','plugin::users-permissions.user.me','2025-11-21 05:39:31.017000','2025-11-21 05:39:31.017000','2025-11-21 05:39:31.017000',NULL,NULL,NULL),(2,'yiyq4rp2fu57qiqpye0u0luq','plugin::users-permissions.auth.changePassword','2025-11-21 05:39:31.017000','2025-11-21 05:39:31.017000','2025-11-21 05:39:31.018000',NULL,NULL,NULL),(3,'s037pzmaj9kyusmoju345vpa','plugin::users-permissions.auth.callback','2025-11-21 05:39:31.143000','2025-11-21 05:39:31.143000','2025-11-21 05:39:31.144000',NULL,NULL,NULL),(4,'k4h79yziqk5uadtqz7zzptzi','plugin::users-permissions.auth.connect','2025-11-21 05:39:31.143000','2025-11-21 05:39:31.143000','2025-11-21 05:39:31.144000',NULL,NULL,NULL),(5,'w07eausa0tpt3vza2nxwlx72','plugin::users-permissions.auth.forgotPassword','2025-11-21 05:39:31.143000','2025-11-21 05:39:31.143000','2025-11-21 05:39:31.144000',NULL,NULL,NULL),(6,'ap4r1fnbnw2fgucxq5o0yejz','plugin::users-permissions.auth.resetPassword','2025-11-21 05:39:31.143000','2025-11-21 05:39:31.143000','2025-11-21 05:39:31.145000',NULL,NULL,NULL),(7,'w2zh8ubtbu8nxdxpgp6vldpr','plugin::users-permissions.auth.register','2025-11-21 05:39:31.143000','2025-11-21 05:39:31.143000','2025-11-21 05:39:31.145000',NULL,NULL,NULL),(8,'tgi8yyr0dvveiiwsxtn5jhpi','plugin::users-permissions.auth.emailConfirmation','2025-11-21 05:39:31.143000','2025-11-21 05:39:31.143000','2025-11-21 05:39:31.145000',NULL,NULL,NULL),(9,'snlqz7eqefd2xd0sjvzpc2df','plugin::users-permissions.auth.sendEmailConfirmation','2025-11-21 05:39:31.143000','2025-11-21 05:39:31.143000','2025-11-21 05:39:31.146000',NULL,NULL,NULL),(14,'drhqrt4t5801fh9n9wix5dvd','api::footer.footer.find','2025-11-22 05:41:23.557000','2025-11-22 05:41:23.557000','2025-11-22 05:41:23.560000',NULL,NULL,NULL),(15,'fqxh357hia9awidc3q21c7zv','api::header.header.find','2025-11-22 05:41:23.557000','2025-11-22 05:41:23.557000','2025-11-22 05:41:23.562000',NULL,NULL,NULL),(16,'a4fha1pyshq5gdmvy39dwo9j','api::home.home.find','2025-11-22 05:41:23.557000','2025-11-22 05:41:23.557000','2025-11-22 05:41:23.563000',NULL,NULL,NULL),(26,'brgaql1ct0beeksni5mktiu4','api::location.location.find','2025-11-27 06:26:54.684000','2025-11-27 06:26:54.684000','2025-11-27 06:26:54.685000',NULL,NULL,NULL),(29,'iqhmk9uquldmctwy4we1ey0b','api::about-us.about-us.find','2025-12-12 05:40:42.247000','2025-12-12 05:40:42.247000','2025-12-12 05:40:42.248000',NULL,NULL,NULL),(30,'cavd1mibm85b2470aog8klb5','api::branch.branch.find','2025-12-12 05:40:42.247000','2025-12-12 05:40:42.247000','2025-12-12 05:40:42.248000',NULL,NULL,NULL),(31,'ts1o0gdvn2adibx3g96wbxes','api::branch.branch.findOne','2025-12-12 05:40:42.247000','2025-12-12 05:40:42.247000','2025-12-12 05:40:42.248000',NULL,NULL,NULL),(32,'ptz1xszmfs3t7inomci2n4pp','api::branch-location.branch-location.find','2025-12-12 05:40:42.247000','2025-12-12 05:40:42.247000','2025-12-12 05:40:42.249000',NULL,NULL,NULL),(33,'emxx7vbkgb4vjvtjz1mcobf0','api::branch-location.branch-location.findOne','2025-12-12 05:40:42.247000','2025-12-12 05:40:42.247000','2025-12-12 05:40:42.249000',NULL,NULL,NULL),(34,'d8udtrhanpi7cm06ae4dw60e','api::brand.brand.find','2025-12-12 05:40:42.247000','2025-12-12 05:40:42.247000','2025-12-12 05:40:42.249000',NULL,NULL,NULL),(35,'te0re7unmrney7dc9sw90nm0','api::brand.brand.findOne','2025-12-12 05:40:42.247000','2025-12-12 05:40:42.247000','2025-12-12 05:40:42.249000',NULL,NULL,NULL),(36,'fq32vuy0zz1pok49gu063wld','api::business-stream.business-stream.find','2025-12-12 05:40:42.247000','2025-12-12 05:40:42.247000','2025-12-12 05:40:42.249000',NULL,NULL,NULL),(37,'hnmaqzwo9yopjzj43amohvj5','api::business-stream.business-stream.findOne','2025-12-12 05:40:42.247000','2025-12-12 05:40:42.247000','2025-12-12 05:40:42.249000',NULL,NULL,NULL),(38,'zinyjvd8n1y6ggzxc9ovpaxm','api::contact-enquiry.contact-enquiry.find','2025-12-12 05:40:42.248000','2025-12-12 05:40:42.248000','2025-12-12 05:40:42.250000',NULL,NULL,NULL),(39,'ajuneis35dvkgtzbsyqq657l','api::contact-enquiry.contact-enquiry.findOne','2025-12-12 05:40:42.248000','2025-12-12 05:40:42.248000','2025-12-12 05:40:42.250000',NULL,NULL,NULL),(40,'h3n4znednqvj691tbeyzz9a5','api::news.news.find','2025-12-12 05:40:42.248000','2025-12-12 05:40:42.248000','2025-12-12 05:40:42.250000',NULL,NULL,NULL),(41,'wwgdzsv5trs8dxvnnym0iqse','api::news.news.findOne','2025-12-12 05:40:42.248000','2025-12-12 05:40:42.248000','2025-12-12 05:40:42.250000',NULL,NULL,NULL),(42,'wuomg5ug32ccctxf5sci5nij','api::news-landing.news-landing.find','2025-12-12 05:40:42.248000','2025-12-12 05:40:42.248000','2025-12-12 05:40:42.250000',NULL,NULL,NULL),(45,'iudybhzfeb8nux1z32hpagox','api::service-category.service-category.find','2025-12-12 05:40:42.248000','2025-12-12 05:40:42.248000','2025-12-12 05:40:42.251000',NULL,NULL,NULL),(46,'qttlr8e6k4dy8kevwkivqa9i','api::service-category.service-category.findOne','2025-12-12 05:40:42.248000','2025-12-12 05:40:42.248000','2025-12-12 05:40:42.251000',NULL,NULL,NULL),(47,'agckfewnm5lalc03nuo6ltza','api::contact-us.contact-us.find','2025-12-12 06:43:01.803000','2025-12-12 06:43:01.803000','2025-12-12 06:43:01.803000',NULL,NULL,NULL),(49,'o4o8xrv3bp50jzaity7jprq2','api::service-landing.service-landing.find','2025-12-12 13:06:46.327000','2025-12-12 13:06:46.327000','2025-12-12 13:06:46.327000',NULL,NULL,NULL),(51,'h9b4ivlt7313zpxfcy2ym83w','api::contact-enquiry.contact-enquiry.update','2026-01-15 10:10:14.241000','2026-01-15 10:10:14.241000','2026-01-15 10:10:14.243000',NULL,NULL,NULL),(52,'pv3agl50cv4btdn0laneiide','api::contact-enquiry.contact-enquiry.create','2026-01-15 10:12:08.133000','2026-01-15 10:12:08.133000','2026-01-15 10:12:08.134000',NULL,NULL,NULL),(60,'dbr72pnmq4d8kf2imsnpbkpt','api::social.social.find','2026-01-20 06:47:59.372000','2026-01-20 06:47:59.372000','2026-01-20 06:47:59.372000',NULL,NULL,NULL),(61,'wt0z127f7fk9lzbr3hya7k3i','api::social.social.findOne','2026-01-20 06:47:59.372000','2026-01-20 06:47:59.372000','2026-01-20 06:47:59.373000',NULL,NULL,NULL),(62,'ioakconfeuzmb7j6k4btvzio','api::automotive-landing.automotive-landing.find','2026-01-20 07:07:54.861000','2026-01-20 07:07:54.861000','2026-01-20 07:07:54.861000',NULL,NULL,NULL),(63,'wu7jlqpx5w4cxnv8z0xnmezc','api::tyre-landing.tyre-landing.find','2026-01-20 07:14:14.015000','2026-01-20 07:14:14.015000','2026-01-20 07:14:14.016000',NULL,NULL,NULL),(64,'pzhv1qxtep3ndd06k5ozv9d5','api::tyre-category.tyre-category.find','2026-01-20 07:14:36.427000','2026-01-20 07:14:36.427000','2026-01-20 07:14:36.428000',NULL,NULL,NULL),(65,'oojql9l46hlbarv55wufr9n3','api::tyre-category.tyre-category.findOne','2026-01-20 07:14:36.427000','2026-01-20 07:14:36.427000','2026-01-20 07:14:36.428000',NULL,NULL,NULL),(66,'ean0nb50hk73eotdwvb5npxg','api::tyre-service.tyre-service.find','2026-01-20 07:14:36.427000','2026-01-20 07:14:36.427000','2026-01-20 07:14:36.428000',NULL,NULL,NULL),(67,'teyb8iyeq0idsjrstfagfxum','api::tyre-service.tyre-service.findOne','2026-01-20 07:14:36.427000','2026-01-20 07:14:36.427000','2026-01-20 07:14:36.428000',NULL,NULL,NULL),(68,'u16jlpe1949zh6ones7ikvjp','api::power-tool-landing.power-tool-landing.find','2026-01-20 10:22:17.092000','2026-01-20 10:22:17.092000','2026-01-20 10:22:17.092000',NULL,NULL,NULL),(69,'jjgk15khmv1xj2tebobdh44a','api::product-category.product-category.findOne','2026-01-20 12:18:49.331000','2026-01-20 12:18:49.331000','2026-01-20 12:18:49.332000',NULL,NULL,NULL),(70,'sthznzhd8garn5ebzuwra1tu','api::product-category.product-category.find','2026-01-20 12:18:49.331000','2026-01-20 12:18:49.331000','2026-01-20 12:18:49.331000',NULL,NULL,NULL),(71,'fnxkkkzktg8cm6oyg4jwxuoz','api::service-category-type.service-category-type.find','2026-01-20 12:18:49.331000','2026-01-20 12:18:49.331000','2026-01-20 12:18:49.332000',NULL,NULL,NULL),(72,'qce7vempj9kv2kclwmr6jra8','api::service-category-type.service-category-type.findOne','2026-01-20 12:18:49.331000','2026-01-20 12:18:49.331000','2026-01-20 12:18:49.333000',NULL,NULL,NULL),(73,'e39jniz21qexij96lrox1kfp','api::type.type.find','2026-01-21 09:00:31.227000','2026-01-21 09:00:31.227000','2026-01-21 09:00:31.229000',NULL,NULL,NULL),(74,'ykmgjrh8uqt3yhdt9i84lrm2','api::type.type.findOne','2026-01-21 09:00:31.227000','2026-01-21 09:00:31.227000','2026-01-21 09:00:31.231000',NULL,NULL,NULL),(75,'d3xgt20msluytdi9pqpgnvd4','api::power-category.power-category.find','2026-02-05 05:39:38.452000','2026-02-05 05:39:38.452000','2026-02-05 05:39:38.454000',NULL,NULL,NULL),(76,'fgsw4ymg4n4xwkep5zcmgley','api::power-category.power-category.findOne','2026-02-05 05:39:38.452000','2026-02-05 05:39:38.452000','2026-02-05 05:39:38.455000',NULL,NULL,NULL),(77,'zhlkmwuwa3g20vagdbpnime7','api::power-top-category.power-top-category.find','2026-03-06 05:29:15.785000','2026-03-06 05:29:15.785000','2026-03-06 05:29:15.786000',NULL,NULL,NULL),(78,'abwr22k7hxnjc9gsnyukw6wa','api::power-top-category.power-top-category.findOne','2026-03-06 05:29:15.785000','2026-03-06 05:29:15.785000','2026-03-06 05:29:15.786000',NULL,NULL,NULL),(79,'gztetymk5ygyd0f5889lvlsb','api::service.service.find','2026-03-12 12:06:53.485000','2026-03-12 12:06:53.485000','2026-03-12 12:06:53.488000',NULL,NULL,NULL),(80,'ls1ioir42k0cb4xyi1sse6nj','api::service.service.findOne','2026-03-12 12:06:53.485000','2026-03-12 12:06:53.485000','2026-03-12 12:06:53.489000',NULL,NULL,NULL),(81,'n0miij95p45zxka5qrd0xsur','api::privacy-policy.privacy-policy.find','2026-04-02 05:11:57.099000','2026-04-02 05:11:57.099000','2026-04-02 05:11:57.100000',NULL,NULL,NULL),(82,'h1rwq2iepi9845jal295ktdr','api::terms-condition.terms-condition.find','2026-04-02 05:11:57.099000','2026-04-02 05:11:57.099000','2026-04-02 05:11:57.100000',NULL,NULL,NULL);
/*!40000 ALTER TABLE `up_permissions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `up_permissions_role_lnk`
--

DROP TABLE IF EXISTS `up_permissions_role_lnk`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `up_permissions_role_lnk` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `permission_id` int unsigned DEFAULT NULL,
  `role_id` int unsigned DEFAULT NULL,
  `permission_ord` double unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `up_permissions_role_lnk_uq` (`permission_id`,`role_id`),
  KEY `up_permissions_role_lnk_fk` (`permission_id`),
  KEY `up_permissions_role_lnk_ifk` (`role_id`),
  KEY `up_permissions_role_lnk_oifk` (`permission_ord`),
  CONSTRAINT `up_permissions_role_lnk_fk` FOREIGN KEY (`permission_id`) REFERENCES `up_permissions` (`id`) ON DELETE CASCADE,
  CONSTRAINT `up_permissions_role_lnk_ifk` FOREIGN KEY (`role_id`) REFERENCES `up_roles` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=83 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `up_permissions_role_lnk`
--

LOCK TABLES `up_permissions_role_lnk` WRITE;
/*!40000 ALTER TABLE `up_permissions_role_lnk` DISABLE KEYS */;
INSERT INTO `up_permissions_role_lnk` VALUES (1,1,1,1),(2,2,1,1),(3,3,2,1),(4,6,2,1),(5,8,2,1),(6,4,2,1),(7,7,2,1),(8,5,2,1),(9,9,2,1),(14,14,2,2),(15,15,2,2),(16,16,2,2),(26,26,2,7),(29,29,2,8),(30,30,2,8),(31,31,2,8),(32,32,2,8),(33,33,2,8),(34,34,2,8),(35,35,2,8),(36,36,2,8),(37,37,2,8),(38,40,2,8),(39,38,2,9),(40,41,2,9),(41,42,2,9),(42,39,2,9),(45,45,2,9),(46,46,2,9),(47,47,2,10),(49,49,2,12),(51,51,2,13),(52,52,2,14),(60,60,2,15),(61,61,2,15),(62,62,2,16),(63,63,2,17),(64,64,2,18),(65,65,2,18),(66,66,2,18),(67,67,2,18),(68,68,2,19),(69,69,2,20),(70,71,2,20),(71,70,2,20),(72,72,2,21),(73,74,2,22),(74,73,2,22),(75,75,2,23),(76,76,2,23),(77,77,2,24),(78,78,2,24),(79,79,2,25),(80,80,2,25),(81,82,2,26),(82,81,2,26);
/*!40000 ALTER TABLE `up_permissions_role_lnk` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `up_roles`
--

DROP TABLE IF EXISTS `up_roles`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `up_roles` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `document_id` varchar(255) DEFAULT NULL,
  `name` varchar(255) DEFAULT NULL,
  `description` varchar(255) DEFAULT NULL,
  `type` varchar(255) DEFAULT NULL,
  `created_at` datetime(6) DEFAULT NULL,
  `updated_at` datetime(6) DEFAULT NULL,
  `published_at` datetime(6) DEFAULT NULL,
  `created_by_id` int unsigned DEFAULT NULL,
  `updated_by_id` int unsigned DEFAULT NULL,
  `locale` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `up_roles_documents_idx` (`document_id`,`locale`,`published_at`),
  KEY `up_roles_created_by_id_fk` (`created_by_id`),
  KEY `up_roles_updated_by_id_fk` (`updated_by_id`),
  CONSTRAINT `up_roles_created_by_id_fk` FOREIGN KEY (`created_by_id`) REFERENCES `admin_users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `up_roles_updated_by_id_fk` FOREIGN KEY (`updated_by_id`) REFERENCES `admin_users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `up_roles`
--

LOCK TABLES `up_roles` WRITE;
/*!40000 ALTER TABLE `up_roles` DISABLE KEYS */;
INSERT INTO `up_roles` VALUES (1,'p0oupmfzck2k1z3hmr6hbzo7','Authenticated','Default role given to authenticated user.','authenticated','2025-11-21 05:39:30.827000','2025-11-21 05:39:30.827000','2025-11-21 05:39:30.827000',NULL,NULL,NULL),(2,'y4b542dfd78vb4pqr15nh5vm','Public','Default role given to unauthenticated user.','public','2025-11-21 05:39:30.893000','2026-04-02 05:24:03.467000','2025-11-21 05:39:30.894000',NULL,NULL,NULL);
/*!40000 ALTER TABLE `up_roles` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `up_users`
--

DROP TABLE IF EXISTS `up_users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `up_users` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `document_id` varchar(255) DEFAULT NULL,
  `username` varchar(255) DEFAULT NULL,
  `email` varchar(255) DEFAULT NULL,
  `provider` varchar(255) DEFAULT NULL,
  `password` varchar(255) DEFAULT NULL,
  `reset_password_token` varchar(255) DEFAULT NULL,
  `confirmation_token` varchar(255) DEFAULT NULL,
  `confirmed` tinyint(1) DEFAULT NULL,
  `blocked` tinyint(1) DEFAULT NULL,
  `created_at` datetime(6) DEFAULT NULL,
  `updated_at` datetime(6) DEFAULT NULL,
  `published_at` datetime(6) DEFAULT NULL,
  `created_by_id` int unsigned DEFAULT NULL,
  `updated_by_id` int unsigned DEFAULT NULL,
  `locale` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `up_users_documents_idx` (`document_id`,`locale`,`published_at`),
  KEY `up_users_created_by_id_fk` (`created_by_id`),
  KEY `up_users_updated_by_id_fk` (`updated_by_id`),
  CONSTRAINT `up_users_created_by_id_fk` FOREIGN KEY (`created_by_id`) REFERENCES `admin_users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `up_users_updated_by_id_fk` FOREIGN KEY (`updated_by_id`) REFERENCES `admin_users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `up_users`
--

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

--
-- Table structure for table `up_users_role_lnk`
--

DROP TABLE IF EXISTS `up_users_role_lnk`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `up_users_role_lnk` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `user_id` int unsigned DEFAULT NULL,
  `role_id` int unsigned DEFAULT NULL,
  `user_ord` double unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `up_users_role_lnk_uq` (`user_id`,`role_id`),
  KEY `up_users_role_lnk_fk` (`user_id`),
  KEY `up_users_role_lnk_ifk` (`role_id`),
  KEY `up_users_role_lnk_oifk` (`user_ord`),
  CONSTRAINT `up_users_role_lnk_fk` FOREIGN KEY (`user_id`) REFERENCES `up_users` (`id`) ON DELETE CASCADE,
  CONSTRAINT `up_users_role_lnk_ifk` FOREIGN KEY (`role_id`) REFERENCES `up_roles` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `up_users_role_lnk`
--

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

--
-- Table structure for table `upload_folders`
--

DROP TABLE IF EXISTS `upload_folders`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `upload_folders` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `document_id` varchar(255) DEFAULT NULL,
  `name` varchar(255) DEFAULT NULL,
  `path_id` int DEFAULT NULL,
  `path` varchar(255) DEFAULT NULL,
  `created_at` datetime(6) DEFAULT NULL,
  `updated_at` datetime(6) DEFAULT NULL,
  `published_at` datetime(6) DEFAULT NULL,
  `created_by_id` int unsigned DEFAULT NULL,
  `updated_by_id` int unsigned DEFAULT NULL,
  `locale` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `upload_folders_path_id_index` (`path_id`),
  UNIQUE KEY `upload_folders_path_index` (`path`),
  KEY `upload_folders_documents_idx` (`document_id`,`locale`,`published_at`),
  KEY `upload_folders_created_by_id_fk` (`created_by_id`),
  KEY `upload_folders_updated_by_id_fk` (`updated_by_id`),
  CONSTRAINT `upload_folders_created_by_id_fk` FOREIGN KEY (`created_by_id`) REFERENCES `admin_users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `upload_folders_updated_by_id_fk` FOREIGN KEY (`updated_by_id`) REFERENCES `admin_users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=51 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `upload_folders`
--

LOCK TABLES `upload_folders` WRITE;
/*!40000 ALTER TABLE `upload_folders` DISABLE KEYS */;
INSERT INTO `upload_folders` VALUES (1,'kf4ivs6dkhkjyyyv6coboma5','home',1,'/1','2025-11-22 05:39:38.371000','2025-11-22 05:39:38.371000','2025-11-22 05:39:38.372000',1,1,NULL),(2,'n0t4q08texrgvd6ccyfhru1i','automotive-aftermarket',2,'/2','2025-11-22 11:01:43.940000','2025-11-22 11:01:43.940000','2025-11-22 11:01:43.940000',1,1,NULL),(3,'lgi2h86jxzzf8896693qq7u2','power-tools',3,'/3','2025-11-22 11:03:22.529000','2025-11-22 11:03:22.529000','2025-11-22 11:03:22.529000',1,1,NULL),(4,'i89cmj5rb3z5kfjyghbvrmho','tyres',4,'/4','2025-11-22 11:05:31.611000','2025-11-22 11:05:31.611000','2025-11-22 11:05:31.612000',1,1,NULL),(5,'gaetwzdaczm0tegso16czchm','services',5,'/5','2025-11-22 11:42:34.090000','2025-11-22 11:42:34.090000','2025-11-22 11:42:34.093000',1,1,NULL),(6,'ot3xxrnaz8anddtpbg2a8tl3','brands',6,'/6','2025-11-22 11:43:43.036000','2025-11-22 11:43:43.036000','2025-11-22 11:43:43.037000',1,1,NULL),(7,'jzbr076a0z1uxb4d4xzp3d2f','news',7,'/7','2025-11-22 13:30:49.420000','2025-11-22 13:30:49.420000','2025-11-22 13:30:49.421000',1,1,NULL),(8,'avm7i0md7iyzlvbuwaz5g8eg','office-locations',8,'/8','2025-11-22 14:28:03.497000','2025-11-22 14:28:03.497000','2025-11-22 14:28:03.497000',1,1,NULL),(9,'ky5tqfvhh0nd6sndt0vsr747','automotive-aftermarket',9,'/5/9','2025-11-24 12:41:38.596000','2025-11-24 12:41:38.596000','2025-11-24 12:41:38.597000',1,1,NULL),(10,'k1kvtkg4uqe22lrjeok6xyaa','tyres',10,'/5/10','2025-11-24 12:42:19.455000','2025-11-24 12:42:19.455000','2025-11-24 12:42:19.456000',1,1,NULL),(11,'y1gd32qapgpvfk30mafvi8ti','contact us',11,'/11','2025-11-25 09:14:37.585000','2025-11-25 09:14:37.585000','2025-11-25 09:14:37.585000',1,1,NULL),(12,'whvbvuitkz1evaunrsjgpcll','banner',12,'/11/12','2025-11-25 09:14:48.080000','2025-11-25 09:14:48.080000','2025-11-25 09:14:48.081000',1,1,NULL),(13,'b45pdrvt9e4chq2tn3cdk1bj','about',13,'/13','2025-12-02 16:59:39.660000','2025-12-02 16:59:39.660000','2025-12-02 16:59:39.660000',1,1,NULL),(14,'dr8j05d3ficzpr8gmx81tihi','service-landing',14,'/14','2025-12-12 13:01:59.156000','2025-12-12 13:01:59.156000','2025-12-12 13:01:59.157000',1,1,NULL),(15,'e3wl5u0igf90bv64oys0vsy5','tyre-repair',15,'/5/10/15','2025-12-18 10:07:48.002000','2025-12-18 10:07:48.002000','2025-12-18 10:07:48.003000',1,1,NULL),(16,'apm2p4e84jf691imewn2a4kl','repair-matters',16,'/5/10/15/16','2025-12-20 10:20:51.963000','2025-12-20 10:20:51.963000','2025-12-20 10:20:51.964000',1,1,NULL),(17,'gtwg3ledvd4bd7bm5yi9q2fj','branch',17,'/17','2026-01-08 10:44:22.490000','2026-01-08 10:44:22.490000','2026-01-08 10:44:22.490000',1,1,NULL),(18,'ed5kezflfbvs7e9uol2v6xw6','automotive-page',18,'/18','2026-01-19 09:04:42.255000','2026-01-19 09:04:42.255000','2026-01-19 09:04:42.256000',1,1,NULL),(19,'udkgzqxygper70crol03vrqg','tyreLanding',19,'/19','2026-01-20 07:16:23.795000','2026-01-20 07:16:23.795000','2026-01-20 07:16:23.795000',1,1,NULL),(20,'kyllapxtx5t07c03gcvrqgmr','powerTools',20,'/20','2026-01-20 10:42:58.035000','2026-01-20 10:42:58.035000','2026-01-20 10:42:58.036000',1,1,NULL),(21,'zgnbu15y0syb172xqci95nvf','power tools top categories',21,'/20/21','2026-03-06 05:40:30.311000','2026-03-06 05:40:30.311000','2026-03-06 05:40:30.312000',1,1,NULL),(22,'gvdo5k7a6cnm6mwt4i1ryky8','warehouse',22,'/22','2026-03-06 05:48:16.355000','2026-03-06 05:48:16.355000','2026-03-06 05:48:16.356000',1,1,NULL),(23,'cjrcu75y2bg9fib6ymvvjfqn','tyre rotation',23,'/5/10/23','2026-03-11 08:38:54.805000','2026-03-11 08:38:54.805000','2026-03-11 08:38:54.805000',1,1,NULL),(24,'re1xqqx9yubq0ptdwb4bplqc','bosch car service',24,'/5/9/24','2026-03-11 11:46:18.166000','2026-03-11 11:46:18.166000','2026-03-11 11:46:18.168000',1,1,NULL),(25,'ql23mbaut27ptipr6jysgxzc','bosch diesel service',25,'/5/9/25','2026-03-11 13:19:56.644000','2026-03-11 13:19:56.644000','2026-03-11 13:19:56.645000',1,1,NULL),(26,'uob73lp6mbwmujirugdq4t59','workshop test equipment serivices',26,'/5/9/26','2026-03-11 13:34:42.740000','2026-03-11 13:34:42.740000','2026-03-11 13:34:42.741000',1,1,NULL),(27,'tu41lc7sjq14wp65h6w408on','break pads',27,'/5/10/27','2026-03-12 06:18:28.367000','2026-03-12 06:18:28.367000','2026-03-12 06:18:28.367000',1,1,NULL),(28,'jdl6kpmcara7d63wlanre8w0','oil change',28,'/5/10/28','2026-03-12 07:04:33.820000','2026-03-12 07:04:33.820000','2026-03-12 07:04:33.820000',1,1,NULL),(29,'zo6sa1k3c3chcsvlt2aiwql3','wheel alignment',29,'/5/10/29','2026-03-12 07:12:07.140000','2026-03-12 07:12:07.140000','2026-03-12 07:12:07.140000',1,1,NULL),(30,'zx36oy77v96hl5wzs2lnip6d','nitrogen inflation',30,'/5/10/30','2026-03-12 09:19:34.512000','2026-03-12 09:19:34.512000','2026-03-12 09:19:34.513000',1,1,NULL),(31,'bi66yk0c2asy68hh8ghga9mj','ac maintenance',31,'/5/10/31','2026-03-12 09:43:21.619000','2026-03-12 09:43:21.619000','2026-03-12 09:43:21.619000',1,1,NULL),(32,'du5806wsi5ws6wqhf3o52mu8','Tyre Change and Balancing',32,'/5/10/32','2026-03-12 10:20:45.406000','2026-03-12 10:20:45.406000','2026-03-12 10:20:45.406000',1,1,NULL),(33,'zi6vlt3zfcyctt12wed5j58e','power tools',33,'/5/33','2026-03-17 06:49:13.372000','2026-03-17 06:49:13.372000','2026-03-17 06:49:13.391000',1,1,NULL),(34,'rtvqyjnwqdby3dpttznszadh','spare parts',34,'/5/33/34','2026-03-17 06:49:28.669000','2026-03-17 06:49:28.669000','2026-03-17 06:49:28.669000',1,1,NULL),(35,'n2gclwm4m9h1485tk2yyzdd5','calibration service',35,'/5/33/35','2026-03-17 06:57:14.755000','2026-03-17 06:57:14.755000','2026-03-17 06:57:14.757000',1,1,NULL),(36,'qwj7ye05ru75x6c06ltvfsmx','trye plus services',36,'/4/36','2026-03-18 11:25:09.805000','2026-03-18 11:25:09.805000','2026-03-18 11:25:09.806000',1,1,NULL),(37,'vpnj47843mugjtswh0yj4j2a','Battery',37,'/37','2026-03-30 15:29:58.434000','2026-03-30 15:29:58.434000','2026-03-30 15:29:58.434000',1,1,NULL),(38,'n15vq2dp1ydbvyjotdvk1h2a','locations',38,'/38','2026-03-31 07:17:05.462000','2026-03-31 07:17:05.462000','2026-03-31 07:17:05.462000',1,1,NULL),(39,'w51qe9urqfoylko34vwg9qx3','automotive',39,'/38/39','2026-03-31 07:17:18.072000','2026-03-31 07:17:18.072000','2026-03-31 07:17:18.072000',1,1,NULL),(40,'eeq5iqw1y88ghfof73brqhcj','power tools',40,'/38/40','2026-03-31 07:17:24.274000','2026-03-31 07:17:24.274000','2026-03-31 07:17:24.275000',1,1,NULL),(41,'fz7zh9uau44bpqveg2ae4iqf','tyre',41,'/38/41','2026-03-31 07:17:27.976000','2026-03-31 07:17:27.976000','2026-03-31 07:17:27.976000',1,1,NULL),(42,'b1o4u9r8fvt600ddew81rqmo','locationImages',42,'/38/42','2026-03-31 10:35:44.125000','2026-03-31 10:35:44.125000','2026-03-31 10:35:44.126000',1,1,NULL),(43,'elp35z38dkamvc9z3824u8ia','Tyres',43,'/38/42/43','2026-03-31 16:03:24.423000','2026-03-31 16:03:24.423000','2026-03-31 16:03:24.423000',1,1,NULL),(44,'e2sdvxuq1eeipnutoso5mh8f','Powertools',44,'/38/42/44','2026-03-31 16:19:51.773000','2026-03-31 16:19:51.773000','2026-03-31 16:19:51.773000',1,1,NULL),(45,'mh9anen3d3h3vehcxkujnxl5','Automotive',45,'/38/42/45','2026-03-31 16:25:11.626000','2026-03-31 16:25:11.626000','2026-03-31 16:25:11.626000',1,1,NULL),(46,'ztdkvb7u9plkfugoutbt4uwe','services list images',46,'/46','2026-04-01 08:54:55.785000','2026-04-01 08:54:55.785000','2026-04-01 08:54:55.786000',1,1,NULL),(47,'nzi9t0mp5gdtv8o3anher17a','tyres',47,'/46/47','2026-04-01 08:55:03.106000','2026-04-01 08:55:03.106000','2026-04-01 08:55:03.106000',1,1,NULL),(48,'uhp3077pgt2xe0d2r10f75o4','powertools',48,'/46/48','2026-04-01 08:55:11.961000','2026-04-01 08:55:11.961000','2026-04-01 08:55:11.961000',1,1,NULL),(49,'f1ed7u5r2inhyalm7snowf0m','automotive',49,'/46/49','2026-04-01 08:55:18.047000','2026-04-01 08:55:18.047000','2026-04-01 08:55:18.047000',1,1,NULL),(50,'tbkm7nt63m4rgqnfid8mqsah','Banners',50,'/50','2026-04-01 09:48:20.776000','2026-04-01 09:48:20.776000','2026-04-01 09:48:20.777000',1,1,NULL);
/*!40000 ALTER TABLE `upload_folders` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `upload_folders_parent_lnk`
--

DROP TABLE IF EXISTS `upload_folders_parent_lnk`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `upload_folders_parent_lnk` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `folder_id` int unsigned DEFAULT NULL,
  `inv_folder_id` int unsigned DEFAULT NULL,
  `folder_ord` double unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `upload_folders_parent_lnk_uq` (`folder_id`,`inv_folder_id`),
  KEY `upload_folders_parent_lnk_fk` (`folder_id`),
  KEY `upload_folders_parent_lnk_ifk` (`inv_folder_id`),
  KEY `upload_folders_parent_lnk_oifk` (`folder_ord`),
  CONSTRAINT `upload_folders_parent_lnk_fk` FOREIGN KEY (`folder_id`) REFERENCES `upload_folders` (`id`) ON DELETE CASCADE,
  CONSTRAINT `upload_folders_parent_lnk_ifk` FOREIGN KEY (`inv_folder_id`) REFERENCES `upload_folders` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=32 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `upload_folders_parent_lnk`
--

LOCK TABLES `upload_folders_parent_lnk` WRITE;
/*!40000 ALTER TABLE `upload_folders_parent_lnk` DISABLE KEYS */;
INSERT INTO `upload_folders_parent_lnk` VALUES (1,9,5,1),(2,10,5,2),(3,12,11,1),(4,15,10,1),(5,16,15,1),(6,21,20,1),(7,23,10,2),(8,24,9,1),(9,25,9,2),(10,26,9,3),(11,27,10,3),(12,28,10,4),(13,29,10,5),(14,30,10,6),(16,31,10,NULL),(17,32,10,7),(18,33,5,3),(19,34,33,1),(20,35,33,2),(21,36,4,1),(22,39,38,1),(23,40,38,2),(24,41,38,3),(25,42,38,4),(26,43,42,1),(27,44,42,2),(28,45,42,3),(29,47,46,1),(30,48,46,2),(31,49,46,3);
/*!40000 ALTER TABLE `upload_folders_parent_lnk` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Dumping routines for database 'alfahim_cme_devdb'
--
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;

-- Dump completed on 2026-04-08 18:22:06
