Файловый менеджер - Редактировать - /home/digilove/public_html/110/installation/sql/site.s05
Назад
/**ABDB**/CREATE TABLE `#__marketplace_sellerprofile` ( `seller_id` int(11) NOT NULL, `is_seller` int(1) NOT NULL DEFAULT 0, `screenname` varchar(255) NOT NULL, `first_name` varchar(255) NOT NULL, `last_name` varchar(255) NOT NULL, `gender` varchar(255) NOT NULL, `phone` varchar(32) NOT NULL, `address` varchar(255) NOT NULL, `companybanner` varchar(255) NOT NULL, `companylogo` varchar(255) NOT NULL, `companylocality` varchar(255) NOT NULL, `companyname` varchar(255) NOT NULL, `companydescription` text NOT NULL, `countrylogo` varchar(255) NOT NULL, `state_vm` varchar(255) NOT NULL, `zip` varchar(25) NOT NULL, `descriptioninhtml` text NOT NULL, `commission` decimal(10,2) NOT NULL DEFAULT 20.00, `payment_mode` varchar(255) NOT NULL, `payment_desc` text NOT NULL, `shop_location` varchar(200) NOT NULL, `social_mode` varchar(100) NOT NULL, `social_id` varchar(100) NOT NULL, PRIMARY KEY (`seller_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /**ABDB**/INSERT INTO `#__marketplace_sellerprofile` VALUES ('980', '1', 'ارژنگ وب', 'ارژنگ', 'فریدی', '1', '09359574251', 'تست', '', 'media/marketplace/user980/profile/1709553703.jpg', 'قزوین', 'ارژنگ وب', '', 'qa', '1', '4471825163', '', '10.00', '', '', '0::0', '', ''), ('652', '1', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '10.00', '', '', '', '', ''), ('981', '1', 'ارژنگ وب', 'محمد', 'فریدی', '1', '09359574251', 'تست', '', '', 'قزوین', 'ارژنگ وب', '', 'ar', '834', '4471825163', '', '10.00', '', '', '', '', ''), ('982', '1', 'تست', 'مهدی', 'حسینی', '1', '0912334444', 'تیت', '', '', 'کرج', 'تست', '', 'te', '7', '98998988', '', '10.00', '', '', '', '', ''); /**ABDB**/CREATE TABLE `#__marketplace_seller_follower` ( `f_id` int(20) NOT NULL AUTO_INCREMENT, `seller_id` int(20) NOT NULL, `follower_email` varchar(100) NOT NULL, `date_follow` varchar(500) NOT NULL, PRIMARY KEY (`f_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /**ABDB**/CREATE TABLE `#__marketplace_product` ( `created_by` int(11) unsigned NOT NULL, `virtuemart_product_id` int(11) NOT NULL, `block` tinyint(1) DEFAULT 0, `viewed` int(5) NOT NULL DEFAULT 0, PRIMARY KEY (`virtuemart_product_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /**ABDB**/CREATE TABLE `#__marketplace_payments` ( `id` int(50) NOT NULL AUTO_INCREMENT, `seller_id` int(50) NOT NULL, `amount` decimal(10,2) NOT NULL, `remain_amount` decimal(10,2) NOT NULL, `date` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), `currency` int(5) NOT NULL, `payment_mode` varchar(20) DEFAULT 'standard', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /**ABDB**/CREATE TABLE `#__marketplace_orderstatus` ( `id` int(11) NOT NULL AUTO_INCREMENT, `virtuemart_order_id` int(11) NOT NULL, `seller_id` int(11) NOT NULL, `order_status` varchar(30) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /**ABDB**/CREATE TABLE `#__marketplace_orderlist` ( `orderlist_id` int(11) unsigned NOT NULL AUTO_INCREMENT, `virtuemart_product_id` varchar(255) NOT NULL, `virtuemart_order_id` varchar(255) NOT NULL, `virtuemart_commision_id` decimal(10,0) NOT NULL, `virtuemart_real_order_id` varchar(255) NOT NULL, `virtuemart_product_quantity` varchar(255) NOT NULL, `virtuemart_seller_id` varchar(255) NOT NULL, `virtuemart_product_order_status` varchar(255) NOT NULL, `virtuemart_buyerid` varchar(255) NOT NULL, `virtuemart_product_price` varchar(255) NOT NULL, `virtuemart_product_name` varchar(255) NOT NULL, `virtuemart_product_total_amount` varchar(255) NOT NULL, `virtuemart_seller_commision_rate` decimal(10,0) NOT NULL, `virtuemart_seller_total_commision` varchar(255) NOT NULL, `actual_parter_product_cost` varchar(255) NOT NULL, `cleared_at` datetime NOT NULL, `modified_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `update_status` smallint(6) NOT NULL DEFAULT 0, PRIMARY KEY (`orderlist_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /**ABDB**/CREATE TABLE `#__marketplace_feedback` ( `feed_id` int(11) unsigned NOT NULL AUTO_INCREMENT, `buyer_id` smallint(6) NOT NULL DEFAULT 0, `buyer_email` varchar(255) NOT NULL DEFAULT '', `status` smallint(6) NOT NULL DEFAULT 0, `seller_id` smallint(6) NOT NULL DEFAULT 0, `feed_price` smallint(6) NOT NULL DEFAULT 0, `feed_value` smallint(6) NOT NULL DEFAULT 0, `feed_quality` smallint(6) NOT NULL DEFAULT 0, `feed_nickname` varchar(255) NOT NULL DEFAULT '', `feed_summary` text NOT NULL, `feed_review` text NOT NULL, `create_date` text NOT NULL, PRIMARY KEY (`feed_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /**ABDB**/CREATE TABLE `#__marketplace_favourite_products` ( `id` int(20) NOT NULL AUTO_INCREMENT, `product_id` int(20) NOT NULL, `seller_id` int(20) NOT NULL, `buyer_id` int(20) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /**ABDB**/CREATE TABLE `#__marketplace_commision` ( `commision_id` int(11) unsigned NOT NULL AUTO_INCREMENT, `commision` decimal(10,2) NOT NULL, `seller_id` int(11) unsigned NOT NULL, `total_sales` decimal(10,2) NOT NULL DEFAULT 0.00, `amount_recieved` decimal(10,2) NOT NULL DEFAULT 0.00, `amount_remain` decimal(10,2) NOT NULL DEFAULT 0.00, `amount_paid` decimal(10,2) NOT NULL DEFAULT 0.00, `currency` int(20) NOT NULL, `commision_type` varchar(10) NOT NULL DEFAULT 'r', PRIMARY KEY (`commision_id`) ) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /**ABDB**/INSERT INTO `#__marketplace_commision` VALUES ('1', '10.00', '980', '0.00', '0.00', '0.00', '0.00', '70', 'r'), ('2', '10.00', '652', '0.00', '0.00', '0.00', '0.00', '70', 'f'), ('3', '10.00', '981', '0.00', '0.00', '0.00', '0.00', '70', 'f'), ('4', '10.00', '982', '0.00', '0.00', '0.00', '0.00', '70', 'f'); /**ABDB**/CREATE TABLE `#__marketplace_category_request` ( `id` int(5) NOT NULL AUTO_INCREMENT, `category_name` varchar(255) DEFAULT NULL, `category_desc` text DEFAULT NULL, `requested_by` varchar(255) DEFAULT NULL, `requested_date` datetime DEFAULT NULL, `additional_info` text DEFAULT NULL, `status` tinyint(4) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /**ABDB**/CREATE TABLE `#__marketplace_ask_admin` ( `id` int(11) NOT NULL AUTO_INCREMENT, `subject` varchar(255) NOT NULL, `message` varchar(2000) NOT NULL, `seller_id` int(11) NOT NULL, `time` datetime NOT NULL, `reply` varchar(2000) NOT NULL, `reply_time` datetime NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /**ABDB**/CREATE TABLE `#__languages` ( `lang_id` int(11) unsigned NOT NULL AUTO_INCREMENT, `asset_id` int(10) unsigned NOT NULL DEFAULT 0, `lang_code` char(7) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL, `title` varchar(50) NOT NULL, `title_native` varchar(50) NOT NULL, `sef` varchar(50) NOT NULL, `image` varchar(50) NOT NULL, `description` varchar(512) NOT NULL, `metakey` mediumtext NOT NULL, `metadesc` mediumtext NOT NULL, `sitename` varchar(1024) NOT NULL DEFAULT '', `published` int(11) NOT NULL DEFAULT 0, `access` int(10) unsigned NOT NULL DEFAULT 0, `ordering` int(11) NOT NULL DEFAULT 0, PRIMARY KEY (`lang_id`), UNIQUE KEY `idx_sef` (`sef`), UNIQUE KEY `idx_langcode` (`lang_code`), KEY `idx_ordering` (`ordering`), KEY `idx_access` (`access`) ) ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /**ABDB**/INSERT INTO `#__languages` VALUES ('1', '0', 'en-GB', 'English', 'English', 'en', 'en', '', '', '', '', '1', '1', '0'), ('2', '0', 'ar-AA', 'Arabic', 'Arabic', 'ar', 'ar', '', '', '', '', '1', '1', '0'), ('6', '359', 'fa-IR', 'Persian', 'فارسی', 'fa', 'fa', '', '', '', '', '1', '1', '0'); /**ABDB**/CREATE TABLE `#__jmap_text_replacements` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `original_text` varchar(1024) NOT NULL, `target_text` varchar(1024) NOT NULL, `original_text_regex` varchar(1024) NOT NULL, `target_text_regex` varchar(1024) NOT NULL, `checked_out` int(11) unsigned NOT NULL DEFAULT 0, `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `published` tinyint(4) NOT NULL DEFAULT 1, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /**ABDB**/CREATE TABLE `#__jmap_pingomatic` ( `id` int(11) NOT NULL AUTO_INCREMENT, `title` varchar(255) NOT NULL, `blogurl` varchar(255) NOT NULL, `rssurl` varchar(255) DEFAULT NULL, `services` text NOT NULL, `lastping` datetime DEFAULT NULL, `checked_out` int(11) NOT NULL DEFAULT 0, `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /**ABDB**/CREATE TABLE `#__jmap_metainfo` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `linkurl` varchar(600) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `meta_title` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_desc` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_image` varchar(255) DEFAULT NULL, `robots` varchar(255) DEFAULT NULL, `published` tinyint(1) NOT NULL DEFAULT 0, `excluded` tinyint(1) NOT NULL DEFAULT 0, PRIMARY KEY (`id`), KEY `robots` (`robots`), KEY `published` (`published`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /**ABDB**/CREATE TABLE `#__jmap_menu_priorities` ( `id` int(11) NOT NULL, `priority` char(3) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /**ABDB**/CREATE TABLE `#__jmap_headings` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `linkurl` varchar(600) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `h1` text DEFAULT NULL, `h2` text DEFAULT NULL, `h3` text DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /**ABDB**/CREATE TABLE `#__jmap_google` ( `id` int(11) NOT NULL, `token` text NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /**ABDB**/CREATE TABLE `#__jmap_dss_relations` ( `datasetid` int(11) NOT NULL, `datasourceid` int(11) NOT NULL, PRIMARY KEY (`datasetid`,`datasourceid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /**ABDB**/CREATE TABLE `#__jmap_datasets` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `name` text NOT NULL, `description` text NOT NULL, `checked_out` int(11) unsigned NOT NULL DEFAULT 0, `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `published` tinyint(1) NOT NULL DEFAULT 0, `sources` text NOT NULL, PRIMARY KEY (`id`), KEY `published` (`published`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /**ABDB**/CREATE TABLE `#__jmap_cats_priorities` ( `id` int(11) NOT NULL, `priority` char(3) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /**ABDB**/CREATE TABLE `#__jmap_canonicals` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `linkurl` varchar(600) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `canonical` varchar(600) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /**ABDB**/CREATE TABLE `#__jmap_aigenerator` ( `id` int(11) NOT NULL AUTO_INCREMENT, `keywords_phrase` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `contents` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `api` varchar(50) NOT NULL DEFAULT 'bing', `maxresults` int(11) NOT NULL DEFAULT 10, `language` char(7) NOT NULL DEFAULT '', `removeimgs` tinyint(1) NOT NULL DEFAULT 0, `temperature` varchar(10) DEFAULT NULL, `checked_out` int(11) unsigned NOT NULL DEFAULT 0, `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /**ABDB**/CREATE TABLE `#__jmap` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `type` varchar(100) NOT NULL, `name` text NOT NULL, `description` text NOT NULL, `checked_out` int(11) unsigned NOT NULL DEFAULT 0, `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `published` tinyint(1) NOT NULL DEFAULT 0, `ordering` int(11) NOT NULL DEFAULT 0, `sqlquery` text DEFAULT NULL, `sqlquery_managed` text DEFAULT NULL, `params` text NOT NULL, PRIMARY KEY (`id`), KEY `published` (`published`) ) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /**ABDB**/INSERT INTO `#__jmap` VALUES ('1', 'content', 'Content', 'Default contents source', '0', '0000-00-00 00:00:00', '1', '1', '', '', ''), ('2', 'menu', 'منو اصلی', 'Simple Home Menu', '0', '0000-00-00 00:00:00', '1', '9', NULL, NULL, ''), ('3', 'menu', 'منو اصلی - فارسی', '', '0', '0000-00-00 00:00:00', '1', '8', NULL, NULL, ''), ('4', 'menu', 'منو اصلی - انگلیسی', '', '0', '0000-00-00 00:00:00', '1', '7', NULL, NULL, ''), ('5', 'menu', 'دسته بلاگ', '', '0', '0000-00-00 00:00:00', '1', '6', NULL, NULL, ''), ('6', 'menu', 'منو بالا', '', '0', '0000-00-00 00:00:00', '1', '5', NULL, NULL, ''), ('7', 'menu', 'منو فووتر', '', '0', '0000-00-00 00:00:00', '1', '4', NULL, NULL, ''), ('8', 'menu', 'منو کاربری', '', '0', '0000-00-00 00:00:00', '1', '3', NULL, NULL, ''), ('9', 'menu', 'منو اکانت', '', '0', '0000-00-00 00:00:00', '1', '2', NULL, NULL, ''), ('10', 'menu', 'marketplace', '', '0', '0000-00-00 00:00:00', '1', '10', NULL, NULL, ''); /**ABDB**/CREATE TABLE `#__gsd_config` ( `name` varchar(255) NOT NULL, `params` text NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci COMMENT='Store any configuration in key => params maps'; /**ABDB**/CREATE TABLE `#__gsd` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `title` varchar(100) NOT NULL, `contenttype` varchar(100) NOT NULL, `params` text DEFAULT NULL, `plugin` varchar(50) NOT NULL DEFAULT '0' COMMENT 'The plugin name of the referenced item', `appview` varchar(50) NOT NULL DEFAULT '*', `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `ordering` int(11) NOT NULL DEFAULT 0, `language` varchar(7) NOT NULL DEFAULT '*', `note` text NOT NULL, `state` tinyint(3) NOT NULL DEFAULT 0, PRIMARY KEY (`id`), KEY `state` (`state`), KEY `plugin` (`plugin`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /**ABDB**/CREATE TABLE `#__forseo_sitemaps_includes` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Primary Key', `url` varchar(190) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Indexable version of URL. Secondary id, only there if custom meta stored for a duplicate.', `sitemap_mode` smallint(6) NOT NULL DEFAULT 0 COMMENT '0: auto, 1: user', `sitemap_user` smallint(6) NOT NULL DEFAULT 0 COMMENT '0: included, 1: excluded', PRIMARY KEY (`id`), KEY `url` (`url`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /**ABDB**/CREATE TABLE `#__forseo_sitemaps` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Primary Key', `type` tinyint(4) NOT NULL DEFAULT 0 COMMENT '0: content, 1: news, 3: images, 4: videos', `file_type` tinyint(4) NOT NULL DEFAULT 0 COMMENT '0: index, 1: partial', `lang` varchar(50) NOT NULL DEFAULT '' COMMENT 'Language tag as used by platform', `crawl_id` varchar(40) NOT NULL COMMENT 'Id of crawl data used to generate the sitemap', `hash` varchar(40) NOT NULL COMMENT 'SHA1 hash of the file content', `created_at` datetime DEFAULT NULL COMMENT 'Sitemap generation completion', `url_count` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Total number of URLs in the sitemap', `processed_url_count` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Total number of URLs already added to the sitemap', `image_count` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Total number of images in the sitemap', `serial` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'If partial, serial number in series, not used otherwise', `google_submitted_at` datetime DEFAULT NULL COMMENT 'When this sitemap was submitted to Google', `google_last_fetch` datetime DEFAULT NULL COMMENT 'Last time this sitemap was fetched by Google Bot', `google_fetches` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Total number of fetches of that sitemap by Google Bot', `bing_submitted_at` datetime DEFAULT NULL COMMENT 'When this sitemap was submitted to Google', `bing_last_fetch` datetime DEFAULT NULL COMMENT 'Last time this sitemap was fetched by Bing Bot', `bing_fetches` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Total number of fetches of that sitemap by Bing Bot', `state` tinyint(4) NOT NULL DEFAULT 0 COMMENT '0: ready, 1: stale, 2: in_progress', `enabled` tinyint(4) NOT NULL DEFAULT 1 COMMENT '1: enabled, 0: disabled', PRIMARY KEY (`id`), KEY `created_at` (`created_at`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /**ABDB**/CREATE TABLE `#__forseo_rules` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Primary Key', `type` smallint(6) NOT NULL DEFAULT 0 COMMENT 'See Data - Rule object', `source` tinyint(4) NOT NULL DEFAULT 0 COMMENT '0: user, 1: built in, 100: import sh404SEF', `title` varchar(190) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Custom title', `rule` varchar(14000) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT 'JSON rule definition', `last_hit` datetime DEFAULT NULL COMMENT 'Last use of that rule', `hits` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Number of use of that rule', `enabled` tinyint(4) NOT NULL DEFAULT 1 COMMENT '1: enabled, 0: disabled', `valid` tinyint(4) NOT NULL DEFAULT 1 COMMENT 'Not implemented, future use. 0: invalid, 1: valid', `enabled_after` datetime DEFAULT NULL COMMENT 'Optional start enable datetime', `enabled_until` datetime DEFAULT NULL COMMENT 'Optional enable until dateime', `ordering` int(11) NOT NULL DEFAULT 0 COMMENT 'Ordering within type', PRIMARY KEY (`id`), UNIQUE KEY `type_ordering` (`type`,`ordering`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /**ABDB**/INSERT INTO `#__forseo_rules` VALUES ('1', '140', '0', 'Default 404 error page', '{\"id\":0,\"ordering\":1,\"orderAfter\":-1,\"orderTarget\":-1,\"orderDirection\":\"after\",\"type\":140,\"title\":\"Default 404 error page\",\"enabled\":\"0\",\"urlSpec\":\"/{*}\",\"urlNegSpec\":\"\",\"disregardQuery\":true,\"disregardCase\":true,\"includedLanguages\":[],\"includedExtensions\":[],\"viewSpec\":\"\",\"viewNegSpec\":\"\",\"includedCategories\":[],\"excludedCategories\":[],\"enableAfter\":\"2024-11-26 07:42:57\",\"enableUntil\":null,\"actionReappendQuery\":false,\"actionRedirectType\":301,\"actionRedirectTarget\":\"/\",\"actionReplacerLocation\":\"content\",\"actionReplacerProtectLinks\":true,\"actionReplacerCaseSensitive\":false,\"actionReplacerWholeWordsOnly\":false,\"actionReplacerType\":\"text\",\"actionReplacerTargetBlank\":false,\"actionReplacerNoFollow\":false,\"actionReplacerSource\":\"\",\"actionReplacerTarget\":\"\",\"actionReplacerMaxReplacements\":99999,\"actionCanonicalTarget\":\"/{*}\",\"actionCanonicalTargetUseCf\":false,\"actionCanonicalTargetCfId\":[],\"actionWafType\":404,\"actionRawContentHeadTop\":\"\",\"actionRawContentHeadBottom\":\"\",\"actionRawContentBodyTop\":\"\",\"actionRawContentBodyBottom\":\"\",\"actionAnalyticsProvider\":\"\",\"actionAnalyticsUniversalgaId\":\"\",\"actionAnalyticsUniversalgaCustom\":\"\",\"actionAnalyticsGaAnonymize\":true,\"actionAnalyticsGaDisplayFeatures\":false,\"actionAnalyticsGaAdFeatures\":true,\"actionAnalyticsGaLinkAttribution\":false,\"actionAnalyticsGaCustomDomain\":\"auto\",\"actionAnalyticsGaCustomUrl\":\"\",\"actionAnalyticsGaCookieDomain\":\"\",\"actionAnalyticsGaOptions\":[],\"actionAnalyticsGlobalgaId\":\"\",\"actionAnalyticsGlobalgaCustom\":\"\",\"actionAnalyticsGtmId\":\"\",\"actionAnalyticsGtmDatalayer\":\"\",\"actionAnalyticsFbpixelId\":\"\",\"actionAnalyticsFbpixelCustom\":\"\",\"actionAnalyticsMatomoId\":\"\",\"actionAnalyticsMatomoEndpoint\":\"https://matomo.org/\",\"actionAnalyticsMatomoTrackWithoutJs\":true,\"actionAnalyticsMatomoCustom\":\"\",\"actionAnalyticsClarityId\":\"\",\"actionAnalyticsCloudflareId\":\"\",\"actionAnalyticsFathomId\":\"\",\"actionAnalyticsFathomCustom\":\"\",\"actionSdType\":\"\",\"actionSdUrlAuto\":true,\"actionSdUrl\":\"\",\"actionSdHeadlineAuto\":true,\"actionSdHeadline\":\"\",\"actionSdDescriptionAuto\":true,\"actionSdDescription\":\"\",\"actionSdInLanguageAuto\":true,\"actionSdInLanguage\":\"\",\"actionSdAuthorAuto\":true,\"actionSdAuthor\":\"\",\"actionSdAuthorUrl\":\"\",\"actionSdImageAuto\":true,\"actionSdImageUrl\":\"\",\"actionSdImageAlt\":\"\",\"actionSdImageWidth\":0,\"actionSdImageHeight\":0,\"actionSdImagePixels\":0,\"actionSdPublisherAuto\":true,\"actionSdPublisher\":\"\",\"actionSdPublisherLogoAuto\":true,\"actionSdPublisherLogoUrl\":\"\",\"actionSdPublisherLogoAlt\":\"\",\"actionSdPublisherLogoWidth\":\"\",\"actionSdPublisherLogoHeight\":\"\",\"actionSdPublisherLogoPixels\":\"\",\"actionSdDatePublishedAuto\":true,\"actionSdDatePublished\":\"\",\"actionSdTimePublished\":\"\",\"actionSdDateModifiedAuto\":true,\"actionSdDateModified\":\"\",\"actionSdTimeModified\":\"\",\"actionSdAggregateRatingAuto\":\"\",\"actionSdRatingValue\":0,\"actionSdRatingCount\":0,\"actionSdWorstRating\":0,\"actionSdBestRating\":0,\"actionSdCustom\":\"\",\"actionSdNameAuto\":true,\"actionSdName\":\"\",\"actionSdThumbnailUrlAuto\":true,\"actionSdThumbnailUrl\":\"\",\"actionSdDateUploadedAuto\":true,\"actionSdDateUploaded\":\"\",\"actionSdTimeUploaded\":\"\",\"actionSdContentUrlAuto\":true,\"actionSdContentUrl\":\"\",\"actionSdProviderAuto\":true,\"actionSdProvider\":\"\",\"actionSdLocationNameAuto\":true,\"actionSdLocationName\":\"\",\"actionSdLocationAuto\":true,\"actionSdLocation\":\"\",\"actionSdDateStartedAuto\":true,\"actionSdDateStarted\":\"\",\"actionSdTimeStarted\":\"\",\"actionSdDateEndedAuto\":true,\"actionSdDateEnded\":\"\",\"actionSdTimeEnded\":\"\",\"actionSdOffersAuto\":true,\"actionSdPerformerAuto\":true,\"actionSdPerformer\":\"\",\"actionSdPerformerType\":\"Person\",\"actionSdOrganizerAuto\":true,\"actionSdOrganizer\":\"\",\"actionSdEventAttendanceModeAuto\":true,\"actionSdEventAttendanceMode\":\"http://schema.org/OnlineEventAttendanceMode\",\"actionSdEventStatusAuto\":true,\"actionSdEventStatus\":[\"http://schema.org/EventScheduled\"],\"actionSdOfferPriceAuto\":true,\"actionSdOfferPrice\":0,\"actionSdOfferPriceCurrencyAuto\":true,\"actionSdOfferPriceCurrency\":\"USD\",\"actionSdOfferDateValidFromAuto\":true,\"actionSdOfferDateValidFrom\":\"\",\"actionSdOfferTimeValidFrom\":\"\",\"actionSdOfferAvailabilityAuto\":true,\"actionSdOfferAvailability\":[\"http://schema.org/InStock\"],\"actionSdOfferUrlAuto\":true,\"actionSdOfferUrl\":\"\",\"actionSdBrandAuto\":true,\"actionSdBrand\":null,\"actionSdSkuAuto\":true,\"actionSdSku\":\"\",\"actionSdOfferDatePriceValidUntilAuto\":true,\"actionSdOfferDatePriceValidUntil\":\"\",\"actionSdOfferTimePriceValidUntil\":\"\",\"actionSdOfferItemConditionAuto\":true,\"actionSdOfferItemCondition\":[\"http://schema.org/NewCondition\"],\"actionSdOfferItemConditionCustom\":\"\",\"actionSdRecipeCategoryAuto\":true,\"actionSdRecipeCategory\":\"\",\"actionSdRecipeCuisineAuto\":true,\"actionSdRecipeCuisine\":\"\",\"actionSdKeywordsAuto\":true,\"actionSdKeywords\":\"\",\"actionSdRecipeIngredientAuto\":true,\"actionSdRecipeIngredient\":\"\",\"actionSdRecipeInstructionsAuto\":true,\"actionSdRecipeInstructions\":\"\",\"actionSdRecipeYieldAuto\":true,\"actionSdRecipeYield\":\"\",\"actionSdPrepTimeAuto\":true,\"actionSdPrepTime\":0,\"actionSdCookTimeAuto\":true,\"actionSdCookTime\":0,\"actionSdTotalTimeAuto\":true,\"actionSdTotalTime\":0,\"actionSdCaloriesAuto\":true,\"actionSdCalories\":0,\"actionSdFaqMode\":2,\"actionSdFaqQCss\":[],\"actionSdFaqACss\":[],\"actionSdFaqMainEntity\":[],\"actionSmExclude\":false,\"actionSmExcludeAge\":0,\"actionSmExcludeArchived\":true,\"actionErrorTitle\":\"Oops! that page cannot be found...\",\"actionErrorContent\":\"<p>We do not have any page at the address you requested. Sorry about the trouble!<\\/p><p>Please use the menu to navigate to other pages of the site, or perform a search to find what you are looking for!<\\/p>\",\"actionErrorSuggest\":true,\"actionErrorSuggestTitle\":\"<p>We do have these pages that look similar to your request, maybe try them first?<\\/p>\",\"actionErrorNoSuggestText\":\"\",\"actionErrorShowDetails\":true,\"actionErrorRandomImage\":true,\"actionErrorCode\":404,\"actionErrorMenu\":[]}', NULL, '0', '0', '1', '2024-11-26 07:42:57', NULL, '1'), ('2', '140', '0', 'Default catch-all error page', '{\"id\":0,\"ordering\":2,\"orderAfter\":-1,\"orderTarget\":-1,\"orderDirection\":\"after\",\"type\":140,\"title\":\"Default catch-all error page\",\"enabled\":\"0\",\"urlSpec\":\"/{*}\",\"urlNegSpec\":\"\",\"disregardQuery\":true,\"disregardCase\":true,\"includedLanguages\":[],\"includedExtensions\":[],\"viewSpec\":\"\",\"viewNegSpec\":\"\",\"includedCategories\":[],\"excludedCategories\":[],\"enableAfter\":\"2024-11-26 07:42:57\",\"enableUntil\":null,\"actionReappendQuery\":false,\"actionRedirectType\":301,\"actionRedirectTarget\":\"/\",\"actionReplacerLocation\":\"content\",\"actionReplacerProtectLinks\":true,\"actionReplacerCaseSensitive\":false,\"actionReplacerWholeWordsOnly\":false,\"actionReplacerType\":\"text\",\"actionReplacerTargetBlank\":false,\"actionReplacerNoFollow\":false,\"actionReplacerSource\":\"\",\"actionReplacerTarget\":\"\",\"actionReplacerMaxReplacements\":99999,\"actionCanonicalTarget\":\"/{*}\",\"actionCanonicalTargetUseCf\":false,\"actionCanonicalTargetCfId\":[],\"actionWafType\":404,\"actionRawContentHeadTop\":\"\",\"actionRawContentHeadBottom\":\"\",\"actionRawContentBodyTop\":\"\",\"actionRawContentBodyBottom\":\"\",\"actionAnalyticsProvider\":\"\",\"actionAnalyticsUniversalgaId\":\"\",\"actionAnalyticsUniversalgaCustom\":\"\",\"actionAnalyticsGaAnonymize\":true,\"actionAnalyticsGaDisplayFeatures\":false,\"actionAnalyticsGaAdFeatures\":true,\"actionAnalyticsGaLinkAttribution\":false,\"actionAnalyticsGaCustomDomain\":\"auto\",\"actionAnalyticsGaCustomUrl\":\"\",\"actionAnalyticsGaCookieDomain\":\"\",\"actionAnalyticsGaOptions\":[],\"actionAnalyticsGlobalgaId\":\"\",\"actionAnalyticsGlobalgaCustom\":\"\",\"actionAnalyticsGtmId\":\"\",\"actionAnalyticsGtmDatalayer\":\"\",\"actionAnalyticsFbpixelId\":\"\",\"actionAnalyticsFbpixelCustom\":\"\",\"actionAnalyticsMatomoId\":\"\",\"actionAnalyticsMatomoEndpoint\":\"https://matomo.org/\",\"actionAnalyticsMatomoTrackWithoutJs\":true,\"actionAnalyticsMatomoCustom\":\"\",\"actionAnalyticsClarityId\":\"\",\"actionAnalyticsCloudflareId\":\"\",\"actionAnalyticsFathomId\":\"\",\"actionAnalyticsFathomCustom\":\"\",\"actionSdType\":\"\",\"actionSdUrlAuto\":true,\"actionSdUrl\":\"\",\"actionSdHeadlineAuto\":true,\"actionSdHeadline\":\"\",\"actionSdDescriptionAuto\":true,\"actionSdDescription\":\"\",\"actionSdInLanguageAuto\":true,\"actionSdInLanguage\":\"\",\"actionSdAuthorAuto\":true,\"actionSdAuthor\":\"\",\"actionSdAuthorUrl\":\"\",\"actionSdImageAuto\":true,\"actionSdImageUrl\":\"\",\"actionSdImageAlt\":\"\",\"actionSdImageWidth\":0,\"actionSdImageHeight\":0,\"actionSdImagePixels\":0,\"actionSdPublisherAuto\":true,\"actionSdPublisher\":\"\",\"actionSdPublisherLogoAuto\":true,\"actionSdPublisherLogoUrl\":\"\",\"actionSdPublisherLogoAlt\":\"\",\"actionSdPublisherLogoWidth\":\"\",\"actionSdPublisherLogoHeight\":\"\",\"actionSdPublisherLogoPixels\":\"\",\"actionSdDatePublishedAuto\":true,\"actionSdDatePublished\":\"\",\"actionSdTimePublished\":\"\",\"actionSdDateModifiedAuto\":true,\"actionSdDateModified\":\"\",\"actionSdTimeModified\":\"\",\"actionSdAggregateRatingAuto\":\"\",\"actionSdRatingValue\":0,\"actionSdRatingCount\":0,\"actionSdWorstRating\":0,\"actionSdBestRating\":0,\"actionSdCustom\":\"\",\"actionSdNameAuto\":true,\"actionSdName\":\"\",\"actionSdThumbnailUrlAuto\":true,\"actionSdThumbnailUrl\":\"\",\"actionSdDateUploadedAuto\":true,\"actionSdDateUploaded\":\"\",\"actionSdTimeUploaded\":\"\",\"actionSdContentUrlAuto\":true,\"actionSdContentUrl\":\"\",\"actionSdProviderAuto\":true,\"actionSdProvider\":\"\",\"actionSdLocationNameAuto\":true,\"actionSdLocationName\":\"\",\"actionSdLocationAuto\":true,\"actionSdLocation\":\"\",\"actionSdDateStartedAuto\":true,\"actionSdDateStarted\":\"\",\"actionSdTimeStarted\":\"\",\"actionSdDateEndedAuto\":true,\"actionSdDateEnded\":\"\",\"actionSdTimeEnded\":\"\",\"actionSdOffersAuto\":true,\"actionSdPerformerAuto\":true,\"actionSdPerformer\":\"\",\"actionSdPerformerType\":\"Person\",\"actionSdOrganizerAuto\":true,\"actionSdOrganizer\":\"\",\"actionSdEventAttendanceModeAuto\":true,\"actionSdEventAttendanceMode\":\"http://schema.org/OnlineEventAttendanceMode\",\"actionSdEventStatusAuto\":true,\"actionSdEventStatus\":[\"http://schema.org/EventScheduled\"],\"actionSdOfferPriceAuto\":true,\"actionSdOfferPrice\":0,\"actionSdOfferPriceCurrencyAuto\":true,\"actionSdOfferPriceCurrency\":\"USD\",\"actionSdOfferDateValidFromAuto\":true,\"actionSdOfferDateValidFrom\":\"\",\"actionSdOfferTimeValidFrom\":\"\",\"actionSdOfferAvailabilityAuto\":true,\"actionSdOfferAvailability\":[\"http://schema.org/InStock\"],\"actionSdOfferUrlAuto\":true,\"actionSdOfferUrl\":\"\",\"actionSdBrandAuto\":true,\"actionSdBrand\":null,\"actionSdSkuAuto\":true,\"actionSdSku\":\"\",\"actionSdOfferDatePriceValidUntilAuto\":true,\"actionSdOfferDatePriceValidUntil\":\"\",\"actionSdOfferTimePriceValidUntil\":\"\",\"actionSdOfferItemConditionAuto\":true,\"actionSdOfferItemCondition\":[\"http://schema.org/NewCondition\"],\"actionSdOfferItemConditionCustom\":\"\",\"actionSdRecipeCategoryAuto\":true,\"actionSdRecipeCategory\":\"\",\"actionSdRecipeCuisineAuto\":true,\"actionSdRecipeCuisine\":\"\",\"actionSdKeywordsAuto\":true,\"actionSdKeywords\":\"\",\"actionSdRecipeIngredientAuto\":true,\"actionSdRecipeIngredient\":\"\",\"actionSdRecipeInstructionsAuto\":true,\"actionSdRecipeInstructions\":\"\",\"actionSdRecipeYieldAuto\":true,\"actionSdRecipeYield\":\"\",\"actionSdPrepTimeAuto\":true,\"actionSdPrepTime\":0,\"actionSdCookTimeAuto\":true,\"actionSdCookTime\":0,\"actionSdTotalTimeAuto\":true,\"actionSdTotalTime\":0,\"actionSdCaloriesAuto\":true,\"actionSdCalories\":0,\"actionSdFaqMode\":2,\"actionSdFaqQCss\":[],\"actionSdFaqACss\":[],\"actionSdFaqMainEntity\":[],\"actionSmExclude\":false,\"actionSmExcludeAge\":0,\"actionSmExcludeArchived\":true,\"actionErrorTitle\":\"Oops! An error just happened...\",\"actionErrorContent\":\"<p>There was an error processing your request. Sorry about the trouble!<\\/p><p>Please use the menu to navigate to other pages of the site, or perform a search to find what you are looking for!<\\/p>\",\"actionErrorSuggest\":false,\"actionErrorSuggestTitle\":\"\",\"actionErrorNoSuggestText\":\"\",\"actionErrorShowDetails\":true,\"actionErrorRandomImage\":true,\"actionErrorCode\":0,\"actionErrorMenu\":[]}', NULL, '0', '0', '1', '2024-11-26 07:42:57', NULL, '2'); /**ABDB**/CREATE TABLE `#__forseo_referrers_pages` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Primary Key', `referrer_id` int(10) unsigned NOT NULL COMMENT 'Id in the referrers table', `referree_id` int(10) unsigned NOT NULL COMMENT 'Id in the pages table', PRIMARY KEY (`id`), KEY `referrer_id` (`referrer_id`), KEY `referree_id` (`referree_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /**ABDB**/CREATE TABLE `#__forseo_referrers_links` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Primary Key', `referrer_id` int(10) unsigned NOT NULL COMMENT 'Id in the referrers table', `referree_id` int(10) unsigned NOT NULL COMMENT 'Id in the pages table', PRIMARY KEY (`id`), KEY `referrer_id` (`referrer_id`), KEY `referree_id` (`referree_id`) ) ENGINE=InnoDB AUTO_INCREMENT=175 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /**ABDB**/INSERT INTO `#__forseo_referrers_links` VALUES ('1', '1', '1'), ('2', '2', '1'), ('3', '3', '1'), ('4', '4', '1'), ('5', '5', '1'), ('6', '6', '1'), ('7', '7', '1'), ('8', '8', '1'), ('9', '9', '1'), ('10', '10', '1'), ('11', '11', '1'), ('12', '12', '1'), ('13', '13', '1'), ('14', '14', '1'), ('15', '15', '1'), ('16', '16', '1'), ('17', '17', '1'), ('18', '18', '1'), ('19', '19', '1'), ('20', '20', '1'), ('21', '21', '1'), ('22', '22', '1'), ('23', '23', '1'), ('24', '24', '1'), ('25', '25', '1'), ('26', '26', '1'), ('27', '27', '1'), ('28', '28', '1'), ('29', '29', '1'), ('30', '30', '1'), ('31', '31', '1'), ('32', '32', '1'), ('33', '33', '1'), ('34', '34', '1'), ('35', '35', '1'), ('36', '36', '1'), ('37', '37', '1'), ('38', '38', '1'), ('39', '39', '1'), ('40', '40', '1'), ('41', '41', '1'), ('42', '42', '1'), ('43', '43', '1'), ('44', '44', '1'), ('45', '45', '1'), ('46', '1', '2'), ('47', '2', '2'), ('48', '3', '2'), ('49', '4', '2'), ('50', '5', '2'), ('51', '6', '2'), ('52', '7', '2'), ('53', '8', '2'), ('54', '9', '2'), ('55', '10', '2'), ('56', '11', '2'), ('57', '12', '2'), ('58', '13', '2'), ('59', '14', '2'), ('60', '15', '2'), ('61', '16', '2'), ('62', '17', '2'), ('63', '18', '2'), ('64', '19', '2'), ('65', '20', '2'), ('66', '21', '2'), ('67', '22', '2'), ('68', '23', '2'), ('69', '24', '2'), ('70', '25', '2'), ('71', '26', '2'), ('72', '27', '2'), ('73', '28', '2'), ('74', '29', '2'), ('75', '30', '2'), ('76', '31', '2'), ('77', '32', '2'), ('78', '33', '2'), ('79', '34', '2'), ('80', '35', '2'), ('81', '36', '2'), ('82', '37', '2'), ('83', '38', '2'), ('84', '39', '2'), ('85', '40', '2'), ('86', '41', '2'), ('87', '42', '2'), ('88', '43', '2'), ('89', '44', '2'), ('90', '45', '2'), ('91', '46', '1'), ('92', '46', '2'), ('93', '47', '1'), ('94', '47', '2'), ('95', '48', '1'), ('96', '48', '2'), ('97', '49', '1'), ('98', '49', '2'), ('99', '50', '1'), ('100', '50', '2'), ('101', '51', '1'), ('102', '51', '2'), ('103', '52', '1'), ('104', '52', '2'), ('105', '53', '1'), ('106', '53', '2'), ('107', '54', '1'), ('108', '54', '2'), ('109', '55', '1'), ('110', '55', '2'), ('111', '56', '1'), ('112', '56', '2'), ('113', '57', '1'), ('114', '57', '2'), ('115', '58', '1'), ('116', '58', '2'), ('117', '59', '1'), ('118', '59', '2'), ('119', '60', '1'), ('120', '60', '2'), ('121', '61', '1'), ('122', '61', '2'), ('123', '62', '1'), ('124', '62', '2'), ('125', '63', '1'), ('126', '63', '2'), ('127', '64', '1'), ('128', '64', '2'), ('129', '65', '1'), ('130', '65', '2'), ('131', '66', '1'), ('132', '66', '2'), ('133', '67', '1'), ('134', '67', '2'), ('135', '68', '1'), ('136', '68', '2'), ('137', '69', '1'), ('138', '69', '2'), ('139', '70', '1'), ('140', '70', '2'), ('141', '71', '1'), ('142', '71', '2'), ('143', '72', '1'), ('144', '72', '2'), ('145', '73', '1'), ('146', '73', '2'), ('147', '74', '1'), ('148', '74', '2'), ('149', '75', '1'), ('150', '75', '2'), ('151', '76', '1'), ('152', '76', '2'), ('153', '77', '1'), ('154', '77', '2'), ('155', '78', '1'), ('156', '78', '2'), ('157', '79', '1'), ('158', '79', '2'), ('159', '80', '1'), ('160', '80', '2'), ('161', '81', '1'), ('162', '81', '2'), ('163', '82', '1'), ('164', '82', '2'), ('165', '83', '1'), ('166', '83', '2'), ('167', '84', '1'), ('168', '84', '2'), ('169', '85', '1'), ('170', '85', '2'), ('171', '86', '1'), ('172', '86', '2'), ('173', '87', '1'), ('174', '87', '2'); /**ABDB**/CREATE TABLE `#__forseo_referrers_errors` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Primary Key', `referrer_id` int(10) unsigned NOT NULL COMMENT 'Id in the referrers table', `referree_id` int(10) unsigned NOT NULL COMMENT 'Id in the errors table', PRIMARY KEY (`id`), KEY `referrer_id` (`referrer_id`), KEY `referree_id` (`referree_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /**ABDB**/CREATE TABLE `#__forseo_referrers` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Primary Key', `url` varchar(190) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Indexable URL representation', `full_url` varchar(2048) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Full URL as stored', PRIMARY KEY (`id`), UNIQUE KEY `url` (`url`) ) ENGINE=InnoDB AUTO_INCREMENT=88 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /**ABDB**/INSERT INTO `#__forseo_referrers` VALUES ('1', 'fa', 'fa'), ('2', 'fa/about-us-3', 'fa/about-us-3'), ('3', 'fa/virtuemart/product-category', 'fa/virtuemart/product-category'), ('4', 'fa/virtuemart/product-category/offical-cosme-decom-1', 'fa/virtuemart/product-category/offical-cosme-decom-1'), ('5', 'fa/virtuemart/product-category/mascara-for-full-lashes-1', 'fa/virtuemart/product-category/mascara-for-full-lashes-1'), ('6', 'fa/virtuemart/product-category/chanel-mascara', 'fa/virtuemart/product-category/chanel-mascara'), ('7', 'fa/virtuemart/product-category/offical-cosme-decom', 'fa/virtuemart/product-category/offical-cosme-decom'), ('8', 'fa/virtuemart/product-category/mascara-for-full-lashes', 'fa/virtuemart/product-category/mascara-for-full-lashes'), ('9', 'fa/virtuemart/product-category/maybellin-face-power', 'fa/virtuemart/product-category/maybellin-face-power'), ('10', 'fa/component/virtuemart/شیشه-وآیینه', 'fa/component/virtuemart/شیشه-وآیینه'), ('11', 'fa/component/virtuemart/شیشه-وآیینه/تابلو-و-ویترای', 'fa/component/virtuemart/شیشه-وآیینه/تابلو-و-ویترای'), ('12', 'fa/component/virtuemart/شیشه-وآیینه/شیشه-گری', 'fa/component/virtuemart/شیشه-وآیینه/شیشه-گری'), ('13', 'fa/component/virtuemart/شیشه-وآیینه/شیشه-دکوراتیو', 'fa/component/virtuemart/شیشه-وآیینه/شیشه-دکوراتیو'), ('14', 'fa/component/virtuemart/شیشه-وآیینه/شیشه-های-زینتی', 'fa/component/virtuemart/شیشه-وآیینه/شیشه-های-زینتی'), ('15', 'fa/component/virtuemart/شیشه-وآیینه/وسایل-دکوری', 'fa/component/virtuemart/شیشه-وآیینه/وسایل-دکوری'), ('16', 'fa/component/virtuemart/مصنوعات-فلزی', 'fa/component/virtuemart/مصنوعات-فلزی'), ('17', 'fa/component/virtuemart/مصنوعات-فلزی/حکاکی-روی-فلز', 'fa/component/virtuemart/مصنوعات-فلزی/حکاکی-روی-فلز'), ('18', 'fa/component/virtuemart/مصنوعات-فلزی/قلم-زنی', 'fa/component/virtuemart/مصنوعات-فلزی/قلم-زنی'), ('19', 'fa/component/virtuemart/مصنوعات-فلزی/مسگری', 'fa/component/virtuemart/مصنوعات-فلزی/مسگری'), ('20', 'fa/component/virtuemart/مصنوعات-فلزی/ملیله-کاری', 'fa/component/virtuemart/مصنوعات-فلزی/ملیله-کاری'), ('21', 'fa/component/virtuemart/مصنوعات-فلزی/مینا-کاری', 'fa/component/virtuemart/مصنوعات-فلزی/مینا-کاری'), ('22', 'fa/component/virtuemart/چرم-کاری-سفالگری-کاشی', 'fa/component/virtuemart/چرم-کاری-سفالگری-کاشی'), ('23', 'fa/component/virtuemart/چرم-کاری-سفالگری-کاشی/دستافریده-های-سفالی', 'fa/component/virtuemart/چرم-کاری-سفالگری-کاشی/دستافریده-های-سفالی'), ('24', 'fa/component/virtuemart/چرم-کاری-سفالگری-کاشی/دستافریده-های-سنگی', 'fa/component/virtuemart/چرم-کاری-سفالگری-کاشی/دستافریده-های-سنگی'), ('25', 'fa/component/virtuemart/چرم-کاری-سفالگری-کاشی/دستافریده-های-چرمی', 'fa/component/virtuemart/چرم-کاری-سفالگری-کاشی/دستافریده-های-چرمی'), ('26', 'fa/component/virtuemart/چرم-کاری-سفالگری-کاشی/per-inceptos', 'fa/component/virtuemart/چرم-کاری-سفالگری-کاشی/per-inceptos'), ('27', 'fa/component/virtuemart/چرم-کاری-سفالگری-کاشی/کاشی-شکسته', 'fa/component/virtuemart/چرم-کاری-سفالگری-کاشی/کاشی-شکسته'), ('28', 'fa/component/virtuemart/صنایع-چوبی', 'fa/component/virtuemart/صنایع-چوبی'), ('29', 'fa/component/virtuemart/صنایع-چوبی/ارسی-چوبی', 'fa/component/virtuemart/صنایع-چوبی/ارسی-چوبی'), ('30', 'fa/component/virtuemart/صنایع-چوبی/حصیربافی', 'fa/component/virtuemart/صنایع-چوبی/حصیربافی'), ('31', 'fa/component/virtuemart/صنایع-چوبی/خاتم-کاری', 'fa/component/virtuemart/صنایع-چوبی/خاتم-کاری'), ('32', 'fa/component/virtuemart/صنایع-چوبی/مشبک-کاری', 'fa/component/virtuemart/صنایع-چوبی/مشبک-کاری'), ('33', 'fa/component/virtuemart/صنایع-چوبی/معرق-کاری', 'fa/component/virtuemart/صنایع-چوبی/معرق-کاری'), ('34', 'fa/component/virtuemart/صنایع-چوبی/منبت-کاری', 'fa/component/virtuemart/صنایع-چوبی/منبت-کاری'), ('35', 'fa/component/virtuemart/بافته-ها-و-منسوجات', 'fa/component/virtuemart/بافته-ها-و-منسوجات'), ('36', 'fa/component/virtuemart/بافته-ها-و-منسوجات/بافتنی-ها', 'fa/component/virtuemart/بافته-ها-و-منسوجات/بافتنی-ها'), ('37', 'fa/component/virtuemart/بافته-ها-و-منسوجات/دوخت-و-دوز', 'fa/component/virtuemart/بافته-ها-و-منسوجات/دوخت-و-دوز'), ('38', 'fa/component/virtuemart/بافته-ها-و-منسوجات/فرش', 'fa/component/virtuemart/بافته-ها-و-منسوجات/فرش'), ('39', 'fa/component/virtuemart/بافته-ها-و-منسوجات/قالی', 'fa/component/virtuemart/بافته-ها-و-منسوجات/قالی'), ('40', 'fa/component/virtuemart/بافته-ها-و-منسوجات/maecenas-vehicula-preti', 'fa/component/virtuemart/بافته-ها-و-منسوجات/maecenas-vehicula-preti'), ('41', 'fa/component/virtuemart/بافته-ها-و-منسوجات/گلیم', 'fa/component/virtuemart/بافته-ها-و-منسوجات/گلیم'), ('42', 'fa/virtuemart/product-category/conser-adipiscing-detail', 'fa/virtuemart/product-category/conser-adipiscing-detail'), ('43', 'fa/virtuemart/product-category/donec-scelerisque-detail', 'fa/virtuemart/product-category/donec-scelerisque-detail'), ('44', 'fa/virtuemart/product-category/nulla-euismod,-nibh-nec-detail', 'fa/virtuemart/product-category/nulla-euismod,-nibh-nec-detail'), ('45', 'fa/ثبت-نام-فروشنده', 'fa/ثبت-نام-فروشنده'), ('46', 'fa/component/virtuemart/carpet/duis-eget-conse-detail', 'fa/component/virtuemart/carpet/duis-eget-conse-detail'), ('47', 'fa/component/virtuemart/شیشه-وآیینه/maecenas-vehic-detail', 'fa/component/virtuemart/شیشه-وآیینه/maecenas-vehic-detail'), ('48', 'fa/component/virtuemart/carpet/integer-egestas-detail', 'fa/component/virtuemart/carpet/integer-egestas-detail'), ('49', 'fa/virtuemart/product-detail', 'fa/virtuemart/product-detail'), ('50', 'fa/virtuemart/product-category/morbi-vulputate-diam-detail', 'fa/virtuemart/product-category/morbi-vulputate-diam-detail'), ('51', 'fa/virtuemart/product-category/aenean-vehicula-vehic-detail', 'fa/virtuemart/product-category/aenean-vehicula-vehic-detail'), ('52', 'fa/virtuemart/product-category/interdum-nibh-gravida-detail', 'fa/virtuemart/product-category/interdum-nibh-gravida-detail'), ('53', 'fa/virtuemart/product-category/cras-nec-placerat-libe-detail', 'fa/virtuemart/product-category/cras-nec-placerat-libe-detail'), ('54', 'fa/virtuemart/product-category/cras-id-risus-sem-detail', 'fa/virtuemart/product-category/cras-id-risus-sem-detail'), ('55', 'fa/virtuemart/product-category/lorem-ipsum-dolor-detail', 'fa/virtuemart/product-category/lorem-ipsum-dolor-detail'), ('56', 'fa/virtuemart/product-category/nulla-in-odio-diam-detail', 'fa/virtuemart/product-category/nulla-in-odio-diam-detail'), ('57', 'fa/component/virtuemart/شیشه-وآیینه/ferme-ntum-arc-detail', 'fa/component/virtuemart/شیشه-وآیینه/ferme-ntum-arc-detail'), ('58', 'fa/virtuemart/product-category/quisque-arcu-elit-detail', 'fa/virtuemart/product-category/quisque-arcu-elit-detail'), ('59', 'fa/component/virtuemart/شیشه-وآیینه/spendisse-sit-ame-detail', 'fa/component/virtuemart/شیشه-وآیینه/spendisse-sit-ame-detail'), ('60', 'fa/virtuemart/product-category/mauris-venenatis-detail', 'fa/virtuemart/product-category/mauris-venenatis-detail'), ('61', 'fa/yoga', 'fa/yoga'), ('62', 'fa/aliquam', 'fa/aliquam'), ('63', 'fa/?id=204', 'fa/?id=204'), ('64', 'fa/virtuemart/product-category/دارو-درمان-تقویت/مکمل-ها', 'fa/virtuemart/product-category/دارو-درمان-تقویت/مکمل-ها'), ('65', 'fa/virtuemart/product-category/اکسسوری', 'fa/virtuemart/product-category/اکسسوری'), ('66', 'fa/virtuemart/product-category/اکسسوری/تخت-و-بالش-جنسی', 'fa/virtuemart/product-category/اکسسوری/تخت-و-بالش-جنسی'), ('67', 'fa/virtuemart/product-category/اکسسوری/حلقه-ویبراتور', 'fa/virtuemart/product-category/اکسسوری/حلقه-ویبراتور'), ('68', 'fa/virtuemart/product-category/اکسسوری/دوش-مقعدی', 'fa/virtuemart/product-category/اکسسوری/دوش-مقعدی'), ('69', 'fa/virtuemart/product-category/اکسسوری/وزنه-کگل', 'fa/virtuemart/product-category/اکسسوری/وزنه-کگل'), ('70', 'fa/virtuemart/product-category/اکسسوری/وکیوم', 'fa/virtuemart/product-category/اکسسوری/وکیوم'), ('71', 'fa/virtuemart/product-category/اکسسوری/ویبراتور-1', 'fa/virtuemart/product-category/اکسسوری/ویبراتور-1'), ('72', 'fa/virtuemart/product-category/بافته-ها-و-منسوجات/ادکلن', 'fa/virtuemart/product-category/بافته-ها-و-منسوجات/ادکلن'), ('73', 'fa/virtuemart/product-category/بافته-ها-و-منسوجات/اسپری', 'fa/virtuemart/product-category/بافته-ها-و-منسوجات/اسپری'), ('74', 'fa/virtuemart/product-category/بافته-ها-و-منسوجات/عود', 'fa/virtuemart/product-category/بافته-ها-و-منسوجات/عود'), ('75', 'fa/virtuemart/product-category/بافته-ها-و-منسوجات/پد-خوشبو-کننده', 'fa/virtuemart/product-category/بافته-ها-و-منسوجات/پد-خوشبو-کننده'), ('76', 'fa/component/virtuemart/condom-kodex-detail', 'fa/component/virtuemart/condom-kodex-detail'), ('77', 'fa/bonus-pages-2/faq', 'fa/bonus-pages-2/faq'), ('78', 'fa/bonus-pages-2/testimonial2', 'fa/bonus-pages-2/testimonial2'), ('79', 'fa/bonus-pages-2/terms-of-service', 'fa/bonus-pages-2/terms-of-service'), ('80', 'fa/bonus-pages-2/sitemap', 'fa/bonus-pages-2/sitemap'), ('81', 'fa/bonus-pages-2/coming-soon', 'fa/bonus-pages-2/coming-soon'), ('82', 'fa/yoga?start=3', 'fa/yoga?start=3'), ('83', 'fa/weight-lifting', 'fa/weight-lifting'), ('84', 'fa/vensen-magein', 'fa/vensen-magein'), ('85', 'fa/mukan-tesgn', 'fa/mukan-tesgn'), ('86', 'fa/yoga/2016?view=archive&month=10', 'fa/yoga/2016?view=archive&month=10'), ('87', 'fa/yoga/2011?view=archive&month=5', 'fa/yoga/2011?view=archive&month=5'); /**ABDB**/CREATE TABLE `#__forseo_perf_data_agg` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Primary Key', `state` tinyint(4) NOT NULL DEFAULT 0 COMMENT '0: ready, 1: not enough data', `url` varchar(190) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Indexable URL representation', `full_url` varchar(2048) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Full URL as stored', `fid` int(10) unsigned DEFAULT 0 COMMENT 'FID value in 1/1000 ms', `fid_count` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'FID data points', `inp` int(10) unsigned DEFAULT 0 COMMENT 'INP value in 1/1000 ms', `inp_count` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'INP data points', `lcp` int(10) unsigned DEFAULT 0 COMMENT 'LCP value in 1/1000 ms', `lcp_count` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'LCP data points', `cls` int(10) unsigned DEFAULT 0 COMMENT 'CLS value in 1/1000 ms', `cls_count` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'CLS data points', `ttfb` int(10) unsigned DEFAULT 0 COMMENT 'TTFB value in 1/1000 ms', `ttfb_count` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'TTFB data points', `modified_at` datetime NOT NULL, `device` tinyint(4) DEFAULT 0 COMMENT '0: mobile, 1: desktop', PRIMARY KEY (`id`), KEY `url` (`url`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /**ABDB**/CREATE TABLE `#__forseo_perf_data` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Primary Key', `url` varchar(190) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Indexable URL representation', `full_url` varchar(2048) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Full URL as stored', `fid` int(10) unsigned DEFAULT 0 COMMENT 'FID value in 1/1000 ms', `inp` int(10) unsigned DEFAULT 0 COMMENT 'INP value in 1/1000 ms', `lcp` int(10) unsigned DEFAULT 0 COMMENT 'LCP value in 1/1000 ms', `cls` int(10) unsigned DEFAULT 0 COMMENT 'CLS value in 1/1000 ms', `ttfb` int(10) unsigned DEFAULT 0 COMMENT 'TTFB value in 1/1000 ms', `ts` bigint(20) unsigned DEFAULT 0 COMMENT 'ms since Epoch', `device` tinyint(4) DEFAULT 0 COMMENT '0: mobile, 1: desktop', PRIMARY KEY (`id`), KEY `url_ts` (`url`,`ts`), KEY `fid` (`fid`), KEY `inp` (`inp`), KEY `lcp` (`lcp`), KEY `cls` (`cls`), KEY `ttfb` (`ttfb`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /**ABDB**/CREATE TABLE `#__forseo_pages_aliases` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Primary Key', `url` varchar(190) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Indexable version of aliased URL, with any query var', `full_url` varchar(2048) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Full URL', `alias` varchar(190) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Indexable version of aliased URL, with any query var', `full_alias` varchar(2048) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Full alias URL', `last_hit` datetime DEFAULT NULL COMMENT 'Last execution of this alias', `hits` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Number of hits of this alias', `enabled` tinyint(4) NOT NULL DEFAULT 1 COMMENT '1: enabled, 0: disabled', PRIMARY KEY (`id`), UNIQUE KEY `alias` (`alias`), KEY `url` (`url`), KEY `hits` (`hits`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /**ABDB**/CREATE TABLE `#__forseo_pages` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Primary Key', `status` smallint(6) NOT NULL DEFAULT 0 COMMENT '0: ok, 400+: error', `perf_status` tinyint(4) NOT NULL DEFAULT 0 COMMENT '0: no data, 1: ok, 2: failing', `url` varchar(190) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Indexable version of requested URL, with any query var', `full_url` varchar(2048) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Full requested URL as stored', `non_sef_vars` varchar(2048) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'json of non_sef vars from path', `input_vars` varchar(2048) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'json of non_sef vars set as input', `query` varchar(2048) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'json of query vars', `content_id` varchar(190) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Indexable id of the content displayed by this page', `full_content_id` varchar(2048) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Full content id as stored', `lang` varchar(50) NOT NULL DEFAULT '' COMMENT 'Language tag as used by platform', `page` varchar(50) NOT NULL DEFAULT '' COMMENT 'Display page id, Itemid on Joomla', `extension` varchar(50) NOT NULL DEFAULT '' COMMENT 'Extension creating the page', `view` varchar(50) NOT NULL DEFAULT '' COMMENT 'Extension view', `layout` varchar(50) NOT NULL DEFAULT '' COMMENT 'Extension layout', `item_id` varchar(190) NOT NULL DEFAULT '' COMMENT 'Id of the item viewed, can be array as json', `content_lang` varchar(40) NOT NULL DEFAULT '' COMMENT 'Language tag for content', `hash` varchar(40) NOT NULL DEFAULT '' COMMENT 'Content hash', `hash_links` varchar(40) NOT NULL DEFAULT '' COMMENT 'Links in content hash', `hash_images` varchar(40) NOT NULL DEFAULT '' COMMENT 'Images in content hash', `scheme` varchar(40) NOT NULL DEFAULT '' COMMENT 'Scheme used when page data was stored', `host` varchar(100) NOT NULL DEFAULT '' COMMENT 'Host used when page data was stored', `click_depth` smallint(6) NOT NULL DEFAULT -1 COMMENT 'Clicks to reach page, -1 = no click, page is not linked', `last_hit` datetime NOT NULL COMMENT 'Last request for that page', `hits` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Number of requests', `canonical_mode` smallint(6) NOT NULL DEFAULT 0 COMMENT '0: auto, 1: user', `canonical_user` smallint(6) NOT NULL DEFAULT 0 COMMENT '0: included, 1: excluded', `canonical_auto` smallint(6) NOT NULL DEFAULT 0 COMMENT '0: included, 1: excluded', `sitemap_mode` smallint(6) NOT NULL DEFAULT 0 COMMENT '0: auto, 1: user', `sitemap_user` smallint(6) NOT NULL DEFAULT 0 COMMENT '0: included, 1: excluded', `sitemap_auto` smallint(6) NOT NULL DEFAULT 0 COMMENT '0: included, 1: excluded', `crawled_at` datetime NOT NULL, `modified_at` datetime DEFAULT NULL, `enabled` tinyint(4) NOT NULL DEFAULT 1 COMMENT '1: enabled, 0: disabled', PRIMARY KEY (`id`), UNIQUE KEY `url` (`url`), KEY `lang` (`lang`), KEY `content_id` (`content_id`), KEY `extension` (`extension`) ) ENGINE=InnoDB AUTO_INCREMENT=88 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /**ABDB**/INSERT INTO `#__forseo_pages` VALUES ('1', '0', '0', 'fa', 'fa', '{\"Itemid\":\"1899\",\"id\":\"263\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"option\":\"com_content\",\"view\":\"article\"}', '{\"Itemid\":\"1899\",\"id\":\"263\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"option\":\"com_content\",\"view\":\"article\"}', '[]', 'id=263&option=com_content&view=article', 'id=263&option=com_content&view=article', 'fa-IR', '1899', 'content', 'article', '', '\"263\"', '', '', '9c84c008c54d12c2f3a2f3965bd765c9c81f928d', '6ad6dd1fbbb434f99c65c17ee66614ac55452ed4', 'https', 'digilove.ir', '0', '2024-11-26 07:48:33', '0', '0', '0', '0', '0', '0', '0', '2024-11-26 07:48:33', '2016-11-10 03:07:29', '1'), ('2', '0', '0', 'fa/about-us-3', 'fa/about-us-3', '{\"Itemid\":\"1992\",\"id\":\"263\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"option\":\"com_content\",\"view\":\"article\"}', '{\"Itemid\":\"1992\",\"id\":\"263\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"option\":\"com_content\",\"view\":\"article\"}', '[]', 'id=263&option=com_content&view=article', 'id=263&option=com_content&view=article', 'fa-IR', '1992', 'content', 'article', '', '\"263\"', '', 'b04d2226687b08e28cd35c1c0d9d1099', '7f152da9cf10fb4ce641780bd586f702ac6ad8bc', '1b7d34423984b285bf97541e2a88c03c6d712783', 'https', 'digilove.ir', '1', '2024-11-26 19:54:54', '0', '0', '0', '1', '0', '0', '1', '2024-11-26 19:54:54', '2024-11-26 15:26:00', '1'), ('3', '0', '0', 'fa/virtuemart/product-category', 'fa/virtuemart/product-category', '{\"Itemid\":\"2028\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"option\":\"com_virtuemart\",\"view\":\"category\",\"virtuemart_category_id\":\"2\",\"virtuemart_manufacturer_id\":\"0\"}', '{\"Itemid\":\"2028\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"option\":\"com_virtuemart\",\"view\":\"category\",\"virtuemart_category_id\":\"2\",\"virtuemart_manufacturer_id\":\"0\"}', '[]', 'Itemid=2028&option=com_virtuemart&view=category&virtuemart_category_id=2&virtuemart_manufacturer_id=0', 'Itemid=2028&option=com_virtuemart&view=category&virtuemart_category_id=2&virtuemart_manufacturer_id=0', 'fa-IR', '2028', 'virtuemart', 'category', '', '\"\"', '', '', 'c823ca83ef89427c8f299be21134c4c618012d27', '0688c7624a5194280af8ac01e436b47a3c64f062', 'https', 'digilove.ir', '1', '2024-11-26 12:53:02', '0', '0', '0', '0', '0', '0', '0', '2024-11-26 12:53:02', NULL, '1'), ('4', '0', '0', 'fa/virtuemart/product-category/offical-cosme-decom-1', 'fa/virtuemart/product-category/offical-cosme-decom-1', '{\"Itemid\":\"2028\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limit\":\"24\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"category\",\"virtuemart_category_id\":\"14\"}', '{\"Itemid\":\"2028\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limit\":\"24\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"category\",\"virtuemart_category_id\":\"14\"}', '[]', 'Itemid=2028&limit=24&limitstart=0&option=com_virtuemart&view=category&virtuemart_category_id=14', 'Itemid=2028&limit=24&limitstart=0&option=com_virtuemart&view=category&virtuemart_category_id=14', 'fa-IR', '2028', 'virtuemart', 'category', '', '\"\"', '', '', '92d29ca0131949c5e9e34b2a87b1989664b548a3', '5e34b738f3e0e5c9720a7b305fc351fe84376d6a', 'https', 'digilove.ir', '1', '2024-11-26 12:53:47', '0', '0', '0', '0', '0', '0', '0', '2024-11-26 12:53:47', NULL, '1'), ('5', '0', '0', 'fa/virtuemart/product-category/mascara-for-full-lashes-1', 'fa/virtuemart/product-category/mascara-for-full-lashes-1', '{\"Itemid\":\"2028\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limit\":\"24\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"category\",\"virtuemart_category_id\":\"12\"}', '{\"Itemid\":\"2028\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limit\":\"24\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"category\",\"virtuemart_category_id\":\"12\"}', '[]', 'Itemid=2028&limit=24&limitstart=0&option=com_virtuemart&view=category&virtuemart_category_id=12', 'Itemid=2028&limit=24&limitstart=0&option=com_virtuemart&view=category&virtuemart_category_id=12', 'fa-IR', '2028', 'virtuemart', 'category', '', '\"\"', '', '', '674231cd2aa77cf61788245d4e7d5b4c52ab6a1b', '5e34b738f3e0e5c9720a7b305fc351fe84376d6a', 'https', 'digilove.ir', '1', '2024-11-26 12:54:07', '0', '0', '0', '0', '0', '0', '0', '2024-11-26 12:54:07', NULL, '1'), ('6', '0', '0', 'fa/virtuemart/product-category/chanel-mascara', 'fa/virtuemart/product-category/chanel-mascara', '{\"Itemid\":\"2028\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limit\":\"24\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"category\",\"virtuemart_category_id\":\"10\"}', '{\"Itemid\":\"2028\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limit\":\"24\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"category\",\"virtuemart_category_id\":\"10\"}', '[]', 'Itemid=2028&limit=24&limitstart=0&option=com_virtuemart&view=category&virtuemart_category_id=10', 'Itemid=2028&limit=24&limitstart=0&option=com_virtuemart&view=category&virtuemart_category_id=10', 'fa-IR', '2028', 'virtuemart', 'category', '', '\"\"', '', '', 'd9dd951c847694664c482695cce2999fec0dfae1', '5e34b738f3e0e5c9720a7b305fc351fe84376d6a', 'https', 'digilove.ir', '1', '2024-11-26 13:33:35', '0', '0', '0', '0', '0', '0', '0', '2024-11-26 13:33:35', NULL, '1'), ('7', '0', '0', 'fa/virtuemart/product-category/offical-cosme-decom', 'fa/virtuemart/product-category/offical-cosme-decom', '{\"Itemid\":\"2028\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limit\":\"24\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"category\",\"virtuemart_category_id\":\"13\"}', '{\"Itemid\":\"2028\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limit\":\"24\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"category\",\"virtuemart_category_id\":\"13\"}', '[]', 'Itemid=2028&limit=24&limitstart=0&option=com_virtuemart&view=category&virtuemart_category_id=13', 'Itemid=2028&limit=24&limitstart=0&option=com_virtuemart&view=category&virtuemart_category_id=13', 'fa-IR', '2028', 'virtuemart', 'category', '', '\"\"', '', '', '080ea3e55ea213b7169b5b91da8f6a03bbb0a544', '5e34b738f3e0e5c9720a7b305fc351fe84376d6a', 'https', 'digilove.ir', '1', '2024-11-26 13:33:57', '0', '0', '0', '0', '0', '0', '0', '2024-11-26 13:33:57', NULL, '1'), ('8', '0', '0', 'fa/virtuemart/product-category/mascara-for-full-lashes', 'fa/virtuemart/product-category/mascara-for-full-lashes', '{\"Itemid\":\"2028\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limit\":\"24\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"category\",\"virtuemart_category_id\":\"11\"}', '{\"Itemid\":\"2028\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limit\":\"24\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"category\",\"virtuemart_category_id\":\"11\"}', '[]', 'Itemid=2028&limit=24&limitstart=0&option=com_virtuemart&view=category&virtuemart_category_id=11', 'Itemid=2028&limit=24&limitstart=0&option=com_virtuemart&view=category&virtuemart_category_id=11', 'fa-IR', '2028', 'virtuemart', 'category', '', '\"\"', '', '', 'f2d4554fccaf033c01d9882a3426810d732a4567', '5e34b738f3e0e5c9720a7b305fc351fe84376d6a', 'https', 'digilove.ir', '1', '2024-11-26 13:34:02', '0', '0', '0', '0', '0', '0', '0', '2024-11-26 13:34:02', NULL, '1'), ('9', '0', '0', 'fa/virtuemart/product-category/maybellin-face-power', 'fa/virtuemart/product-category/maybellin-face-power', '{\"Itemid\":\"2028\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limit\":\"24\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"category\",\"virtuemart_category_id\":\"9\"}', '{\"Itemid\":\"2028\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limit\":\"24\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"category\",\"virtuemart_category_id\":\"9\"}', '[]', 'Itemid=2028&limit=24&limitstart=0&option=com_virtuemart&view=category&virtuemart_category_id=9', 'Itemid=2028&limit=24&limitstart=0&option=com_virtuemart&view=category&virtuemart_category_id=9', 'fa-IR', '2028', 'virtuemart', 'category', '', '\"\"', '', '', '247d40c8133c64e6ef5e6f25cf7d61edaeb2bf8f', '5e34b738f3e0e5c9720a7b305fc351fe84376d6a', 'https', 'digilove.ir', '1', '2024-11-26 13:43:33', '0', '0', '0', '0', '0', '0', '0', '2024-11-26 13:43:33', NULL, '1'), ('10', '0', '0', 'fa/component/virtuemart/شیشه-وآیینه', 'fa/component/virtuemart/شیشه-وآیینه', '{\"Itemid\":null,\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limit\":\"24\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"category\",\"virtuemart_category_id\":\"1\"}', '{\"Itemid\":null,\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limit\":\"24\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"category\",\"virtuemart_category_id\":\"1\"}', '[]', 'limit=24&limitstart=0&option=com_virtuemart&view=category&virtuemart_category_id=1', 'limit=24&limitstart=0&option=com_virtuemart&view=category&virtuemart_category_id=1', 'fa-IR', '0', 'virtuemart', 'category', '', '\"\"', '', '', '512505447351f64d7b2ce3f1af645c019839f779', 'eae945f824ec36beb638b8381af506ca785aab7a', 'https', 'digilove.ir', '1', '2024-11-26 16:02:47', '0', '0', '0', '0', '0', '0', '0', '2024-11-26 16:02:47', NULL, '1'), ('11', '0', '0', 'fa/component/virtuemart/شیشه-وآیینه/تابلو-و-ویترای', 'fa/component/virtuemart/شیشه-وآیینه/تابلو-و-ویترای', '{\"Itemid\":null,\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limit\":\"24\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"category\",\"virtuemart_category_id\":\"19\"}', '{\"Itemid\":null,\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limit\":\"24\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"category\",\"virtuemart_category_id\":\"19\"}', '[]', 'limit=24&limitstart=0&option=com_virtuemart&view=category&virtuemart_category_id=19', 'limit=24&limitstart=0&option=com_virtuemart&view=category&virtuemart_category_id=19', 'fa-IR', '0', 'virtuemart', 'category', '', '\"\"', '', '', 'cf9a21f763a88464cec41b3bcae03d9da832e919', '727b24bb434a18d4502d617b4bea481d938ef522', 'https', 'digilove.ir', '1', '2024-11-26 16:04:36', '0', '0', '0', '0', '0', '0', '0', '2024-11-26 16:04:36', NULL, '1'), ('12', '0', '0', 'fa/component/virtuemart/شیشه-وآیینه/شیشه-گری', 'fa/component/virtuemart/شیشه-وآیینه/شیشه-گری', '{\"Itemid\":null,\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limit\":\"24\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"category\",\"virtuemart_category_id\":\"15\"}', '{\"Itemid\":null,\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limit\":\"24\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"category\",\"virtuemart_category_id\":\"15\"}', '[]', 'limit=24&limitstart=0&option=com_virtuemart&view=category&virtuemart_category_id=15', 'limit=24&limitstart=0&option=com_virtuemart&view=category&virtuemart_category_id=15', 'fa-IR', '0', 'virtuemart', 'category', '', '\"\"', '', '', 'a329a58844ad93e24f21be2ccf7e487722364e95', '727b24bb434a18d4502d617b4bea481d938ef522', 'https', 'digilove.ir', '1', '2024-11-26 16:08:25', '0', '0', '0', '0', '0', '0', '0', '2024-11-26 16:08:25', NULL, '1'), ('13', '0', '0', 'fa/component/virtuemart/شیشه-وآیینه/شیشه-دکوراتیو', 'fa/component/virtuemart/شیشه-وآیینه/شیشه-دکوراتیو', '{\"Itemid\":null,\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limit\":\"24\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"category\",\"virtuemart_category_id\":\"18\"}', '{\"Itemid\":null,\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limit\":\"24\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"category\",\"virtuemart_category_id\":\"18\"}', '[]', 'limit=24&limitstart=0&option=com_virtuemart&view=category&virtuemart_category_id=18', 'limit=24&limitstart=0&option=com_virtuemart&view=category&virtuemart_category_id=18', 'fa-IR', '0', 'virtuemart', 'category', '', '\"\"', '', '', '2a84ca3cb42207fba0dabbd1e53790c7675ade6e', '727b24bb434a18d4502d617b4bea481d938ef522', 'https', 'digilove.ir', '1', '2024-11-26 16:10:33', '0', '0', '0', '0', '0', '0', '0', '2024-11-26 16:10:33', NULL, '1'), ('14', '0', '0', 'fa/component/virtuemart/شیشه-وآیینه/شیشه-های-زینتی', 'fa/component/virtuemart/شیشه-وآیینه/شیشه-های-زینتی', '{\"Itemid\":null,\"error\":\"404\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limit\":\"24\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"category\",\"virtuemart_category_id\":-2}', '{\"Itemid\":null,\"error\":\"404\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limit\":\"24\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"category\",\"virtuemart_category_id\":-2}', '[]', 'error=404&limit=24&limitstart=0&option=com_virtuemart&view=category&virtuemart_category_id=-2', 'error=404&limit=24&limitstart=0&option=com_virtuemart&view=category&virtuemart_category_id=-2', 'fa-IR', '0', 'virtuemart', 'category', '', '\"\"', '', '', 'ba579bc9cb91b2ebf103a92096935860d5255469', '50b1f25f81ab1f46b9d56692f593a7da19abf5bd', 'https', 'digilove.ir', '1', '2024-11-26 16:14:18', '0', '0', '0', '0', '0', '0', '0', '2024-11-26 16:14:18', NULL, '1'), ('15', '0', '0', 'fa/component/virtuemart/شیشه-وآیینه/وسایل-دکوری', 'fa/component/virtuemart/شیشه-وآیینه/وسایل-دکوری', '{\"Itemid\":null,\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limit\":\"24\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"category\",\"virtuemart_category_id\":\"16\"}', '{\"Itemid\":null,\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limit\":\"24\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"category\",\"virtuemart_category_id\":\"16\"}', '[]', 'limit=24&limitstart=0&option=com_virtuemart&view=category&virtuemart_category_id=16', 'limit=24&limitstart=0&option=com_virtuemart&view=category&virtuemart_category_id=16', 'fa-IR', '0', 'virtuemart', 'category', '', '\"\"', '', '', 'b19afd297d1cb0dfed6c2305e37c14de59eafd0d', 'b6e3b974958a039699528eed16bb40d0e800160b', 'https', 'digilove.ir', '1', '2024-11-26 20:03:08', '0', '0', '0', '0', '0', '0', '0', '2024-11-26 20:03:08', NULL, '1'), ('16', '0', '0', 'fa/component/virtuemart/مصنوعات-فلزی', 'fa/component/virtuemart/مصنوعات-فلزی', '{\"Itemid\":null,\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limit\":\"24\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"category\",\"virtuemart_category_id\":\"7\"}', '{\"Itemid\":null,\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limit\":\"24\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"category\",\"virtuemart_category_id\":\"7\"}', '[]', 'limit=24&limitstart=0&option=com_virtuemart&view=category&virtuemart_category_id=7', 'limit=24&limitstart=0&option=com_virtuemart&view=category&virtuemart_category_id=7', 'fa-IR', '0', 'virtuemart', 'category', '', '\"\"', '', '', 'a03ee231bb2313c545cb26dea39eaeffd86d961b', '727b24bb434a18d4502d617b4bea481d938ef522', 'https', 'digilove.ir', '1', '2024-11-26 16:16:32', '0', '0', '0', '0', '0', '0', '0', '2024-11-26 16:16:32', NULL, '1'), ('17', '0', '0', 'fa/component/virtuemart/مصنوعات-فلزی/حکاکی-روی-فلز', 'fa/component/virtuemart/مصنوعات-فلزی/حکاکی-روی-فلز', '{\"Itemid\":null,\"error\":\"404\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limit\":\"24\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"category\",\"virtuemart_category_id\":-2}', '{\"Itemid\":null,\"error\":\"404\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limit\":\"24\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"category\",\"virtuemart_category_id\":-2}', '[]', 'error=404&limit=24&limitstart=0&option=com_virtuemart&view=category&virtuemart_category_id=-2', 'error=404&limit=24&limitstart=0&option=com_virtuemart&view=category&virtuemart_category_id=-2', 'fa-IR', '0', 'virtuemart', 'category', '', '\"\"', '', '', '93d0c16895ef62dd06dbd07665e0ae9ead3edc9e', 'a6942fd7b25d5072800130f58a575ed6c9858c64', 'https', 'digilove.ir', '1', '2024-11-26 16:33:06', '0', '0', '0', '1', '0', '0', '1', '2024-11-26 16:33:06', NULL, '1'), ('18', '0', '0', 'fa/component/virtuemart/مصنوعات-فلزی/قلم-زنی', 'fa/component/virtuemart/مصنوعات-فلزی/قلم-زنی', '{\"Itemid\":null,\"error\":\"404\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limit\":\"24\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"category\",\"virtuemart_category_id\":-2}', '{\"Itemid\":null,\"error\":\"404\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limit\":\"24\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"category\",\"virtuemart_category_id\":-2}', '[]', 'error=404&limit=24&limitstart=0&option=com_virtuemart&view=category&virtuemart_category_id=-2', 'error=404&limit=24&limitstart=0&option=com_virtuemart&view=category&virtuemart_category_id=-2', 'fa-IR', '0', 'virtuemart', 'category', '', '\"\"', '', '', 'f86e2ff4c713cdca7cdbdeec88f9194827fdefc1', 'a6942fd7b25d5072800130f58a575ed6c9858c64', 'https', 'digilove.ir', '1', '2024-11-26 16:37:56', '0', '0', '0', '1', '0', '0', '1', '2024-11-26 16:37:56', NULL, '1'), ('19', '0', '0', 'fa/component/virtuemart/مصنوعات-فلزی/مسگری', 'fa/component/virtuemart/مصنوعات-فلزی/مسگری', '{\"Itemid\":null,\"error\":\"404\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limit\":\"24\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"category\",\"virtuemart_category_id\":-2}', '{\"Itemid\":null,\"error\":\"404\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limit\":\"24\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"category\",\"virtuemart_category_id\":-2}', '[]', 'error=404&limit=24&limitstart=0&option=com_virtuemart&view=category&virtuemart_category_id=-2', 'error=404&limit=24&limitstart=0&option=com_virtuemart&view=category&virtuemart_category_id=-2', 'fa-IR', '0', 'virtuemart', 'category', '', '\"\"', '', '', 'ba235d70c922da18681c287c4e952c2c9cbeb5c9', 'a6942fd7b25d5072800130f58a575ed6c9858c64', 'https', 'digilove.ir', '1', '2024-11-26 18:02:23', '0', '0', '0', '1', '0', '0', '1', '2024-11-26 18:02:23', NULL, '1'), ('20', '0', '0', 'fa/component/virtuemart/مصنوعات-فلزی/ملیله-کاری', 'fa/component/virtuemart/مصنوعات-فلزی/ملیله-کاری', '{\"Itemid\":null,\"error\":\"404\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limit\":\"24\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"category\",\"virtuemart_category_id\":-2}', '{\"Itemid\":null,\"error\":\"404\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limit\":\"24\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"category\",\"virtuemart_category_id\":-2}', '[]', 'error=404&limit=24&limitstart=0&option=com_virtuemart&view=category&virtuemart_category_id=-2', 'error=404&limit=24&limitstart=0&option=com_virtuemart&view=category&virtuemart_category_id=-2', 'fa-IR', '0', 'virtuemart', 'category', '', '\"\"', '', '', '8b20feb343de917f1d0cc323b55b126489d80808', 'a6942fd7b25d5072800130f58a575ed6c9858c64', 'https', 'digilove.ir', '1', '2024-11-26 18:05:57', '0', '0', '0', '1', '0', '0', '1', '2024-11-26 18:05:57', NULL, '1'), ('21', '0', '0', 'fa/component/virtuemart/مصنوعات-فلزی/مینا-کاری', 'fa/component/virtuemart/مصنوعات-فلزی/مینا-کاری', '{\"Itemid\":null,\"error\":\"404\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limit\":\"24\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"category\",\"virtuemart_category_id\":-2}', '{\"Itemid\":null,\"error\":\"404\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limit\":\"24\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"category\",\"virtuemart_category_id\":-2}', '[]', 'error=404&limit=24&limitstart=0&option=com_virtuemart&view=category&virtuemart_category_id=-2', 'error=404&limit=24&limitstart=0&option=com_virtuemart&view=category&virtuemart_category_id=-2', 'fa-IR', '0', 'virtuemart', 'category', '', '\"\"', '', '', 'dbe814db2ec05ee4d97f4a3437acb518dc9e348d', 'a6942fd7b25d5072800130f58a575ed6c9858c64', 'https', 'digilove.ir', '1', '2024-11-26 18:21:46', '0', '0', '0', '1', '0', '0', '1', '2024-11-26 18:21:46', NULL, '1'), ('22', '0', '0', 'fa/component/virtuemart/چرم-کاری-سفالگری-کاشی', 'fa/component/virtuemart/چرم-کاری-سفالگری-کاشی', '{\"Itemid\":null,\"error\":\"404\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limit\":\"24\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"category\",\"virtuemart_category_id\":-2}', '{\"Itemid\":null,\"error\":\"404\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limit\":\"24\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"category\",\"virtuemart_category_id\":-2}', '[]', 'error=404&limit=24&limitstart=0&option=com_virtuemart&view=category&virtuemart_category_id=-2', 'error=404&limit=24&limitstart=0&option=com_virtuemart&view=category&virtuemart_category_id=-2', 'fa-IR', '0', 'virtuemart', 'category', '', '\"\"', '', '', 'ba42b7db7a942a9dd596281bc630e60aa36326dd', 'a6942fd7b25d5072800130f58a575ed6c9858c64', 'https', 'digilove.ir', '1', '2024-11-26 18:23:14', '0', '0', '0', '1', '0', '0', '1', '2024-11-26 18:23:14', NULL, '1'), ('23', '0', '0', 'fa/component/virtuemart/چرم-کاری-سفالگری-کاشی/دستافریده-های-سفالی', 'fa/component/virtuemart/چرم-کاری-سفالگری-کاشی/دستافریده-های-سفالی', '{\"Itemid\":null,\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limit\":\"24\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"category\",\"virtuemart_category_id\":\"36\"}', '{\"Itemid\":null,\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limit\":\"24\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"category\",\"virtuemart_category_id\":\"36\"}', '[]', 'limit=24&limitstart=0&option=com_virtuemart&view=category&virtuemart_category_id=36', 'limit=24&limitstart=0&option=com_virtuemart&view=category&virtuemart_category_id=36', 'fa-IR', '0', 'virtuemart', 'category', '', '\"\"', '', '', 'a58e70f7ba200b752c9447edf2605480c9477278', 'be63a82b371e8283ef5ad699d89b4713d2e54a9e', 'https', 'digilove.ir', '1', '2024-11-26 18:28:45', '0', '0', '0', '0', '0', '0', '0', '2024-11-26 18:28:45', NULL, '1'), ('24', '0', '0', 'fa/component/virtuemart/چرم-کاری-سفالگری-کاشی/دستافریده-های-سنگی', 'fa/component/virtuemart/چرم-کاری-سفالگری-کاشی/دستافریده-های-سنگی', '{\"Itemid\":null,\"error\":\"404\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limit\":\"24\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"category\",\"virtuemart_category_id\":-2}', '{\"Itemid\":null,\"error\":\"404\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limit\":\"24\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"category\",\"virtuemart_category_id\":-2}', '[]', 'error=404&limit=24&limitstart=0&option=com_virtuemart&view=category&virtuemart_category_id=-2', 'error=404&limit=24&limitstart=0&option=com_virtuemart&view=category&virtuemart_category_id=-2', 'fa-IR', '0', 'virtuemart', 'category', '', '\"\"', '', '', '78278b210640db9ab5746332d027e50dc37df755', 'a6942fd7b25d5072800130f58a575ed6c9858c64', 'https', 'digilove.ir', '1', '2024-11-26 18:30:58', '0', '0', '0', '1', '0', '0', '1', '2024-11-26 18:30:58', NULL, '1'), ('25', '0', '0', 'fa/component/virtuemart/چرم-کاری-سفالگری-کاشی/دستافریده-های-چرمی', 'fa/component/virtuemart/چرم-کاری-سفالگری-کاشی/دستافریده-های-چرمی', '{\"Itemid\":null,\"error\":\"404\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limit\":\"24\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"category\",\"virtuemart_category_id\":-2}', '{\"Itemid\":null,\"error\":\"404\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limit\":\"24\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"category\",\"virtuemart_category_id\":-2}', '[]', 'error=404&limit=24&limitstart=0&option=com_virtuemart&view=category&virtuemart_category_id=-2', 'error=404&limit=24&limitstart=0&option=com_virtuemart&view=category&virtuemart_category_id=-2', 'fa-IR', '0', 'virtuemart', 'category', '', '\"\"', '', '', '054c21dc41f8cbf352e74cd8f0073b13fae4d0db', 'a6942fd7b25d5072800130f58a575ed6c9858c64', 'https', 'digilove.ir', '1', '2024-11-26 18:34:20', '0', '0', '0', '1', '0', '0', '1', '2024-11-26 18:34:20', NULL, '1'), ('26', '0', '0', 'fa/component/virtuemart/چرم-کاری-سفالگری-کاشی/per-inceptos', 'fa/component/virtuemart/چرم-کاری-سفالگری-کاشی/per-inceptos', '{\"Itemid\":null,\"error\":\"404\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limit\":\"24\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"category\",\"virtuemart_category_id\":-2}', '{\"Itemid\":null,\"error\":\"404\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limit\":\"24\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"category\",\"virtuemart_category_id\":-2}', '[]', 'error=404&limit=24&limitstart=0&option=com_virtuemart&view=category&virtuemart_category_id=-2', 'error=404&limit=24&limitstart=0&option=com_virtuemart&view=category&virtuemart_category_id=-2', 'fa-IR', '0', 'virtuemart', 'category', '', '\"\"', '', '', 'd7734f77606adb9cbcd0336284ddc7cceee7cb68', '58e1fadcad6bf226b371ddbca3df366a971bea15', 'https', 'digilove.ir', '1', '2024-11-26 18:35:30', '0', '0', '0', '1', '0', '0', '1', '2024-11-26 18:35:30', NULL, '1'), ('27', '0', '0', 'fa/component/virtuemart/چرم-کاری-سفالگری-کاشی/کاشی-شکسته', 'fa/component/virtuemart/چرم-کاری-سفالگری-کاشی/کاشی-شکسته', '{\"Itemid\":null,\"error\":\"404\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limit\":\"24\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"category\",\"virtuemart_category_id\":-2}', '{\"Itemid\":null,\"error\":\"404\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limit\":\"24\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"category\",\"virtuemart_category_id\":-2}', '[]', 'error=404&limit=24&limitstart=0&option=com_virtuemart&view=category&virtuemart_category_id=-2', 'error=404&limit=24&limitstart=0&option=com_virtuemart&view=category&virtuemart_category_id=-2', 'fa-IR', '0', 'virtuemart', 'category', '', '\"\"', '', '', 'd7734f77606adb9cbcd0336284ddc7cceee7cb68', '58e1fadcad6bf226b371ddbca3df366a971bea15', 'https', 'digilove.ir', '1', '2024-11-26 18:36:05', '0', '0', '0', '1', '0', '0', '1', '2024-11-26 18:36:05', NULL, '1'), ('28', '0', '0', 'fa/component/virtuemart/صنایع-چوبی', 'fa/component/virtuemart/صنایع-چوبی', '{\"Itemid\":null,\"error\":\"404\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limit\":\"24\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"category\",\"virtuemart_category_id\":-2}', '{\"Itemid\":null,\"error\":\"404\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limit\":\"24\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"category\",\"virtuemart_category_id\":-2}', '[]', 'error=404&limit=24&limitstart=0&option=com_virtuemart&view=category&virtuemart_category_id=-2', 'error=404&limit=24&limitstart=0&option=com_virtuemart&view=category&virtuemart_category_id=-2', 'fa-IR', '0', 'virtuemart', 'category', '', '\"\"', '', '', 'd7734f77606adb9cbcd0336284ddc7cceee7cb68', 'a8b3deda63602404296f44ee89c79e4f39d62c94', 'https', 'digilove.ir', '1', '2024-11-26 18:37:07', '0', '0', '0', '1', '0', '0', '1', '2024-11-26 18:37:07', NULL, '1'), ('29', '0', '0', 'fa/component/virtuemart/صنایع-چوبی/ارسی-چوبی', 'fa/component/virtuemart/صنایع-چوبی/ارسی-چوبی', '{\"Itemid\":null,\"error\":\"404\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limit\":\"24\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"category\",\"virtuemart_category_id\":-2}', '{\"Itemid\":null,\"error\":\"404\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limit\":\"24\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"category\",\"virtuemart_category_id\":-2}', '[]', 'error=404&limit=24&limitstart=0&option=com_virtuemart&view=category&virtuemart_category_id=-2', 'error=404&limit=24&limitstart=0&option=com_virtuemart&view=category&virtuemart_category_id=-2', 'fa-IR', '0', 'virtuemart', 'category', '', '\"\"', '', '', 'd7734f77606adb9cbcd0336284ddc7cceee7cb68', '8ad1b017a0e96eb64084b7a4fa567a01391d74c2', 'https', 'digilove.ir', '1', '2024-11-26 18:37:37', '0', '0', '0', '1', '0', '0', '1', '2024-11-26 18:37:37', NULL, '1'), ('30', '0', '0', 'fa/component/virtuemart/صنایع-چوبی/حصیربافی', 'fa/component/virtuemart/صنایع-چوبی/حصیربافی', '{\"Itemid\":null,\"error\":\"404\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limit\":\"24\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"category\",\"virtuemart_category_id\":-2}', '{\"Itemid\":null,\"error\":\"404\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limit\":\"24\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"category\",\"virtuemart_category_id\":-2}', '[]', 'error=404&limit=24&limitstart=0&option=com_virtuemart&view=category&virtuemart_category_id=-2', 'error=404&limit=24&limitstart=0&option=com_virtuemart&view=category&virtuemart_category_id=-2', 'fa-IR', '0', 'virtuemart', 'category', '', '\"\"', '', '', 'd7734f77606adb9cbcd0336284ddc7cceee7cb68', '8ad1b017a0e96eb64084b7a4fa567a01391d74c2', 'https', 'digilove.ir', '1', '2024-11-26 18:39:43', '0', '0', '0', '1', '0', '0', '1', '2024-11-26 18:39:43', NULL, '1'), ('31', '0', '0', 'fa/component/virtuemart/صنایع-چوبی/خاتم-کاری', 'fa/component/virtuemart/صنایع-چوبی/خاتم-کاری', '{\"Itemid\":null,\"error\":\"404\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limit\":\"24\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"category\",\"virtuemart_category_id\":-2}', '{\"Itemid\":null,\"error\":\"404\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limit\":\"24\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"category\",\"virtuemart_category_id\":-2}', '[]', 'error=404&limit=24&limitstart=0&option=com_virtuemart&view=category&virtuemart_category_id=-2', 'error=404&limit=24&limitstart=0&option=com_virtuemart&view=category&virtuemart_category_id=-2', 'fa-IR', '0', 'virtuemart', 'category', '', '\"\"', '', '', 'd7734f77606adb9cbcd0336284ddc7cceee7cb68', 'e3d550f2dd4ce26a90f1cc461f17c4a36661ee38', 'https', 'digilove.ir', '1', '2024-11-26 18:44:28', '0', '0', '0', '1', '0', '0', '1', '2024-11-26 18:44:28', NULL, '1'), ('32', '0', '0', 'fa/component/virtuemart/صنایع-چوبی/مشبک-کاری', 'fa/component/virtuemart/صنایع-چوبی/مشبک-کاری', '{\"Itemid\":null,\"error\":\"404\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limit\":\"24\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"category\",\"virtuemart_category_id\":-2}', '{\"Itemid\":null,\"error\":\"404\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limit\":\"24\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"category\",\"virtuemart_category_id\":-2}', '[]', 'error=404&limit=24&limitstart=0&option=com_virtuemart&view=category&virtuemart_category_id=-2', 'error=404&limit=24&limitstart=0&option=com_virtuemart&view=category&virtuemart_category_id=-2', 'fa-IR', '0', 'virtuemart', 'category', '', '\"\"', '', '', 'd7734f77606adb9cbcd0336284ddc7cceee7cb68', 'e3d550f2dd4ce26a90f1cc461f17c4a36661ee38', 'https', 'digilove.ir', '1', '2024-11-26 18:44:34', '0', '0', '0', '1', '0', '0', '1', '2024-11-26 18:44:34', NULL, '1'), ('33', '0', '0', 'fa/component/virtuemart/صنایع-چوبی/معرق-کاری', 'fa/component/virtuemart/صنایع-چوبی/معرق-کاری', '{\"Itemid\":null,\"error\":\"404\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limit\":\"24\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"category\",\"virtuemart_category_id\":-2}', '{\"Itemid\":null,\"error\":\"404\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limit\":\"24\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"category\",\"virtuemart_category_id\":-2}', '[]', 'error=404&limit=24&limitstart=0&option=com_virtuemart&view=category&virtuemart_category_id=-2', 'error=404&limit=24&limitstart=0&option=com_virtuemart&view=category&virtuemart_category_id=-2', 'fa-IR', '0', 'virtuemart', 'category', '', '\"\"', '', '', 'd7734f77606adb9cbcd0336284ddc7cceee7cb68', '8ad1b017a0e96eb64084b7a4fa567a01391d74c2', 'https', 'digilove.ir', '1', '2024-11-26 18:53:37', '0', '0', '0', '1', '0', '0', '1', '2024-11-26 18:53:37', NULL, '1'), ('34', '0', '0', 'fa/component/virtuemart/صنایع-چوبی/منبت-کاری', 'fa/component/virtuemart/صنایع-چوبی/منبت-کاری', '{\"Itemid\":null,\"error\":\"404\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limit\":\"24\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"category\",\"virtuemart_category_id\":-2}', '{\"Itemid\":null,\"error\":\"404\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limit\":\"24\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"category\",\"virtuemart_category_id\":-2}', '[]', 'error=404&limit=24&limitstart=0&option=com_virtuemart&view=category&virtuemart_category_id=-2', 'error=404&limit=24&limitstart=0&option=com_virtuemart&view=category&virtuemart_category_id=-2', 'fa-IR', '0', 'virtuemart', 'category', '', '\"\"', '', '', 'd7734f77606adb9cbcd0336284ddc7cceee7cb68', 'fdd139bde0ae2c908bab83626c3d589025462bd5', 'https', 'digilove.ir', '1', '2024-11-26 18:54:36', '0', '0', '0', '1', '0', '0', '1', '2024-11-26 18:54:36', NULL, '1'), ('35', '0', '0', 'fa/component/virtuemart/بافته-ها-و-منسوجات', 'fa/component/virtuemart/بافته-ها-و-منسوجات', '{\"Itemid\":null,\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limit\":\"24\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"category\",\"virtuemart_category_id\":\"6\"}', '{\"Itemid\":null,\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limit\":\"24\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"category\",\"virtuemart_category_id\":\"6\"}', '[]', 'limit=24&limitstart=0&option=com_virtuemart&view=category&virtuemart_category_id=6', 'limit=24&limitstart=0&option=com_virtuemart&view=category&virtuemart_category_id=6', 'fa-IR', '0', 'virtuemart', 'category', '', '\"\"', '', '', '3fae9c197636e7f4118a882f043944fce93641b5', '669005cee552e7a47dca12b35636e47ab5f96b65', 'https', 'digilove.ir', '1', '2024-11-26 19:01:00', '0', '0', '0', '0', '0', '0', '0', '2024-11-26 19:01:00', NULL, '1'), ('36', '0', '0', 'fa/component/virtuemart/بافته-ها-و-منسوجات/بافتنی-ها', 'fa/component/virtuemart/بافته-ها-و-منسوجات/بافتنی-ها', '{\"Itemid\":null,\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limit\":\"24\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"category\",\"virtuemart_category_id\":\"49\"}', '{\"Itemid\":null,\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limit\":\"24\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"category\",\"virtuemart_category_id\":\"49\"}', '[]', 'limit=24&limitstart=0&option=com_virtuemart&view=category&virtuemart_category_id=49', 'limit=24&limitstart=0&option=com_virtuemart&view=category&virtuemart_category_id=49', 'fa-IR', '0', 'virtuemart', 'category', '', '\"\"', '', '', '7e82481ba42aeb3af6e5af819ee07b2f176d9c0c', '9e4907709954ea55148823b7de7eb01b25ddd060', 'https', 'digilove.ir', '1', '2024-11-26 19:02:24', '0', '0', '0', '0', '0', '0', '0', '2024-11-26 19:02:24', NULL, '1'), ('37', '0', '0', 'fa/component/virtuemart/بافته-ها-و-منسوجات/دوخت-و-دوز', 'fa/component/virtuemart/بافته-ها-و-منسوجات/دوخت-و-دوز', '{\"Itemid\":null,\"error\":\"404\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limit\":\"24\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"category\",\"virtuemart_category_id\":-2}', '{\"Itemid\":null,\"error\":\"404\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limit\":\"24\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"category\",\"virtuemart_category_id\":-2}', '[]', 'error=404&limit=24&limitstart=0&option=com_virtuemart&view=category&virtuemart_category_id=-2', 'error=404&limit=24&limitstart=0&option=com_virtuemart&view=category&virtuemart_category_id=-2', 'fa-IR', '0', 'virtuemart', 'category', '', '\"\"', '', '', '5dfdb3640e6f99e56a78b88dfda0b48fdfc275b5', 'a005ac2338d77fadc36db90909586d00d19b48e2', 'https', 'digilove.ir', '1', '2024-11-26 19:13:13', '0', '0', '0', '1', '0', '0', '1', '2024-11-26 19:13:13', NULL, '1'), ('38', '0', '0', 'fa/component/virtuemart/بافته-ها-و-منسوجات/فرش', 'fa/component/virtuemart/بافته-ها-و-منسوجات/فرش', '{\"Itemid\":null,\"error\":\"404\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limit\":\"24\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"category\",\"virtuemart_category_id\":-2}', '{\"Itemid\":null,\"error\":\"404\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limit\":\"24\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"category\",\"virtuemart_category_id\":-2}', '[]', 'error=404&limit=24&limitstart=0&option=com_virtuemart&view=category&virtuemart_category_id=-2', 'error=404&limit=24&limitstart=0&option=com_virtuemart&view=category&virtuemart_category_id=-2', 'fa-IR', '0', 'virtuemart', 'category', '', '\"\"', '', '', '5dfdb3640e6f99e56a78b88dfda0b48fdfc275b5', 'a005ac2338d77fadc36db90909586d00d19b48e2', 'https', 'digilove.ir', '1', '2024-11-26 19:54:21', '0', '0', '0', '1', '0', '0', '1', '2024-11-26 19:54:21', NULL, '1'), ('39', '0', '0', 'fa/component/virtuemart/بافته-ها-و-منسوجات/قالی', 'fa/component/virtuemart/بافته-ها-و-منسوجات/قالی', '{\"Itemid\":null,\"error\":\"404\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limit\":\"24\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"category\",\"virtuemart_category_id\":-2}', '{\"Itemid\":null,\"error\":\"404\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limit\":\"24\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"category\",\"virtuemart_category_id\":-2}', '[]', 'error=404&limit=24&limitstart=0&option=com_virtuemart&view=category&virtuemart_category_id=-2', 'error=404&limit=24&limitstart=0&option=com_virtuemart&view=category&virtuemart_category_id=-2', 'fa-IR', '0', 'virtuemart', 'category', '', '\"\"', '', '', '5dfdb3640e6f99e56a78b88dfda0b48fdfc275b5', 'a005ac2338d77fadc36db90909586d00d19b48e2', 'https', 'digilove.ir', '1', '2024-11-26 19:58:40', '0', '0', '0', '1', '0', '0', '1', '2024-11-26 19:58:40', NULL, '1'), ('40', '0', '0', 'fa/component/virtuemart/بافته-ها-و-منسوجات/maecenas-vehicula-preti', 'fa/component/virtuemart/بافته-ها-و-منسوجات/maecenas-vehicula-preti', '{\"Itemid\":null,\"error\":\"404\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limit\":\"24\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"category\",\"virtuemart_category_id\":-2}', '{\"Itemid\":null,\"error\":\"404\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limit\":\"24\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"category\",\"virtuemart_category_id\":-2}', '[]', 'error=404&limit=24&limitstart=0&option=com_virtuemart&view=category&virtuemart_category_id=-2', 'error=404&limit=24&limitstart=0&option=com_virtuemart&view=category&virtuemart_category_id=-2', 'fa-IR', '0', 'virtuemart', 'category', '', '\"\"', '', '', '258e955e1f5337efa0490edab739fcb6636644fd', 'a71e40152b509973e921c0853bcbf4ee46ef6f88', 'https', 'digilove.ir', '1', '2024-11-26 20:03:01', '0', '0', '0', '1', '0', '0', '1', '2024-11-26 20:03:01', NULL, '1'), ('41', '0', '0', 'fa/component/virtuemart/بافته-ها-و-منسوجات/گلیم', 'fa/component/virtuemart/بافته-ها-و-منسوجات/گلیم', '{\"Itemid\":null,\"error\":\"404\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limit\":\"24\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"category\",\"virtuemart_category_id\":-2}', '{\"Itemid\":null,\"error\":\"404\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limit\":\"24\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"category\",\"virtuemart_category_id\":-2}', '[]', 'error=404&limit=24&limitstart=0&option=com_virtuemart&view=category&virtuemart_category_id=-2', 'error=404&limit=24&limitstart=0&option=com_virtuemart&view=category&virtuemart_category_id=-2', 'fa-IR', '0', 'virtuemart', 'category', '', '\"\"', '', '', '258e955e1f5337efa0490edab739fcb6636644fd', 'a71e40152b509973e921c0853bcbf4ee46ef6f88', 'https', 'digilove.ir', '1', '2024-11-26 20:03:15', '0', '0', '0', '1', '0', '0', '1', '2024-11-26 20:03:15', NULL, '1'), ('42', '0', '0', 'fa/virtuemart/product-category/conser-adipiscing-detail', 'fa/virtuemart/product-category/conser-adipiscing-detail', '{\"Itemid\":\"2028\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"productdetails\",\"virtuemart_category_id\":false,\"virtuemart_product_id\":\"15\"}', '{\"Itemid\":\"2028\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"productdetails\",\"virtuemart_category_id\":false,\"virtuemart_product_id\":\"15\"}', '[]', 'Itemid=2028&limitstart=0&option=com_virtuemart&view=productdetails&virtuemart_category_id=0&virtuemart_product_id=15', 'Itemid=2028&limitstart=0&option=com_virtuemart&view=productdetails&virtuemart_category_id=0&virtuemart_product_id=15', 'fa-IR', '2028', 'virtuemart', 'productdetails', '', '\"\"', '', '', '60c05539b2df4fab9c9ecbf220dbe6c47bae8cac', 'f6ef680823a70a31c57fc21dd3cb4994fee10dea', 'https', 'digilove.ir', '1', '2024-11-26 20:03:37', '0', '0', '0', '0', '0', '0', '0', '2024-11-26 20:03:37', NULL, '1'), ('43', '0', '0', 'fa/virtuemart/product-category/donec-scelerisque-detail', 'fa/virtuemart/product-category/donec-scelerisque-detail', '{\"Itemid\":\"2028\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"productdetails\",\"virtuemart_category_id\":false,\"virtuemart_product_id\":\"6\"}', '{\"Itemid\":\"2028\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"productdetails\",\"virtuemart_category_id\":false,\"virtuemart_product_id\":\"6\"}', '[]', 'Itemid=2028&limitstart=0&option=com_virtuemart&view=productdetails&virtuemart_category_id=0&virtuemart_product_id=6', 'Itemid=2028&limitstart=0&option=com_virtuemart&view=productdetails&virtuemart_category_id=0&virtuemart_product_id=6', 'fa-IR', '2028', 'virtuemart', 'productdetails', '', '\"\"', '', '', '962f60e7872da7ecd415e5dc1fee4f7ba48ec2c8', '742e2b05b3bbf72a13f88f0182305893f215d0ca', 'https', 'digilove.ir', '1', '2024-11-26 20:03:53', '0', '0', '0', '0', '0', '0', '0', '2024-11-26 20:03:53', NULL, '1'), ('44', '0', '0', 'fa/virtuemart/product-category/nulla-euismod,-nibh-nec-detail', 'fa/virtuemart/product-category/nulla-euismod,-nibh-nec-detail', '{\"Itemid\":\"2028\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"productdetails\",\"virtuemart_category_id\":false,\"virtuemart_product_id\":\"5\"}', '{\"Itemid\":\"2028\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"productdetails\",\"virtuemart_category_id\":false,\"virtuemart_product_id\":\"5\"}', '[]', 'Itemid=2028&limitstart=0&option=com_virtuemart&view=productdetails&virtuemart_category_id=0&virtuemart_product_id=5', 'Itemid=2028&limitstart=0&option=com_virtuemart&view=productdetails&virtuemart_category_id=0&virtuemart_product_id=5', 'fa-IR', '2028', 'virtuemart', 'productdetails', '', '\"\"', '', '', 'b4af90ee050335316dd0d3dbe917526b2d8321de', '96e9d24a1cd7d7a1def3a0be6269a82cceaa7a48', 'https', 'digilove.ir', '1', '2024-11-26 20:04:36', '0', '0', '0', '0', '0', '0', '0', '2024-11-26 20:04:36', NULL, '1'), ('45', '0', '0', 'fa/ثبت-نام-فروشنده', 'fa/ثبت-نام-فروشنده', '{\"Itemid\":\"2257\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"option\":\"com_marketplace\",\"view\":\"mpregistration\"}', '{\"Itemid\":\"2257\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"option\":\"com_marketplace\",\"view\":\"mpregistration\"}', '[]', 'Itemid=2257&option=com_marketplace&view=mpregistration', 'Itemid=2257&option=com_marketplace&view=mpregistration', 'fa-IR', '2257', 'marketplace', 'mpregistration', '', '\"\"', '', '', '8e23e7c9d8e30d6999aa6c2fc1e6c62db30ca3c2', '0400d43d70594dd689e9af5a1bbb6caca53710a4', 'https', 'digilove.ir', '1', '2024-11-26 20:04:44', '0', '0', '0', '0', '0', '0', '0', '2024-11-26 20:04:44', NULL, '1'), ('46', '0', '0', 'fa/component/virtuemart/carpet/duis-eget-conse-detail', 'fa/component/virtuemart/carpet/duis-eget-conse-detail', '{\"Itemid\":null,\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"productdetails\",\"virtuemart_category_id\":0,\"virtuemart_product_id\":\"22\"}', '{\"Itemid\":null,\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"productdetails\",\"virtuemart_category_id\":0,\"virtuemart_product_id\":\"22\"}', '[]', 'limitstart=0&option=com_virtuemart&view=productdetails&virtuemart_category_id=0&virtuemart_product_id=22', 'limitstart=0&option=com_virtuemart&view=productdetails&virtuemart_category_id=0&virtuemart_product_id=22', 'fa-IR', '0', 'virtuemart', 'productdetails', '', '\"\"', '', '', '819b6d168e1e579549e01d5de558a105c481a529', '80fa942c758c00ec7b24603a384d2ab392497928', 'https', 'digilove.ir', '1', '2024-11-26 20:19:42', '0', '0', '0', '0', '0', '0', '0', '2024-11-26 20:19:42', NULL, '1'), ('47', '0', '0', 'fa/component/virtuemart/شیشه-وآیینه/maecenas-vehic-detail', 'fa/component/virtuemart/شیشه-وآیینه/maecenas-vehic-detail', '{\"Itemid\":null,\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"productdetails\",\"virtuemart_category_id\":\"1\",\"virtuemart_product_id\":\"20\"}', '{\"Itemid\":null,\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"productdetails\",\"virtuemart_category_id\":\"1\",\"virtuemart_product_id\":\"20\"}', '[]', 'limitstart=0&option=com_virtuemart&view=productdetails&virtuemart_category_id=1&virtuemart_product_id=20', 'limitstart=0&option=com_virtuemart&view=productdetails&virtuemart_category_id=1&virtuemart_product_id=20', 'fa-IR', '0', 'virtuemart', 'productdetails', '', '\"\"', '', '', '98c9880b34b4036eee45fef4d6e5b3430e28f251', '308ac562a6a53a8d602c67ad0a81cac6a722625e', 'https', 'digilove.ir', '1', '2024-11-26 20:23:44', '0', '0', '0', '0', '0', '0', '0', '2024-11-26 20:23:44', NULL, '1'), ('48', '0', '0', 'fa/component/virtuemart/carpet/integer-egestas-detail', 'fa/component/virtuemart/carpet/integer-egestas-detail', '{\"Itemid\":null,\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"productdetails\",\"virtuemart_category_id\":0,\"virtuemart_product_id\":\"21\"}', '{\"Itemid\":null,\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"productdetails\",\"virtuemart_category_id\":0,\"virtuemart_product_id\":\"21\"}', '[]', 'limitstart=0&option=com_virtuemart&view=productdetails&virtuemart_category_id=0&virtuemart_product_id=21', 'limitstart=0&option=com_virtuemart&view=productdetails&virtuemart_category_id=0&virtuemart_product_id=21', 'fa-IR', '0', 'virtuemart', 'productdetails', '', '\"\"', '', '', 'd638393e537600e06d94f58c3692bce4770d34e0', 'c7d13f00ad0fba8ebc2b6e1b1f1439a58dffd8fe', 'https', 'digilove.ir', '1', '2024-11-26 20:26:46', '0', '0', '0', '0', '0', '0', '0', '2024-11-26 20:26:46', NULL, '1'), ('49', '0', '0', 'fa/virtuemart/product-detail', 'fa/virtuemart/product-detail', '{\"Itemid\":\"2032\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"option\":\"com_virtuemart\",\"view\":\"productdetails\",\"virtuemart_product_id\":\"3\"}', '{\"Itemid\":\"2032\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"option\":\"com_virtuemart\",\"view\":\"productdetails\",\"virtuemart_product_id\":\"3\"}', '[]', 'Itemid=2032&option=com_virtuemart&view=productdetails&virtuemart_product_id=3', 'Itemid=2032&option=com_virtuemart&view=productdetails&virtuemart_product_id=3', 'fa-IR', '2032', 'virtuemart', 'productdetails', '', '\"\"', '', '', 'cdb1d80365040434d5c27fd5854019afab0a99c8', '673b48cfdd6513c1d902efc7092639d584b46ef6', 'https', 'digilove.ir', '1', '2024-11-26 20:31:11', '0', '0', '0', '0', '0', '0', '0', '2024-11-26 20:31:11', NULL, '1'), ('50', '0', '0', 'fa/virtuemart/product-category/morbi-vulputate-diam-detail', 'fa/virtuemart/product-category/morbi-vulputate-diam-detail', '{\"Itemid\":\"2028\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"productdetails\",\"virtuemart_category_id\":false,\"virtuemart_product_id\":\"4\"}', '{\"Itemid\":\"2028\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"productdetails\",\"virtuemart_category_id\":false,\"virtuemart_product_id\":\"4\"}', '[]', 'Itemid=2028&limitstart=0&option=com_virtuemart&view=productdetails&virtuemart_category_id=0&virtuemart_product_id=4', 'Itemid=2028&limitstart=0&option=com_virtuemart&view=productdetails&virtuemart_category_id=0&virtuemart_product_id=4', 'fa-IR', '2028', 'virtuemart', 'productdetails', '', '\"\"', '', '', '5b5621ef0e1cae65f0d915713e0ca8a1dc436d41', 'd9d90358bdb79cf1d693ac233c198bc75e11bac5', 'https', 'digilove.ir', '1', '2024-11-26 20:31:22', '0', '0', '0', '0', '0', '0', '0', '2024-11-26 20:31:22', NULL, '1'), ('51', '0', '0', 'fa/virtuemart/product-category/aenean-vehicula-vehic-detail', 'fa/virtuemart/product-category/aenean-vehicula-vehic-detail', '{\"Itemid\":\"2028\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"productdetails\",\"virtuemart_category_id\":false,\"virtuemart_product_id\":\"7\"}', '{\"Itemid\":\"2028\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"productdetails\",\"virtuemart_category_id\":false,\"virtuemart_product_id\":\"7\"}', '[]', 'Itemid=2028&limitstart=0&option=com_virtuemart&view=productdetails&virtuemart_category_id=0&virtuemart_product_id=7', 'Itemid=2028&limitstart=0&option=com_virtuemart&view=productdetails&virtuemart_category_id=0&virtuemart_product_id=7', 'fa-IR', '2028', 'virtuemart', 'productdetails', '', '\"\"', '', '', '7e5ff1ec14e9581cc8b6056815d73ccab723de8d', '40076072647e8baf837cb3acfa9c34d22538e04b', 'https', 'digilove.ir', '1', '2024-11-26 20:31:33', '0', '0', '0', '0', '0', '0', '0', '2024-11-26 20:31:33', NULL, '1'), ('52', '0', '0', 'fa/virtuemart/product-category/interdum-nibh-gravida-detail', 'fa/virtuemart/product-category/interdum-nibh-gravida-detail', '{\"Itemid\":\"2028\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"productdetails\",\"virtuemart_category_id\":false,\"virtuemart_product_id\":\"8\"}', '{\"Itemid\":\"2028\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"productdetails\",\"virtuemart_category_id\":false,\"virtuemart_product_id\":\"8\"}', '[]', 'Itemid=2028&limitstart=0&option=com_virtuemart&view=productdetails&virtuemart_category_id=0&virtuemart_product_id=8', 'Itemid=2028&limitstart=0&option=com_virtuemart&view=productdetails&virtuemart_category_id=0&virtuemart_product_id=8', 'fa-IR', '2028', 'virtuemart', 'productdetails', '', '\"\"', '', '', 'b5e0b84cb6f7463cde642184d5e616ea0dc40d27', '1a0478d9c48cd5486125ac12f7a9b62acddba02e', 'https', 'digilove.ir', '1', '2024-11-26 20:31:48', '0', '0', '0', '0', '0', '0', '0', '2024-11-26 20:31:48', NULL, '1'), ('53', '0', '0', 'fa/virtuemart/product-category/cras-nec-placerat-libe-detail', 'fa/virtuemart/product-category/cras-nec-placerat-libe-detail', '{\"Itemid\":\"2028\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"productdetails\",\"virtuemart_category_id\":false,\"virtuemart_product_id\":\"9\"}', '{\"Itemid\":\"2028\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"productdetails\",\"virtuemart_category_id\":false,\"virtuemart_product_id\":\"9\"}', '[]', 'Itemid=2028&limitstart=0&option=com_virtuemart&view=productdetails&virtuemart_category_id=0&virtuemart_product_id=9', 'Itemid=2028&limitstart=0&option=com_virtuemart&view=productdetails&virtuemart_category_id=0&virtuemart_product_id=9', 'fa-IR', '2028', 'virtuemart', 'productdetails', '', '\"\"', '', '', 'bed1557605bbf0453ff116a22cd86e5a96e3945d', 'ff23b772ce86d779f02e914666ad69053b108133', 'https', 'digilove.ir', '1', '2024-11-26 20:33:17', '0', '0', '0', '0', '0', '0', '0', '2024-11-26 20:33:17', NULL, '1'), ('54', '0', '0', 'fa/virtuemart/product-category/cras-id-risus-sem-detail', 'fa/virtuemart/product-category/cras-id-risus-sem-detail', '{\"Itemid\":\"2028\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"productdetails\",\"virtuemart_category_id\":false,\"virtuemart_product_id\":\"10\"}', '{\"Itemid\":\"2028\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"productdetails\",\"virtuemart_category_id\":false,\"virtuemart_product_id\":\"10\"}', '[]', 'Itemid=2028&limitstart=0&option=com_virtuemart&view=productdetails&virtuemart_category_id=0&virtuemart_product_id=10', 'Itemid=2028&limitstart=0&option=com_virtuemart&view=productdetails&virtuemart_category_id=0&virtuemart_product_id=10', 'fa-IR', '2028', 'virtuemart', 'productdetails', '', '\"\"', '', '', '3b04944abb2dcbd1f890f8c273d4b1dec53be8be', '0268e117c1d08e282496cb754209d915ace6d140', 'https', 'digilove.ir', '1', '2024-11-26 20:33:27', '0', '0', '0', '0', '0', '0', '0', '2024-11-26 20:33:27', NULL, '1'), ('55', '0', '0', 'fa/virtuemart/product-category/lorem-ipsum-dolor-detail', 'fa/virtuemart/product-category/lorem-ipsum-dolor-detail', '{\"Itemid\":\"2028\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"productdetails\",\"virtuemart_category_id\":false,\"virtuemart_product_id\":\"11\"}', '{\"Itemid\":\"2028\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"productdetails\",\"virtuemart_category_id\":false,\"virtuemart_product_id\":\"11\"}', '[]', 'Itemid=2028&limitstart=0&option=com_virtuemart&view=productdetails&virtuemart_category_id=0&virtuemart_product_id=11', 'Itemid=2028&limitstart=0&option=com_virtuemart&view=productdetails&virtuemart_category_id=0&virtuemart_product_id=11', 'fa-IR', '2028', 'virtuemart', 'productdetails', '', '\"\"', '', '', 'db47c3fd98328b73e4703aa5a00ecf5940dbff8f', '4a5b5244e707218a8ccc9853a68f6995e740b117', 'https', 'digilove.ir', '1', '2024-11-26 20:33:35', '0', '0', '0', '0', '0', '0', '0', '2024-11-26 20:33:35', NULL, '1'), ('56', '0', '0', 'fa/virtuemart/product-category/nulla-in-odio-diam-detail', 'fa/virtuemart/product-category/nulla-in-odio-diam-detail', '{\"Itemid\":\"2028\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"productdetails\",\"virtuemart_category_id\":false,\"virtuemart_product_id\":\"12\"}', '{\"Itemid\":\"2028\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"productdetails\",\"virtuemart_category_id\":false,\"virtuemart_product_id\":\"12\"}', '[]', 'Itemid=2028&limitstart=0&option=com_virtuemart&view=productdetails&virtuemart_category_id=0&virtuemart_product_id=12', 'Itemid=2028&limitstart=0&option=com_virtuemart&view=productdetails&virtuemart_category_id=0&virtuemart_product_id=12', 'fa-IR', '2028', 'virtuemart', 'productdetails', '', '\"\"', '', '', 'd556bfefff6b7305a81436792e56169df97426f1', 'accb9d8fcad8819c8518fc186e561d51a29761b8', 'https', 'digilove.ir', '1', '2024-11-26 20:34:47', '0', '0', '0', '0', '0', '0', '0', '2024-11-26 20:34:47', NULL, '1'), ('57', '0', '0', 'fa/component/virtuemart/شیشه-وآیینه/ferme-ntum-arc-detail', 'fa/component/virtuemart/شیشه-وآیینه/ferme-ntum-arc-detail', '{\"Itemid\":null,\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"productdetails\",\"virtuemart_category_id\":\"1\",\"virtuemart_product_id\":\"19\"}', '{\"Itemid\":null,\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"productdetails\",\"virtuemart_category_id\":\"1\",\"virtuemart_product_id\":\"19\"}', '[]', 'limitstart=0&option=com_virtuemart&view=productdetails&virtuemart_category_id=1&virtuemart_product_id=19', 'limitstart=0&option=com_virtuemart&view=productdetails&virtuemart_category_id=1&virtuemart_product_id=19', 'fa-IR', '0', 'virtuemart', 'productdetails', '', '\"\"', '', '', 'd7eb915f0ef4034594c6a217b8aaad532e74bb1d', 'f4b0e901ba6fb9ab5cbf76816f88d13ac4410aa8', 'https', 'digilove.ir', '1', '2024-11-26 20:54:36', '0', '0', '0', '0', '0', '0', '0', '2024-11-26 20:54:36', NULL, '1'), ('58', '0', '0', 'fa/virtuemart/product-category/quisque-arcu-elit-detail', 'fa/virtuemart/product-category/quisque-arcu-elit-detail', '{\"Itemid\":\"2028\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"productdetails\",\"virtuemart_category_id\":false,\"virtuemart_product_id\":\"16\"}', '{\"Itemid\":\"2028\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"productdetails\",\"virtuemart_category_id\":false,\"virtuemart_product_id\":\"16\"}', '[]', 'Itemid=2028&limitstart=0&option=com_virtuemart&view=productdetails&virtuemart_category_id=0&virtuemart_product_id=16', 'Itemid=2028&limitstart=0&option=com_virtuemart&view=productdetails&virtuemart_category_id=0&virtuemart_product_id=16', 'fa-IR', '2028', 'virtuemart', 'productdetails', '', '\"\"', '', '', '67fd9a99c01e214b5e70c872204c8af8de7de75b', 'd43c8a7cd435fd3fcb38e2a66cd110bdcd54509d', 'https', 'digilove.ir', '1', '2024-11-26 20:55:00', '0', '0', '0', '0', '0', '0', '0', '2024-11-26 20:55:00', NULL, '1'), ('59', '0', '0', 'fa/component/virtuemart/شیشه-وآیینه/spendisse-sit-ame-detail', 'fa/component/virtuemart/شیشه-وآیینه/spendisse-sit-ame-detail', '{\"Itemid\":null,\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"productdetails\",\"virtuemart_category_id\":\"1\",\"virtuemart_product_id\":\"17\"}', '{\"Itemid\":null,\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"productdetails\",\"virtuemart_category_id\":\"1\",\"virtuemart_product_id\":\"17\"}', '[]', 'limitstart=0&option=com_virtuemart&view=productdetails&virtuemart_category_id=1&virtuemart_product_id=17', 'limitstart=0&option=com_virtuemart&view=productdetails&virtuemart_category_id=1&virtuemart_product_id=17', 'fa-IR', '0', 'virtuemart', 'productdetails', '', '\"\"', '', '', '88d75adeab803744e1c6f9c69102a6b2b6379cf2', '4095ca8d5ba150c2e459be03d6a6cff814b6bd71', 'https', 'digilove.ir', '1', '2024-11-26 22:38:23', '0', '0', '0', '0', '0', '0', '0', '2024-11-26 22:38:23', NULL, '1'), ('60', '0', '0', 'fa/virtuemart/product-category/mauris-venenatis-detail', 'fa/virtuemart/product-category/mauris-venenatis-detail', '{\"Itemid\":\"2028\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"productdetails\",\"virtuemart_category_id\":false,\"virtuemart_product_id\":\"13\"}', '{\"Itemid\":\"2028\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"productdetails\",\"virtuemart_category_id\":false,\"virtuemart_product_id\":\"13\"}', '[]', 'Itemid=2028&limitstart=0&option=com_virtuemart&view=productdetails&virtuemart_category_id=0&virtuemart_product_id=13', 'Itemid=2028&limitstart=0&option=com_virtuemart&view=productdetails&virtuemart_category_id=0&virtuemart_product_id=13', 'fa-IR', '2028', 'virtuemart', 'productdetails', '', '\"\"', '', '', '0bbbc299156650497b250fca4348b76f64382178', '3d3b29e35b293e9757106f4f26ffd6809fe209ee', 'https', 'digilove.ir', '1', '2024-11-26 22:39:38', '0', '0', '0', '0', '0', '0', '0', '2024-11-26 22:39:38', NULL, '1'), ('61', '0', '0', 'fa/yoga', 'fa/yoga', '{\"Itemid\":\"1698\",\"id\":\"78\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"layout\":\"blog\",\"option\":\"com_content\",\"view\":\"category\"}', '{\"Itemid\":\"1698\",\"id\":\"78\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"layout\":\"blog\",\"option\":\"com_content\",\"view\":\"category\"}', '[]', 'Itemid=1698&id=78&layout=blog&option=com_content&view=category', 'Itemid=1698&id=78&layout=blog&option=com_content&view=category', 'fa-IR', '1698', 'content', 'category', 'blog', '\"78\"', '', '', '6bb25054eb2a53b5405fbb699a8296c3350d30a4', '8739602554c7f3241958e3cc9b57fdecb474d508', 'https', 'digilove.ir', '1', '2024-11-27 06:05:48', '0', '0', '0', '0', '0', '0', '0', '2024-11-27 06:05:48', '2024-11-26 15:23:37', '1'), ('62', '0', '0', 'fa/aliquam', 'fa/aliquam', '{\"Itemid\":\"1697\",\"id\":\"95\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"layout\":\"blog\",\"option\":\"com_content\",\"view\":\"category\"}', '{\"Itemid\":\"1697\",\"id\":\"95\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"layout\":\"blog\",\"option\":\"com_content\",\"view\":\"category\"}', '[]', 'Itemid=1697&id=95&layout=blog&option=com_content&view=category', 'Itemid=1697&id=95&layout=blog&option=com_content&view=category', 'fa-IR', '1697', 'content', 'category', 'blog', '\"95\"', '', '', '260677088b787d8bc79a5b20fb0095542ae817ef', '8739602554c7f3241958e3cc9b57fdecb474d508', 'https', 'digilove.ir', '1', '2024-11-27 08:01:51', '0', '0', '0', '0', '0', '0', '0', '2024-11-27 08:01:51', '2024-11-26 15:23:27', '1'), ('63', '0', '0', 'fa/?id=204', 'fa/?id=204', '{\"Itemid\":\"1899\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"option\":\"com_content\",\"view\":\"article\"}', '{\"Itemid\":\"1899\",\"id\":\"204\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"option\":\"com_content\",\"view\":\"article\"}', '{\"id\":\"204\"}', 'id=204&option=com_content&view=article', 'id=204&option=com_content&view=article', 'fa-IR', '1899', 'content', 'article', '', '\"204\"', '', '5841b7c23d6c9dc71be472aabce98c0f', '3d48d9f95888abdbe2a2f0020eae5a3a1386a88b', '8512f6cad8f5bd9b3cce6d4035d60c9df50cf643', 'https', 'digilove.ir', '1', '2024-11-27 08:03:31', '0', '0', '0', '1', '0', '0', '1', '2024-11-27 08:03:31', '2015-01-12 07:39:58', '1'), ('64', '0', '0', 'fa/virtuemart/product-category/دارو-درمان-تقویت/مکمل-ها', 'fa/virtuemart/product-category/دارو-درمان-تقویت/مکمل-ها', '{\"Itemid\":\"2028\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limit\":\"24\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"category\",\"virtuemart_category_id\":\"33\"}', '{\"Itemid\":\"2028\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limit\":\"24\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"category\",\"virtuemart_category_id\":\"33\"}', '[]', 'Itemid=2028&limit=24&limitstart=0&option=com_virtuemart&view=category&virtuemart_category_id=33', 'Itemid=2028&limit=24&limitstart=0&option=com_virtuemart&view=category&virtuemart_category_id=33', 'fa-IR', '2028', 'virtuemart', 'category', '', '\"\"', '', '', 'db59b8419ab9e1cb2ca7c7d06682eb5aaf208b0f', 'a337c3cd89fbb1a55621ce34d0d6b68ac05edf6c', 'https', 'digilove.ir', '2', '2024-11-27 08:10:27', '0', '0', '0', '0', '0', '0', '0', '2024-11-27 08:10:27', NULL, '1'), ('65', '0', '0', 'fa/virtuemart/product-category/اکسسوری', 'fa/virtuemart/product-category/اکسسوری', '{\"Itemid\":\"2028\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limit\":\"24\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"category\",\"virtuemart_category_id\":\"4\"}', '{\"Itemid\":\"2028\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limit\":\"24\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"category\",\"virtuemart_category_id\":\"4\"}', '[]', 'Itemid=2028&limit=24&limitstart=0&option=com_virtuemart&view=category&virtuemart_category_id=4', 'Itemid=2028&limit=24&limitstart=0&option=com_virtuemart&view=category&virtuemart_category_id=4', 'fa-IR', '2028', 'virtuemart', 'category', '', '\"\"', '', '', 'd7ce2a59d2ab63ccdf64e0d2ab3227950e354124', 'a337c3cd89fbb1a55621ce34d0d6b68ac05edf6c', 'https', 'digilove.ir', '2', '2024-11-27 08:19:22', '0', '0', '0', '0', '0', '0', '0', '2024-11-27 08:19:22', NULL, '1'), ('66', '0', '0', 'fa/virtuemart/product-category/اکسسوری/تخت-و-بالش-جنسی', 'fa/virtuemart/product-category/اکسسوری/تخت-و-بالش-جنسی', '{\"Itemid\":\"2028\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limit\":\"24\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"category\",\"virtuemart_category_id\":\"43\"}', '{\"Itemid\":\"2028\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limit\":\"24\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"category\",\"virtuemart_category_id\":\"43\"}', '[]', 'Itemid=2028&limit=24&limitstart=0&option=com_virtuemart&view=category&virtuemart_category_id=43', 'Itemid=2028&limit=24&limitstart=0&option=com_virtuemart&view=category&virtuemart_category_id=43', 'fa-IR', '2028', 'virtuemart', 'category', '', '\"\"', '', '', '7c57d3d31ee2e5a5e93147148559af008025599d', 'a337c3cd89fbb1a55621ce34d0d6b68ac05edf6c', 'https', 'digilove.ir', '2', '2024-11-27 09:00:18', '0', '0', '0', '0', '0', '0', '0', '2024-11-27 09:00:18', NULL, '1'), ('67', '0', '0', 'fa/virtuemart/product-category/اکسسوری/حلقه-ویبراتور', 'fa/virtuemart/product-category/اکسسوری/حلقه-ویبراتور', '{\"Itemid\":\"2028\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limit\":\"24\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"category\",\"virtuemart_category_id\":\"40\"}', '{\"Itemid\":\"2028\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limit\":\"24\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"category\",\"virtuemart_category_id\":\"40\"}', '[]', 'Itemid=2028&limit=24&limitstart=0&option=com_virtuemart&view=category&virtuemart_category_id=40', 'Itemid=2028&limit=24&limitstart=0&option=com_virtuemart&view=category&virtuemart_category_id=40', 'fa-IR', '2028', 'virtuemart', 'category', '', '\"\"', '', '', '557832e8da47bee407690397c9dfcd33892ef084', 'a337c3cd89fbb1a55621ce34d0d6b68ac05edf6c', 'https', 'digilove.ir', '2', '2024-11-27 09:00:28', '0', '0', '0', '0', '0', '0', '0', '2024-11-27 09:00:28', NULL, '1'), ('68', '0', '0', 'fa/virtuemart/product-category/اکسسوری/دوش-مقعدی', 'fa/virtuemart/product-category/اکسسوری/دوش-مقعدی', '{\"Itemid\":\"2028\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limit\":\"24\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"category\",\"virtuemart_category_id\":\"37\"}', '{\"Itemid\":\"2028\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limit\":\"24\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"category\",\"virtuemart_category_id\":\"37\"}', '[]', 'Itemid=2028&limit=24&limitstart=0&option=com_virtuemart&view=category&virtuemart_category_id=37', 'Itemid=2028&limit=24&limitstart=0&option=com_virtuemart&view=category&virtuemart_category_id=37', 'fa-IR', '2028', 'virtuemart', 'category', '', '\"\"', '', '', 'f080eb219d14bab6e77edd4923f1913063685a13', 'a337c3cd89fbb1a55621ce34d0d6b68ac05edf6c', 'https', 'digilove.ir', '2', '2024-11-27 09:04:05', '0', '0', '0', '0', '0', '0', '0', '2024-11-27 09:04:05', NULL, '1'), ('69', '0', '0', 'fa/virtuemart/product-category/اکسسوری/وزنه-کگل', 'fa/virtuemart/product-category/اکسسوری/وزنه-کگل', '{\"Itemid\":\"2028\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limit\":\"24\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"category\",\"virtuemart_category_id\":\"41\"}', '{\"Itemid\":\"2028\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limit\":\"24\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"category\",\"virtuemart_category_id\":\"41\"}', '[]', 'Itemid=2028&limit=24&limitstart=0&option=com_virtuemart&view=category&virtuemart_category_id=41', 'Itemid=2028&limit=24&limitstart=0&option=com_virtuemart&view=category&virtuemart_category_id=41', 'fa-IR', '2028', 'virtuemart', 'category', '', '\"\"', '', '', '06af8177fc30ca5356433552a2c4317ce641a783', 'be21e8f78726e9cc5bb8618005e90fd3f7db21b3', 'https', 'digilove.ir', '2', '2024-11-27 09:06:36', '0', '0', '0', '0', '0', '0', '0', '2024-11-27 09:06:36', NULL, '1'), ('70', '0', '0', 'fa/virtuemart/product-category/اکسسوری/وکیوم', 'fa/virtuemart/product-category/اکسسوری/وکیوم', '{\"Itemid\":\"2028\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limit\":\"24\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"category\",\"virtuemart_category_id\":\"38\"}', '{\"Itemid\":\"2028\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limit\":\"24\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"category\",\"virtuemart_category_id\":\"38\"}', '[]', 'Itemid=2028&limit=24&limitstart=0&option=com_virtuemart&view=category&virtuemart_category_id=38', 'Itemid=2028&limit=24&limitstart=0&option=com_virtuemart&view=category&virtuemart_category_id=38', 'fa-IR', '2028', 'virtuemart', 'category', '', '\"\"', '', '', '01105025bfbfdf4072de466fa92993107f80d20a', 'd199fbd41b9d4236ccc810f2b3b0d776e07e6290', 'https', 'digilove.ir', '2', '2024-11-27 09:08:37', '0', '0', '0', '0', '0', '0', '0', '2024-11-27 09:08:37', NULL, '1'), ('71', '0', '0', 'fa/virtuemart/product-category/اکسسوری/ویبراتور-1', 'fa/virtuemart/product-category/اکسسوری/ویبراتور-1', '{\"Itemid\":\"2028\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limit\":\"24\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"category\",\"virtuemart_category_id\":\"39\"}', '{\"Itemid\":\"2028\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limit\":\"24\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"category\",\"virtuemart_category_id\":\"39\"}', '[]', 'Itemid=2028&limit=24&limitstart=0&option=com_virtuemart&view=category&virtuemart_category_id=39', 'Itemid=2028&limit=24&limitstart=0&option=com_virtuemart&view=category&virtuemart_category_id=39', 'fa-IR', '2028', 'virtuemart', 'category', '', '\"\"', '', '', '0c528ee2f4d167905f682f931f406d19e5617383', '7735a13e4331e42b6faa4acfba11a53b0bb66b5a', 'https', 'digilove.ir', '2', '2024-11-27 09:14:00', '0', '0', '0', '0', '0', '0', '0', '2024-11-27 09:14:00', NULL, '1'), ('72', '0', '0', 'fa/virtuemart/product-category/بافته-ها-و-منسوجات/ادکلن', 'fa/virtuemart/product-category/بافته-ها-و-منسوجات/ادکلن', '{\"Itemid\":\"2028\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limit\":\"24\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"category\",\"virtuemart_category_id\":\"44\"}', '{\"Itemid\":\"2028\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limit\":\"24\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"category\",\"virtuemart_category_id\":\"44\"}', '[]', 'Itemid=2028&limit=24&limitstart=0&option=com_virtuemart&view=category&virtuemart_category_id=44', 'Itemid=2028&limit=24&limitstart=0&option=com_virtuemart&view=category&virtuemart_category_id=44', 'fa-IR', '2028', 'virtuemart', 'category', '', '\"\"', '', '', 'bcd7e0dd8476b752fc848f8b921893ca8bcd6536', 'da55322be5147d75015675c6d5d5f90def697c14', 'https', 'digilove.ir', '2', '2024-11-27 09:21:42', '0', '0', '0', '0', '0', '0', '0', '2024-11-27 09:21:42', NULL, '1'), ('73', '0', '0', 'fa/virtuemart/product-category/بافته-ها-و-منسوجات/اسپری', 'fa/virtuemart/product-category/بافته-ها-و-منسوجات/اسپری', '{\"Itemid\":\"2028\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limit\":\"24\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"category\",\"virtuemart_category_id\":\"46\"}', '{\"Itemid\":\"2028\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limit\":\"24\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"category\",\"virtuemart_category_id\":\"46\"}', '[]', 'Itemid=2028&limit=24&limitstart=0&option=com_virtuemart&view=category&virtuemart_category_id=46', 'Itemid=2028&limit=24&limitstart=0&option=com_virtuemart&view=category&virtuemart_category_id=46', 'fa-IR', '2028', 'virtuemart', 'category', '', '\"\"', '', '', '4b0a3348b7065cc6e0817e2e3c3a77e6577c57c4', '9ed81044dfdf0700daa87b202918f1ad31e823d9', 'https', 'digilove.ir', '2', '2024-11-27 09:31:12', '0', '0', '0', '0', '0', '0', '0', '2024-11-27 09:31:12', NULL, '1'), ('74', '0', '0', 'fa/virtuemart/product-category/بافته-ها-و-منسوجات/عود', 'fa/virtuemart/product-category/بافته-ها-و-منسوجات/عود', '{\"Itemid\":\"2028\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limit\":\"24\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"category\",\"virtuemart_category_id\":\"47\"}', '{\"Itemid\":\"2028\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limit\":\"24\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"category\",\"virtuemart_category_id\":\"47\"}', '[]', 'Itemid=2028&limit=24&limitstart=0&option=com_virtuemart&view=category&virtuemart_category_id=47', 'Itemid=2028&limit=24&limitstart=0&option=com_virtuemart&view=category&virtuemart_category_id=47', 'fa-IR', '2028', 'virtuemart', 'category', '', '\"\"', '', '', '3f9cb9ac22b249249169f851224876f762b9d1b3', 'ebbff41a2dcd2f33cb4da100953b5314e0ea520e', 'https', 'digilove.ir', '2', '2024-11-27 09:38:46', '0', '0', '0', '0', '0', '0', '0', '2024-11-27 09:38:46', NULL, '1'), ('75', '0', '0', 'fa/virtuemart/product-category/بافته-ها-و-منسوجات/پد-خوشبو-کننده', 'fa/virtuemart/product-category/بافته-ها-و-منسوجات/پد-خوشبو-کننده', '{\"Itemid\":\"2028\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limit\":\"24\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"category\",\"virtuemart_category_id\":\"50\"}', '{\"Itemid\":\"2028\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limit\":\"24\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"category\",\"virtuemart_category_id\":\"50\"}', '[]', 'Itemid=2028&limit=24&limitstart=0&option=com_virtuemart&view=category&virtuemart_category_id=50', 'Itemid=2028&limit=24&limitstart=0&option=com_virtuemart&view=category&virtuemart_category_id=50', 'fa-IR', '2028', 'virtuemart', 'category', '', '\"\"', '', '', 'ac57d3006184706ad6a487e728d22bd3c1363dc9', 'ebbff41a2dcd2f33cb4da100953b5314e0ea520e', 'https', 'digilove.ir', '2', '2024-11-27 09:44:34', '0', '0', '0', '0', '0', '0', '0', '2024-11-27 09:44:34', NULL, '1'), ('76', '0', '0', 'fa/component/virtuemart/condom-kodex-detail', 'fa/component/virtuemart/condom-kodex-detail', '{\"Itemid\":null,\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"productdetails\",\"virtuemart_category_id\":false,\"virtuemart_product_id\":\"26\"}', '{\"Itemid\":null,\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"limitstart\":0,\"option\":\"com_virtuemart\",\"view\":\"productdetails\",\"virtuemart_category_id\":false,\"virtuemart_product_id\":\"26\"}', '[]', 'limitstart=0&option=com_virtuemart&view=productdetails&virtuemart_category_id=0&virtuemart_product_id=26', 'limitstart=0&option=com_virtuemart&view=productdetails&virtuemart_category_id=0&virtuemart_product_id=26', 'fa-IR', '0', 'virtuemart', 'productdetails', '', '\"\"', '', '', '1dc689913a8197c55756e8a320515808363575b1', 'c3b9fcbe5e6a2cce7c700ef35769e22f15b083fe', 'https', 'digilove.ir', '2', '2024-11-27 09:45:24', '0', '0', '0', '0', '0', '0', '0', '2024-11-27 09:45:24', NULL, '1'), ('77', '0', '0', 'fa/bonus-pages-2/faq', 'fa/bonus-pages-2/faq', '{\"Itemid\":\"1942\",\"id\":\"176\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"option\":\"com_content\",\"view\":\"article\"}', '{\"Itemid\":\"1942\",\"id\":\"176\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"option\":\"com_content\",\"view\":\"article\"}', '[]', 'id=176&option=com_content&view=article', 'id=176&option=com_content&view=article', 'fa-IR', '1942', 'content', 'article', '', '\"176\"', '', 'ad15ab07a289548ad2b3ea84905d8d0e', 'b474f3173fe0ef0a23af05a0d3a8eb069017efc8', '080a606697d4f1b5d89c0d9f0f3feedb62b2e922', 'https', 'digilove.ir', '2', '2024-11-27 12:28:52', '0', '0', '0', '0', '0', '0', '0', '2024-11-27 12:28:52', '2016-10-20 04:58:00', '1'), ('78', '0', '0', 'fa/bonus-pages-2/testimonial2', 'fa/bonus-pages-2/testimonial2', '{\"Itemid\":\"1944\",\"id\":\"180\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"option\":\"com_content\",\"view\":\"article\"}', '{\"Itemid\":\"1944\",\"id\":\"180\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"option\":\"com_content\",\"view\":\"article\"}', '[]', 'id=180&option=com_content&view=article', 'id=180&option=com_content&view=article', 'fa-IR', '1944', 'content', 'article', '', '\"180\"', '', '31961301cbb6e14475f0a1ce002f8c5d', 'df2ac2683ae0aebbe431101681322055f38b1b08', '080a606697d4f1b5d89c0d9f0f3feedb62b2e922', 'https', 'digilove.ir', '2', '2024-11-27 12:55:37', '0', '0', '0', '0', '0', '0', '0', '2024-11-27 12:55:37', '2015-10-21 02:28:46', '1'), ('79', '0', '0', 'fa/bonus-pages-2/terms-of-service', 'fa/bonus-pages-2/terms-of-service', '{\"Itemid\":\"1945\",\"id\":\"225\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"option\":\"com_content\",\"view\":\"article\"}', '{\"Itemid\":\"1945\",\"id\":\"225\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"option\":\"com_content\",\"view\":\"article\"}', '[]', 'id=225&option=com_content&view=article', 'id=225&option=com_content&view=article', 'fa-IR', '1945', 'content', 'article', '', '\"225\"', '', '7c2d9c2e76500b40f6b270c237ec296b', 'd9650a7ae4a909372562bfb338d33835df0c7c44', '6ada1ebbd400807022611f30b746dacdce0619ff', 'https', 'digilove.ir', '2', '2024-11-27 14:05:32', '0', '0', '0', '0', '0', '0', '0', '2024-11-27 14:05:32', '2024-11-27 12:23:29', '1'), ('80', '0', '0', 'fa/bonus-pages-2/sitemap', 'fa/bonus-pages-2/sitemap', '{\"Itemid\":\"1946\",\"id\":\"2\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"option\":\"com_xmap\",\"view\":\"html\"}', '{\"Itemid\":\"1946\",\"id\":\"2\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"option\":\"com_xmap\",\"view\":\"html\"}', '[]', 'Itemid=1946&id=2&option=com_xmap&view=html', 'Itemid=1946&id=2&option=com_xmap&view=html', 'fa-IR', '1946', 'xmap', 'html', '', '\"2\"', '', '', 'f8522e3a83206c41436932fb97c378cb7e55f8f5', '34828e50dcaff70b4c6efcd6aa700cacc8ac5efe', 'https', 'digilove.ir', '2', '2024-11-27 13:04:08', '0', '0', '0', '0', '0', '0', '0', '2024-11-27 13:04:08', NULL, '1'), ('81', '0', '0', 'fa/bonus-pages-2/coming-soon', 'fa/bonus-pages-2/coming-soon', '{\"Itemid\":\"1947\",\"id\":\"238\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"option\":\"com_content\",\"view\":\"article\"}', '{\"Itemid\":\"1947\",\"id\":\"238\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"option\":\"com_content\",\"view\":\"article\"}', '[]', 'id=238&option=com_content&view=article', 'id=238&option=com_content&view=article', 'fa-IR', '1947', 'content', 'article', '', '\"238\"', '', '07a6d37c1ad13c82ef11597f559e3c52', 'a2acc7d56d3a45d8e9965609fe4be65cac667207', 'a4a20a34200a8f832da5145c098512e73d57243b', 'https', 'digilove.ir', '2', '2024-11-27 13:38:05', '0', '0', '0', '0', '0', '0', '0', '2024-11-27 13:38:05', '2016-11-30 04:29:17', '1'), ('82', '0', '0', 'fa/yoga?start=3', 'fa/yoga?start=3', '{\"Itemid\":\"1698\",\"id\":\"78\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"layout\":\"blog\",\"limitstart\":\"3\",\"option\":\"com_content\",\"view\":\"category\"}', '{\"Itemid\":\"1698\",\"id\":\"78\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"layout\":\"blog\",\"limitstart\":\"3\",\"option\":\"com_content\",\"start\":\"3\",\"view\":\"category\"}', '{\"start\":\"3\"}', 'Itemid=1698&id=78&layout=blog&limitstart=3&option=com_content&start=3&view=category', 'Itemid=1698&id=78&layout=blog&limitstart=3&option=com_content&start=3&view=category', 'fa-IR', '1698', 'content', 'category', 'blog', '\"78\"', '', '', '030765ce9775239dffa7c91a3812ec497d744f1c', '8739602554c7f3241958e3cc9b57fdecb474d508', 'https', 'digilove.ir', '2', '2024-11-27 13:41:25', '0', '0', '0', '0', '0', '0', '0', '2024-11-27 13:41:25', '2024-11-26 15:23:37', '1'), ('83', '0', '0', 'fa/weight-lifting', 'fa/weight-lifting', '{\"Itemid\":\"1696\",\"id\":\"80\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"layout\":\"blog\",\"option\":\"com_content\",\"view\":\"category\"}', '{\"Itemid\":\"1696\",\"id\":\"80\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"layout\":\"blog\",\"option\":\"com_content\",\"view\":\"category\"}', '[]', 'Itemid=1696&id=80&layout=blog&option=com_content&view=category', 'Itemid=1696&id=80&layout=blog&option=com_content&view=category', 'fa-IR', '1696', 'content', 'category', 'blog', '\"80\"', '', '', '4e152c8a54792c12c6da62b98d57164b55b5bdee', '8739602554c7f3241958e3cc9b57fdecb474d508', 'https', 'digilove.ir', '2', '2024-11-27 13:42:54', '0', '0', '0', '0', '0', '0', '0', '2024-11-27 13:42:54', '2024-11-26 15:23:19', '1'), ('84', '0', '0', 'fa/vensen-magein', 'fa/vensen-magein', '{\"Itemid\":\"1699\",\"id\":\"104\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"layout\":\"blog\",\"option\":\"com_content\",\"view\":\"category\"}', '{\"Itemid\":\"1699\",\"id\":\"104\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"layout\":\"blog\",\"option\":\"com_content\",\"view\":\"category\"}', '[]', 'Itemid=1699&id=104&layout=blog&option=com_content&view=category', 'Itemid=1699&id=104&layout=blog&option=com_content&view=category', 'fa-IR', '1699', 'content', 'category', 'blog', '\"104\"', '', '', 'bb15854da0c2ac3e0c14b31ad340329f17804d75', '8739602554c7f3241958e3cc9b57fdecb474d508', 'https', 'digilove.ir', '2', '2024-11-27 13:43:21', '0', '0', '0', '0', '0', '0', '0', '2024-11-27 13:43:21', '2024-11-26 15:23:46', '1'), ('85', '0', '0', 'fa/mukan-tesgn', 'fa/mukan-tesgn', '{\"Itemid\":\"1816\",\"id\":\"105\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"layout\":\"blog\",\"option\":\"com_content\",\"view\":\"category\"}', '{\"Itemid\":\"1816\",\"id\":\"105\",\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"layout\":\"blog\",\"option\":\"com_content\",\"view\":\"category\"}', '[]', 'Itemid=1816&id=105&layout=blog&option=com_content&view=category', 'Itemid=1816&id=105&layout=blog&option=com_content&view=category', 'fa-IR', '1816', 'content', 'category', 'blog', '\"105\"', '', '', '686c82d305271369fc2d6203f4bc8a41b01df9da', '8739602554c7f3241958e3cc9b57fdecb474d508', 'https', 'digilove.ir', '2', '2024-11-27 14:06:37', '0', '0', '0', '0', '0', '0', '0', '2024-11-27 14:06:37', '2024-11-26 15:23:56', '1'), ('86', '0', '0', 'fa/yoga/2016?view=archive&month=10', 'fa/yoga/2016?view=archive&month=10', '{\"Itemid\":\"1698\",\"id\":2016,\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"option\":\"com_content\"}', '{\"Itemid\":\"1698\",\"id\":2016,\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"month\":\"10\",\"option\":\"com_content\",\"view\":\"archive\"}', '{\"month\":\"10\",\"view\":\"archive\"}', 'Itemid=1698&id=2016&month=10&option=com_content&view=archive', 'Itemid=1698&id=2016&month=10&option=com_content&view=archive', 'fa-IR', '1698', 'content', 'archive', 'blog', '2016', '', '', '837f66836b6ef39f663a1e08c12e9f9474996e38', '8739602554c7f3241958e3cc9b57fdecb474d508', 'https', 'digilove.ir', '2', '2024-11-27 14:06:51', '0', '0', '0', '0', '0', '0', '0', '2024-11-27 14:06:51', NULL, '1'), ('87', '0', '0', 'fa/yoga/2011?view=archive&month=5', 'fa/yoga/2011?view=archive&month=5', '{\"Itemid\":\"1698\",\"id\":2011,\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"option\":\"com_content\"}', '{\"Itemid\":\"1698\",\"id\":2011,\"lang\":\"fa-IR\",\"language\":\"fa-IR\",\"month\":\"5\",\"option\":\"com_content\",\"view\":\"archive\"}', '{\"month\":\"5\",\"view\":\"archive\"}', 'Itemid=1698&id=2011&month=5&option=com_content&view=archive', 'Itemid=1698&id=2011&month=5&option=com_content&view=archive', 'fa-IR', '1698', 'content', 'archive', 'blog', '2011', '', '', '5915f5ae03d045514299115493911ebec4ecec20', '8739602554c7f3241958e3cc9b57fdecb474d508', 'https', 'digilove.ir', '2', '2024-11-27 14:07:13', '0', '0', '0', '0', '0', '0', '0', '2024-11-27 14:07:13', NULL, '1');/**ABDB**/ /**ABDB**/CREATE TABLE `#__forseo_messages` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Primary Key', `user_id` int(11) NOT NULL DEFAULT 0, `scope` varchar(40) NOT NULL DEFAULT 'default' COMMENT 'Scope within the table', `msg_id` varchar(120) NOT NULL COMMENT 'Unique ID within the scope', `type` varchar(40) NOT NULL DEFAULT '3_info' COMMENT 'options: 1_danger, 2_warning, 3_info', `dismiss_type` tinyint(3) unsigned NOT NULL DEFAULT 1 COMMENT '0: not dismissable, 1: dismissable, 2: postponable', `postpone_spec` varchar(190) NOT NULL COMMENT 'Dismiss postpone period specification', `title` varchar(190) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT 'Message title', `body` varchar(2048) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT 'Message HTML body', `created_at` datetime NOT NULL, `dismissed_at` datetime DEFAULT NULL, `show_at` datetime NOT NULL, `state` tinyint(4) NOT NULL DEFAULT 0 COMMENT '0: created, 1: pending, 2: dismissed, 3: closed', PRIMARY KEY (`id`), KEY `main` (`scope`,`msg_id`), KEY `show_at` (`show_at`) ) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /**ABDB**/INSERT INTO `#__forseo_messages` VALUES ('1', '23', 'default', 'dashboard.profilePagePrompt', '1_danger', '3', 'P2W', 'dashboard.profilePagePrompt', 'dashboard.profilePagePromptDetails', '2024-11-26 07:43:23', NULL, '2024-11-26 07:43:23', '0'), ('2', '23', 'default', 'dashboard.robotOutAiBotsPrompt', '1_danger', '3', 'P2W', 'dashboard.robotOutAiBotsPrompt', 'dashboard.robotOutAiBotsPromptDetails', '2024-11-26 07:43:23', NULL, '2024-11-26 07:43:23', '0'), ('3', '23', 'default', 'dashboard.gscConnectPrompt', '1_danger', '3', 'P2W', 'configWizard.gscExplain', 'dashboard.gscPromptDetails', '2024-11-26 07:43:23', NULL, '2024-11-26 07:43:23', '0'), ('4', '23', 'default', 'dashboard.canImportFromSh404sef', '2_warning', '3', 'P1M', 'importWizard.sh404sefCanImportData', 'dashboard.canImportFromSh404sef', '2024-11-26 07:43:23', NULL, '2024-11-26 07:43:23', '0'), ('5', '23', 'default', 'dashboard.noAnalytics', '2_warning', '3', 'P1M', 'dashboard.noAnalytics', '', '2024-11-26 07:43:23', NULL, '2024-11-26 07:43:23', '0'), ('6', '23', 'default', 'dashboard.warningSdMissingLogo', '1_danger', '1', 'P1W', 'dashboard.warningSdMissingLogo', '', '2024-11-26 07:43:23', NULL, '2024-11-26 07:43:23', '0'), ('7', '23', 'default', 'dashboard.warningSitemapsNotAddingRobotsTxt', '2_warning', '3', 'P1M', 'dashboard.warningSitemapsNotAddingRobotsTxt', '', '2024-11-26 07:43:23', NULL, '2024-11-26 07:43:23', '0'), ('8', '23', 'default', 'dashboard.warningSitemapsNotSubmitting', '2_warning', '3', 'P1M', 'dashboard.warningSitemapsNotSubmitting', '', '2024-11-26 07:43:23', NULL, '2024-11-26 07:43:23', '0'); /**ABDB**/CREATE TABLE `#__forseo_links` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Primary Key', `status` smallint(6) NOT NULL DEFAULT 0 COMMENT '0: ok, 400+: error', `target` smallint(6) NOT NULL DEFAULT 0 COMMENT '0: internal, 1: external', `url` varchar(190) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Indexable version of requested URL, with any query var', `full_url` varchar(2048) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Full requested URL as stored', `scheme` varchar(40) NOT NULL DEFAULT '' COMMENT 'Scheme used when page data was stored', `host` varchar(100) NOT NULL DEFAULT '' COMMENT 'Host used when page data was stored', `final_url` varchar(190) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Indexable version of the final redirect', `full_final_url` varchar(2048) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Full URL for final redirect', `redirects_count` smallint(6) NOT NULL DEFAULT 0, `last_hit` datetime NOT NULL COMMENT 'Last request for that page', `hits` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Number of requests', PRIMARY KEY (`id`), UNIQUE KEY `url` (`url`), KEY `final_url` (`final_url`), KEY `host` (`host`), KEY `hits` (`hits`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /**ABDB**/INSERT INTO `#__forseo_links` VALUES ('1', '200', '0', 'fa/register', 'fa/register', 'https', 'digilove.ir', 'fa/virtuemart/account-maintenance', 'fa/virtuemart/account-maintenance', '1', '2024-11-26 10:05:08', '0'), ('2', '200', '0', 'fa/virtuemart/shopping-cart?task=checkout', 'fa/virtuemart/shopping-cart?task=checkout', 'https', 'digilove.ir', 'fa/virtuemart/account-maintenance/editaddresscartBT', 'fa/virtuemart/account-maintenance/editaddresscartBT', '1', '2024-11-26 20:05:20', '0'); /**ABDB**/CREATE TABLE `#__forseo_keystore` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Primary Key', `scope` varchar(40) NOT NULL DEFAULT 'default', `key` varchar(150) NOT NULL, `value` varchar(16000) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `large_value` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `user_id` int(11) NOT NULL DEFAULT 0, `version` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Future use', `lock` char(40) NOT NULL DEFAULT '' COMMENT 'Exclusive use of a value', `lock_expires_at` datetime DEFAULT NULL, `format` tinyint(4) NOT NULL DEFAULT 1, `modified_at` datetime NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `main` (`scope`,`key`) ) ENGINE=InnoDB AUTO_INCREMENT=99 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /**ABDB**/INSERT INTO `#__forseo_keystore` VALUES ('1', 'default', 'sitemap.injectInRobotsTxt', 'false', '', '23', '0', '', NULL, '1', '2024-11-26 07:42:58'), ('2', 'default', 'lists.rules.orderingType', 'orderingField', '', '0', '0', '', NULL, '1', '2024-11-26 07:42:57'), ('3', 'default', 'error_page.defaultInjected', 'true', '', '0', '0', '', NULL, '1', '2024-11-26 07:42:57'), ('4', 'default', 'crawl.in_progress', '{\"started_at\":\"2024-11-26 07:48:32\",\"id\":\"E16BD729-B0FA-43C2-93D8-3D9D8D1759A5\"}', '', '0', '0', '', NULL, '2', '2024-11-26 07:48:32'), ('5', 'default', 'sitemap.rebuildRequired', '\"2024-11-26 07:48:34\"', '', '0', '0', '', NULL, '1', '2024-11-26 07:48:33'), ('6', 'default', 'tasks.lastRunAt.purgeReferrers', '\"2024-11-27 12:06:28\"', '', '23', '0', '', NULL, '1', '2024-11-27 12:06:28'), ('7', 'default', 'tasks.lastRunAt.purgeErrors', '\"2024-11-27 12:06:28\"', '', '23', '0', '', NULL, '1', '2024-11-27 12:06:28'); /**ABDB**/CREATE TABLE `#__forseo_images` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Primary Key', `status` smallint(6) NOT NULL DEFAULT 0 COMMENT '0: ok, 400+: error', `url` varchar(190) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Indexable version of image URL, with any query var', `full_url` varchar(2048) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Full image URL as found in page', `page_url` varchar(190) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Indexable version of the URL of the page where this image is located', `page_full_url` varchar(2048) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Full URL of the page where this image is located', `target` smallint(6) NOT NULL DEFAULT 0 COMMENT '0: internal, 1: external', `data` varchar(4096) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT 'Image information as JSON', `sitemap_mode` smallint(6) NOT NULL DEFAULT 0 COMMENT '0: auto, 1: user', `sitemap_user` smallint(6) NOT NULL DEFAULT 0 COMMENT '0: included, 1: excluded', `sitemap_auto` smallint(6) NOT NULL DEFAULT 0 COMMENT '0: included, 1: excluded', `crawled_at` datetime NOT NULL, `modified_at` datetime DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `main` (`page_url`,`url`), KEY `url` (`url`) ) ENGINE=InnoDB AUTO_INCREMENT=684 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /**ABDB**/INSERT INTO `#__forseo_images` VALUES ('1', '0', '/cache/resized/bf4b94d3b5a397fefc07091fa724bc7e.jpg', '/cache/resized/bf4b94d3b5a397fefc07091fa724bc7e.jpg', 'fa', 'fa', '0', '{\"file_type\":\"\",\"width\":300,\"height\":300,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u0622\\u0628\\u0645\\u06cc\\u0648\\u0647 \\u06af\\u06cc\\u0631 \\u0641\\u0648\\u0644 \\u0627\\u0645\\u06a9\\u0627\\u0646\\u0627\\u062a\",\"title\":\"\\u0622\\u0628\\u0645\\u06cc\\u0648\\u0647 \\u06af\\u06cc\\u0631 \\u0641\\u0648\\u0644 \\u0627\\u0645\\u06a9\\u0627\\u0646\\u0627\\u062a\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/bf4b94d3b5a397fefc07091fa724bc7e.jpg\"}', '0', '0', '1', '2024-11-26 07:48:33', '2024-11-26 07:48:33'), ('2', '0', '/cache/resized/47357fcb4fa747b9b2a48443711022b3.jpg', '/cache/resized/47357fcb4fa747b9b2a48443711022b3.jpg', 'fa', 'fa', '0', '{\"file_type\":\"\",\"width\":300,\"height\":300,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u0627\\u0633\\u067e\\u06cc\\u06a9\\u0631 \\u0641\\u0644\\u0634 \\u062e\\u0648\\u0631\",\"title\":\"\\u0627\\u0633\\u067e\\u06cc\\u06a9\\u0631 \\u0641\\u0644\\u0634 \\u062e\\u0648\\u0631\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/47357fcb4fa747b9b2a48443711022b3.jpg\"}', '0', '0', '1', '2024-11-26 07:48:33', '2024-11-26 07:48:33'), ('3', '0', '/cache/resized/925e5e3325c2d2875ed3e15a55e1542a.jpg', '/cache/resized/925e5e3325c2d2875ed3e15a55e1542a.jpg', 'fa', 'fa', '0', '{\"file_type\":\"\",\"width\":300,\"height\":300,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u0627\\u0633\\u067e\\u06cc\\u06a9\\u0631 \\u0645\\u0627\\u0631\\u0634\\u0627\\u0644\",\"title\":\"\\u0627\\u0633\\u067e\\u06cc\\u06a9\\u0631 \\u0645\\u0627\\u0631\\u0634\\u0627\\u0644\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/925e5e3325c2d2875ed3e15a55e1542a.jpg\"}', '0', '0', '1', '2024-11-26 07:48:33', '2024-11-26 07:48:33'), ('4', '0', '/cache/resized/15e5ceb1d4e3b094cf628e01a3883e43.jpg', '/cache/resized/15e5ceb1d4e3b094cf628e01a3883e43.jpg', 'fa', 'fa', '0', '{\"file_type\":\"\",\"width\":270,\"height\":170,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u0686\\u0631\\u0645 \\u06a9\\u0627\\u0631\\u06cc\\u060c\\u0633\\u0641\\u0627\\u0644\\u06af\\u0631\\u06cc\\u060c\\u06a9\\u0627\\u0634\\u06cc \",\"title\":\"\\u0686\\u0631\\u0645 \\u06a9\\u0627\\u0631\\u06cc\\u060c\\u0633\\u0641\\u0627\\u0644\\u06af\\u0631\\u06cc\\u060c\\u06a9\\u0627\\u0634\\u06cc \",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/15e5ceb1d4e3b094cf628e01a3883e43.jpg\"}', '0', '0', '1', '2024-11-26 07:48:33', '2024-11-26 07:48:33'), ('5', '0', '/cache/resized/fff31f2466ed3c3158f1bb31d8dd6545.jpg', '/cache/resized/fff31f2466ed3c3158f1bb31d8dd6545.jpg', 'fa', 'fa', '0', '{\"file_type\":\"\",\"width\":270,\"height\":170,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u0635\\u0646\\u0627\\u06cc\\u0639 \\u0686\\u0648\\u0628\\u06cc\",\"title\":\"\\u0635\\u0646\\u0627\\u06cc\\u0639 \\u0686\\u0648\\u0628\\u06cc\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/fff31f2466ed3c3158f1bb31d8dd6545.jpg\"}', '0', '0', '1', '2024-11-26 07:48:33', '2024-11-26 07:48:33'), ('6', '0', '/cache/resized/63a61fb10d376a68620e960b3b7b3025.jpg', '/cache/resized/63a61fb10d376a68620e960b3b7b3025.jpg', 'fa', 'fa', '0', '{\"file_type\":\"\",\"width\":270,\"height\":170,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u0645\\u0635\\u0646\\u0648\\u0639\\u0627\\u062a \\u0641\\u0644\\u0632\\u06cc\",\"title\":\"\\u0645\\u0635\\u0646\\u0648\\u0639\\u0627\\u062a \\u0641\\u0644\\u0632\\u06cc\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/63a61fb10d376a68620e960b3b7b3025.jpg\"}', '0', '0', '1', '2024-11-26 07:48:33', '2024-11-26 07:48:33'), ('7', '0', '/cache/resized/136c2c6100d6310747ec6639b697de1b.jpg', '/cache/resized/136c2c6100d6310747ec6639b697de1b.jpg', 'fa', 'fa', '0', '{\"file_type\":\"\",\"width\":270,\"height\":170,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u0628\\u0627\\u0641\\u062a\\u0647\\u200c\\u0647\\u0627 \\u0648 \\u0645\\u0646\\u0633\\u0648\\u062c\\u0627\\u062a\",\"title\":\"\\u0628\\u0627\\u0641\\u062a\\u0647\\u200c\\u0647\\u0627 \\u0648 \\u0645\\u0646\\u0633\\u0648\\u062c\\u0627\\u062a\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/136c2c6100d6310747ec6639b697de1b.jpg\"}', '0', '0', '1', '2024-11-26 07:48:33', '2024-11-26 07:48:33'), ('8', '0', '/cache/resized/1c4615cdde1abd370a22339b5810de20.jpg', '/cache/resized/1c4615cdde1abd370a22339b5810de20.jpg', 'fa', 'fa', '0', '{\"file_type\":\"\",\"width\":1170,\"height\":510,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/1c4615cdde1abd370a22339b5810de20.jpg\"}', '0', '0', '1', '2024-11-26 07:48:33', '2024-11-26 07:48:33'), ('9', '0', '/images/demo/img-item1.png', '/images/demo/img-item1.png', 'fa', 'fa', '0', '{\"file_type\":\"\",\"width\":789,\"height\":353,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"Slider\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/images\\/demo\\/img-item1.png\"}', '0', '0', '0', '2024-11-26 07:48:33', '2024-11-26 07:48:33'), ('10', '0', '/cache/resized/82e83d0a4e6527e30a8ef45d5c98952d.jpg', '/cache/resized/82e83d0a4e6527e30a8ef45d5c98952d.jpg', 'fa', 'fa', '0', '{\"file_type\":\"\",\"width\":1170,\"height\":510,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/82e83d0a4e6527e30a8ef45d5c98952d.jpg\"}', '0', '0', '1', '2024-11-26 07:48:33', '2024-11-26 07:48:33'), ('11', '0', '/images/demo/img-item2.png', '/images/demo/img-item2.png', 'fa', 'fa', '0', '{\"file_type\":\"\",\"width\":430,\"height\":435,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"Slider\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/images\\/demo\\/img-item2.png\"}', '0', '0', '0', '2024-11-26 07:48:33', '2024-11-26 07:48:33'), ('12', '0', '/cache/resized/65376c27e12692b839c2cd9a8f7ba62d.jpg', '/cache/resized/65376c27e12692b839c2cd9a8f7ba62d.jpg', 'fa', 'fa', '0', '{\"file_type\":\"\",\"width\":1170,\"height\":510,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/65376c27e12692b839c2cd9a8f7ba62d.jpg\"}', '0', '0', '1', '2024-11-26 07:48:33', '2024-11-26 07:48:33'), ('13', '0', '/images/demo/img-item3.png', '/images/demo/img-item3.png', 'fa', 'fa', '0', '{\"file_type\":\"\",\"width\":425,\"height\":445,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"Slider\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/images\\/demo\\/img-item3.png\"}', '0', '0', '0', '2024-11-26 07:48:33', '2024-11-26 07:48:33'), ('14', '0', '/images/demo/s1.jpg', '/images/demo/s1.jpg', 'fa', 'fa', '0', '{\"file_type\":\"\",\"width\":370,\"height\":220,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u0628\\u0646\\u0631\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/images\\/demo\\/s1.jpg\"}', '0', '0', '0', '2024-11-26 07:48:33', '2024-11-26 07:48:33'), ('15', '0', '/images/demo/s2.jpg', '/images/demo/s2.jpg', 'fa', 'fa', '0', '{\"file_type\":\"\",\"width\":370,\"height\":220,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u0628\\u0646\\u0631\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/images\\/demo\\/s2.jpg\"}', '0', '0', '0', '2024-11-26 07:48:33', '2024-11-26 07:48:33'), ('16', '0', '/images/demo/s3.jpg', '/images/demo/s3.jpg', 'fa', 'fa', '0', '{\"file_type\":\"\",\"width\":370,\"height\":220,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u0628\\u0646\\u0631\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/images\\/demo\\/s3.jpg\"}', '0', '0', '0', '2024-11-26 07:48:33', '2024-11-26 07:48:33'), ('17', '0', '/images/demo/s4.jpg', '/images/demo/s4.jpg', 'fa', 'fa', '0', '{\"file_type\":\"\",\"width\":570,\"height\":220,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u0628\\u0646\\u0631\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/images\\/demo\\/s4.jpg\"}', '0', '0', '0', '2024-11-26 07:48:33', '2024-11-26 07:48:33'), ('18', '0', '/images/demo/s5.jpg', '/images/demo/s5.jpg', 'fa', 'fa', '0', '{\"file_type\":\"\",\"width\":570,\"height\":220,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u0628\\u0646\\u0631\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/images\\/demo\\/s5.jpg\"}', '0', '0', '0', '2024-11-26 07:48:33', '2024-11-26 07:48:33'), ('19', '0', '/cache/resized/4ff9c8b8e7c264897ffc76f4db12499a.jpg', '/cache/resized/4ff9c8b8e7c264897ffc76f4db12499a.jpg', 'fa', 'fa', '0', '{\"file_type\":\"\",\"width\":270,\"height\":340,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u0686\\u0631\\u0645 \\u06a9\\u0627\\u0631\\u06cc\\u060c\\u0633\\u0641\\u0627\\u0644\\u06af\\u0631\\u06cc\\u060c\\u06a9\\u0627\\u0634\\u06cc \",\"title\":\"\\u0686\\u0631\\u0645 \\u06a9\\u0627\\u0631\\u06cc\\u060c\\u0633\\u0641\\u0627\\u0644\\u06af\\u0631\\u06cc\\u060c\\u06a9\\u0627\\u0634\\u06cc \",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/4ff9c8b8e7c264897ffc76f4db12499a.jpg\"}', '0', '0', '1', '2024-11-26 07:48:33', '2024-11-26 07:48:33'), ('20', '0', '/cache/resized/94c22970e73ac0ab7cfaca1e68954186.jpg', '/cache/resized/94c22970e73ac0ab7cfaca1e68954186.jpg', 'fa', 'fa', '0', '{\"file_type\":\"\",\"width\":270,\"height\":340,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u0635\\u0646\\u0627\\u06cc\\u0639 \\u0686\\u0648\\u0628\\u06cc\",\"title\":\"\\u0635\\u0646\\u0627\\u06cc\\u0639 \\u0686\\u0648\\u0628\\u06cc\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/94c22970e73ac0ab7cfaca1e68954186.jpg\"}', '0', '0', '1', '2024-11-26 07:48:33', '2024-11-26 07:48:33'), ('21', '0', '/cache/resized/b96573ac6923c21df89a42452d9c37e5.jpg', '/cache/resized/b96573ac6923c21df89a42452d9c37e5.jpg', 'fa', 'fa', '0', '{\"file_type\":\"\",\"width\":270,\"height\":340,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u0645\\u0635\\u0646\\u0648\\u0639\\u0627\\u062a \\u0641\\u0644\\u0632\\u06cc\",\"title\":\"\\u0645\\u0635\\u0646\\u0648\\u0639\\u0627\\u062a \\u0641\\u0644\\u0632\\u06cc\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/b96573ac6923c21df89a42452d9c37e5.jpg\"}', '0', '0', '1', '2024-11-26 07:48:33', '2024-11-26 07:48:33'), ('22', '0', '/cache/resized/e4a6e03527f5359e9e8360878ce293a6.jpg', '/cache/resized/e4a6e03527f5359e9e8360878ce293a6.jpg', 'fa', 'fa', '0', '{\"file_type\":\"\",\"width\":270,\"height\":340,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u0628\\u0627\\u0641\\u062a\\u0647\\u200c\\u0647\\u0627 \\u0648 \\u0645\\u0646\\u0633\\u0648\\u062c\\u0627\\u062a\",\"title\":\"\\u0628\\u0627\\u0641\\u062a\\u0647\\u200c\\u0647\\u0627 \\u0648 \\u0645\\u0646\\u0633\\u0648\\u062c\\u0627\\u062a\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/e4a6e03527f5359e9e8360878ce293a6.jpg\"}', '0', '0', '1', '2024-11-26 07:48:33', '2024-11-26 07:48:33'), ('23', '0', '/images/demo/s6.jpg', '/images/demo/s6.jpg', 'fa', 'fa', '0', '{\"file_type\":\"\",\"width\":1170,\"height\":220,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"Banner\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/images\\/demo\\/s6.jpg\"}', '0', '0', '0', '2024-11-26 07:48:33', '2024-11-26 07:48:33'), ('24', '0', '/cache/resized/ebd78cfae7983a430f2d4f5a325ab243.jpg', '/cache/resized/ebd78cfae7983a430f2d4f5a325ab243.jpg', 'fa', 'fa', '0', '{\"file_type\":\"\",\"width\":370,\"height\":240,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/ebd78cfae7983a430f2d4f5a325ab243.jpg\"}', '0', '0', '1', '2024-11-26 07:48:33', '2024-11-26 07:48:33'), ('25', '0', '/cache/resized/15b6da120a4ede1e45a63e8842e2cb1b.jpg', '/cache/resized/15b6da120a4ede1e45a63e8842e2cb1b.jpg', 'fa', 'fa', '0', '{\"file_type\":\"\",\"width\":370,\"height\":240,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/15b6da120a4ede1e45a63e8842e2cb1b.jpg\"}', '0', '0', '1', '2024-11-26 07:48:33', '2024-11-26 07:48:33'), ('26', '0', '/cache/resized/4ae76b46d98f65701022c337b47453ad.jpg', '/cache/resized/4ae76b46d98f65701022c337b47453ad.jpg', 'fa', 'fa', '0', '{\"file_type\":\"\",\"width\":370,\"height\":240,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/4ae76b46d98f65701022c337b47453ad.jpg\"}', '0', '0', '1', '2024-11-26 07:48:33', '2024-11-26 07:48:33'), ('27', '0', '/cache/resized/5b21e1b8eb6d6e3275c625d74290afba.jpg', '/cache/resized/5b21e1b8eb6d6e3275c625d74290afba.jpg', 'fa', 'fa', '0', '{\"file_type\":\"\",\"width\":370,\"height\":240,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/5b21e1b8eb6d6e3275c625d74290afba.jpg\"}', '0', '0', '1', '2024-11-26 07:48:33', '2024-11-26 07:48:33'), ('28', '0', '/cache/resized/ebfeb5d3c8368ef63a5fdff94980f7ea.jpg', '/cache/resized/ebfeb5d3c8368ef63a5fdff94980f7ea.jpg', 'fa', 'fa', '0', '{\"file_type\":\"\",\"width\":370,\"height\":240,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/ebfeb5d3c8368ef63a5fdff94980f7ea.jpg\"}', '0', '0', '1', '2024-11-26 07:48:33', '2024-11-26 07:48:33'), ('29', '0', '/cache/resized/d8fa44007df89536f7dfd26dac00cd6d.jpg', '/cache/resized/d8fa44007df89536f7dfd26dac00cd6d.jpg', 'fa', 'fa', '0', '{\"file_type\":\"\",\"width\":370,\"height\":240,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/d8fa44007df89536f7dfd26dac00cd6d.jpg\"}', '0', '0', '1', '2024-11-26 07:48:33', '2024-11-26 07:48:33'), ('30', '0', '/images/demo/methor.png', '/images/demo/methor.png', 'fa', 'fa', '0', '{\"file_type\":\"\",\"width\":387,\"height\":22,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/images\\/demo\\/methor.png\"}', '0', '0', '0', '2024-11-26 07:48:33', '2024-11-26 07:48:33'), ('49', '0', '/cache/resized/bf4b94d3b5a397fefc07091fa724bc7e.jpg', '/cache/resized/bf4b94d3b5a397fefc07091fa724bc7e.jpg', 'fa/about-us-3', 'fa/about-us-3', '0', '{\"file_type\":\"\",\"width\":300,\"height\":300,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u0622\\u0628\\u0645\\u06cc\\u0648\\u0647 \\u06af\\u06cc\\u0631 \\u0641\\u0648\\u0644 \\u0627\\u0645\\u06a9\\u0627\\u0646\\u0627\\u062a\",\"title\":\"\\u0622\\u0628\\u0645\\u06cc\\u0648\\u0647 \\u06af\\u06cc\\u0631 \\u0641\\u0648\\u0644 \\u0627\\u0645\\u06a9\\u0627\\u0646\\u0627\\u062a\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/bf4b94d3b5a397fefc07091fa724bc7e.jpg\"}', '0', '0', '1', '2024-11-26 19:54:54', '2024-11-26 19:54:54'), ('50', '0', '/cache/resized/47357fcb4fa747b9b2a48443711022b3.jpg', '/cache/resized/47357fcb4fa747b9b2a48443711022b3.jpg', 'fa/about-us-3', 'fa/about-us-3', '0', '{\"file_type\":\"\",\"width\":300,\"height\":300,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u0627\\u0633\\u067e\\u06cc\\u06a9\\u0631 \\u0641\\u0644\\u0634 \\u062e\\u0648\\u0631\",\"title\":\"\\u0627\\u0633\\u067e\\u06cc\\u06a9\\u0631 \\u0641\\u0644\\u0634 \\u062e\\u0648\\u0631\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/47357fcb4fa747b9b2a48443711022b3.jpg\"}', '0', '0', '1', '2024-11-26 19:54:54', '2024-11-26 19:54:54'), ('51', '0', '/cache/resized/925e5e3325c2d2875ed3e15a55e1542a.jpg', '/cache/resized/925e5e3325c2d2875ed3e15a55e1542a.jpg', 'fa/about-us-3', 'fa/about-us-3', '0', '{\"file_type\":\"\",\"width\":300,\"height\":300,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u0627\\u0633\\u067e\\u06cc\\u06a9\\u0631 \\u0645\\u0627\\u0631\\u0634\\u0627\\u0644\",\"title\":\"\\u0627\\u0633\\u067e\\u06cc\\u06a9\\u0631 \\u0645\\u0627\\u0631\\u0634\\u0627\\u0644\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/925e5e3325c2d2875ed3e15a55e1542a.jpg\"}', '0', '0', '1', '2024-11-26 19:54:54', '2024-11-26 19:54:54'), ('52', '0', '/cache/resized/15e5ceb1d4e3b094cf628e01a3883e43.jpg', '/cache/resized/15e5ceb1d4e3b094cf628e01a3883e43.jpg', 'fa/about-us-3', 'fa/about-us-3', '0', '{\"file_type\":\"\",\"width\":270,\"height\":170,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u062f\\u0627\\u0631\\u0648 \\u060c \\u062f\\u0631\\u0645\\u0627\\u0646 \\u060c \\u062a\\u0642\\u0648\\u06cc\\u062a\",\"title\":\"\\u062f\\u0627\\u0631\\u0648 \\u060c \\u062f\\u0631\\u0645\\u0627\\u0646 \\u060c \\u062a\\u0642\\u0648\\u06cc\\u062a\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/15e5ceb1d4e3b094cf628e01a3883e43.jpg\"}', '0', '0', '1', '2024-11-26 19:54:54', '2024-11-26 19:54:54'), ('53', '0', '/cache/resized/fff31f2466ed3c3158f1bb31d8dd6545.jpg', '/cache/resized/fff31f2466ed3c3158f1bb31d8dd6545.jpg', 'fa/about-us-3', 'fa/about-us-3', '0', '{\"file_type\":\"\",\"width\":270,\"height\":170,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u0627\\u06a9\\u0633\\u0633\\u0648\\u0631\\u06cc\",\"title\":\"\\u0627\\u06a9\\u0633\\u0633\\u0648\\u0631\\u06cc\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/fff31f2466ed3c3158f1bb31d8dd6545.jpg\"}', '0', '0', '1', '2024-11-26 19:54:54', '2024-11-26 19:54:54'), ('54', '0', '/cache/resized/63a61fb10d376a68620e960b3b7b3025.jpg', '/cache/resized/63a61fb10d376a68620e960b3b7b3025.jpg', 'fa/about-us-3', 'fa/about-us-3', '0', '{\"file_type\":\"\",\"width\":270,\"height\":170,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u0644\\u0628\\u0627\\u0633 \\u0648 \\u067e\\u0648\\u0634\\u0627\\u06a9\",\"title\":\"\\u0644\\u0628\\u0627\\u0633 \\u0648 \\u067e\\u0648\\u0634\\u0627\\u06a9\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/63a61fb10d376a68620e960b3b7b3025.jpg\"}', '0', '0', '1', '2024-11-26 19:54:54', '2024-11-26 19:54:54'), ('55', '0', '/cache/resized/136c2c6100d6310747ec6639b697de1b.jpg', '/cache/resized/136c2c6100d6310747ec6639b697de1b.jpg', 'fa/about-us-3', 'fa/about-us-3', '0', '{\"file_type\":\"\",\"width\":270,\"height\":170,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u062e\\u0648\\u0634\\u0628\\u0648 \\u06a9\\u0646\\u0646\\u062f\\u0647 \\u0647\\u0627\\u06cc \\u062c\\u0646\\u0633\\u06cc\",\"title\":\"\\u062e\\u0648\\u0634\\u0628\\u0648 \\u06a9\\u0646\\u0646\\u062f\\u0647 \\u0647\\u0627\\u06cc \\u062c\\u0646\\u0633\\u06cc\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/136c2c6100d6310747ec6639b697de1b.jpg\"}', '0', '0', '1', '2024-11-26 19:54:54', '2024-11-26 19:54:54'), ('56', '0', '/images/slider/cache/c7f2f558aae426cb618eb45d1779dcd5/slide1.jpg', '/images/slider/cache/c7f2f558aae426cb618eb45d1779dcd5/slide1.jpg', 'fa/about-us-3', 'fa/about-us-3', '0', '{\"file_type\":\"\",\"width\":1200,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/c7f2f558aae426cb618eb45d1779dcd5\\/slide1.jpg\"}', '0', '0', '0', '2024-11-26 19:54:54', '2024-11-26 19:54:54'), ('57', '0', '/images/slider/cache/0016c23135dbf72b71b938eb15ad6eba/slide2.jpg', '/images/slider/cache/0016c23135dbf72b71b938eb15ad6eba/slide2.jpg', 'fa/about-us-3', 'fa/about-us-3', '0', '{\"file_type\":\"\",\"width\":1200,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/0016c23135dbf72b71b938eb15ad6eba\\/slide2.jpg\"}', '0', '0', '0', '2024-11-26 19:54:54', '2024-11-26 19:54:54'), ('58', '0', '/images/slider/cache/cb936b74f5c90e00bc4b4b5b820f64a4/slide3.jpg', '/images/slider/cache/cb936b74f5c90e00bc4b4b5b820f64a4/slide3.jpg', 'fa/about-us-3', 'fa/about-us-3', '0', '{\"file_type\":\"\",\"width\":1200,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/cb936b74f5c90e00bc4b4b5b820f64a4\\/slide3.jpg\"}', '0', '0', '0', '2024-11-26 19:54:54', '2024-11-26 19:54:54'), ('59', '0', '/images/slider/cache/afba72876cbc644463efba8fe637cfe1/slide4.jpg', '/images/slider/cache/afba72876cbc644463efba8fe637cfe1/slide4.jpg', 'fa/about-us-3', 'fa/about-us-3', '0', '{\"file_type\":\"\",\"width\":1200,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/afba72876cbc644463efba8fe637cfe1\\/slide4.jpg\"}', '0', '0', '0', '2024-11-26 19:54:54', '2024-11-26 19:54:54'), ('60', '0', '/images/slider/cache/186f4f5acf07d06fb443fb709f910f0e/slide5.jpg', '/images/slider/cache/186f4f5acf07d06fb443fb709f910f0e/slide5.jpg', 'fa/about-us-3', 'fa/about-us-3', '0', '{\"file_type\":\"\",\"width\":1200,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/186f4f5acf07d06fb443fb709f910f0e\\/slide5.jpg\"}', '0', '0', '0', '2024-11-26 19:54:54', '2024-11-26 19:54:54'), ('61', '0', '/images/slider/cache/c6cc2ca1c1c96725142b1f65b39f5172/slide6.jpg', '/images/slider/cache/c6cc2ca1c1c96725142b1f65b39f5172/slide6.jpg', 'fa/about-us-3', 'fa/about-us-3', '0', '{\"file_type\":\"\",\"width\":1200,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/c6cc2ca1c1c96725142b1f65b39f5172\\/slide6.jpg\"}', '0', '0', '0', '2024-11-26 19:54:54', '2024-11-26 19:54:54'), ('62', '0', '/images/slider/cache/efe225be99ba9274f12b054076dd54a3/slide7.jpg', '/images/slider/cache/efe225be99ba9274f12b054076dd54a3/slide7.jpg', 'fa/about-us-3', 'fa/about-us-3', '0', '{\"file_type\":\"\",\"width\":1200,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/efe225be99ba9274f12b054076dd54a3\\/slide7.jpg\"}', '0', '0', '0', '2024-11-26 19:54:54', '2024-11-26 19:54:54'), ('63', '0', '/images/slider7/logo.png', '/images/slider7/logo.png', 'fa/about-us-3', 'fa/about-us-3', '0', '{\"file_type\":\"\",\"width\":255,\"height\":60,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"Image is not available\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider7\\/logo.png\"}', '0', '0', '0', '2024-11-26 19:54:54', '2024-11-26 19:54:54'), ('64', '0', '/images/slider7/services.png', '/images/slider7/services.png', 'fa/about-us-3', 'fa/about-us-3', '0', '{\"file_type\":\"\",\"width\":255,\"height\":41,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"Image is not available\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider7\\/services.png\"}', '0', '0', '0', '2024-11-26 19:54:54', '2024-11-26 19:54:54'), ('65', '0', '/images/bonus_page/img-about.jpg', '/images/bonus_page/img-about.jpg', 'fa/about-us-3', 'fa/about-us-3', '0', '{\"file_type\":\"\",\"width\":1170,\"height\":550,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/images\\/bonus_page\\/img-about.jpg\"}', '0', '0', '0', '2024-11-26 19:54:54', '2024-11-26 19:54:54'), ('66', '0', '/images/slider/cache/1d28c922c1312bf431385bab8172673e/bg.jpg', '/images/slider/cache/1d28c922c1312bf431385bab8172673e/bg.jpg', 'fa/about-us-3', 'fa/about-us-3', '0', '{\"file_type\":\"\",\"width\":1920,\"height\":800,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/1d28c922c1312bf431385bab8172673e\\/bg.jpg\"}', '0', '0', '0', '2024-11-26 19:54:54', '2024-11-26 19:54:54'), ('67', '0', '/images/demo/methor.png', '/images/demo/methor.png', 'fa/about-us-3', 'fa/about-us-3', '0', '{\"file_type\":\"\",\"width\":387,\"height\":22,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/images\\/demo\\/methor.png\"}', '0', '0', '0', '2024-11-26 19:54:54', '2024-11-26 19:54:54'), ('68', '0', '/cache/resized/bf4b94d3b5a397fefc07091fa724bc7e.jpg', '/cache/resized/bf4b94d3b5a397fefc07091fa724bc7e.jpg', 'fa/virtuemart/product-category/conser-adipiscing-detail', 'fa/virtuemart/product-category/conser-adipiscing-detail', '0', '{\"file_type\":\"\",\"width\":300,\"height\":300,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u0622\\u0628\\u0645\\u06cc\\u0648\\u0647 \\u06af\\u06cc\\u0631 \\u0641\\u0648\\u0644 \\u0627\\u0645\\u06a9\\u0627\\u0646\\u0627\\u062a\",\"title\":\"\\u0622\\u0628\\u0645\\u06cc\\u0648\\u0647 \\u06af\\u06cc\\u0631 \\u0641\\u0648\\u0644 \\u0627\\u0645\\u06a9\\u0627\\u0646\\u0627\\u062a\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/bf4b94d3b5a397fefc07091fa724bc7e.jpg\"}', '0', '0', '1', '2024-11-26 20:03:37', '2024-11-26 20:03:37'), ('69', '0', '/cache/resized/47357fcb4fa747b9b2a48443711022b3.jpg', '/cache/resized/47357fcb4fa747b9b2a48443711022b3.jpg', 'fa/virtuemart/product-category/conser-adipiscing-detail', 'fa/virtuemart/product-category/conser-adipiscing-detail', '0', '{\"file_type\":\"\",\"width\":300,\"height\":300,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u0627\\u0633\\u067e\\u06cc\\u06a9\\u0631 \\u0641\\u0644\\u0634 \\u062e\\u0648\\u0631\",\"title\":\"\\u0627\\u0633\\u067e\\u06cc\\u06a9\\u0631 \\u0641\\u0644\\u0634 \\u062e\\u0648\\u0631\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/47357fcb4fa747b9b2a48443711022b3.jpg\"}', '0', '0', '1', '2024-11-26 20:03:37', '2024-11-26 20:03:37'), ('70', '0', '/cache/resized/925e5e3325c2d2875ed3e15a55e1542a.jpg', '/cache/resized/925e5e3325c2d2875ed3e15a55e1542a.jpg', 'fa/virtuemart/product-category/conser-adipiscing-detail', 'fa/virtuemart/product-category/conser-adipiscing-detail', '0', '{\"file_type\":\"\",\"width\":300,\"height\":300,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u0627\\u0633\\u067e\\u06cc\\u06a9\\u0631 \\u0645\\u0627\\u0631\\u0634\\u0627\\u0644\",\"title\":\"\\u0627\\u0633\\u067e\\u06cc\\u06a9\\u0631 \\u0645\\u0627\\u0631\\u0634\\u0627\\u0644\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/925e5e3325c2d2875ed3e15a55e1542a.jpg\"}', '0', '0', '1', '2024-11-26 20:03:37', '2024-11-26 20:03:37'), ('71', '0', '/cache/resized/15e5ceb1d4e3b094cf628e01a3883e43.jpg', '/cache/resized/15e5ceb1d4e3b094cf628e01a3883e43.jpg', 'fa/virtuemart/product-category/conser-adipiscing-detail', 'fa/virtuemart/product-category/conser-adipiscing-detail', '0', '{\"file_type\":\"\",\"width\":270,\"height\":170,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u062f\\u0627\\u0631\\u0648 \\u060c \\u062f\\u0631\\u0645\\u0627\\u0646 \\u060c \\u062a\\u0642\\u0648\\u06cc\\u062a\",\"title\":\"\\u062f\\u0627\\u0631\\u0648 \\u060c \\u062f\\u0631\\u0645\\u0627\\u0646 \\u060c \\u062a\\u0642\\u0648\\u06cc\\u062a\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/15e5ceb1d4e3b094cf628e01a3883e43.jpg\"}', '0', '0', '1', '2024-11-26 20:03:37', '2024-11-26 20:03:37'), ('72', '0', '/cache/resized/fff31f2466ed3c3158f1bb31d8dd6545.jpg', '/cache/resized/fff31f2466ed3c3158f1bb31d8dd6545.jpg', 'fa/virtuemart/product-category/conser-adipiscing-detail', 'fa/virtuemart/product-category/conser-adipiscing-detail', '0', '{\"file_type\":\"\",\"width\":270,\"height\":170,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u0627\\u06a9\\u0633\\u0633\\u0648\\u0631\\u06cc\",\"title\":\"\\u0627\\u06a9\\u0633\\u0633\\u0648\\u0631\\u06cc\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/fff31f2466ed3c3158f1bb31d8dd6545.jpg\"}', '0', '0', '1', '2024-11-26 20:03:37', '2024-11-26 20:03:37'), ('73', '0', '/cache/resized/63a61fb10d376a68620e960b3b7b3025.jpg', '/cache/resized/63a61fb10d376a68620e960b3b7b3025.jpg', 'fa/virtuemart/product-category/conser-adipiscing-detail', 'fa/virtuemart/product-category/conser-adipiscing-detail', '0', '{\"file_type\":\"\",\"width\":270,\"height\":170,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u0644\\u0628\\u0627\\u0633 \\u0648 \\u067e\\u0648\\u0634\\u0627\\u06a9\",\"title\":\"\\u0644\\u0628\\u0627\\u0633 \\u0648 \\u067e\\u0648\\u0634\\u0627\\u06a9\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/63a61fb10d376a68620e960b3b7b3025.jpg\"}', '0', '0', '1', '2024-11-26 20:03:37', '2024-11-26 20:03:37'), ('74', '0', '/cache/resized/136c2c6100d6310747ec6639b697de1b.jpg', '/cache/resized/136c2c6100d6310747ec6639b697de1b.jpg', 'fa/virtuemart/product-category/conser-adipiscing-detail', 'fa/virtuemart/product-category/conser-adipiscing-detail', '0', '{\"file_type\":\"\",\"width\":270,\"height\":170,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u062e\\u0648\\u0634\\u0628\\u0648 \\u06a9\\u0646\\u0646\\u062f\\u0647 \\u0647\\u0627\\u06cc \\u062c\\u0646\\u0633\\u06cc\",\"title\":\"\\u062e\\u0648\\u0634\\u0628\\u0648 \\u06a9\\u0646\\u0646\\u062f\\u0647 \\u0647\\u0627\\u06cc \\u062c\\u0646\\u0633\\u06cc\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/136c2c6100d6310747ec6639b697de1b.jpg\"}', '0', '0', '1', '2024-11-26 20:03:37', '2024-11-26 20:03:37'), ('75', '0', '/images/slider/cache/c7f2f558aae426cb618eb45d1779dcd5/slide1.jpg', '/images/slider/cache/c7f2f558aae426cb618eb45d1779dcd5/slide1.jpg', 'fa/virtuemart/product-category/conser-adipiscing-detail', 'fa/virtuemart/product-category/conser-adipiscing-detail', '0', '{\"file_type\":\"\",\"width\":1200,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/c7f2f558aae426cb618eb45d1779dcd5\\/slide1.jpg\"}', '0', '0', '0', '2024-11-26 20:03:37', '2024-11-26 20:03:37'), ('76', '0', '/images/slider/cache/0016c23135dbf72b71b938eb15ad6eba/slide2.jpg', '/images/slider/cache/0016c23135dbf72b71b938eb15ad6eba/slide2.jpg', 'fa/virtuemart/product-category/conser-adipiscing-detail', 'fa/virtuemart/product-category/conser-adipiscing-detail', '0', '{\"file_type\":\"\",\"width\":1200,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/0016c23135dbf72b71b938eb15ad6eba\\/slide2.jpg\"}', '0', '0', '0', '2024-11-26 20:03:37', '2024-11-26 20:03:37'), ('77', '0', '/images/slider/cache/cb936b74f5c90e00bc4b4b5b820f64a4/slide3.jpg', '/images/slider/cache/cb936b74f5c90e00bc4b4b5b820f64a4/slide3.jpg', 'fa/virtuemart/product-category/conser-adipiscing-detail', 'fa/virtuemart/product-category/conser-adipiscing-detail', '0', '{\"file_type\":\"\",\"width\":1200,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/cb936b74f5c90e00bc4b4b5b820f64a4\\/slide3.jpg\"}', '0', '0', '0', '2024-11-26 20:03:37', '2024-11-26 20:03:37'), ('78', '0', '/images/slider/cache/afba72876cbc644463efba8fe637cfe1/slide4.jpg', '/images/slider/cache/afba72876cbc644463efba8fe637cfe1/slide4.jpg', 'fa/virtuemart/product-category/conser-adipiscing-detail', 'fa/virtuemart/product-category/conser-adipiscing-detail', '0', '{\"file_type\":\"\",\"width\":1200,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/afba72876cbc644463efba8fe637cfe1\\/slide4.jpg\"}', '0', '0', '0', '2024-11-26 20:03:37', '2024-11-26 20:03:37'), ('79', '0', '/images/slider/cache/186f4f5acf07d06fb443fb709f910f0e/slide5.jpg', '/images/slider/cache/186f4f5acf07d06fb443fb709f910f0e/slide5.jpg', 'fa/virtuemart/product-category/conser-adipiscing-detail', 'fa/virtuemart/product-category/conser-adipiscing-detail', '0', '{\"file_type\":\"\",\"width\":1200,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/186f4f5acf07d06fb443fb709f910f0e\\/slide5.jpg\"}', '0', '0', '0', '2024-11-26 20:03:37', '2024-11-26 20:03:37'), ('80', '0', '/images/slider/cache/c6cc2ca1c1c96725142b1f65b39f5172/slide6.jpg', '/images/slider/cache/c6cc2ca1c1c96725142b1f65b39f5172/slide6.jpg', 'fa/virtuemart/product-category/conser-adipiscing-detail', 'fa/virtuemart/product-category/conser-adipiscing-detail', '0', '{\"file_type\":\"\",\"width\":1200,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/c6cc2ca1c1c96725142b1f65b39f5172\\/slide6.jpg\"}', '0', '0', '0', '2024-11-26 20:03:37', '2024-11-26 20:03:37'), ('81', '0', '/images/slider/cache/efe225be99ba9274f12b054076dd54a3/slide7.jpg', '/images/slider/cache/efe225be99ba9274f12b054076dd54a3/slide7.jpg', 'fa/virtuemart/product-category/conser-adipiscing-detail', 'fa/virtuemart/product-category/conser-adipiscing-detail', '0', '{\"file_type\":\"\",\"width\":1200,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/efe225be99ba9274f12b054076dd54a3\\/slide7.jpg\"}', '0', '0', '0', '2024-11-26 20:03:37', '2024-11-26 20:03:37'), ('82', '0', '/images/slider7/logo.png', '/images/slider7/logo.png', 'fa/virtuemart/product-category/conser-adipiscing-detail', 'fa/virtuemart/product-category/conser-adipiscing-detail', '0', '{\"file_type\":\"\",\"width\":255,\"height\":60,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"Image is not available\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider7\\/logo.png\"}', '0', '0', '0', '2024-11-26 20:03:37', '2024-11-26 20:03:37'), ('83', '0', '/images/slider7/services.png', '/images/slider7/services.png', 'fa/virtuemart/product-category/conser-adipiscing-detail', 'fa/virtuemart/product-category/conser-adipiscing-detail', '0', '{\"file_type\":\"\",\"width\":255,\"height\":41,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"Image is not available\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider7\\/services.png\"}', '0', '0', '0', '2024-11-26 20:03:37', '2024-11-26 20:03:37'), ('84', '0', '/cache/sj_revo/30e0ad9cf24b6838c1045e141a9cfe21.jpeg', '/cache/sj_revo/30e0ad9cf24b6838c1045e141a9cfe21.jpeg', 'fa/virtuemart/product-category/conser-adipiscing-detail', 'fa/virtuemart/product-category/conser-adipiscing-detail', '0', '{\"file_type\":\"\",\"width\":600,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/sj_revo\\/30e0ad9cf24b6838c1045e141a9cfe21.jpeg\"}', '0', '0', '1', '2024-11-26 20:03:37', '2024-11-26 20:03:37'), ('85', '0', '/images/demo/t1.png', '/images/demo/t1.png', 'fa/virtuemart/product-category/conser-adipiscing-detail', 'fa/virtuemart/product-category/conser-adipiscing-detail', '0', '{\"file_type\":\"\",\"width\":810,\"height\":420,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/images\\/demo\\/t1.png\"}', '0', '0', '0', '2024-11-26 20:03:37', '2024-11-26 20:03:37'), ('86', '0', '/images/demo/t2.jpg', '/images/demo/t2.jpg', 'fa/virtuemart/product-category/conser-adipiscing-detail', 'fa/virtuemart/product-category/conser-adipiscing-detail', '0', '{\"file_type\":\"\",\"width\":810,\"height\":420,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/images\\/demo\\/t2.jpg\"}', '0', '0', '0', '2024-11-26 20:03:37', '2024-11-26 20:03:37'), ('87', '0', '/images/demo/t3.jpg', '/images/demo/t3.jpg', 'fa/virtuemart/product-category/conser-adipiscing-detail', 'fa/virtuemart/product-category/conser-adipiscing-detail', '0', '{\"file_type\":\"\",\"width\":390,\"height\":420,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/images\\/demo\\/t3.jpg\"}', '0', '0', '0', '2024-11-26 20:03:37', '2024-11-26 20:03:37'), ('88', '0', '/images/demo/t4.jpg', '/images/demo/t4.jpg', 'fa/virtuemart/product-category/conser-adipiscing-detail', 'fa/virtuemart/product-category/conser-adipiscing-detail', '0', '{\"file_type\":\"\",\"width\":390,\"height\":420,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/images\\/demo\\/t4.jpg\"}', '0', '0', '0', '2024-11-26 20:03:37', '2024-11-26 20:03:37'), ('89', '0', '/images/demo/banner-left.jpg', '/images/demo/banner-left.jpg', 'fa/virtuemart/product-category/conser-adipiscing-detail', 'fa/virtuemart/product-category/conser-adipiscing-detail', '0', '{\"file_type\":\"\",\"width\":270,\"height\":369,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/images\\/demo\\/banner-left.jpg\"}', '0', '0', '0', '2024-11-26 20:03:37', '2024-11-26 20:03:37'), ('90', '0', '/images/slider/cache/1d28c922c1312bf431385bab8172673e/bg.jpg', '/images/slider/cache/1d28c922c1312bf431385bab8172673e/bg.jpg', 'fa/virtuemart/product-category/conser-adipiscing-detail', 'fa/virtuemart/product-category/conser-adipiscing-detail', '0', '{\"file_type\":\"\",\"width\":1920,\"height\":800,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/1d28c922c1312bf431385bab8172673e\\/bg.jpg\"}', '0', '0', '0', '2024-11-26 20:03:37', '2024-11-26 20:03:37'), ('91', '0', '/images/demo/methor.png', '/images/demo/methor.png', 'fa/virtuemart/product-category/conser-adipiscing-detail', 'fa/virtuemart/product-category/conser-adipiscing-detail', '0', '{\"file_type\":\"\",\"width\":387,\"height\":22,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/images\\/demo\\/methor.png\"}', '0', '0', '0', '2024-11-26 20:03:37', '2024-11-26 20:03:37'), ('92', '0', '/cache/resized/bf4b94d3b5a397fefc07091fa724bc7e.jpg', '/cache/resized/bf4b94d3b5a397fefc07091fa724bc7e.jpg', 'fa/virtuemart/product-category/donec-scelerisque-detail', 'fa/virtuemart/product-category/donec-scelerisque-detail', '0', '{\"file_type\":\"\",\"width\":300,\"height\":300,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u0622\\u0628\\u0645\\u06cc\\u0648\\u0647 \\u06af\\u06cc\\u0631 \\u0641\\u0648\\u0644 \\u0627\\u0645\\u06a9\\u0627\\u0646\\u0627\\u062a\",\"title\":\"\\u0622\\u0628\\u0645\\u06cc\\u0648\\u0647 \\u06af\\u06cc\\u0631 \\u0641\\u0648\\u0644 \\u0627\\u0645\\u06a9\\u0627\\u0646\\u0627\\u062a\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/bf4b94d3b5a397fefc07091fa724bc7e.jpg\"}', '0', '0', '1', '2024-11-26 20:03:53', '2024-11-26 20:03:53'), ('93', '0', '/cache/resized/47357fcb4fa747b9b2a48443711022b3.jpg', '/cache/resized/47357fcb4fa747b9b2a48443711022b3.jpg', 'fa/virtuemart/product-category/donec-scelerisque-detail', 'fa/virtuemart/product-category/donec-scelerisque-detail', '0', '{\"file_type\":\"\",\"width\":300,\"height\":300,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u0627\\u0633\\u067e\\u06cc\\u06a9\\u0631 \\u0641\\u0644\\u0634 \\u062e\\u0648\\u0631\",\"title\":\"\\u0627\\u0633\\u067e\\u06cc\\u06a9\\u0631 \\u0641\\u0644\\u0634 \\u062e\\u0648\\u0631\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/47357fcb4fa747b9b2a48443711022b3.jpg\"}', '0', '0', '1', '2024-11-26 20:03:53', '2024-11-26 20:03:53'), ('94', '0', '/cache/resized/925e5e3325c2d2875ed3e15a55e1542a.jpg', '/cache/resized/925e5e3325c2d2875ed3e15a55e1542a.jpg', 'fa/virtuemart/product-category/donec-scelerisque-detail', 'fa/virtuemart/product-category/donec-scelerisque-detail', '0', '{\"file_type\":\"\",\"width\":300,\"height\":300,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u0627\\u0633\\u067e\\u06cc\\u06a9\\u0631 \\u0645\\u0627\\u0631\\u0634\\u0627\\u0644\",\"title\":\"\\u0627\\u0633\\u067e\\u06cc\\u06a9\\u0631 \\u0645\\u0627\\u0631\\u0634\\u0627\\u0644\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/925e5e3325c2d2875ed3e15a55e1542a.jpg\"}', '0', '0', '1', '2024-11-26 20:03:53', '2024-11-26 20:03:53'), ('95', '0', '/cache/resized/15e5ceb1d4e3b094cf628e01a3883e43.jpg', '/cache/resized/15e5ceb1d4e3b094cf628e01a3883e43.jpg', 'fa/virtuemart/product-category/donec-scelerisque-detail', 'fa/virtuemart/product-category/donec-scelerisque-detail', '0', '{\"file_type\":\"\",\"width\":270,\"height\":170,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u062f\\u0627\\u0631\\u0648 \\u060c \\u062f\\u0631\\u0645\\u0627\\u0646 \\u060c \\u062a\\u0642\\u0648\\u06cc\\u062a\",\"title\":\"\\u062f\\u0627\\u0631\\u0648 \\u060c \\u062f\\u0631\\u0645\\u0627\\u0646 \\u060c \\u062a\\u0642\\u0648\\u06cc\\u062a\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/15e5ceb1d4e3b094cf628e01a3883e43.jpg\"}', '0', '0', '1', '2024-11-26 20:03:53', '2024-11-26 20:03:53'), ('96', '0', '/cache/resized/fff31f2466ed3c3158f1bb31d8dd6545.jpg', '/cache/resized/fff31f2466ed3c3158f1bb31d8dd6545.jpg', 'fa/virtuemart/product-category/donec-scelerisque-detail', 'fa/virtuemart/product-category/donec-scelerisque-detail', '0', '{\"file_type\":\"\",\"width\":270,\"height\":170,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u0627\\u06a9\\u0633\\u0633\\u0648\\u0631\\u06cc\",\"title\":\"\\u0627\\u06a9\\u0633\\u0633\\u0648\\u0631\\u06cc\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/fff31f2466ed3c3158f1bb31d8dd6545.jpg\"}', '0', '0', '1', '2024-11-26 20:03:53', '2024-11-26 20:03:53'), ('97', '0', '/cache/resized/63a61fb10d376a68620e960b3b7b3025.jpg', '/cache/resized/63a61fb10d376a68620e960b3b7b3025.jpg', 'fa/virtuemart/product-category/donec-scelerisque-detail', 'fa/virtuemart/product-category/donec-scelerisque-detail', '0', '{\"file_type\":\"\",\"width\":270,\"height\":170,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u0644\\u0628\\u0627\\u0633 \\u0648 \\u067e\\u0648\\u0634\\u0627\\u06a9\",\"title\":\"\\u0644\\u0628\\u0627\\u0633 \\u0648 \\u067e\\u0648\\u0634\\u0627\\u06a9\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/63a61fb10d376a68620e960b3b7b3025.jpg\"}', '0', '0', '1', '2024-11-26 20:03:53', '2024-11-26 20:03:53'), ('98', '0', '/cache/resized/136c2c6100d6310747ec6639b697de1b.jpg', '/cache/resized/136c2c6100d6310747ec6639b697de1b.jpg', 'fa/virtuemart/product-category/donec-scelerisque-detail', 'fa/virtuemart/product-category/donec-scelerisque-detail', '0', '{\"file_type\":\"\",\"width\":270,\"height\":170,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u062e\\u0648\\u0634\\u0628\\u0648 \\u06a9\\u0646\\u0646\\u062f\\u0647 \\u0647\\u0627\\u06cc \\u062c\\u0646\\u0633\\u06cc\",\"title\":\"\\u062e\\u0648\\u0634\\u0628\\u0648 \\u06a9\\u0646\\u0646\\u062f\\u0647 \\u0647\\u0627\\u06cc \\u062c\\u0646\\u0633\\u06cc\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/136c2c6100d6310747ec6639b697de1b.jpg\"}', '0', '0', '1', '2024-11-26 20:03:53', '2024-11-26 20:03:53'), ('99', '0', '/images/slider/cache/c7f2f558aae426cb618eb45d1779dcd5/slide1.jpg', '/images/slider/cache/c7f2f558aae426cb618eb45d1779dcd5/slide1.jpg', 'fa/virtuemart/product-category/donec-scelerisque-detail', 'fa/virtuemart/product-category/donec-scelerisque-detail', '0', '{\"file_type\":\"\",\"width\":1200,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/c7f2f558aae426cb618eb45d1779dcd5\\/slide1.jpg\"}', '0', '0', '0', '2024-11-26 20:03:53', '2024-11-26 20:03:53'), ('100', '0', '/images/slider/cache/0016c23135dbf72b71b938eb15ad6eba/slide2.jpg', '/images/slider/cache/0016c23135dbf72b71b938eb15ad6eba/slide2.jpg', 'fa/virtuemart/product-category/donec-scelerisque-detail', 'fa/virtuemart/product-category/donec-scelerisque-detail', '0', '{\"file_type\":\"\",\"width\":1200,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/0016c23135dbf72b71b938eb15ad6eba\\/slide2.jpg\"}', '0', '0', '0', '2024-11-26 20:03:53', '2024-11-26 20:03:53'), ('101', '0', '/images/slider/cache/cb936b74f5c90e00bc4b4b5b820f64a4/slide3.jpg', '/images/slider/cache/cb936b74f5c90e00bc4b4b5b820f64a4/slide3.jpg', 'fa/virtuemart/product-category/donec-scelerisque-detail', 'fa/virtuemart/product-category/donec-scelerisque-detail', '0', '{\"file_type\":\"\",\"width\":1200,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/cb936b74f5c90e00bc4b4b5b820f64a4\\/slide3.jpg\"}', '0', '0', '0', '2024-11-26 20:03:53', '2024-11-26 20:03:53'), ('102', '0', '/images/slider/cache/afba72876cbc644463efba8fe637cfe1/slide4.jpg', '/images/slider/cache/afba72876cbc644463efba8fe637cfe1/slide4.jpg', 'fa/virtuemart/product-category/donec-scelerisque-detail', 'fa/virtuemart/product-category/donec-scelerisque-detail', '0', '{\"file_type\":\"\",\"width\":1200,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/afba72876cbc644463efba8fe637cfe1\\/slide4.jpg\"}', '0', '0', '0', '2024-11-26 20:03:53', '2024-11-26 20:03:53'), ('103', '0', '/images/slider/cache/186f4f5acf07d06fb443fb709f910f0e/slide5.jpg', '/images/slider/cache/186f4f5acf07d06fb443fb709f910f0e/slide5.jpg', 'fa/virtuemart/product-category/donec-scelerisque-detail', 'fa/virtuemart/product-category/donec-scelerisque-detail', '0', '{\"file_type\":\"\",\"width\":1200,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/186f4f5acf07d06fb443fb709f910f0e\\/slide5.jpg\"}', '0', '0', '0', '2024-11-26 20:03:53', '2024-11-26 20:03:53'), ('104', '0', '/images/slider/cache/c6cc2ca1c1c96725142b1f65b39f5172/slide6.jpg', '/images/slider/cache/c6cc2ca1c1c96725142b1f65b39f5172/slide6.jpg', 'fa/virtuemart/product-category/donec-scelerisque-detail', 'fa/virtuemart/product-category/donec-scelerisque-detail', '0', '{\"file_type\":\"\",\"width\":1200,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/c6cc2ca1c1c96725142b1f65b39f5172\\/slide6.jpg\"}', '0', '0', '0', '2024-11-26 20:03:53', '2024-11-26 20:03:53'), ('105', '0', '/images/slider/cache/efe225be99ba9274f12b054076dd54a3/slide7.jpg', '/images/slider/cache/efe225be99ba9274f12b054076dd54a3/slide7.jpg', 'fa/virtuemart/product-category/donec-scelerisque-detail', 'fa/virtuemart/product-category/donec-scelerisque-detail', '0', '{\"file_type\":\"\",\"width\":1200,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/efe225be99ba9274f12b054076dd54a3\\/slide7.jpg\"}', '0', '0', '0', '2024-11-26 20:03:53', '2024-11-26 20:03:53'), ('106', '0', '/images/slider7/logo.png', '/images/slider7/logo.png', 'fa/virtuemart/product-category/donec-scelerisque-detail', 'fa/virtuemart/product-category/donec-scelerisque-detail', '0', '{\"file_type\":\"\",\"width\":255,\"height\":60,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"Image is not available\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider7\\/logo.png\"}', '0', '0', '0', '2024-11-26 20:03:53', '2024-11-26 20:03:53'), ('107', '0', '/images/slider7/services.png', '/images/slider7/services.png', 'fa/virtuemart/product-category/donec-scelerisque-detail', 'fa/virtuemart/product-category/donec-scelerisque-detail', '0', '{\"file_type\":\"\",\"width\":255,\"height\":41,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"Image is not available\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider7\\/services.png\"}', '0', '0', '0', '2024-11-26 20:03:53', '2024-11-26 20:03:53'), ('108', '0', '/cache/sj_revo/a98f766d2fd3d36217f3dae592917de5.jpeg', '/cache/sj_revo/a98f766d2fd3d36217f3dae592917de5.jpeg', 'fa/virtuemart/product-category/donec-scelerisque-detail', 'fa/virtuemart/product-category/donec-scelerisque-detail', '0', '{\"file_type\":\"\",\"width\":600,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/sj_revo\\/a98f766d2fd3d36217f3dae592917de5.jpeg\"}', '0', '0', '1', '2024-11-26 20:03:53', '2024-11-26 20:03:53'), ('109', '0', '/images/demo/t1.png', '/images/demo/t1.png', 'fa/virtuemart/product-category/donec-scelerisque-detail', 'fa/virtuemart/product-category/donec-scelerisque-detail', '0', '{\"file_type\":\"\",\"width\":810,\"height\":420,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/images\\/demo\\/t1.png\"}', '0', '0', '0', '2024-11-26 20:03:53', '2024-11-26 20:03:53'), ('110', '0', '/images/demo/t2.jpg', '/images/demo/t2.jpg', 'fa/virtuemart/product-category/donec-scelerisque-detail', 'fa/virtuemart/product-category/donec-scelerisque-detail', '0', '{\"file_type\":\"\",\"width\":810,\"height\":420,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/images\\/demo\\/t2.jpg\"}', '0', '0', '0', '2024-11-26 20:03:53', '2024-11-26 20:03:53'), ('111', '0', '/images/demo/t3.jpg', '/images/demo/t3.jpg', 'fa/virtuemart/product-category/donec-scelerisque-detail', 'fa/virtuemart/product-category/donec-scelerisque-detail', '0', '{\"file_type\":\"\",\"width\":390,\"height\":420,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/images\\/demo\\/t3.jpg\"}', '0', '0', '0', '2024-11-26 20:03:53', '2024-11-26 20:03:53'), ('112', '0', '/images/demo/t4.jpg', '/images/demo/t4.jpg', 'fa/virtuemart/product-category/donec-scelerisque-detail', 'fa/virtuemart/product-category/donec-scelerisque-detail', '0', '{\"file_type\":\"\",\"width\":390,\"height\":420,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/images\\/demo\\/t4.jpg\"}', '0', '0', '0', '2024-11-26 20:03:53', '2024-11-26 20:03:53'), ('113', '0', '/images/demo/banner-left.jpg', '/images/demo/banner-left.jpg', 'fa/virtuemart/product-category/donec-scelerisque-detail', 'fa/virtuemart/product-category/donec-scelerisque-detail', '0', '{\"file_type\":\"\",\"width\":270,\"height\":369,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/images\\/demo\\/banner-left.jpg\"}', '0', '0', '0', '2024-11-26 20:03:53', '2024-11-26 20:03:53'), ('114', '0', '/images/slider/cache/1d28c922c1312bf431385bab8172673e/bg.jpg', '/images/slider/cache/1d28c922c1312bf431385bab8172673e/bg.jpg', 'fa/virtuemart/product-category/donec-scelerisque-detail', 'fa/virtuemart/product-category/donec-scelerisque-detail', '0', '{\"file_type\":\"\",\"width\":1920,\"height\":800,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/1d28c922c1312bf431385bab8172673e\\/bg.jpg\"}', '0', '0', '0', '2024-11-26 20:03:53', '2024-11-26 20:03:53'), ('115', '0', '/images/demo/methor.png', '/images/demo/methor.png', 'fa/virtuemart/product-category/donec-scelerisque-detail', 'fa/virtuemart/product-category/donec-scelerisque-detail', '0', '{\"file_type\":\"\",\"width\":387,\"height\":22,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/images\\/demo\\/methor.png\"}', '0', '0', '0', '2024-11-26 20:03:53', '2024-11-26 20:03:53'), ('116', '0', '/cache/resized/bf4b94d3b5a397fefc07091fa724bc7e.jpg', '/cache/resized/bf4b94d3b5a397fefc07091fa724bc7e.jpg', 'fa/virtuemart/product-category/nulla-euismod,-nibh-nec-detail', 'fa/virtuemart/product-category/nulla-euismod,-nibh-nec-detail', '0', '{\"file_type\":\"\",\"width\":300,\"height\":300,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u0622\\u0628\\u0645\\u06cc\\u0648\\u0647 \\u06af\\u06cc\\u0631 \\u0641\\u0648\\u0644 \\u0627\\u0645\\u06a9\\u0627\\u0646\\u0627\\u062a\",\"title\":\"\\u0622\\u0628\\u0645\\u06cc\\u0648\\u0647 \\u06af\\u06cc\\u0631 \\u0641\\u0648\\u0644 \\u0627\\u0645\\u06a9\\u0627\\u0646\\u0627\\u062a\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/bf4b94d3b5a397fefc07091fa724bc7e.jpg\"}', '0', '0', '1', '2024-11-26 20:04:36', '2024-11-26 20:04:36'), ('117', '0', '/cache/resized/47357fcb4fa747b9b2a48443711022b3.jpg', '/cache/resized/47357fcb4fa747b9b2a48443711022b3.jpg', 'fa/virtuemart/product-category/nulla-euismod,-nibh-nec-detail', 'fa/virtuemart/product-category/nulla-euismod,-nibh-nec-detail', '0', '{\"file_type\":\"\",\"width\":300,\"height\":300,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u0627\\u0633\\u067e\\u06cc\\u06a9\\u0631 \\u0641\\u0644\\u0634 \\u062e\\u0648\\u0631\",\"title\":\"\\u0627\\u0633\\u067e\\u06cc\\u06a9\\u0631 \\u0641\\u0644\\u0634 \\u062e\\u0648\\u0631\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/47357fcb4fa747b9b2a48443711022b3.jpg\"}', '0', '0', '1', '2024-11-26 20:04:36', '2024-11-26 20:04:36'), ('118', '0', '/cache/resized/925e5e3325c2d2875ed3e15a55e1542a.jpg', '/cache/resized/925e5e3325c2d2875ed3e15a55e1542a.jpg', 'fa/virtuemart/product-category/nulla-euismod,-nibh-nec-detail', 'fa/virtuemart/product-category/nulla-euismod,-nibh-nec-detail', '0', '{\"file_type\":\"\",\"width\":300,\"height\":300,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u0627\\u0633\\u067e\\u06cc\\u06a9\\u0631 \\u0645\\u0627\\u0631\\u0634\\u0627\\u0644\",\"title\":\"\\u0627\\u0633\\u067e\\u06cc\\u06a9\\u0631 \\u0645\\u0627\\u0631\\u0634\\u0627\\u0644\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/925e5e3325c2d2875ed3e15a55e1542a.jpg\"}', '0', '0', '1', '2024-11-26 20:04:36', '2024-11-26 20:04:36'), ('119', '0', '/cache/resized/15e5ceb1d4e3b094cf628e01a3883e43.jpg', '/cache/resized/15e5ceb1d4e3b094cf628e01a3883e43.jpg', 'fa/virtuemart/product-category/nulla-euismod,-nibh-nec-detail', 'fa/virtuemart/product-category/nulla-euismod,-nibh-nec-detail', '0', '{\"file_type\":\"\",\"width\":270,\"height\":170,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u062f\\u0627\\u0631\\u0648 \\u060c \\u062f\\u0631\\u0645\\u0627\\u0646 \\u060c \\u062a\\u0642\\u0648\\u06cc\\u062a\",\"title\":\"\\u062f\\u0627\\u0631\\u0648 \\u060c \\u062f\\u0631\\u0645\\u0627\\u0646 \\u060c \\u062a\\u0642\\u0648\\u06cc\\u062a\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/15e5ceb1d4e3b094cf628e01a3883e43.jpg\"}', '0', '0', '1', '2024-11-26 20:04:36', '2024-11-26 20:04:36'), ('120', '0', '/cache/resized/fff31f2466ed3c3158f1bb31d8dd6545.jpg', '/cache/resized/fff31f2466ed3c3158f1bb31d8dd6545.jpg', 'fa/virtuemart/product-category/nulla-euismod,-nibh-nec-detail', 'fa/virtuemart/product-category/nulla-euismod,-nibh-nec-detail', '0', '{\"file_type\":\"\",\"width\":270,\"height\":170,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u0627\\u06a9\\u0633\\u0633\\u0648\\u0631\\u06cc\",\"title\":\"\\u0627\\u06a9\\u0633\\u0633\\u0648\\u0631\\u06cc\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/fff31f2466ed3c3158f1bb31d8dd6545.jpg\"}', '0', '0', '1', '2024-11-26 20:04:36', '2024-11-26 20:04:36'), ('121', '0', '/cache/resized/63a61fb10d376a68620e960b3b7b3025.jpg', '/cache/resized/63a61fb10d376a68620e960b3b7b3025.jpg', 'fa/virtuemart/product-category/nulla-euismod,-nibh-nec-detail', 'fa/virtuemart/product-category/nulla-euismod,-nibh-nec-detail', '0', '{\"file_type\":\"\",\"width\":270,\"height\":170,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u0644\\u0628\\u0627\\u0633 \\u0648 \\u067e\\u0648\\u0634\\u0627\\u06a9\",\"title\":\"\\u0644\\u0628\\u0627\\u0633 \\u0648 \\u067e\\u0648\\u0634\\u0627\\u06a9\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/63a61fb10d376a68620e960b3b7b3025.jpg\"}', '0', '0', '1', '2024-11-26 20:04:36', '2024-11-26 20:04:36'), ('122', '0', '/cache/resized/136c2c6100d6310747ec6639b697de1b.jpg', '/cache/resized/136c2c6100d6310747ec6639b697de1b.jpg', 'fa/virtuemart/product-category/nulla-euismod,-nibh-nec-detail', 'fa/virtuemart/product-category/nulla-euismod,-nibh-nec-detail', '0', '{\"file_type\":\"\",\"width\":270,\"height\":170,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u062e\\u0648\\u0634\\u0628\\u0648 \\u06a9\\u0646\\u0646\\u062f\\u0647 \\u0647\\u0627\\u06cc \\u062c\\u0646\\u0633\\u06cc\",\"title\":\"\\u062e\\u0648\\u0634\\u0628\\u0648 \\u06a9\\u0646\\u0646\\u062f\\u0647 \\u0647\\u0627\\u06cc \\u062c\\u0646\\u0633\\u06cc\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/136c2c6100d6310747ec6639b697de1b.jpg\"}', '0', '0', '1', '2024-11-26 20:04:36', '2024-11-26 20:04:36'), ('123', '0', '/images/slider/cache/c7f2f558aae426cb618eb45d1779dcd5/slide1.jpg', '/images/slider/cache/c7f2f558aae426cb618eb45d1779dcd5/slide1.jpg', 'fa/virtuemart/product-category/nulla-euismod,-nibh-nec-detail', 'fa/virtuemart/product-category/nulla-euismod,-nibh-nec-detail', '0', '{\"file_type\":\"\",\"width\":1200,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/c7f2f558aae426cb618eb45d1779dcd5\\/slide1.jpg\"}', '0', '0', '0', '2024-11-26 20:04:36', '2024-11-26 20:04:36'), ('124', '0', '/images/slider/cache/0016c23135dbf72b71b938eb15ad6eba/slide2.jpg', '/images/slider/cache/0016c23135dbf72b71b938eb15ad6eba/slide2.jpg', 'fa/virtuemart/product-category/nulla-euismod,-nibh-nec-detail', 'fa/virtuemart/product-category/nulla-euismod,-nibh-nec-detail', '0', '{\"file_type\":\"\",\"width\":1200,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/0016c23135dbf72b71b938eb15ad6eba\\/slide2.jpg\"}', '0', '0', '0', '2024-11-26 20:04:36', '2024-11-26 20:04:36'), ('125', '0', '/images/slider/cache/cb936b74f5c90e00bc4b4b5b820f64a4/slide3.jpg', '/images/slider/cache/cb936b74f5c90e00bc4b4b5b820f64a4/slide3.jpg', 'fa/virtuemart/product-category/nulla-euismod,-nibh-nec-detail', 'fa/virtuemart/product-category/nulla-euismod,-nibh-nec-detail', '0', '{\"file_type\":\"\",\"width\":1200,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/cb936b74f5c90e00bc4b4b5b820f64a4\\/slide3.jpg\"}', '0', '0', '0', '2024-11-26 20:04:36', '2024-11-26 20:04:36'), ('126', '0', '/images/slider/cache/afba72876cbc644463efba8fe637cfe1/slide4.jpg', '/images/slider/cache/afba72876cbc644463efba8fe637cfe1/slide4.jpg', 'fa/virtuemart/product-category/nulla-euismod,-nibh-nec-detail', 'fa/virtuemart/product-category/nulla-euismod,-nibh-nec-detail', '0', '{\"file_type\":\"\",\"width\":1200,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/afba72876cbc644463efba8fe637cfe1\\/slide4.jpg\"}', '0', '0', '0', '2024-11-26 20:04:36', '2024-11-26 20:04:36'), ('127', '0', '/images/slider/cache/186f4f5acf07d06fb443fb709f910f0e/slide5.jpg', '/images/slider/cache/186f4f5acf07d06fb443fb709f910f0e/slide5.jpg', 'fa/virtuemart/product-category/nulla-euismod,-nibh-nec-detail', 'fa/virtuemart/product-category/nulla-euismod,-nibh-nec-detail', '0', '{\"file_type\":\"\",\"width\":1200,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/186f4f5acf07d06fb443fb709f910f0e\\/slide5.jpg\"}', '0', '0', '0', '2024-11-26 20:04:36', '2024-11-26 20:04:36'), ('128', '0', '/images/slider/cache/c6cc2ca1c1c96725142b1f65b39f5172/slide6.jpg', '/images/slider/cache/c6cc2ca1c1c96725142b1f65b39f5172/slide6.jpg', 'fa/virtuemart/product-category/nulla-euismod,-nibh-nec-detail', 'fa/virtuemart/product-category/nulla-euismod,-nibh-nec-detail', '0', '{\"file_type\":\"\",\"width\":1200,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/c6cc2ca1c1c96725142b1f65b39f5172\\/slide6.jpg\"}', '0', '0', '0', '2024-11-26 20:04:36', '2024-11-26 20:04:36'), ('129', '0', '/images/slider/cache/efe225be99ba9274f12b054076dd54a3/slide7.jpg', '/images/slider/cache/efe225be99ba9274f12b054076dd54a3/slide7.jpg', 'fa/virtuemart/product-category/nulla-euismod,-nibh-nec-detail', 'fa/virtuemart/product-category/nulla-euismod,-nibh-nec-detail', '0', '{\"file_type\":\"\",\"width\":1200,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/efe225be99ba9274f12b054076dd54a3\\/slide7.jpg\"}', '0', '0', '0', '2024-11-26 20:04:36', '2024-11-26 20:04:36'), ('130', '0', '/images/slider7/logo.png', '/images/slider7/logo.png', 'fa/virtuemart/product-category/nulla-euismod,-nibh-nec-detail', 'fa/virtuemart/product-category/nulla-euismod,-nibh-nec-detail', '0', '{\"file_type\":\"\",\"width\":255,\"height\":60,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"Image is not available\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider7\\/logo.png\"}', '0', '0', '0', '2024-11-26 20:04:36', '2024-11-26 20:04:36'), ('131', '0', '/images/slider7/services.png', '/images/slider7/services.png', 'fa/virtuemart/product-category/nulla-euismod,-nibh-nec-detail', 'fa/virtuemart/product-category/nulla-euismod,-nibh-nec-detail', '0', '{\"file_type\":\"\",\"width\":255,\"height\":41,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"Image is not available\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider7\\/services.png\"}', '0', '0', '0', '2024-11-26 20:04:36', '2024-11-26 20:04:36'), ('132', '0', '/cache/sj_revo/1c7a56381560bf005ed00b2b4eb43284.jpeg', '/cache/sj_revo/1c7a56381560bf005ed00b2b4eb43284.jpeg', 'fa/virtuemart/product-category/nulla-euismod,-nibh-nec-detail', 'fa/virtuemart/product-category/nulla-euismod,-nibh-nec-detail', '0', '{\"file_type\":\"\",\"width\":600,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/sj_revo\\/1c7a56381560bf005ed00b2b4eb43284.jpeg\"}', '0', '0', '1', '2024-11-26 20:04:36', '2024-11-26 20:04:36'), ('133', '0', '/images/demo/t1.png', '/images/demo/t1.png', 'fa/virtuemart/product-category/nulla-euismod,-nibh-nec-detail', 'fa/virtuemart/product-category/nulla-euismod,-nibh-nec-detail', '0', '{\"file_type\":\"\",\"width\":810,\"height\":420,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/images\\/demo\\/t1.png\"}', '0', '0', '0', '2024-11-26 20:04:36', '2024-11-26 20:04:36'), ('134', '0', '/images/demo/t2.jpg', '/images/demo/t2.jpg', 'fa/virtuemart/product-category/nulla-euismod,-nibh-nec-detail', 'fa/virtuemart/product-category/nulla-euismod,-nibh-nec-detail', '0', '{\"file_type\":\"\",\"width\":810,\"height\":420,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/images\\/demo\\/t2.jpg\"}', '0', '0', '0', '2024-11-26 20:04:36', '2024-11-26 20:04:36'), ('135', '0', '/images/demo/t3.jpg', '/images/demo/t3.jpg', 'fa/virtuemart/product-category/nulla-euismod,-nibh-nec-detail', 'fa/virtuemart/product-category/nulla-euismod,-nibh-nec-detail', '0', '{\"file_type\":\"\",\"width\":390,\"height\":420,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/images\\/demo\\/t3.jpg\"}', '0', '0', '0', '2024-11-26 20:04:36', '2024-11-26 20:04:36'), ('136', '0', '/images/demo/t4.jpg', '/images/demo/t4.jpg', 'fa/virtuemart/product-category/nulla-euismod,-nibh-nec-detail', 'fa/virtuemart/product-category/nulla-euismod,-nibh-nec-detail', '0', '{\"file_type\":\"\",\"width\":390,\"height\":420,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/images\\/demo\\/t4.jpg\"}', '0', '0', '0', '2024-11-26 20:04:36', '2024-11-26 20:04:36'), ('137', '0', '/images/demo/banner-left.jpg', '/images/demo/banner-left.jpg', 'fa/virtuemart/product-category/nulla-euismod,-nibh-nec-detail', 'fa/virtuemart/product-category/nulla-euismod,-nibh-nec-detail', '0', '{\"file_type\":\"\",\"width\":270,\"height\":369,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/images\\/demo\\/banner-left.jpg\"}', '0', '0', '0', '2024-11-26 20:04:36', '2024-11-26 20:04:36'), ('138', '0', '/images/slider/cache/1d28c922c1312bf431385bab8172673e/bg.jpg', '/images/slider/cache/1d28c922c1312bf431385bab8172673e/bg.jpg', 'fa/virtuemart/product-category/nulla-euismod,-nibh-nec-detail', 'fa/virtuemart/product-category/nulla-euismod,-nibh-nec-detail', '0', '{\"file_type\":\"\",\"width\":1920,\"height\":800,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/1d28c922c1312bf431385bab8172673e\\/bg.jpg\"}', '0', '0', '0', '2024-11-26 20:04:36', '2024-11-26 20:04:36'), ('139', '0', '/images/demo/methor.png', '/images/demo/methor.png', 'fa/virtuemart/product-category/nulla-euismod,-nibh-nec-detail', 'fa/virtuemart/product-category/nulla-euismod,-nibh-nec-detail', '0', '{\"file_type\":\"\",\"width\":387,\"height\":22,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/images\\/demo\\/methor.png\"}', '0', '0', '0', '2024-11-26 20:04:36', '2024-11-26 20:04:36'), ('140', '0', '/cache/resized/bf4b94d3b5a397fefc07091fa724bc7e.jpg', '/cache/resized/bf4b94d3b5a397fefc07091fa724bc7e.jpg', 'fa/ثبت-نام-فروشنده', 'fa/ثبت-نام-فروشنده', '0', '{\"file_type\":\"\",\"width\":300,\"height\":300,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u0622\\u0628\\u0645\\u06cc\\u0648\\u0647 \\u06af\\u06cc\\u0631 \\u0641\\u0648\\u0644 \\u0627\\u0645\\u06a9\\u0627\\u0646\\u0627\\u062a\",\"title\":\"\\u0622\\u0628\\u0645\\u06cc\\u0648\\u0647 \\u06af\\u06cc\\u0631 \\u0641\\u0648\\u0644 \\u0627\\u0645\\u06a9\\u0627\\u0646\\u0627\\u062a\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/bf4b94d3b5a397fefc07091fa724bc7e.jpg\"}', '0', '0', '1', '2024-11-26 20:04:44', '2024-11-26 20:04:44'), ('141', '0', '/cache/resized/47357fcb4fa747b9b2a48443711022b3.jpg', '/cache/resized/47357fcb4fa747b9b2a48443711022b3.jpg', 'fa/ثبت-نام-فروشنده', 'fa/ثبت-نام-فروشنده', '0', '{\"file_type\":\"\",\"width\":300,\"height\":300,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u0627\\u0633\\u067e\\u06cc\\u06a9\\u0631 \\u0641\\u0644\\u0634 \\u062e\\u0648\\u0631\",\"title\":\"\\u0627\\u0633\\u067e\\u06cc\\u06a9\\u0631 \\u0641\\u0644\\u0634 \\u062e\\u0648\\u0631\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/47357fcb4fa747b9b2a48443711022b3.jpg\"}', '0', '0', '1', '2024-11-26 20:04:44', '2024-11-26 20:04:44'), ('142', '0', '/cache/resized/925e5e3325c2d2875ed3e15a55e1542a.jpg', '/cache/resized/925e5e3325c2d2875ed3e15a55e1542a.jpg', 'fa/ثبت-نام-فروشنده', 'fa/ثبت-نام-فروشنده', '0', '{\"file_type\":\"\",\"width\":300,\"height\":300,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u0627\\u0633\\u067e\\u06cc\\u06a9\\u0631 \\u0645\\u0627\\u0631\\u0634\\u0627\\u0644\",\"title\":\"\\u0627\\u0633\\u067e\\u06cc\\u06a9\\u0631 \\u0645\\u0627\\u0631\\u0634\\u0627\\u0644\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/925e5e3325c2d2875ed3e15a55e1542a.jpg\"}', '0', '0', '1', '2024-11-26 20:04:44', '2024-11-26 20:04:44'), ('143', '0', '/cache/resized/15e5ceb1d4e3b094cf628e01a3883e43.jpg', '/cache/resized/15e5ceb1d4e3b094cf628e01a3883e43.jpg', 'fa/ثبت-نام-فروشنده', 'fa/ثبت-نام-فروشنده', '0', '{\"file_type\":\"\",\"width\":270,\"height\":170,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u062f\\u0627\\u0631\\u0648 \\u060c \\u062f\\u0631\\u0645\\u0627\\u0646 \\u060c \\u062a\\u0642\\u0648\\u06cc\\u062a\",\"title\":\"\\u062f\\u0627\\u0631\\u0648 \\u060c \\u062f\\u0631\\u0645\\u0627\\u0646 \\u060c \\u062a\\u0642\\u0648\\u06cc\\u062a\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/15e5ceb1d4e3b094cf628e01a3883e43.jpg\"}', '0', '0', '1', '2024-11-26 20:04:44', '2024-11-26 20:04:44'), ('144', '0', '/cache/resized/fff31f2466ed3c3158f1bb31d8dd6545.jpg', '/cache/resized/fff31f2466ed3c3158f1bb31d8dd6545.jpg', 'fa/ثبت-نام-فروشنده', 'fa/ثبت-نام-فروشنده', '0', '{\"file_type\":\"\",\"width\":270,\"height\":170,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u0627\\u06a9\\u0633\\u0633\\u0648\\u0631\\u06cc\",\"title\":\"\\u0627\\u06a9\\u0633\\u0633\\u0648\\u0631\\u06cc\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/fff31f2466ed3c3158f1bb31d8dd6545.jpg\"}', '0', '0', '1', '2024-11-26 20:04:44', '2024-11-26 20:04:44'), ('145', '0', '/cache/resized/63a61fb10d376a68620e960b3b7b3025.jpg', '/cache/resized/63a61fb10d376a68620e960b3b7b3025.jpg', 'fa/ثبت-نام-فروشنده', 'fa/ثبت-نام-فروشنده', '0', '{\"file_type\":\"\",\"width\":270,\"height\":170,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u0644\\u0628\\u0627\\u0633 \\u0648 \\u067e\\u0648\\u0634\\u0627\\u06a9\",\"title\":\"\\u0644\\u0628\\u0627\\u0633 \\u0648 \\u067e\\u0648\\u0634\\u0627\\u06a9\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/63a61fb10d376a68620e960b3b7b3025.jpg\"}', '0', '0', '1', '2024-11-26 20:04:44', '2024-11-26 20:04:44'), ('146', '0', '/cache/resized/136c2c6100d6310747ec6639b697de1b.jpg', '/cache/resized/136c2c6100d6310747ec6639b697de1b.jpg', 'fa/ثبت-نام-فروشنده', 'fa/ثبت-نام-فروشنده', '0', '{\"file_type\":\"\",\"width\":270,\"height\":170,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u062e\\u0648\\u0634\\u0628\\u0648 \\u06a9\\u0646\\u0646\\u062f\\u0647 \\u0647\\u0627\\u06cc \\u062c\\u0646\\u0633\\u06cc\",\"title\":\"\\u062e\\u0648\\u0634\\u0628\\u0648 \\u06a9\\u0646\\u0646\\u062f\\u0647 \\u0647\\u0627\\u06cc \\u062c\\u0646\\u0633\\u06cc\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/136c2c6100d6310747ec6639b697de1b.jpg\"}', '0', '0', '1', '2024-11-26 20:04:44', '2024-11-26 20:04:44'), ('147', '0', '/images/slider/cache/c7f2f558aae426cb618eb45d1779dcd5/slide1.jpg', '/images/slider/cache/c7f2f558aae426cb618eb45d1779dcd5/slide1.jpg', 'fa/ثبت-نام-فروشنده', 'fa/ثبت-نام-فروشنده', '0', '{\"file_type\":\"\",\"width\":1200,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/c7f2f558aae426cb618eb45d1779dcd5\\/slide1.jpg\"}', '0', '0', '0', '2024-11-26 20:04:44', '2024-11-26 20:04:44'), ('148', '0', '/images/slider/cache/0016c23135dbf72b71b938eb15ad6eba/slide2.jpg', '/images/slider/cache/0016c23135dbf72b71b938eb15ad6eba/slide2.jpg', 'fa/ثبت-نام-فروشنده', 'fa/ثبت-نام-فروشنده', '0', '{\"file_type\":\"\",\"width\":1200,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/0016c23135dbf72b71b938eb15ad6eba\\/slide2.jpg\"}', '0', '0', '0', '2024-11-26 20:04:44', '2024-11-26 20:04:44'), ('149', '0', '/images/slider/cache/cb936b74f5c90e00bc4b4b5b820f64a4/slide3.jpg', '/images/slider/cache/cb936b74f5c90e00bc4b4b5b820f64a4/slide3.jpg', 'fa/ثبت-نام-فروشنده', 'fa/ثبت-نام-فروشنده', '0', '{\"file_type\":\"\",\"width\":1200,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/cb936b74f5c90e00bc4b4b5b820f64a4\\/slide3.jpg\"}', '0', '0', '0', '2024-11-26 20:04:44', '2024-11-26 20:04:44'), ('150', '0', '/images/slider/cache/afba72876cbc644463efba8fe637cfe1/slide4.jpg', '/images/slider/cache/afba72876cbc644463efba8fe637cfe1/slide4.jpg', 'fa/ثبت-نام-فروشنده', 'fa/ثبت-نام-فروشنده', '0', '{\"file_type\":\"\",\"width\":1200,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/afba72876cbc644463efba8fe637cfe1\\/slide4.jpg\"}', '0', '0', '0', '2024-11-26 20:04:44', '2024-11-26 20:04:44'), ('151', '0', '/images/slider/cache/186f4f5acf07d06fb443fb709f910f0e/slide5.jpg', '/images/slider/cache/186f4f5acf07d06fb443fb709f910f0e/slide5.jpg', 'fa/ثبت-نام-فروشنده', 'fa/ثبت-نام-فروشنده', '0', '{\"file_type\":\"\",\"width\":1200,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/186f4f5acf07d06fb443fb709f910f0e\\/slide5.jpg\"}', '0', '0', '0', '2024-11-26 20:04:44', '2024-11-26 20:04:44'), ('152', '0', '/images/slider/cache/c6cc2ca1c1c96725142b1f65b39f5172/slide6.jpg', '/images/slider/cache/c6cc2ca1c1c96725142b1f65b39f5172/slide6.jpg', 'fa/ثبت-نام-فروشنده', 'fa/ثبت-نام-فروشنده', '0', '{\"file_type\":\"\",\"width\":1200,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/c6cc2ca1c1c96725142b1f65b39f5172\\/slide6.jpg\"}', '0', '0', '0', '2024-11-26 20:04:44', '2024-11-26 20:04:44'), ('153', '0', '/images/slider/cache/efe225be99ba9274f12b054076dd54a3/slide7.jpg', '/images/slider/cache/efe225be99ba9274f12b054076dd54a3/slide7.jpg', 'fa/ثبت-نام-فروشنده', 'fa/ثبت-نام-فروشنده', '0', '{\"file_type\":\"\",\"width\":1200,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/efe225be99ba9274f12b054076dd54a3\\/slide7.jpg\"}', '0', '0', '0', '2024-11-26 20:04:44', '2024-11-26 20:04:44'), ('154', '0', '/images/slider7/logo.png', '/images/slider7/logo.png', 'fa/ثبت-نام-فروشنده', 'fa/ثبت-نام-فروشنده', '0', '{\"file_type\":\"\",\"width\":255,\"height\":60,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"Image is not available\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider7\\/logo.png\"}', '0', '0', '0', '2024-11-26 20:04:44', '2024-11-26 20:04:44'), ('155', '0', '/images/slider7/services.png', '/images/slider7/services.png', 'fa/ثبت-نام-فروشنده', 'fa/ثبت-نام-فروشنده', '0', '{\"file_type\":\"\",\"width\":255,\"height\":41,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"Image is not available\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider7\\/services.png\"}', '0', '0', '0', '2024-11-26 20:04:44', '2024-11-26 20:04:44'), ('156', '0', '/images/slider/cache/1d28c922c1312bf431385bab8172673e/bg.jpg', '/images/slider/cache/1d28c922c1312bf431385bab8172673e/bg.jpg', 'fa/ثبت-نام-فروشنده', 'fa/ثبت-نام-فروشنده', '0', '{\"file_type\":\"\",\"width\":1920,\"height\":800,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/1d28c922c1312bf431385bab8172673e\\/bg.jpg\"}', '0', '0', '0', '2024-11-26 20:04:44', '2024-11-26 20:04:44'), ('157', '0', '/images/demo/methor.png', '/images/demo/methor.png', 'fa/ثبت-نام-فروشنده', 'fa/ثبت-نام-فروشنده', '0', '{\"file_type\":\"\",\"width\":387,\"height\":22,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/images\\/demo\\/methor.png\"}', '0', '0', '0', '2024-11-26 20:04:44', '2024-11-26 20:04:44'), ('158', '0', '/cache/resized/bf4b94d3b5a397fefc07091fa724bc7e.jpg', '/cache/resized/bf4b94d3b5a397fefc07091fa724bc7e.jpg', 'fa/component/virtuemart/carpet/duis-eget-conse-detail', 'fa/component/virtuemart/carpet/duis-eget-conse-detail', '0', '{\"file_type\":\"\",\"width\":300,\"height\":300,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u0622\\u0628\\u0645\\u06cc\\u0648\\u0647 \\u06af\\u06cc\\u0631 \\u0641\\u0648\\u0644 \\u0627\\u0645\\u06a9\\u0627\\u0646\\u0627\\u062a\",\"title\":\"\\u0622\\u0628\\u0645\\u06cc\\u0648\\u0647 \\u06af\\u06cc\\u0631 \\u0641\\u0648\\u0644 \\u0627\\u0645\\u06a9\\u0627\\u0646\\u0627\\u062a\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/bf4b94d3b5a397fefc07091fa724bc7e.jpg\"}', '0', '0', '1', '2024-11-26 20:19:42', '2024-11-26 20:19:42'), ('159', '0', '/cache/resized/47357fcb4fa747b9b2a48443711022b3.jpg', '/cache/resized/47357fcb4fa747b9b2a48443711022b3.jpg', 'fa/component/virtuemart/carpet/duis-eget-conse-detail', 'fa/component/virtuemart/carpet/duis-eget-conse-detail', '0', '{\"file_type\":\"\",\"width\":300,\"height\":300,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u0627\\u0633\\u067e\\u06cc\\u06a9\\u0631 \\u0641\\u0644\\u0634 \\u062e\\u0648\\u0631\",\"title\":\"\\u0627\\u0633\\u067e\\u06cc\\u06a9\\u0631 \\u0641\\u0644\\u0634 \\u062e\\u0648\\u0631\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/47357fcb4fa747b9b2a48443711022b3.jpg\"}', '0', '0', '1', '2024-11-26 20:19:42', '2024-11-26 20:19:42'), ('160', '0', '/cache/resized/925e5e3325c2d2875ed3e15a55e1542a.jpg', '/cache/resized/925e5e3325c2d2875ed3e15a55e1542a.jpg', 'fa/component/virtuemart/carpet/duis-eget-conse-detail', 'fa/component/virtuemart/carpet/duis-eget-conse-detail', '0', '{\"file_type\":\"\",\"width\":300,\"height\":300,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u0627\\u0633\\u067e\\u06cc\\u06a9\\u0631 \\u0645\\u0627\\u0631\\u0634\\u0627\\u0644\",\"title\":\"\\u0627\\u0633\\u067e\\u06cc\\u06a9\\u0631 \\u0645\\u0627\\u0631\\u0634\\u0627\\u0644\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/925e5e3325c2d2875ed3e15a55e1542a.jpg\"}', '0', '0', '1', '2024-11-26 20:19:42', '2024-11-26 20:19:42'), ('161', '0', '/cache/resized/15e5ceb1d4e3b094cf628e01a3883e43.jpg', '/cache/resized/15e5ceb1d4e3b094cf628e01a3883e43.jpg', 'fa/component/virtuemart/carpet/duis-eget-conse-detail', 'fa/component/virtuemart/carpet/duis-eget-conse-detail', '0', '{\"file_type\":\"\",\"width\":270,\"height\":170,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u062f\\u0627\\u0631\\u0648 \\u060c \\u062f\\u0631\\u0645\\u0627\\u0646 \\u060c \\u062a\\u0642\\u0648\\u06cc\\u062a\",\"title\":\"\\u062f\\u0627\\u0631\\u0648 \\u060c \\u062f\\u0631\\u0645\\u0627\\u0646 \\u060c \\u062a\\u0642\\u0648\\u06cc\\u062a\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/15e5ceb1d4e3b094cf628e01a3883e43.jpg\"}', '0', '0', '1', '2024-11-26 20:19:42', '2024-11-26 20:19:42'), ('162', '0', '/cache/resized/fff31f2466ed3c3158f1bb31d8dd6545.jpg', '/cache/resized/fff31f2466ed3c3158f1bb31d8dd6545.jpg', 'fa/component/virtuemart/carpet/duis-eget-conse-detail', 'fa/component/virtuemart/carpet/duis-eget-conse-detail', '0', '{\"file_type\":\"\",\"width\":270,\"height\":170,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u0627\\u06a9\\u0633\\u0633\\u0648\\u0631\\u06cc\",\"title\":\"\\u0627\\u06a9\\u0633\\u0633\\u0648\\u0631\\u06cc\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/fff31f2466ed3c3158f1bb31d8dd6545.jpg\"}', '0', '0', '1', '2024-11-26 20:19:42', '2024-11-26 20:19:42'), ('163', '0', '/cache/resized/63a61fb10d376a68620e960b3b7b3025.jpg', '/cache/resized/63a61fb10d376a68620e960b3b7b3025.jpg', 'fa/component/virtuemart/carpet/duis-eget-conse-detail', 'fa/component/virtuemart/carpet/duis-eget-conse-detail', '0', '{\"file_type\":\"\",\"width\":270,\"height\":170,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u0644\\u0628\\u0627\\u0633 \\u0648 \\u067e\\u0648\\u0634\\u0627\\u06a9\",\"title\":\"\\u0644\\u0628\\u0627\\u0633 \\u0648 \\u067e\\u0648\\u0634\\u0627\\u06a9\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/63a61fb10d376a68620e960b3b7b3025.jpg\"}', '0', '0', '1', '2024-11-26 20:19:42', '2024-11-26 20:19:42'), ('164', '0', '/cache/resized/136c2c6100d6310747ec6639b697de1b.jpg', '/cache/resized/136c2c6100d6310747ec6639b697de1b.jpg', 'fa/component/virtuemart/carpet/duis-eget-conse-detail', 'fa/component/virtuemart/carpet/duis-eget-conse-detail', '0', '{\"file_type\":\"\",\"width\":270,\"height\":170,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u062e\\u0648\\u0634\\u0628\\u0648 \\u06a9\\u0646\\u0646\\u062f\\u0647 \\u0647\\u0627\\u06cc \\u062c\\u0646\\u0633\\u06cc\",\"title\":\"\\u062e\\u0648\\u0634\\u0628\\u0648 \\u06a9\\u0646\\u0646\\u062f\\u0647 \\u0647\\u0627\\u06cc \\u062c\\u0646\\u0633\\u06cc\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/136c2c6100d6310747ec6639b697de1b.jpg\"}', '0', '0', '1', '2024-11-26 20:19:42', '2024-11-26 20:19:42'), ('165', '0', '/images/slider/cache/c7f2f558aae426cb618eb45d1779dcd5/slide1.jpg', '/images/slider/cache/c7f2f558aae426cb618eb45d1779dcd5/slide1.jpg', 'fa/component/virtuemart/carpet/duis-eget-conse-detail', 'fa/component/virtuemart/carpet/duis-eget-conse-detail', '0', '{\"file_type\":\"\",\"width\":1200,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/c7f2f558aae426cb618eb45d1779dcd5\\/slide1.jpg\"}', '0', '0', '0', '2024-11-26 20:19:42', '2024-11-26 20:19:42'), ('166', '0', '/images/slider/cache/0016c23135dbf72b71b938eb15ad6eba/slide2.jpg', '/images/slider/cache/0016c23135dbf72b71b938eb15ad6eba/slide2.jpg', 'fa/component/virtuemart/carpet/duis-eget-conse-detail', 'fa/component/virtuemart/carpet/duis-eget-conse-detail', '0', '{\"file_type\":\"\",\"width\":1200,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/0016c23135dbf72b71b938eb15ad6eba\\/slide2.jpg\"}', '0', '0', '0', '2024-11-26 20:19:42', '2024-11-26 20:19:42'), ('167', '0', '/images/slider/cache/cb936b74f5c90e00bc4b4b5b820f64a4/slide3.jpg', '/images/slider/cache/cb936b74f5c90e00bc4b4b5b820f64a4/slide3.jpg', 'fa/component/virtuemart/carpet/duis-eget-conse-detail', 'fa/component/virtuemart/carpet/duis-eget-conse-detail', '0', '{\"file_type\":\"\",\"width\":1200,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/cb936b74f5c90e00bc4b4b5b820f64a4\\/slide3.jpg\"}', '0', '0', '0', '2024-11-26 20:19:42', '2024-11-26 20:19:42'), ('168', '0', '/images/slider/cache/afba72876cbc644463efba8fe637cfe1/slide4.jpg', '/images/slider/cache/afba72876cbc644463efba8fe637cfe1/slide4.jpg', 'fa/component/virtuemart/carpet/duis-eget-conse-detail', 'fa/component/virtuemart/carpet/duis-eget-conse-detail', '0', '{\"file_type\":\"\",\"width\":1200,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/afba72876cbc644463efba8fe637cfe1\\/slide4.jpg\"}', '0', '0', '0', '2024-11-26 20:19:42', '2024-11-26 20:19:42'), ('169', '0', '/images/slider/cache/186f4f5acf07d06fb443fb709f910f0e/slide5.jpg', '/images/slider/cache/186f4f5acf07d06fb443fb709f910f0e/slide5.jpg', 'fa/component/virtuemart/carpet/duis-eget-conse-detail', 'fa/component/virtuemart/carpet/duis-eget-conse-detail', '0', '{\"file_type\":\"\",\"width\":1200,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/186f4f5acf07d06fb443fb709f910f0e\\/slide5.jpg\"}', '0', '0', '0', '2024-11-26 20:19:42', '2024-11-26 20:19:42'), ('170', '0', '/images/slider/cache/c6cc2ca1c1c96725142b1f65b39f5172/slide6.jpg', '/images/slider/cache/c6cc2ca1c1c96725142b1f65b39f5172/slide6.jpg', 'fa/component/virtuemart/carpet/duis-eget-conse-detail', 'fa/component/virtuemart/carpet/duis-eget-conse-detail', '0', '{\"file_type\":\"\",\"width\":1200,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/c6cc2ca1c1c96725142b1f65b39f5172\\/slide6.jpg\"}', '0', '0', '0', '2024-11-26 20:19:42', '2024-11-26 20:19:42'), ('171', '0', '/images/slider/cache/efe225be99ba9274f12b054076dd54a3/slide7.jpg', '/images/slider/cache/efe225be99ba9274f12b054076dd54a3/slide7.jpg', 'fa/component/virtuemart/carpet/duis-eget-conse-detail', 'fa/component/virtuemart/carpet/duis-eget-conse-detail', '0', '{\"file_type\":\"\",\"width\":1200,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/efe225be99ba9274f12b054076dd54a3\\/slide7.jpg\"}', '0', '0', '0', '2024-11-26 20:19:42', '2024-11-26 20:19:42'), ('172', '0', '/images/slider7/logo.png', '/images/slider7/logo.png', 'fa/component/virtuemart/carpet/duis-eget-conse-detail', 'fa/component/virtuemart/carpet/duis-eget-conse-detail', '0', '{\"file_type\":\"\",\"width\":255,\"height\":60,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"Image is not available\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider7\\/logo.png\"}', '0', '0', '0', '2024-11-26 20:19:42', '2024-11-26 20:19:42'), ('173', '0', '/images/slider7/services.png', '/images/slider7/services.png', 'fa/component/virtuemart/carpet/duis-eget-conse-detail', 'fa/component/virtuemart/carpet/duis-eget-conse-detail', '0', '{\"file_type\":\"\",\"width\":255,\"height\":41,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"Image is not available\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider7\\/services.png\"}', '0', '0', '0', '2024-11-26 20:19:42', '2024-11-26 20:19:42'), ('174', '0', '/cache/sj_revo/a8c603d1c365b6f92b13d1c8b553d284.jpeg', '/cache/sj_revo/a8c603d1c365b6f92b13d1c8b553d284.jpeg', 'fa/component/virtuemart/carpet/duis-eget-conse-detail', 'fa/component/virtuemart/carpet/duis-eget-conse-detail', '0', '{\"file_type\":\"\",\"width\":600,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/sj_revo\\/a8c603d1c365b6f92b13d1c8b553d284.jpeg\"}', '0', '0', '1', '2024-11-26 20:19:42', '2024-11-26 20:19:42'), ('175', '0', '/images/demo/t1.png', '/images/demo/t1.png', 'fa/component/virtuemart/carpet/duis-eget-conse-detail', 'fa/component/virtuemart/carpet/duis-eget-conse-detail', '0', '{\"file_type\":\"\",\"width\":810,\"height\":420,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/images\\/demo\\/t1.png\"}', '0', '0', '0', '2024-11-26 20:19:42', '2024-11-26 20:19:42'), ('176', '0', '/images/demo/t2.jpg', '/images/demo/t2.jpg', 'fa/component/virtuemart/carpet/duis-eget-conse-detail', 'fa/component/virtuemart/carpet/duis-eget-conse-detail', '0', '{\"file_type\":\"\",\"width\":810,\"height\":420,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/images\\/demo\\/t2.jpg\"}', '0', '0', '0', '2024-11-26 20:19:42', '2024-11-26 20:19:42'), ('177', '0', '/images/demo/t3.jpg', '/images/demo/t3.jpg', 'fa/component/virtuemart/carpet/duis-eget-conse-detail', 'fa/component/virtuemart/carpet/duis-eget-conse-detail', '0', '{\"file_type\":\"\",\"width\":390,\"height\":420,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/images\\/demo\\/t3.jpg\"}', '0', '0', '0', '2024-11-26 20:19:42', '2024-11-26 20:19:42'), ('178', '0', '/images/demo/t4.jpg', '/images/demo/t4.jpg', 'fa/component/virtuemart/carpet/duis-eget-conse-detail', 'fa/component/virtuemart/carpet/duis-eget-conse-detail', '0', '{\"file_type\":\"\",\"width\":390,\"height\":420,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/images\\/demo\\/t4.jpg\"}', '0', '0', '0', '2024-11-26 20:19:42', '2024-11-26 20:19:42'), ('179', '0', '/images/stories/virtuemart/product/resized/s11_270x270.jpg', '/images/stories/virtuemart/product/resized/s11_270x270.jpg', 'fa/component/virtuemart/carpet/duis-eget-conse-detail', 'fa/component/virtuemart/carpet/duis-eget-conse-detail', '0', '{\"file_type\":\"\",\"width\":270,\"height\":270,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"s11\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/images\\/stories\\/virtuemart\\/product\\/resized\\/s11_270x270.jpg\"}', '0', '0', '0', '2024-11-26 20:19:42', '2024-11-26 20:19:42'), ('180', '0', '/images/slider/cache/1d28c922c1312bf431385bab8172673e/bg.jpg', '/images/slider/cache/1d28c922c1312bf431385bab8172673e/bg.jpg', 'fa/component/virtuemart/carpet/duis-eget-conse-detail', 'fa/component/virtuemart/carpet/duis-eget-conse-detail', '0', '{\"file_type\":\"\",\"width\":1920,\"height\":800,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/1d28c922c1312bf431385bab8172673e\\/bg.jpg\"}', '0', '0', '0', '2024-11-26 20:19:42', '2024-11-26 20:19:42'), ('181', '0', '/images/demo/methor.png', '/images/demo/methor.png', 'fa/component/virtuemart/carpet/duis-eget-conse-detail', 'fa/component/virtuemart/carpet/duis-eget-conse-detail', '0', '{\"file_type\":\"\",\"width\":387,\"height\":22,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/images\\/demo\\/methor.png\"}', '0', '0', '0', '2024-11-26 20:19:42', '2024-11-26 20:19:42'), ('182', '0', '/cache/resized/bf4b94d3b5a397fefc07091fa724bc7e.jpg', '/cache/resized/bf4b94d3b5a397fefc07091fa724bc7e.jpg', 'fa/component/virtuemart/شیشه-وآیینه/maecenas-vehic-detail', 'fa/component/virtuemart/شیشه-وآیینه/maecenas-vehic-detail', '0', '{\"file_type\":\"\",\"width\":300,\"height\":300,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u0622\\u0628\\u0645\\u06cc\\u0648\\u0647 \\u06af\\u06cc\\u0631 \\u0641\\u0648\\u0644 \\u0627\\u0645\\u06a9\\u0627\\u0646\\u0627\\u062a\",\"title\":\"\\u0622\\u0628\\u0645\\u06cc\\u0648\\u0647 \\u06af\\u06cc\\u0631 \\u0641\\u0648\\u0644 \\u0627\\u0645\\u06a9\\u0627\\u0646\\u0627\\u062a\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/bf4b94d3b5a397fefc07091fa724bc7e.jpg\"}', '0', '0', '1', '2024-11-26 20:23:44', '2024-11-26 20:23:44'), ('183', '0', '/cache/resized/47357fcb4fa747b9b2a48443711022b3.jpg', '/cache/resized/47357fcb4fa747b9b2a48443711022b3.jpg', 'fa/component/virtuemart/شیشه-وآیینه/maecenas-vehic-detail', 'fa/component/virtuemart/شیشه-وآیینه/maecenas-vehic-detail', '0', '{\"file_type\":\"\",\"width\":300,\"height\":300,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u0627\\u0633\\u067e\\u06cc\\u06a9\\u0631 \\u0641\\u0644\\u0634 \\u062e\\u0648\\u0631\",\"title\":\"\\u0627\\u0633\\u067e\\u06cc\\u06a9\\u0631 \\u0641\\u0644\\u0634 \\u062e\\u0648\\u0631\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/47357fcb4fa747b9b2a48443711022b3.jpg\"}', '0', '0', '1', '2024-11-26 20:23:44', '2024-11-26 20:23:44'), ('184', '0', '/cache/resized/925e5e3325c2d2875ed3e15a55e1542a.jpg', '/cache/resized/925e5e3325c2d2875ed3e15a55e1542a.jpg', 'fa/component/virtuemart/شیشه-وآیینه/maecenas-vehic-detail', 'fa/component/virtuemart/شیشه-وآیینه/maecenas-vehic-detail', '0', '{\"file_type\":\"\",\"width\":300,\"height\":300,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u0627\\u0633\\u067e\\u06cc\\u06a9\\u0631 \\u0645\\u0627\\u0631\\u0634\\u0627\\u0644\",\"title\":\"\\u0627\\u0633\\u067e\\u06cc\\u06a9\\u0631 \\u0645\\u0627\\u0631\\u0634\\u0627\\u0644\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/925e5e3325c2d2875ed3e15a55e1542a.jpg\"}', '0', '0', '1', '2024-11-26 20:23:44', '2024-11-26 20:23:44'), ('185', '0', '/cache/resized/15e5ceb1d4e3b094cf628e01a3883e43.jpg', '/cache/resized/15e5ceb1d4e3b094cf628e01a3883e43.jpg', 'fa/component/virtuemart/شیشه-وآیینه/maecenas-vehic-detail', 'fa/component/virtuemart/شیشه-وآیینه/maecenas-vehic-detail', '0', '{\"file_type\":\"\",\"width\":270,\"height\":170,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u062f\\u0627\\u0631\\u0648 \\u060c \\u062f\\u0631\\u0645\\u0627\\u0646 \\u060c \\u062a\\u0642\\u0648\\u06cc\\u062a\",\"title\":\"\\u062f\\u0627\\u0631\\u0648 \\u060c \\u062f\\u0631\\u0645\\u0627\\u0646 \\u060c \\u062a\\u0642\\u0648\\u06cc\\u062a\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/15e5ceb1d4e3b094cf628e01a3883e43.jpg\"}', '0', '0', '1', '2024-11-26 20:23:44', '2024-11-26 20:23:44'), ('186', '0', '/cache/resized/fff31f2466ed3c3158f1bb31d8dd6545.jpg', '/cache/resized/fff31f2466ed3c3158f1bb31d8dd6545.jpg', 'fa/component/virtuemart/شیشه-وآیینه/maecenas-vehic-detail', 'fa/component/virtuemart/شیشه-وآیینه/maecenas-vehic-detail', '0', '{\"file_type\":\"\",\"width\":270,\"height\":170,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u0627\\u06a9\\u0633\\u0633\\u0648\\u0631\\u06cc\",\"title\":\"\\u0627\\u06a9\\u0633\\u0633\\u0648\\u0631\\u06cc\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/fff31f2466ed3c3158f1bb31d8dd6545.jpg\"}', '0', '0', '1', '2024-11-26 20:23:44', '2024-11-26 20:23:44'), ('187', '0', '/cache/resized/63a61fb10d376a68620e960b3b7b3025.jpg', '/cache/resized/63a61fb10d376a68620e960b3b7b3025.jpg', 'fa/component/virtuemart/شیشه-وآیینه/maecenas-vehic-detail', 'fa/component/virtuemart/شیشه-وآیینه/maecenas-vehic-detail', '0', '{\"file_type\":\"\",\"width\":270,\"height\":170,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u0644\\u0628\\u0627\\u0633 \\u0648 \\u067e\\u0648\\u0634\\u0627\\u06a9\",\"title\":\"\\u0644\\u0628\\u0627\\u0633 \\u0648 \\u067e\\u0648\\u0634\\u0627\\u06a9\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/63a61fb10d376a68620e960b3b7b3025.jpg\"}', '0', '0', '1', '2024-11-26 20:23:44', '2024-11-26 20:23:44'), ('188', '0', '/cache/resized/136c2c6100d6310747ec6639b697de1b.jpg', '/cache/resized/136c2c6100d6310747ec6639b697de1b.jpg', 'fa/component/virtuemart/شیشه-وآیینه/maecenas-vehic-detail', 'fa/component/virtuemart/شیشه-وآیینه/maecenas-vehic-detail', '0', '{\"file_type\":\"\",\"width\":270,\"height\":170,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u062e\\u0648\\u0634\\u0628\\u0648 \\u06a9\\u0646\\u0646\\u062f\\u0647 \\u0647\\u0627\\u06cc \\u062c\\u0646\\u0633\\u06cc\",\"title\":\"\\u062e\\u0648\\u0634\\u0628\\u0648 \\u06a9\\u0646\\u0646\\u062f\\u0647 \\u0647\\u0627\\u06cc \\u062c\\u0646\\u0633\\u06cc\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/136c2c6100d6310747ec6639b697de1b.jpg\"}', '0', '0', '1', '2024-11-26 20:23:44', '2024-11-26 20:23:44'), ('189', '0', '/images/slider/cache/c7f2f558aae426cb618eb45d1779dcd5/slide1.jpg', '/images/slider/cache/c7f2f558aae426cb618eb45d1779dcd5/slide1.jpg', 'fa/component/virtuemart/شیشه-وآیینه/maecenas-vehic-detail', 'fa/component/virtuemart/شیشه-وآیینه/maecenas-vehic-detail', '0', '{\"file_type\":\"\",\"width\":1200,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/c7f2f558aae426cb618eb45d1779dcd5\\/slide1.jpg\"}', '0', '0', '0', '2024-11-26 20:23:44', '2024-11-26 20:23:44'), ('190', '0', '/images/slider/cache/0016c23135dbf72b71b938eb15ad6eba/slide2.jpg', '/images/slider/cache/0016c23135dbf72b71b938eb15ad6eba/slide2.jpg', 'fa/component/virtuemart/شیشه-وآیینه/maecenas-vehic-detail', 'fa/component/virtuemart/شیشه-وآیینه/maecenas-vehic-detail', '0', '{\"file_type\":\"\",\"width\":1200,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/0016c23135dbf72b71b938eb15ad6eba\\/slide2.jpg\"}', '0', '0', '0', '2024-11-26 20:23:44', '2024-11-26 20:23:44'), ('191', '0', '/images/slider/cache/cb936b74f5c90e00bc4b4b5b820f64a4/slide3.jpg', '/images/slider/cache/cb936b74f5c90e00bc4b4b5b820f64a4/slide3.jpg', 'fa/component/virtuemart/شیشه-وآیینه/maecenas-vehic-detail', 'fa/component/virtuemart/شیشه-وآیینه/maecenas-vehic-detail', '0', '{\"file_type\":\"\",\"width\":1200,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/cb936b74f5c90e00bc4b4b5b820f64a4\\/slide3.jpg\"}', '0', '0', '0', '2024-11-26 20:23:44', '2024-11-26 20:23:44'), ('192', '0', '/images/slider/cache/afba72876cbc644463efba8fe637cfe1/slide4.jpg', '/images/slider/cache/afba72876cbc644463efba8fe637cfe1/slide4.jpg', 'fa/component/virtuemart/شیشه-وآیینه/maecenas-vehic-detail', 'fa/component/virtuemart/شیشه-وآیینه/maecenas-vehic-detail', '0', '{\"file_type\":\"\",\"width\":1200,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/afba72876cbc644463efba8fe637cfe1\\/slide4.jpg\"}', '0', '0', '0', '2024-11-26 20:23:44', '2024-11-26 20:23:44'), ('193', '0', '/images/slider/cache/186f4f5acf07d06fb443fb709f910f0e/slide5.jpg', '/images/slider/cache/186f4f5acf07d06fb443fb709f910f0e/slide5.jpg', 'fa/component/virtuemart/شیشه-وآیینه/maecenas-vehic-detail', 'fa/component/virtuemart/شیشه-وآیینه/maecenas-vehic-detail', '0', '{\"file_type\":\"\",\"width\":1200,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/186f4f5acf07d06fb443fb709f910f0e\\/slide5.jpg\"}', '0', '0', '0', '2024-11-26 20:23:44', '2024-11-26 20:23:44'), ('194', '0', '/images/slider/cache/c6cc2ca1c1c96725142b1f65b39f5172/slide6.jpg', '/images/slider/cache/c6cc2ca1c1c96725142b1f65b39f5172/slide6.jpg', 'fa/component/virtuemart/شیشه-وآیینه/maecenas-vehic-detail', 'fa/component/virtuemart/شیشه-وآیینه/maecenas-vehic-detail', '0', '{\"file_type\":\"\",\"width\":1200,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/c6cc2ca1c1c96725142b1f65b39f5172\\/slide6.jpg\"}', '0', '0', '0', '2024-11-26 20:23:44', '2024-11-26 20:23:44'), ('195', '0', '/images/slider/cache/efe225be99ba9274f12b054076dd54a3/slide7.jpg', '/images/slider/cache/efe225be99ba9274f12b054076dd54a3/slide7.jpg', 'fa/component/virtuemart/شیشه-وآیینه/maecenas-vehic-detail', 'fa/component/virtuemart/شیشه-وآیینه/maecenas-vehic-detail', '0', '{\"file_type\":\"\",\"width\":1200,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/efe225be99ba9274f12b054076dd54a3\\/slide7.jpg\"}', '0', '0', '0', '2024-11-26 20:23:44', '2024-11-26 20:23:44'), ('196', '0', '/images/slider7/logo.png', '/images/slider7/logo.png', 'fa/component/virtuemart/شیشه-وآیینه/maecenas-vehic-detail', 'fa/component/virtuemart/شیشه-وآیینه/maecenas-vehic-detail', '0', '{\"file_type\":\"\",\"width\":255,\"height\":60,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"Image is not available\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider7\\/logo.png\"}', '0', '0', '0', '2024-11-26 20:23:44', '2024-11-26 20:23:44'), ('197', '0', '/images/slider7/services.png', '/images/slider7/services.png', 'fa/component/virtuemart/شیشه-وآیینه/maecenas-vehic-detail', 'fa/component/virtuemart/شیشه-وآیینه/maecenas-vehic-detail', '0', '{\"file_type\":\"\",\"width\":255,\"height\":41,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"Image is not available\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider7\\/services.png\"}', '0', '0', '0', '2024-11-26 20:23:44', '2024-11-26 20:23:44'), ('198', '0', '/cache/sj_revo/ce7a63a6ca3173ad319b28e6f6ed5ff9.jpeg', '/cache/sj_revo/ce7a63a6ca3173ad319b28e6f6ed5ff9.jpeg', 'fa/component/virtuemart/شیشه-وآیینه/maecenas-vehic-detail', 'fa/component/virtuemart/شیشه-وآیینه/maecenas-vehic-detail', '0', '{\"file_type\":\"\",\"width\":600,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/sj_revo\\/ce7a63a6ca3173ad319b28e6f6ed5ff9.jpeg\"}', '0', '0', '1', '2024-11-26 20:23:44', '2024-11-26 20:23:44'), ('199', '0', '/images/demo/t1.png', '/images/demo/t1.png', 'fa/component/virtuemart/شیشه-وآیینه/maecenas-vehic-detail', 'fa/component/virtuemart/شیشه-وآیینه/maecenas-vehic-detail', '0', '{\"file_type\":\"\",\"width\":810,\"height\":420,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/images\\/demo\\/t1.png\"}', '0', '0', '0', '2024-11-26 20:23:44', '2024-11-26 20:23:44'), ('200', '0', '/images/demo/t2.jpg', '/images/demo/t2.jpg', 'fa/component/virtuemart/شیشه-وآیینه/maecenas-vehic-detail', 'fa/component/virtuemart/شیشه-وآیینه/maecenas-vehic-detail', '0', '{\"file_type\":\"\",\"width\":810,\"height\":420,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/images\\/demo\\/t2.jpg\"}', '0', '0', '0', '2024-11-26 20:23:44', '2024-11-26 20:23:44'), ('201', '0', '/images/demo/t3.jpg', '/images/demo/t3.jpg', 'fa/component/virtuemart/شیشه-وآیینه/maecenas-vehic-detail', 'fa/component/virtuemart/شیشه-وآیینه/maecenas-vehic-detail', '0', '{\"file_type\":\"\",\"width\":390,\"height\":420,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/images\\/demo\\/t3.jpg\"}', '0', '0', '0', '2024-11-26 20:23:44', '2024-11-26 20:23:44'), ('202', '0', '/images/demo/t4.jpg', '/images/demo/t4.jpg', 'fa/component/virtuemart/شیشه-وآیینه/maecenas-vehic-detail', 'fa/component/virtuemart/شیشه-وآیینه/maecenas-vehic-detail', '0', '{\"file_type\":\"\",\"width\":390,\"height\":420,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/images\\/demo\\/t4.jpg\"}', '0', '0', '0', '2024-11-26 20:23:44', '2024-11-26 20:23:44'), ('203', '0', '/images/slider/cache/1d28c922c1312bf431385bab8172673e/bg.jpg', '/images/slider/cache/1d28c922c1312bf431385bab8172673e/bg.jpg', 'fa/component/virtuemart/شیشه-وآیینه/maecenas-vehic-detail', 'fa/component/virtuemart/شیشه-وآیینه/maecenas-vehic-detail', '0', '{\"file_type\":\"\",\"width\":1920,\"height\":800,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/1d28c922c1312bf431385bab8172673e\\/bg.jpg\"}', '0', '0', '0', '2024-11-26 20:23:44', '2024-11-26 20:23:44'), ('204', '0', '/images/demo/methor.png', '/images/demo/methor.png', 'fa/component/virtuemart/شیشه-وآیینه/maecenas-vehic-detail', 'fa/component/virtuemart/شیشه-وآیینه/maecenas-vehic-detail', '0', '{\"file_type\":\"\",\"width\":387,\"height\":22,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/images\\/demo\\/methor.png\"}', '0', '0', '0', '2024-11-26 20:23:44', '2024-11-26 20:23:44'), ('205', '0', '/cache/resized/bf4b94d3b5a397fefc07091fa724bc7e.jpg', '/cache/resized/bf4b94d3b5a397fefc07091fa724bc7e.jpg', 'fa/component/virtuemart/carpet/integer-egestas-detail', 'fa/component/virtuemart/carpet/integer-egestas-detail', '0', '{\"file_type\":\"\",\"width\":300,\"height\":300,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u0622\\u0628\\u0645\\u06cc\\u0648\\u0647 \\u06af\\u06cc\\u0631 \\u0641\\u0648\\u0644 \\u0627\\u0645\\u06a9\\u0627\\u0646\\u0627\\u062a\",\"title\":\"\\u0622\\u0628\\u0645\\u06cc\\u0648\\u0647 \\u06af\\u06cc\\u0631 \\u0641\\u0648\\u0644 \\u0627\\u0645\\u06a9\\u0627\\u0646\\u0627\\u062a\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/bf4b94d3b5a397fefc07091fa724bc7e.jpg\"}', '0', '0', '1', '2024-11-26 20:26:46', '2024-11-26 20:26:46'), ('206', '0', '/cache/resized/47357fcb4fa747b9b2a48443711022b3.jpg', '/cache/resized/47357fcb4fa747b9b2a48443711022b3.jpg', 'fa/component/virtuemart/carpet/integer-egestas-detail', 'fa/component/virtuemart/carpet/integer-egestas-detail', '0', '{\"file_type\":\"\",\"width\":300,\"height\":300,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u0627\\u0633\\u067e\\u06cc\\u06a9\\u0631 \\u0641\\u0644\\u0634 \\u062e\\u0648\\u0631\",\"title\":\"\\u0627\\u0633\\u067e\\u06cc\\u06a9\\u0631 \\u0641\\u0644\\u0634 \\u062e\\u0648\\u0631\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/47357fcb4fa747b9b2a48443711022b3.jpg\"}', '0', '0', '1', '2024-11-26 20:26:46', '2024-11-26 20:26:46'), ('207', '0', '/cache/resized/925e5e3325c2d2875ed3e15a55e1542a.jpg', '/cache/resized/925e5e3325c2d2875ed3e15a55e1542a.jpg', 'fa/component/virtuemart/carpet/integer-egestas-detail', 'fa/component/virtuemart/carpet/integer-egestas-detail', '0', '{\"file_type\":\"\",\"width\":300,\"height\":300,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u0627\\u0633\\u067e\\u06cc\\u06a9\\u0631 \\u0645\\u0627\\u0631\\u0634\\u0627\\u0644\",\"title\":\"\\u0627\\u0633\\u067e\\u06cc\\u06a9\\u0631 \\u0645\\u0627\\u0631\\u0634\\u0627\\u0644\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/925e5e3325c2d2875ed3e15a55e1542a.jpg\"}', '0', '0', '1', '2024-11-26 20:26:46', '2024-11-26 20:26:46'), ('208', '0', '/cache/resized/15e5ceb1d4e3b094cf628e01a3883e43.jpg', '/cache/resized/15e5ceb1d4e3b094cf628e01a3883e43.jpg', 'fa/component/virtuemart/carpet/integer-egestas-detail', 'fa/component/virtuemart/carpet/integer-egestas-detail', '0', '{\"file_type\":\"\",\"width\":270,\"height\":170,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u062f\\u0627\\u0631\\u0648 \\u060c \\u062f\\u0631\\u0645\\u0627\\u0646 \\u060c \\u062a\\u0642\\u0648\\u06cc\\u062a\",\"title\":\"\\u062f\\u0627\\u0631\\u0648 \\u060c \\u062f\\u0631\\u0645\\u0627\\u0646 \\u060c \\u062a\\u0642\\u0648\\u06cc\\u062a\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/15e5ceb1d4e3b094cf628e01a3883e43.jpg\"}', '0', '0', '1', '2024-11-26 20:26:46', '2024-11-26 20:26:46'), ('209', '0', '/cache/resized/fff31f2466ed3c3158f1bb31d8dd6545.jpg', '/cache/resized/fff31f2466ed3c3158f1bb31d8dd6545.jpg', 'fa/component/virtuemart/carpet/integer-egestas-detail', 'fa/component/virtuemart/carpet/integer-egestas-detail', '0', '{\"file_type\":\"\",\"width\":270,\"height\":170,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u0627\\u06a9\\u0633\\u0633\\u0648\\u0631\\u06cc\",\"title\":\"\\u0627\\u06a9\\u0633\\u0633\\u0648\\u0631\\u06cc\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/fff31f2466ed3c3158f1bb31d8dd6545.jpg\"}', '0', '0', '1', '2024-11-26 20:26:46', '2024-11-26 20:26:46'), ('210', '0', '/cache/resized/63a61fb10d376a68620e960b3b7b3025.jpg', '/cache/resized/63a61fb10d376a68620e960b3b7b3025.jpg', 'fa/component/virtuemart/carpet/integer-egestas-detail', 'fa/component/virtuemart/carpet/integer-egestas-detail', '0', '{\"file_type\":\"\",\"width\":270,\"height\":170,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u0644\\u0628\\u0627\\u0633 \\u0648 \\u067e\\u0648\\u0634\\u0627\\u06a9\",\"title\":\"\\u0644\\u0628\\u0627\\u0633 \\u0648 \\u067e\\u0648\\u0634\\u0627\\u06a9\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/63a61fb10d376a68620e960b3b7b3025.jpg\"}', '0', '0', '1', '2024-11-26 20:26:46', '2024-11-26 20:26:46'), ('211', '0', '/cache/resized/136c2c6100d6310747ec6639b697de1b.jpg', '/cache/resized/136c2c6100d6310747ec6639b697de1b.jpg', 'fa/component/virtuemart/carpet/integer-egestas-detail', 'fa/component/virtuemart/carpet/integer-egestas-detail', '0', '{\"file_type\":\"\",\"width\":270,\"height\":170,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u062e\\u0648\\u0634\\u0628\\u0648 \\u06a9\\u0646\\u0646\\u062f\\u0647 \\u0647\\u0627\\u06cc \\u062c\\u0646\\u0633\\u06cc\",\"title\":\"\\u062e\\u0648\\u0634\\u0628\\u0648 \\u06a9\\u0646\\u0646\\u062f\\u0647 \\u0647\\u0627\\u06cc \\u062c\\u0646\\u0633\\u06cc\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/136c2c6100d6310747ec6639b697de1b.jpg\"}', '0', '0', '1', '2024-11-26 20:26:46', '2024-11-26 20:26:46'), ('212', '0', '/images/slider/cache/c7f2f558aae426cb618eb45d1779dcd5/slide1.jpg', '/images/slider/cache/c7f2f558aae426cb618eb45d1779dcd5/slide1.jpg', 'fa/component/virtuemart/carpet/integer-egestas-detail', 'fa/component/virtuemart/carpet/integer-egestas-detail', '0', '{\"file_type\":\"\",\"width\":1200,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/c7f2f558aae426cb618eb45d1779dcd5\\/slide1.jpg\"}', '0', '0', '0', '2024-11-26 20:26:46', '2024-11-26 20:26:46'), ('213', '0', '/images/slider/cache/0016c23135dbf72b71b938eb15ad6eba/slide2.jpg', '/images/slider/cache/0016c23135dbf72b71b938eb15ad6eba/slide2.jpg', 'fa/component/virtuemart/carpet/integer-egestas-detail', 'fa/component/virtuemart/carpet/integer-egestas-detail', '0', '{\"file_type\":\"\",\"width\":1200,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/0016c23135dbf72b71b938eb15ad6eba\\/slide2.jpg\"}', '0', '0', '0', '2024-11-26 20:26:46', '2024-11-26 20:26:46'), ('214', '0', '/images/slider/cache/cb936b74f5c90e00bc4b4b5b820f64a4/slide3.jpg', '/images/slider/cache/cb936b74f5c90e00bc4b4b5b820f64a4/slide3.jpg', 'fa/component/virtuemart/carpet/integer-egestas-detail', 'fa/component/virtuemart/carpet/integer-egestas-detail', '0', '{\"file_type\":\"\",\"width\":1200,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/cb936b74f5c90e00bc4b4b5b820f64a4\\/slide3.jpg\"}', '0', '0', '0', '2024-11-26 20:26:46', '2024-11-26 20:26:46'), ('215', '0', '/images/slider/cache/afba72876cbc644463efba8fe637cfe1/slide4.jpg', '/images/slider/cache/afba72876cbc644463efba8fe637cfe1/slide4.jpg', 'fa/component/virtuemart/carpet/integer-egestas-detail', 'fa/component/virtuemart/carpet/integer-egestas-detail', '0', '{\"file_type\":\"\",\"width\":1200,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/afba72876cbc644463efba8fe637cfe1\\/slide4.jpg\"}', '0', '0', '0', '2024-11-26 20:26:46', '2024-11-26 20:26:46'), ('216', '0', '/images/slider/cache/186f4f5acf07d06fb443fb709f910f0e/slide5.jpg', '/images/slider/cache/186f4f5acf07d06fb443fb709f910f0e/slide5.jpg', 'fa/component/virtuemart/carpet/integer-egestas-detail', 'fa/component/virtuemart/carpet/integer-egestas-detail', '0', '{\"file_type\":\"\",\"width\":1200,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/186f4f5acf07d06fb443fb709f910f0e\\/slide5.jpg\"}', '0', '0', '0', '2024-11-26 20:26:46', '2024-11-26 20:26:46'), ('217', '0', '/images/slider/cache/c6cc2ca1c1c96725142b1f65b39f5172/slide6.jpg', '/images/slider/cache/c6cc2ca1c1c96725142b1f65b39f5172/slide6.jpg', 'fa/component/virtuemart/carpet/integer-egestas-detail', 'fa/component/virtuemart/carpet/integer-egestas-detail', '0', '{\"file_type\":\"\",\"width\":1200,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/c6cc2ca1c1c96725142b1f65b39f5172\\/slide6.jpg\"}', '0', '0', '0', '2024-11-26 20:26:46', '2024-11-26 20:26:46'), ('218', '0', '/images/slider/cache/efe225be99ba9274f12b054076dd54a3/slide7.jpg', '/images/slider/cache/efe225be99ba9274f12b054076dd54a3/slide7.jpg', 'fa/component/virtuemart/carpet/integer-egestas-detail', 'fa/component/virtuemart/carpet/integer-egestas-detail', '0', '{\"file_type\":\"\",\"width\":1200,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/efe225be99ba9274f12b054076dd54a3\\/slide7.jpg\"}', '0', '0', '0', '2024-11-26 20:26:46', '2024-11-26 20:26:46'), ('219', '0', '/images/slider7/logo.png', '/images/slider7/logo.png', 'fa/component/virtuemart/carpet/integer-egestas-detail', 'fa/component/virtuemart/carpet/integer-egestas-detail', '0', '{\"file_type\":\"\",\"width\":255,\"height\":60,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"Image is not available\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider7\\/logo.png\"}', '0', '0', '0', '2024-11-26 20:26:46', '2024-11-26 20:26:46'), ('220', '0', '/images/slider7/services.png', '/images/slider7/services.png', 'fa/component/virtuemart/carpet/integer-egestas-detail', 'fa/component/virtuemart/carpet/integer-egestas-detail', '0', '{\"file_type\":\"\",\"width\":255,\"height\":41,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"Image is not available\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider7\\/services.png\"}', '0', '0', '0', '2024-11-26 20:26:46', '2024-11-26 20:26:46'), ('221', '0', '/cache/sj_revo/a2f6d727d39e671cc773f30bf01101a5.jpeg', '/cache/sj_revo/a2f6d727d39e671cc773f30bf01101a5.jpeg', 'fa/component/virtuemart/carpet/integer-egestas-detail', 'fa/component/virtuemart/carpet/integer-egestas-detail', '0', '{\"file_type\":\"\",\"width\":600,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/sj_revo\\/a2f6d727d39e671cc773f30bf01101a5.jpeg\"}', '0', '0', '1', '2024-11-26 20:26:46', '2024-11-26 20:26:46'), ('222', '0', '/images/demo/t1.png', '/images/demo/t1.png', 'fa/component/virtuemart/carpet/integer-egestas-detail', 'fa/component/virtuemart/carpet/integer-egestas-detail', '0', '{\"file_type\":\"\",\"width\":810,\"height\":420,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/images\\/demo\\/t1.png\"}', '0', '0', '0', '2024-11-26 20:26:46', '2024-11-26 20:26:46'), ('223', '0', '/images/demo/t2.jpg', '/images/demo/t2.jpg', 'fa/component/virtuemart/carpet/integer-egestas-detail', 'fa/component/virtuemart/carpet/integer-egestas-detail', '0', '{\"file_type\":\"\",\"width\":810,\"height\":420,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/images\\/demo\\/t2.jpg\"}', '0', '0', '0', '2024-11-26 20:26:46', '2024-11-26 20:26:46'), ('224', '0', '/images/demo/t3.jpg', '/images/demo/t3.jpg', 'fa/component/virtuemart/carpet/integer-egestas-detail', 'fa/component/virtuemart/carpet/integer-egestas-detail', '0', '{\"file_type\":\"\",\"width\":390,\"height\":420,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/images\\/demo\\/t3.jpg\"}', '0', '0', '0', '2024-11-26 20:26:46', '2024-11-26 20:26:46'), ('225', '0', '/images/demo/t4.jpg', '/images/demo/t4.jpg', 'fa/component/virtuemart/carpet/integer-egestas-detail', 'fa/component/virtuemart/carpet/integer-egestas-detail', '0', '{\"file_type\":\"\",\"width\":390,\"height\":420,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/images\\/demo\\/t4.jpg\"}', '0', '0', '0', '2024-11-26 20:26:46', '2024-11-26 20:26:46'), ('226', '0', '/images/slider/cache/1d28c922c1312bf431385bab8172673e/bg.jpg', '/images/slider/cache/1d28c922c1312bf431385bab8172673e/bg.jpg', 'fa/component/virtuemart/carpet/integer-egestas-detail', 'fa/component/virtuemart/carpet/integer-egestas-detail', '0', '{\"file_type\":\"\",\"width\":1920,\"height\":800,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/1d28c922c1312bf431385bab8172673e\\/bg.jpg\"}', '0', '0', '0', '2024-11-26 20:26:46', '2024-11-26 20:26:46'), ('227', '0', '/images/demo/methor.png', '/images/demo/methor.png', 'fa/component/virtuemart/carpet/integer-egestas-detail', 'fa/component/virtuemart/carpet/integer-egestas-detail', '0', '{\"file_type\":\"\",\"width\":387,\"height\":22,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/images\\/demo\\/methor.png\"}', '0', '0', '0', '2024-11-26 20:26:46', '2024-11-26 20:26:46'), ('228', '0', '/cache/resized/bf4b94d3b5a397fefc07091fa724bc7e.jpg', '/cache/resized/bf4b94d3b5a397fefc07091fa724bc7e.jpg', 'fa/virtuemart/product-detail', 'fa/virtuemart/product-detail', '0', '{\"file_type\":\"\",\"width\":300,\"height\":300,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u0622\\u0628\\u0645\\u06cc\\u0648\\u0647 \\u06af\\u06cc\\u0631 \\u0641\\u0648\\u0644 \\u0627\\u0645\\u06a9\\u0627\\u0646\\u0627\\u062a\",\"title\":\"\\u0622\\u0628\\u0645\\u06cc\\u0648\\u0647 \\u06af\\u06cc\\u0631 \\u0641\\u0648\\u0644 \\u0627\\u0645\\u06a9\\u0627\\u0646\\u0627\\u062a\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/bf4b94d3b5a397fefc07091fa724bc7e.jpg\"}', '0', '0', '1', '2024-11-26 20:31:11', '2024-11-26 20:31:11'), ('229', '0', '/cache/resized/47357fcb4fa747b9b2a48443711022b3.jpg', '/cache/resized/47357fcb4fa747b9b2a48443711022b3.jpg', 'fa/virtuemart/product-detail', 'fa/virtuemart/product-detail', '0', '{\"file_type\":\"\",\"width\":300,\"height\":300,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u0627\\u0633\\u067e\\u06cc\\u06a9\\u0631 \\u0641\\u0644\\u0634 \\u062e\\u0648\\u0631\",\"title\":\"\\u0627\\u0633\\u067e\\u06cc\\u06a9\\u0631 \\u0641\\u0644\\u0634 \\u062e\\u0648\\u0631\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/47357fcb4fa747b9b2a48443711022b3.jpg\"}', '0', '0', '1', '2024-11-26 20:31:11', '2024-11-26 20:31:11'), ('230', '0', '/cache/resized/925e5e3325c2d2875ed3e15a55e1542a.jpg', '/cache/resized/925e5e3325c2d2875ed3e15a55e1542a.jpg', 'fa/virtuemart/product-detail', 'fa/virtuemart/product-detail', '0', '{\"file_type\":\"\",\"width\":300,\"height\":300,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u0627\\u0633\\u067e\\u06cc\\u06a9\\u0631 \\u0645\\u0627\\u0631\\u0634\\u0627\\u0644\",\"title\":\"\\u0627\\u0633\\u067e\\u06cc\\u06a9\\u0631 \\u0645\\u0627\\u0631\\u0634\\u0627\\u0644\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/925e5e3325c2d2875ed3e15a55e1542a.jpg\"}', '0', '0', '1', '2024-11-26 20:31:11', '2024-11-26 20:31:11'), ('231', '0', '/cache/resized/15e5ceb1d4e3b094cf628e01a3883e43.jpg', '/cache/resized/15e5ceb1d4e3b094cf628e01a3883e43.jpg', 'fa/virtuemart/product-detail', 'fa/virtuemart/product-detail', '0', '{\"file_type\":\"\",\"width\":270,\"height\":170,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u062f\\u0627\\u0631\\u0648 \\u060c \\u062f\\u0631\\u0645\\u0627\\u0646 \\u060c \\u062a\\u0642\\u0648\\u06cc\\u062a\",\"title\":\"\\u062f\\u0627\\u0631\\u0648 \\u060c \\u062f\\u0631\\u0645\\u0627\\u0646 \\u060c \\u062a\\u0642\\u0648\\u06cc\\u062a\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/15e5ceb1d4e3b094cf628e01a3883e43.jpg\"}', '0', '0', '1', '2024-11-26 20:31:11', '2024-11-26 20:31:11'), ('232', '0', '/cache/resized/fff31f2466ed3c3158f1bb31d8dd6545.jpg', '/cache/resized/fff31f2466ed3c3158f1bb31d8dd6545.jpg', 'fa/virtuemart/product-detail', 'fa/virtuemart/product-detail', '0', '{\"file_type\":\"\",\"width\":270,\"height\":170,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u0627\\u06a9\\u0633\\u0633\\u0648\\u0631\\u06cc\",\"title\":\"\\u0627\\u06a9\\u0633\\u0633\\u0648\\u0631\\u06cc\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/fff31f2466ed3c3158f1bb31d8dd6545.jpg\"}', '0', '0', '1', '2024-11-26 20:31:11', '2024-11-26 20:31:11'), ('233', '0', '/cache/resized/63a61fb10d376a68620e960b3b7b3025.jpg', '/cache/resized/63a61fb10d376a68620e960b3b7b3025.jpg', 'fa/virtuemart/product-detail', 'fa/virtuemart/product-detail', '0', '{\"file_type\":\"\",\"width\":270,\"height\":170,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u0644\\u0628\\u0627\\u0633 \\u0648 \\u067e\\u0648\\u0634\\u0627\\u06a9\",\"title\":\"\\u0644\\u0628\\u0627\\u0633 \\u0648 \\u067e\\u0648\\u0634\\u0627\\u06a9\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/63a61fb10d376a68620e960b3b7b3025.jpg\"}', '0', '0', '1', '2024-11-26 20:31:11', '2024-11-26 20:31:11'), ('234', '0', '/cache/resized/136c2c6100d6310747ec6639b697de1b.jpg', '/cache/resized/136c2c6100d6310747ec6639b697de1b.jpg', 'fa/virtuemart/product-detail', 'fa/virtuemart/product-detail', '0', '{\"file_type\":\"\",\"width\":270,\"height\":170,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u062e\\u0648\\u0634\\u0628\\u0648 \\u06a9\\u0646\\u0646\\u062f\\u0647 \\u0647\\u0627\\u06cc \\u062c\\u0646\\u0633\\u06cc\",\"title\":\"\\u062e\\u0648\\u0634\\u0628\\u0648 \\u06a9\\u0646\\u0646\\u062f\\u0647 \\u0647\\u0627\\u06cc \\u062c\\u0646\\u0633\\u06cc\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/136c2c6100d6310747ec6639b697de1b.jpg\"}', '0', '0', '1', '2024-11-26 20:31:11', '2024-11-26 20:31:11'), ('235', '0', '/images/slider/cache/c7f2f558aae426cb618eb45d1779dcd5/slide1.jpg', '/images/slider/cache/c7f2f558aae426cb618eb45d1779dcd5/slide1.jpg', 'fa/virtuemart/product-detail', 'fa/virtuemart/product-detail', '0', '{\"file_type\":\"\",\"width\":1200,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/c7f2f558aae426cb618eb45d1779dcd5\\/slide1.jpg\"}', '0', '0', '0', '2024-11-26 20:31:11', '2024-11-26 20:31:11'), ('236', '0', '/images/slider/cache/0016c23135dbf72b71b938eb15ad6eba/slide2.jpg', '/images/slider/cache/0016c23135dbf72b71b938eb15ad6eba/slide2.jpg', 'fa/virtuemart/product-detail', 'fa/virtuemart/product-detail', '0', '{\"file_type\":\"\",\"width\":1200,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/0016c23135dbf72b71b938eb15ad6eba\\/slide2.jpg\"}', '0', '0', '0', '2024-11-26 20:31:11', '2024-11-26 20:31:11'), ('237', '0', '/images/slider/cache/cb936b74f5c90e00bc4b4b5b820f64a4/slide3.jpg', '/images/slider/cache/cb936b74f5c90e00bc4b4b5b820f64a4/slide3.jpg', 'fa/virtuemart/product-detail', 'fa/virtuemart/product-detail', '0', '{\"file_type\":\"\",\"width\":1200,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/cb936b74f5c90e00bc4b4b5b820f64a4\\/slide3.jpg\"}', '0', '0', '0', '2024-11-26 20:31:11', '2024-11-26 20:31:11'), ('238', '0', '/images/slider/cache/afba72876cbc644463efba8fe637cfe1/slide4.jpg', '/images/slider/cache/afba72876cbc644463efba8fe637cfe1/slide4.jpg', 'fa/virtuemart/product-detail', 'fa/virtuemart/product-detail', '0', '{\"file_type\":\"\",\"width\":1200,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/afba72876cbc644463efba8fe637cfe1\\/slide4.jpg\"}', '0', '0', '0', '2024-11-26 20:31:11', '2024-11-26 20:31:11'), ('239', '0', '/images/slider/cache/186f4f5acf07d06fb443fb709f910f0e/slide5.jpg', '/images/slider/cache/186f4f5acf07d06fb443fb709f910f0e/slide5.jpg', 'fa/virtuemart/product-detail', 'fa/virtuemart/product-detail', '0', '{\"file_type\":\"\",\"width\":1200,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/186f4f5acf07d06fb443fb709f910f0e\\/slide5.jpg\"}', '0', '0', '0', '2024-11-26 20:31:11', '2024-11-26 20:31:11'), ('240', '0', '/images/slider/cache/c6cc2ca1c1c96725142b1f65b39f5172/slide6.jpg', '/images/slider/cache/c6cc2ca1c1c96725142b1f65b39f5172/slide6.jpg', 'fa/virtuemart/product-detail', 'fa/virtuemart/product-detail', '0', '{\"file_type\":\"\",\"width\":1200,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/c6cc2ca1c1c96725142b1f65b39f5172\\/slide6.jpg\"}', '0', '0', '0', '2024-11-26 20:31:11', '2024-11-26 20:31:11'), ('241', '0', '/images/slider/cache/efe225be99ba9274f12b054076dd54a3/slide7.jpg', '/images/slider/cache/efe225be99ba9274f12b054076dd54a3/slide7.jpg', 'fa/virtuemart/product-detail', 'fa/virtuemart/product-detail', '0', '{\"file_type\":\"\",\"width\":1200,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/efe225be99ba9274f12b054076dd54a3\\/slide7.jpg\"}', '0', '0', '0', '2024-11-26 20:31:11', '2024-11-26 20:31:11'), ('242', '0', '/images/slider7/logo.png', '/images/slider7/logo.png', 'fa/virtuemart/product-detail', 'fa/virtuemart/product-detail', '0', '{\"file_type\":\"\",\"width\":255,\"height\":60,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"Image is not available\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider7\\/logo.png\"}', '0', '0', '0', '2024-11-26 20:31:11', '2024-11-26 20:31:11'), ('243', '0', '/images/slider7/services.png', '/images/slider7/services.png', 'fa/virtuemart/product-detail', 'fa/virtuemart/product-detail', '0', '{\"file_type\":\"\",\"width\":255,\"height\":41,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"Image is not available\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider7\\/services.png\"}', '0', '0', '0', '2024-11-26 20:31:11', '2024-11-26 20:31:11'), ('244', '0', '/cache/sj_revo/1f91ecd75b23352d17f32fe18c576eb6.jpeg', '/cache/sj_revo/1f91ecd75b23352d17f32fe18c576eb6.jpeg', 'fa/virtuemart/product-detail', 'fa/virtuemart/product-detail', '0', '{\"file_type\":\"\",\"width\":600,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/sj_revo\\/1f91ecd75b23352d17f32fe18c576eb6.jpeg\"}', '0', '0', '1', '2024-11-26 20:31:11', '2024-11-26 20:31:11'), ('245', '0', '/images/demo/t1.png', '/images/demo/t1.png', 'fa/virtuemart/product-detail', 'fa/virtuemart/product-detail', '0', '{\"file_type\":\"\",\"width\":810,\"height\":420,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/images\\/demo\\/t1.png\"}', '0', '0', '0', '2024-11-26 20:31:11', '2024-11-26 20:31:11'), ('246', '0', '/images/demo/t2.jpg', '/images/demo/t2.jpg', 'fa/virtuemart/product-detail', 'fa/virtuemart/product-detail', '0', '{\"file_type\":\"\",\"width\":810,\"height\":420,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/images\\/demo\\/t2.jpg\"}', '0', '0', '0', '2024-11-26 20:31:11', '2024-11-26 20:31:11'), ('247', '0', '/images/demo/t3.jpg', '/images/demo/t3.jpg', 'fa/virtuemart/product-detail', 'fa/virtuemart/product-detail', '0', '{\"file_type\":\"\",\"width\":390,\"height\":420,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/images\\/demo\\/t3.jpg\"}', '0', '0', '0', '2024-11-26 20:31:11', '2024-11-26 20:31:11'), ('248', '0', '/images/demo/t4.jpg', '/images/demo/t4.jpg', 'fa/virtuemart/product-detail', 'fa/virtuemart/product-detail', '0', '{\"file_type\":\"\",\"width\":390,\"height\":420,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/images\\/demo\\/t4.jpg\"}', '0', '0', '0', '2024-11-26 20:31:11', '2024-11-26 20:31:11'), ('249', '0', '/images/stories/virtuemart/product/resized/v63_270x270.jpg', '/images/stories/virtuemart/product/resized/v63_270x270.jpg', 'fa/virtuemart/product-detail', 'fa/virtuemart/product-detail', '0', '{\"file_type\":\"\",\"width\":270,\"height\":270,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"v63\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/images\\/stories\\/virtuemart\\/product\\/resized\\/v63_270x270.jpg\"}', '0', '0', '0', '2024-11-26 20:31:11', '2024-11-26 20:31:11'), ('250', '0', '/images/stories/virtuemart/product/resized/b6_270x270.jpg', '/images/stories/virtuemart/product/resized/b6_270x270.jpg', 'fa/virtuemart/product-detail', 'fa/virtuemart/product-detail', '0', '{\"file_type\":\"\",\"width\":270,\"height\":270,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"b6\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/images\\/stories\\/virtuemart\\/product\\/resized\\/b6_270x270.jpg\"}', '0', '0', '0', '2024-11-26 20:31:11', '2024-11-26 20:31:11'), ('251', '0', '/images/stories/virtuemart/product/resized/m50_270x270.jpg', '/images/stories/virtuemart/product/resized/m50_270x270.jpg', 'fa/virtuemart/product-detail', 'fa/virtuemart/product-detail', '0', '{\"file_type\":\"\",\"width\":270,\"height\":270,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"m50\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/images\\/stories\\/virtuemart\\/product\\/resized\\/m50_270x270.jpg\"}', '0', '0', '0', '2024-11-26 20:31:11', '2024-11-26 20:31:11'), ('252', '0', '/images/stories/virtuemart/product/resized/g27_270x270.jpg', '/images/stories/virtuemart/product/resized/g27_270x270.jpg', 'fa/virtuemart/product-detail', 'fa/virtuemart/product-detail', '0', '{\"file_type\":\"\",\"width\":270,\"height\":270,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"g27\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/images\\/stories\\/virtuemart\\/product\\/resized\\/g27_270x270.jpg\"}', '0', '0', '0', '2024-11-26 20:31:11', '2024-11-26 20:31:11'), ('253', '0', '/images/stories/virtuemart/product/resized/h32_270x270.jpg', '/images/stories/virtuemart/product/resized/h32_270x270.jpg', 'fa/virtuemart/product-detail', 'fa/virtuemart/product-detail', '0', '{\"file_type\":\"\",\"width\":270,\"height\":270,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"h32\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/images\\/stories\\/virtuemart\\/product\\/resized\\/h32_270x270.jpg\"}', '0', '0', '0', '2024-11-26 20:31:11', '2024-11-26 20:31:11'), ('254', '0', '/images/demo/banner-left.jpg', '/images/demo/banner-left.jpg', 'fa/virtuemart/product-detail', 'fa/virtuemart/product-detail', '0', '{\"file_type\":\"\",\"width\":270,\"height\":369,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/images\\/demo\\/banner-left.jpg\"}', '0', '0', '0', '2024-11-26 20:31:11', '2024-11-26 20:31:11'), ('255', '0', '/images/slider/cache/1d28c922c1312bf431385bab8172673e/bg.jpg', '/images/slider/cache/1d28c922c1312bf431385bab8172673e/bg.jpg', 'fa/virtuemart/product-detail', 'fa/virtuemart/product-detail', '0', '{\"file_type\":\"\",\"width\":1920,\"height\":800,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/1d28c922c1312bf431385bab8172673e\\/bg.jpg\"}', '0', '0', '0', '2024-11-26 20:31:11', '2024-11-26 20:31:11'), ('256', '0', '/images/demo/methor.png', '/images/demo/methor.png', 'fa/virtuemart/product-detail', 'fa/virtuemart/product-detail', '0', '{\"file_type\":\"\",\"width\":387,\"height\":22,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/images\\/demo\\/methor.png\"}', '0', '0', '0', '2024-11-26 20:31:11', '2024-11-26 20:31:11'), ('257', '0', '/cache/resized/bf4b94d3b5a397fefc07091fa724bc7e.jpg', '/cache/resized/bf4b94d3b5a397fefc07091fa724bc7e.jpg', 'fa/virtuemart/product-category/morbi-vulputate-diam-detail', 'fa/virtuemart/product-category/morbi-vulputate-diam-detail', '0', '{\"file_type\":\"\",\"width\":300,\"height\":300,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u0622\\u0628\\u0645\\u06cc\\u0648\\u0647 \\u06af\\u06cc\\u0631 \\u0641\\u0648\\u0644 \\u0627\\u0645\\u06a9\\u0627\\u0646\\u0627\\u062a\",\"title\":\"\\u0622\\u0628\\u0645\\u06cc\\u0648\\u0647 \\u06af\\u06cc\\u0631 \\u0641\\u0648\\u0644 \\u0627\\u0645\\u06a9\\u0627\\u0646\\u0627\\u062a\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/bf4b94d3b5a397fefc07091fa724bc7e.jpg\"}', '0', '0', '1', '2024-11-26 20:31:22', '2024-11-26 20:31:22'), ('258', '0', '/cache/resized/47357fcb4fa747b9b2a48443711022b3.jpg', '/cache/resized/47357fcb4fa747b9b2a48443711022b3.jpg', 'fa/virtuemart/product-category/morbi-vulputate-diam-detail', 'fa/virtuemart/product-category/morbi-vulputate-diam-detail', '0', '{\"file_type\":\"\",\"width\":300,\"height\":300,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u0627\\u0633\\u067e\\u06cc\\u06a9\\u0631 \\u0641\\u0644\\u0634 \\u062e\\u0648\\u0631\",\"title\":\"\\u0627\\u0633\\u067e\\u06cc\\u06a9\\u0631 \\u0641\\u0644\\u0634 \\u062e\\u0648\\u0631\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/47357fcb4fa747b9b2a48443711022b3.jpg\"}', '0', '0', '1', '2024-11-26 20:31:22', '2024-11-26 20:31:22'), ('259', '0', '/cache/resized/925e5e3325c2d2875ed3e15a55e1542a.jpg', '/cache/resized/925e5e3325c2d2875ed3e15a55e1542a.jpg', 'fa/virtuemart/product-category/morbi-vulputate-diam-detail', 'fa/virtuemart/product-category/morbi-vulputate-diam-detail', '0', '{\"file_type\":\"\",\"width\":300,\"height\":300,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u0627\\u0633\\u067e\\u06cc\\u06a9\\u0631 \\u0645\\u0627\\u0631\\u0634\\u0627\\u0644\",\"title\":\"\\u0627\\u0633\\u067e\\u06cc\\u06a9\\u0631 \\u0645\\u0627\\u0631\\u0634\\u0627\\u0644\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/925e5e3325c2d2875ed3e15a55e1542a.jpg\"}', '0', '0', '1', '2024-11-26 20:31:22', '2024-11-26 20:31:22'), ('260', '0', '/cache/resized/15e5ceb1d4e3b094cf628e01a3883e43.jpg', '/cache/resized/15e5ceb1d4e3b094cf628e01a3883e43.jpg', 'fa/virtuemart/product-category/morbi-vulputate-diam-detail', 'fa/virtuemart/product-category/morbi-vulputate-diam-detail', '0', '{\"file_type\":\"\",\"width\":270,\"height\":170,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u062f\\u0627\\u0631\\u0648 \\u060c \\u062f\\u0631\\u0645\\u0627\\u0646 \\u060c \\u062a\\u0642\\u0648\\u06cc\\u062a\",\"title\":\"\\u062f\\u0627\\u0631\\u0648 \\u060c \\u062f\\u0631\\u0645\\u0627\\u0646 \\u060c \\u062a\\u0642\\u0648\\u06cc\\u062a\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/15e5ceb1d4e3b094cf628e01a3883e43.jpg\"}', '0', '0', '1', '2024-11-26 20:31:22', '2024-11-26 20:31:22'), ('261', '0', '/cache/resized/fff31f2466ed3c3158f1bb31d8dd6545.jpg', '/cache/resized/fff31f2466ed3c3158f1bb31d8dd6545.jpg', 'fa/virtuemart/product-category/morbi-vulputate-diam-detail', 'fa/virtuemart/product-category/morbi-vulputate-diam-detail', '0', '{\"file_type\":\"\",\"width\":270,\"height\":170,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u0627\\u06a9\\u0633\\u0633\\u0648\\u0631\\u06cc\",\"title\":\"\\u0627\\u06a9\\u0633\\u0633\\u0648\\u0631\\u06cc\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/fff31f2466ed3c3158f1bb31d8dd6545.jpg\"}', '0', '0', '1', '2024-11-26 20:31:22', '2024-11-26 20:31:22'), ('262', '0', '/cache/resized/63a61fb10d376a68620e960b3b7b3025.jpg', '/cache/resized/63a61fb10d376a68620e960b3b7b3025.jpg', 'fa/virtuemart/product-category/morbi-vulputate-diam-detail', 'fa/virtuemart/product-category/morbi-vulputate-diam-detail', '0', '{\"file_type\":\"\",\"width\":270,\"height\":170,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u0644\\u0628\\u0627\\u0633 \\u0648 \\u067e\\u0648\\u0634\\u0627\\u06a9\",\"title\":\"\\u0644\\u0628\\u0627\\u0633 \\u0648 \\u067e\\u0648\\u0634\\u0627\\u06a9\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/63a61fb10d376a68620e960b3b7b3025.jpg\"}', '0', '0', '1', '2024-11-26 20:31:22', '2024-11-26 20:31:22'), ('263', '0', '/cache/resized/136c2c6100d6310747ec6639b697de1b.jpg', '/cache/resized/136c2c6100d6310747ec6639b697de1b.jpg', 'fa/virtuemart/product-category/morbi-vulputate-diam-detail', 'fa/virtuemart/product-category/morbi-vulputate-diam-detail', '0', '{\"file_type\":\"\",\"width\":270,\"height\":170,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u062e\\u0648\\u0634\\u0628\\u0648 \\u06a9\\u0646\\u0646\\u062f\\u0647 \\u0647\\u0627\\u06cc \\u062c\\u0646\\u0633\\u06cc\",\"title\":\"\\u062e\\u0648\\u0634\\u0628\\u0648 \\u06a9\\u0646\\u0646\\u062f\\u0647 \\u0647\\u0627\\u06cc \\u062c\\u0646\\u0633\\u06cc\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/136c2c6100d6310747ec6639b697de1b.jpg\"}', '0', '0', '1', '2024-11-26 20:31:22', '2024-11-26 20:31:22'), ('264', '0', '/images/slider/cache/c7f2f558aae426cb618eb45d1779dcd5/slide1.jpg', '/images/slider/cache/c7f2f558aae426cb618eb45d1779dcd5/slide1.jpg', 'fa/virtuemart/product-category/morbi-vulputate-diam-detail', 'fa/virtuemart/product-category/morbi-vulputate-diam-detail', '0', '{\"file_type\":\"\",\"width\":1200,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/c7f2f558aae426cb618eb45d1779dcd5\\/slide1.jpg\"}', '0', '0', '0', '2024-11-26 20:31:22', '2024-11-26 20:31:22'), ('265', '0', '/images/slider/cache/0016c23135dbf72b71b938eb15ad6eba/slide2.jpg', '/images/slider/cache/0016c23135dbf72b71b938eb15ad6eba/slide2.jpg', 'fa/virtuemart/product-category/morbi-vulputate-diam-detail', 'fa/virtuemart/product-category/morbi-vulputate-diam-detail', '0', '{\"file_type\":\"\",\"width\":1200,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/0016c23135dbf72b71b938eb15ad6eba\\/slide2.jpg\"}', '0', '0', '0', '2024-11-26 20:31:22', '2024-11-26 20:31:22'), ('266', '0', '/images/slider/cache/cb936b74f5c90e00bc4b4b5b820f64a4/slide3.jpg', '/images/slider/cache/cb936b74f5c90e00bc4b4b5b820f64a4/slide3.jpg', 'fa/virtuemart/product-category/morbi-vulputate-diam-detail', 'fa/virtuemart/product-category/morbi-vulputate-diam-detail', '0', '{\"file_type\":\"\",\"width\":1200,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/cb936b74f5c90e00bc4b4b5b820f64a4\\/slide3.jpg\"}', '0', '0', '0', '2024-11-26 20:31:22', '2024-11-26 20:31:22'), ('267', '0', '/images/slider/cache/afba72876cbc644463efba8fe637cfe1/slide4.jpg', '/images/slider/cache/afba72876cbc644463efba8fe637cfe1/slide4.jpg', 'fa/virtuemart/product-category/morbi-vulputate-diam-detail', 'fa/virtuemart/product-category/morbi-vulputate-diam-detail', '0', '{\"file_type\":\"\",\"width\":1200,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/afba72876cbc644463efba8fe637cfe1\\/slide4.jpg\"}', '0', '0', '0', '2024-11-26 20:31:22', '2024-11-26 20:31:22'), ('268', '0', '/images/slider/cache/186f4f5acf07d06fb443fb709f910f0e/slide5.jpg', '/images/slider/cache/186f4f5acf07d06fb443fb709f910f0e/slide5.jpg', 'fa/virtuemart/product-category/morbi-vulputate-diam-detail', 'fa/virtuemart/product-category/morbi-vulputate-diam-detail', '0', '{\"file_type\":\"\",\"width\":1200,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/186f4f5acf07d06fb443fb709f910f0e\\/slide5.jpg\"}', '0', '0', '0', '2024-11-26 20:31:22', '2024-11-26 20:31:22'), ('269', '0', '/images/slider/cache/c6cc2ca1c1c96725142b1f65b39f5172/slide6.jpg', '/images/slider/cache/c6cc2ca1c1c96725142b1f65b39f5172/slide6.jpg', 'fa/virtuemart/product-category/morbi-vulputate-diam-detail', 'fa/virtuemart/product-category/morbi-vulputate-diam-detail', '0', '{\"file_type\":\"\",\"width\":1200,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/c6cc2ca1c1c96725142b1f65b39f5172\\/slide6.jpg\"}', '0', '0', '0', '2024-11-26 20:31:22', '2024-11-26 20:31:22'), ('270', '0', '/images/slider/cache/efe225be99ba9274f12b054076dd54a3/slide7.jpg', '/images/slider/cache/efe225be99ba9274f12b054076dd54a3/slide7.jpg', 'fa/virtuemart/product-category/morbi-vulputate-diam-detail', 'fa/virtuemart/product-category/morbi-vulputate-diam-detail', '0', '{\"file_type\":\"\",\"width\":1200,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/efe225be99ba9274f12b054076dd54a3\\/slide7.jpg\"}', '0', '0', '0', '2024-11-26 20:31:22', '2024-11-26 20:31:22'), ('271', '0', '/images/slider7/logo.png', '/images/slider7/logo.png', 'fa/virtuemart/product-category/morbi-vulputate-diam-detail', 'fa/virtuemart/product-category/morbi-vulputate-diam-detail', '0', '{\"file_type\":\"\",\"width\":255,\"height\":60,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"Image is not available\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider7\\/logo.png\"}', '0', '0', '0', '2024-11-26 20:31:22', '2024-11-26 20:31:22'), ('272', '0', '/images/slider7/services.png', '/images/slider7/services.png', 'fa/virtuemart/product-category/morbi-vulputate-diam-detail', 'fa/virtuemart/product-category/morbi-vulputate-diam-detail', '0', '{\"file_type\":\"\",\"width\":255,\"height\":41,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"Image is not available\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider7\\/services.png\"}', '0', '0', '0', '2024-11-26 20:31:22', '2024-11-26 20:31:22'), ('273', '0', '/cache/sj_revo/dae44943bc3c9ad4687fd0062bd437e5.jpeg', '/cache/sj_revo/dae44943bc3c9ad4687fd0062bd437e5.jpeg', 'fa/virtuemart/product-category/morbi-vulputate-diam-detail', 'fa/virtuemart/product-category/morbi-vulputate-diam-detail', '0', '{\"file_type\":\"\",\"width\":600,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/sj_revo\\/dae44943bc3c9ad4687fd0062bd437e5.jpeg\"}', '0', '0', '1', '2024-11-26 20:31:22', '2024-11-26 20:31:22'), ('274', '0', '/images/demo/t1.png', '/images/demo/t1.png', 'fa/virtuemart/product-category/morbi-vulputate-diam-detail', 'fa/virtuemart/product-category/morbi-vulputate-diam-detail', '0', '{\"file_type\":\"\",\"width\":810,\"height\":420,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/images\\/demo\\/t1.png\"}', '0', '0', '0', '2024-11-26 20:31:22', '2024-11-26 20:31:22'), ('275', '0', '/images/demo/t2.jpg', '/images/demo/t2.jpg', 'fa/virtuemart/product-category/morbi-vulputate-diam-detail', 'fa/virtuemart/product-category/morbi-vulputate-diam-detail', '0', '{\"file_type\":\"\",\"width\":810,\"height\":420,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/images\\/demo\\/t2.jpg\"}', '0', '0', '0', '2024-11-26 20:31:22', '2024-11-26 20:31:22'), ('276', '0', '/images/demo/t3.jpg', '/images/demo/t3.jpg', 'fa/virtuemart/product-category/morbi-vulputate-diam-detail', 'fa/virtuemart/product-category/morbi-vulputate-diam-detail', '0', '{\"file_type\":\"\",\"width\":390,\"height\":420,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/images\\/demo\\/t3.jpg\"}', '0', '0', '0', '2024-11-26 20:31:22', '2024-11-26 20:31:22'), ('277', '0', '/images/demo/t4.jpg', '/images/demo/t4.jpg', 'fa/virtuemart/product-category/morbi-vulputate-diam-detail', 'fa/virtuemart/product-category/morbi-vulputate-diam-detail', '0', '{\"file_type\":\"\",\"width\":390,\"height\":420,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/images\\/demo\\/t4.jpg\"}', '0', '0', '0', '2024-11-26 20:31:22', '2024-11-26 20:31:22'), ('278', '0', '/images/demo/banner-left.jpg', '/images/demo/banner-left.jpg', 'fa/virtuemart/product-category/morbi-vulputate-diam-detail', 'fa/virtuemart/product-category/morbi-vulputate-diam-detail', '0', '{\"file_type\":\"\",\"width\":270,\"height\":369,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/images\\/demo\\/banner-left.jpg\"}', '0', '0', '0', '2024-11-26 20:31:22', '2024-11-26 20:31:22'), ('279', '0', '/images/slider/cache/1d28c922c1312bf431385bab8172673e/bg.jpg', '/images/slider/cache/1d28c922c1312bf431385bab8172673e/bg.jpg', 'fa/virtuemart/product-category/morbi-vulputate-diam-detail', 'fa/virtuemart/product-category/morbi-vulputate-diam-detail', '0', '{\"file_type\":\"\",\"width\":1920,\"height\":800,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/1d28c922c1312bf431385bab8172673e\\/bg.jpg\"}', '0', '0', '0', '2024-11-26 20:31:22', '2024-11-26 20:31:22'), ('280', '0', '/images/demo/methor.png', '/images/demo/methor.png', 'fa/virtuemart/product-category/morbi-vulputate-diam-detail', 'fa/virtuemart/product-category/morbi-vulputate-diam-detail', '0', '{\"file_type\":\"\",\"width\":387,\"height\":22,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/images\\/demo\\/methor.png\"}', '0', '0', '0', '2024-11-26 20:31:22', '2024-11-26 20:31:22'), ('281', '0', '/cache/resized/bf4b94d3b5a397fefc07091fa724bc7e.jpg', '/cache/resized/bf4b94d3b5a397fefc07091fa724bc7e.jpg', 'fa/virtuemart/product-category/aenean-vehicula-vehic-detail', 'fa/virtuemart/product-category/aenean-vehicula-vehic-detail', '0', '{\"file_type\":\"\",\"width\":300,\"height\":300,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u0622\\u0628\\u0645\\u06cc\\u0648\\u0647 \\u06af\\u06cc\\u0631 \\u0641\\u0648\\u0644 \\u0627\\u0645\\u06a9\\u0627\\u0646\\u0627\\u062a\",\"title\":\"\\u0622\\u0628\\u0645\\u06cc\\u0648\\u0647 \\u06af\\u06cc\\u0631 \\u0641\\u0648\\u0644 \\u0627\\u0645\\u06a9\\u0627\\u0646\\u0627\\u062a\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/bf4b94d3b5a397fefc07091fa724bc7e.jpg\"}', '0', '0', '1', '2024-11-26 20:31:33', '2024-11-26 20:31:33'), ('282', '0', '/cache/resized/47357fcb4fa747b9b2a48443711022b3.jpg', '/cache/resized/47357fcb4fa747b9b2a48443711022b3.jpg', 'fa/virtuemart/product-category/aenean-vehicula-vehic-detail', 'fa/virtuemart/product-category/aenean-vehicula-vehic-detail', '0', '{\"file_type\":\"\",\"width\":300,\"height\":300,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u0627\\u0633\\u067e\\u06cc\\u06a9\\u0631 \\u0641\\u0644\\u0634 \\u062e\\u0648\\u0631\",\"title\":\"\\u0627\\u0633\\u067e\\u06cc\\u06a9\\u0631 \\u0641\\u0644\\u0634 \\u062e\\u0648\\u0631\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/47357fcb4fa747b9b2a48443711022b3.jpg\"}', '0', '0', '1', '2024-11-26 20:31:33', '2024-11-26 20:31:33'), ('283', '0', '/cache/resized/925e5e3325c2d2875ed3e15a55e1542a.jpg', '/cache/resized/925e5e3325c2d2875ed3e15a55e1542a.jpg', 'fa/virtuemart/product-category/aenean-vehicula-vehic-detail', 'fa/virtuemart/product-category/aenean-vehicula-vehic-detail', '0', '{\"file_type\":\"\",\"width\":300,\"height\":300,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u0627\\u0633\\u067e\\u06cc\\u06a9\\u0631 \\u0645\\u0627\\u0631\\u0634\\u0627\\u0644\",\"title\":\"\\u0627\\u0633\\u067e\\u06cc\\u06a9\\u0631 \\u0645\\u0627\\u0631\\u0634\\u0627\\u0644\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/925e5e3325c2d2875ed3e15a55e1542a.jpg\"}', '0', '0', '1', '2024-11-26 20:31:33', '2024-11-26 20:31:33'), ('284', '0', '/cache/resized/15e5ceb1d4e3b094cf628e01a3883e43.jpg', '/cache/resized/15e5ceb1d4e3b094cf628e01a3883e43.jpg', 'fa/virtuemart/product-category/aenean-vehicula-vehic-detail', 'fa/virtuemart/product-category/aenean-vehicula-vehic-detail', '0', '{\"file_type\":\"\",\"width\":270,\"height\":170,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u062f\\u0627\\u0631\\u0648 \\u060c \\u062f\\u0631\\u0645\\u0627\\u0646 \\u060c \\u062a\\u0642\\u0648\\u06cc\\u062a\",\"title\":\"\\u062f\\u0627\\u0631\\u0648 \\u060c \\u062f\\u0631\\u0645\\u0627\\u0646 \\u060c \\u062a\\u0642\\u0648\\u06cc\\u062a\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/15e5ceb1d4e3b094cf628e01a3883e43.jpg\"}', '0', '0', '1', '2024-11-26 20:31:33', '2024-11-26 20:31:33'), ('285', '0', '/cache/resized/fff31f2466ed3c3158f1bb31d8dd6545.jpg', '/cache/resized/fff31f2466ed3c3158f1bb31d8dd6545.jpg', 'fa/virtuemart/product-category/aenean-vehicula-vehic-detail', 'fa/virtuemart/product-category/aenean-vehicula-vehic-detail', '0', '{\"file_type\":\"\",\"width\":270,\"height\":170,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u0627\\u06a9\\u0633\\u0633\\u0648\\u0631\\u06cc\",\"title\":\"\\u0627\\u06a9\\u0633\\u0633\\u0648\\u0631\\u06cc\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/fff31f2466ed3c3158f1bb31d8dd6545.jpg\"}', '0', '0', '1', '2024-11-26 20:31:33', '2024-11-26 20:31:33'), ('286', '0', '/cache/resized/63a61fb10d376a68620e960b3b7b3025.jpg', '/cache/resized/63a61fb10d376a68620e960b3b7b3025.jpg', 'fa/virtuemart/product-category/aenean-vehicula-vehic-detail', 'fa/virtuemart/product-category/aenean-vehicula-vehic-detail', '0', '{\"file_type\":\"\",\"width\":270,\"height\":170,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u0644\\u0628\\u0627\\u0633 \\u0648 \\u067e\\u0648\\u0634\\u0627\\u06a9\",\"title\":\"\\u0644\\u0628\\u0627\\u0633 \\u0648 \\u067e\\u0648\\u0634\\u0627\\u06a9\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/63a61fb10d376a68620e960b3b7b3025.jpg\"}', '0', '0', '1', '2024-11-26 20:31:33', '2024-11-26 20:31:33'), ('287', '0', '/cache/resized/136c2c6100d6310747ec6639b697de1b.jpg', '/cache/resized/136c2c6100d6310747ec6639b697de1b.jpg', 'fa/virtuemart/product-category/aenean-vehicula-vehic-detail', 'fa/virtuemart/product-category/aenean-vehicula-vehic-detail', '0', '{\"file_type\":\"\",\"width\":270,\"height\":170,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u062e\\u0648\\u0634\\u0628\\u0648 \\u06a9\\u0646\\u0646\\u062f\\u0647 \\u0647\\u0627\\u06cc \\u062c\\u0646\\u0633\\u06cc\",\"title\":\"\\u062e\\u0648\\u0634\\u0628\\u0648 \\u06a9\\u0646\\u0646\\u062f\\u0647 \\u0647\\u0627\\u06cc \\u062c\\u0646\\u0633\\u06cc\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/136c2c6100d6310747ec6639b697de1b.jpg\"}', '0', '0', '1', '2024-11-26 20:31:33', '2024-11-26 20:31:33'), ('288', '0', '/images/slider/cache/c7f2f558aae426cb618eb45d1779dcd5/slide1.jpg', '/images/slider/cache/c7f2f558aae426cb618eb45d1779dcd5/slide1.jpg', 'fa/virtuemart/product-category/aenean-vehicula-vehic-detail', 'fa/virtuemart/product-category/aenean-vehicula-vehic-detail', '0', '{\"file_type\":\"\",\"width\":1200,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/c7f2f558aae426cb618eb45d1779dcd5\\/slide1.jpg\"}', '0', '0', '0', '2024-11-26 20:31:33', '2024-11-26 20:31:33'), ('289', '0', '/images/slider/cache/0016c23135dbf72b71b938eb15ad6eba/slide2.jpg', '/images/slider/cache/0016c23135dbf72b71b938eb15ad6eba/slide2.jpg', 'fa/virtuemart/product-category/aenean-vehicula-vehic-detail', 'fa/virtuemart/product-category/aenean-vehicula-vehic-detail', '0', '{\"file_type\":\"\",\"width\":1200,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/0016c23135dbf72b71b938eb15ad6eba\\/slide2.jpg\"}', '0', '0', '0', '2024-11-26 20:31:33', '2024-11-26 20:31:33'), ('290', '0', '/images/slider/cache/cb936b74f5c90e00bc4b4b5b820f64a4/slide3.jpg', '/images/slider/cache/cb936b74f5c90e00bc4b4b5b820f64a4/slide3.jpg', 'fa/virtuemart/product-category/aenean-vehicula-vehic-detail', 'fa/virtuemart/product-category/aenean-vehicula-vehic-detail', '0', '{\"file_type\":\"\",\"width\":1200,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/cb936b74f5c90e00bc4b4b5b820f64a4\\/slide3.jpg\"}', '0', '0', '0', '2024-11-26 20:31:33', '2024-11-26 20:31:33'), ('291', '0', '/images/slider/cache/afba72876cbc644463efba8fe637cfe1/slide4.jpg', '/images/slider/cache/afba72876cbc644463efba8fe637cfe1/slide4.jpg', 'fa/virtuemart/product-category/aenean-vehicula-vehic-detail', 'fa/virtuemart/product-category/aenean-vehicula-vehic-detail', '0', '{\"file_type\":\"\",\"width\":1200,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/afba72876cbc644463efba8fe637cfe1\\/slide4.jpg\"}', '0', '0', '0', '2024-11-26 20:31:33', '2024-11-26 20:31:33'), ('292', '0', '/images/slider/cache/186f4f5acf07d06fb443fb709f910f0e/slide5.jpg', '/images/slider/cache/186f4f5acf07d06fb443fb709f910f0e/slide5.jpg', 'fa/virtuemart/product-category/aenean-vehicula-vehic-detail', 'fa/virtuemart/product-category/aenean-vehicula-vehic-detail', '0', '{\"file_type\":\"\",\"width\":1200,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/186f4f5acf07d06fb443fb709f910f0e\\/slide5.jpg\"}', '0', '0', '0', '2024-11-26 20:31:33', '2024-11-26 20:31:33'), ('293', '0', '/images/slider/cache/c6cc2ca1c1c96725142b1f65b39f5172/slide6.jpg', '/images/slider/cache/c6cc2ca1c1c96725142b1f65b39f5172/slide6.jpg', 'fa/virtuemart/product-category/aenean-vehicula-vehic-detail', 'fa/virtuemart/product-category/aenean-vehicula-vehic-detail', '0', '{\"file_type\":\"\",\"width\":1200,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/c6cc2ca1c1c96725142b1f65b39f5172\\/slide6.jpg\"}', '0', '0', '0', '2024-11-26 20:31:33', '2024-11-26 20:31:33'), ('294', '0', '/images/slider/cache/efe225be99ba9274f12b054076dd54a3/slide7.jpg', '/images/slider/cache/efe225be99ba9274f12b054076dd54a3/slide7.jpg', 'fa/virtuemart/product-category/aenean-vehicula-vehic-detail', 'fa/virtuemart/product-category/aenean-vehicula-vehic-detail', '0', '{\"file_type\":\"\",\"width\":1200,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/efe225be99ba9274f12b054076dd54a3\\/slide7.jpg\"}', '0', '0', '0', '2024-11-26 20:31:33', '2024-11-26 20:31:33'), ('295', '0', '/images/slider7/logo.png', '/images/slider7/logo.png', 'fa/virtuemart/product-category/aenean-vehicula-vehic-detail', 'fa/virtuemart/product-category/aenean-vehicula-vehic-detail', '0', '{\"file_type\":\"\",\"width\":255,\"height\":60,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"Image is not available\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider7\\/logo.png\"}', '0', '0', '0', '2024-11-26 20:31:33', '2024-11-26 20:31:33'), ('296', '0', '/images/slider7/services.png', '/images/slider7/services.png', 'fa/virtuemart/product-category/aenean-vehicula-vehic-detail', 'fa/virtuemart/product-category/aenean-vehicula-vehic-detail', '0', '{\"file_type\":\"\",\"width\":255,\"height\":41,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"Image is not available\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider7\\/services.png\"}', '0', '0', '0', '2024-11-26 20:31:33', '2024-11-26 20:31:33'), ('297', '0', '/cache/sj_revo/746194ecb8a301afd1a74c150f7de427.jpeg', '/cache/sj_revo/746194ecb8a301afd1a74c150f7de427.jpeg', 'fa/virtuemart/product-category/aenean-vehicula-vehic-detail', 'fa/virtuemart/product-category/aenean-vehicula-vehic-detail', '0', '{\"file_type\":\"\",\"width\":600,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/sj_revo\\/746194ecb8a301afd1a74c150f7de427.jpeg\"}', '0', '0', '1', '2024-11-26 20:31:33', '2024-11-26 20:31:33'), ('298', '0', '/images/demo/t1.png', '/images/demo/t1.png', 'fa/virtuemart/product-category/aenean-vehicula-vehic-detail', 'fa/virtuemart/product-category/aenean-vehicula-vehic-detail', '0', '{\"file_type\":\"\",\"width\":810,\"height\":420,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/images\\/demo\\/t1.png\"}', '0', '0', '0', '2024-11-26 20:31:33', '2024-11-26 20:31:33'), ('299', '0', '/images/demo/t2.jpg', '/images/demo/t2.jpg', 'fa/virtuemart/product-category/aenean-vehicula-vehic-detail', 'fa/virtuemart/product-category/aenean-vehicula-vehic-detail', '0', '{\"file_type\":\"\",\"width\":810,\"height\":420,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/images\\/demo\\/t2.jpg\"}', '0', '0', '0', '2024-11-26 20:31:33', '2024-11-26 20:31:33'), ('300', '0', '/images/demo/t3.jpg', '/images/demo/t3.jpg', 'fa/virtuemart/product-category/aenean-vehicula-vehic-detail', 'fa/virtuemart/product-category/aenean-vehicula-vehic-detail', '0', '{\"file_type\":\"\",\"width\":390,\"height\":420,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/images\\/demo\\/t3.jpg\"}', '0', '0', '0', '2024-11-26 20:31:33', '2024-11-26 20:31:33'), ('301', '0', '/images/demo/t4.jpg', '/images/demo/t4.jpg', 'fa/virtuemart/product-category/aenean-vehicula-vehic-detail', 'fa/virtuemart/product-category/aenean-vehicula-vehic-detail', '0', '{\"file_type\":\"\",\"width\":390,\"height\":420,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/images\\/demo\\/t4.jpg\"}', '0', '0', '0', '2024-11-26 20:31:33', '2024-11-26 20:31:33'), ('302', '0', '/images/demo/banner-left.jpg', '/images/demo/banner-left.jpg', 'fa/virtuemart/product-category/aenean-vehicula-vehic-detail', 'fa/virtuemart/product-category/aenean-vehicula-vehic-detail', '0', '{\"file_type\":\"\",\"width\":270,\"height\":369,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/images\\/demo\\/banner-left.jpg\"}', '0', '0', '0', '2024-11-26 20:31:33', '2024-11-26 20:31:33'), ('303', '0', '/images/slider/cache/1d28c922c1312bf431385bab8172673e/bg.jpg', '/images/slider/cache/1d28c922c1312bf431385bab8172673e/bg.jpg', 'fa/virtuemart/product-category/aenean-vehicula-vehic-detail', 'fa/virtuemart/product-category/aenean-vehicula-vehic-detail', '0', '{\"file_type\":\"\",\"width\":1920,\"height\":800,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/1d28c922c1312bf431385bab8172673e\\/bg.jpg\"}', '0', '0', '0', '2024-11-26 20:31:33', '2024-11-26 20:31:33'), ('304', '0', '/images/demo/methor.png', '/images/demo/methor.png', 'fa/virtuemart/product-category/aenean-vehicula-vehic-detail', 'fa/virtuemart/product-category/aenean-vehicula-vehic-detail', '0', '{\"file_type\":\"\",\"width\":387,\"height\":22,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/images\\/demo\\/methor.png\"}', '0', '0', '0', '2024-11-26 20:31:33', '2024-11-26 20:31:33'), ('305', '0', '/cache/resized/bf4b94d3b5a397fefc07091fa724bc7e.jpg', '/cache/resized/bf4b94d3b5a397fefc07091fa724bc7e.jpg', 'fa/virtuemart/product-category/interdum-nibh-gravida-detail', 'fa/virtuemart/product-category/interdum-nibh-gravida-detail', '0', '{\"file_type\":\"\",\"width\":300,\"height\":300,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u0622\\u0628\\u0645\\u06cc\\u0648\\u0647 \\u06af\\u06cc\\u0631 \\u0641\\u0648\\u0644 \\u0627\\u0645\\u06a9\\u0627\\u0646\\u0627\\u062a\",\"title\":\"\\u0622\\u0628\\u0645\\u06cc\\u0648\\u0647 \\u06af\\u06cc\\u0631 \\u0641\\u0648\\u0644 \\u0627\\u0645\\u06a9\\u0627\\u0646\\u0627\\u062a\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/bf4b94d3b5a397fefc07091fa724bc7e.jpg\"}', '0', '0', '1', '2024-11-26 20:31:48', '2024-11-26 20:31:48'), ('306', '0', '/cache/resized/47357fcb4fa747b9b2a48443711022b3.jpg', '/cache/resized/47357fcb4fa747b9b2a48443711022b3.jpg', 'fa/virtuemart/product-category/interdum-nibh-gravida-detail', 'fa/virtuemart/product-category/interdum-nibh-gravida-detail', '0', '{\"file_type\":\"\",\"width\":300,\"height\":300,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u0627\\u0633\\u067e\\u06cc\\u06a9\\u0631 \\u0641\\u0644\\u0634 \\u062e\\u0648\\u0631\",\"title\":\"\\u0627\\u0633\\u067e\\u06cc\\u06a9\\u0631 \\u0641\\u0644\\u0634 \\u062e\\u0648\\u0631\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/47357fcb4fa747b9b2a48443711022b3.jpg\"}', '0', '0', '1', '2024-11-26 20:31:48', '2024-11-26 20:31:48'), ('307', '0', '/cache/resized/925e5e3325c2d2875ed3e15a55e1542a.jpg', '/cache/resized/925e5e3325c2d2875ed3e15a55e1542a.jpg', 'fa/virtuemart/product-category/interdum-nibh-gravida-detail', 'fa/virtuemart/product-category/interdum-nibh-gravida-detail', '0', '{\"file_type\":\"\",\"width\":300,\"height\":300,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u0627\\u0633\\u067e\\u06cc\\u06a9\\u0631 \\u0645\\u0627\\u0631\\u0634\\u0627\\u0644\",\"title\":\"\\u0627\\u0633\\u067e\\u06cc\\u06a9\\u0631 \\u0645\\u0627\\u0631\\u0634\\u0627\\u0644\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/925e5e3325c2d2875ed3e15a55e1542a.jpg\"}', '0', '0', '1', '2024-11-26 20:31:48', '2024-11-26 20:31:48'), ('308', '0', '/cache/resized/15e5ceb1d4e3b094cf628e01a3883e43.jpg', '/cache/resized/15e5ceb1d4e3b094cf628e01a3883e43.jpg', 'fa/virtuemart/product-category/interdum-nibh-gravida-detail', 'fa/virtuemart/product-category/interdum-nibh-gravida-detail', '0', '{\"file_type\":\"\",\"width\":270,\"height\":170,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u062f\\u0627\\u0631\\u0648 \\u060c \\u062f\\u0631\\u0645\\u0627\\u0646 \\u060c \\u062a\\u0642\\u0648\\u06cc\\u062a\",\"title\":\"\\u062f\\u0627\\u0631\\u0648 \\u060c \\u062f\\u0631\\u0645\\u0627\\u0646 \\u060c \\u062a\\u0642\\u0648\\u06cc\\u062a\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/15e5ceb1d4e3b094cf628e01a3883e43.jpg\"}', '0', '0', '1', '2024-11-26 20:31:48', '2024-11-26 20:31:48'), ('309', '0', '/cache/resized/fff31f2466ed3c3158f1bb31d8dd6545.jpg', '/cache/resized/fff31f2466ed3c3158f1bb31d8dd6545.jpg', 'fa/virtuemart/product-category/interdum-nibh-gravida-detail', 'fa/virtuemart/product-category/interdum-nibh-gravida-detail', '0', '{\"file_type\":\"\",\"width\":270,\"height\":170,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u0627\\u06a9\\u0633\\u0633\\u0648\\u0631\\u06cc\",\"title\":\"\\u0627\\u06a9\\u0633\\u0633\\u0648\\u0631\\u06cc\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/fff31f2466ed3c3158f1bb31d8dd6545.jpg\"}', '0', '0', '1', '2024-11-26 20:31:48', '2024-11-26 20:31:48'), ('310', '0', '/cache/resized/63a61fb10d376a68620e960b3b7b3025.jpg', '/cache/resized/63a61fb10d376a68620e960b3b7b3025.jpg', 'fa/virtuemart/product-category/interdum-nibh-gravida-detail', 'fa/virtuemart/product-category/interdum-nibh-gravida-detail', '0', '{\"file_type\":\"\",\"width\":270,\"height\":170,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u0644\\u0628\\u0627\\u0633 \\u0648 \\u067e\\u0648\\u0634\\u0627\\u06a9\",\"title\":\"\\u0644\\u0628\\u0627\\u0633 \\u0648 \\u067e\\u0648\\u0634\\u0627\\u06a9\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/63a61fb10d376a68620e960b3b7b3025.jpg\"}', '0', '0', '1', '2024-11-26 20:31:48', '2024-11-26 20:31:48'), ('311', '0', '/cache/resized/136c2c6100d6310747ec6639b697de1b.jpg', '/cache/resized/136c2c6100d6310747ec6639b697de1b.jpg', 'fa/virtuemart/product-category/interdum-nibh-gravida-detail', 'fa/virtuemart/product-category/interdum-nibh-gravida-detail', '0', '{\"file_type\":\"\",\"width\":270,\"height\":170,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u062e\\u0648\\u0634\\u0628\\u0648 \\u06a9\\u0646\\u0646\\u062f\\u0647 \\u0647\\u0627\\u06cc \\u062c\\u0646\\u0633\\u06cc\",\"title\":\"\\u062e\\u0648\\u0634\\u0628\\u0648 \\u06a9\\u0646\\u0646\\u062f\\u0647 \\u0647\\u0627\\u06cc \\u062c\\u0646\\u0633\\u06cc\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/136c2c6100d6310747ec6639b697de1b.jpg\"}', '0', '0', '1', '2024-11-26 20:31:48', '2024-11-26 20:31:48'), ('312', '0', '/images/slider/cache/c7f2f558aae426cb618eb45d1779dcd5/slide1.jpg', '/images/slider/cache/c7f2f558aae426cb618eb45d1779dcd5/slide1.jpg', 'fa/virtuemart/product-category/interdum-nibh-gravida-detail', 'fa/virtuemart/product-category/interdum-nibh-gravida-detail', '0', '{\"file_type\":\"\",\"width\":1200,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/c7f2f558aae426cb618eb45d1779dcd5\\/slide1.jpg\"}', '0', '0', '0', '2024-11-26 20:31:48', '2024-11-26 20:31:48'), ('313', '0', '/images/slider/cache/0016c23135dbf72b71b938eb15ad6eba/slide2.jpg', '/images/slider/cache/0016c23135dbf72b71b938eb15ad6eba/slide2.jpg', 'fa/virtuemart/product-category/interdum-nibh-gravida-detail', 'fa/virtuemart/product-category/interdum-nibh-gravida-detail', '0', '{\"file_type\":\"\",\"width\":1200,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/0016c23135dbf72b71b938eb15ad6eba\\/slide2.jpg\"}', '0', '0', '0', '2024-11-26 20:31:48', '2024-11-26 20:31:48'), ('314', '0', '/images/slider/cache/cb936b74f5c90e00bc4b4b5b820f64a4/slide3.jpg', '/images/slider/cache/cb936b74f5c90e00bc4b4b5b820f64a4/slide3.jpg', 'fa/virtuemart/product-category/interdum-nibh-gravida-detail', 'fa/virtuemart/product-category/interdum-nibh-gravida-detail', '0', '{\"file_type\":\"\",\"width\":1200,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/cb936b74f5c90e00bc4b4b5b820f64a4\\/slide3.jpg\"}', '0', '0', '0', '2024-11-26 20:31:48', '2024-11-26 20:31:48'), ('315', '0', '/images/slider/cache/afba72876cbc644463efba8fe637cfe1/slide4.jpg', '/images/slider/cache/afba72876cbc644463efba8fe637cfe1/slide4.jpg', 'fa/virtuemart/product-category/interdum-nibh-gravida-detail', 'fa/virtuemart/product-category/interdum-nibh-gravida-detail', '0', '{\"file_type\":\"\",\"width\":1200,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/afba72876cbc644463efba8fe637cfe1\\/slide4.jpg\"}', '0', '0', '0', '2024-11-26 20:31:48', '2024-11-26 20:31:48'), ('316', '0', '/images/slider/cache/186f4f5acf07d06fb443fb709f910f0e/slide5.jpg', '/images/slider/cache/186f4f5acf07d06fb443fb709f910f0e/slide5.jpg', 'fa/virtuemart/product-category/interdum-nibh-gravida-detail', 'fa/virtuemart/product-category/interdum-nibh-gravida-detail', '0', '{\"file_type\":\"\",\"width\":1200,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/186f4f5acf07d06fb443fb709f910f0e\\/slide5.jpg\"}', '0', '0', '0', '2024-11-26 20:31:48', '2024-11-26 20:31:48'), ('317', '0', '/images/slider/cache/c6cc2ca1c1c96725142b1f65b39f5172/slide6.jpg', '/images/slider/cache/c6cc2ca1c1c96725142b1f65b39f5172/slide6.jpg', 'fa/virtuemart/product-category/interdum-nibh-gravida-detail', 'fa/virtuemart/product-category/interdum-nibh-gravida-detail', '0', '{\"file_type\":\"\",\"width\":1200,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/c6cc2ca1c1c96725142b1f65b39f5172\\/slide6.jpg\"}', '0', '0', '0', '2024-11-26 20:31:48', '2024-11-26 20:31:48'), ('318', '0', '/images/slider/cache/efe225be99ba9274f12b054076dd54a3/slide7.jpg', '/images/slider/cache/efe225be99ba9274f12b054076dd54a3/slide7.jpg', 'fa/virtuemart/product-category/interdum-nibh-gravida-detail', 'fa/virtuemart/product-category/interdum-nibh-gravida-detail', '0', '{\"file_type\":\"\",\"width\":1200,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/efe225be99ba9274f12b054076dd54a3\\/slide7.jpg\"}', '0', '0', '0', '2024-11-26 20:31:48', '2024-11-26 20:31:48'), ('319', '0', '/images/slider7/logo.png', '/images/slider7/logo.png', 'fa/virtuemart/product-category/interdum-nibh-gravida-detail', 'fa/virtuemart/product-category/interdum-nibh-gravida-detail', '0', '{\"file_type\":\"\",\"width\":255,\"height\":60,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"Image is not available\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider7\\/logo.png\"}', '0', '0', '0', '2024-11-26 20:31:48', '2024-11-26 20:31:48'), ('320', '0', '/images/slider7/services.png', '/images/slider7/services.png', 'fa/virtuemart/product-category/interdum-nibh-gravida-detail', 'fa/virtuemart/product-category/interdum-nibh-gravida-detail', '0', '{\"file_type\":\"\",\"width\":255,\"height\":41,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"Image is not available\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider7\\/services.png\"}', '0', '0', '0', '2024-11-26 20:31:48', '2024-11-26 20:31:48'), ('321', '0', '/cache/sj_revo/25734ac59400e19af4c9042fd68a39f7.jpeg', '/cache/sj_revo/25734ac59400e19af4c9042fd68a39f7.jpeg', 'fa/virtuemart/product-category/interdum-nibh-gravida-detail', 'fa/virtuemart/product-category/interdum-nibh-gravida-detail', '0', '{\"file_type\":\"\",\"width\":600,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/sj_revo\\/25734ac59400e19af4c9042fd68a39f7.jpeg\"}', '0', '0', '1', '2024-11-26 20:31:48', '2024-11-26 20:31:48'), ('322', '0', '/images/demo/t1.png', '/images/demo/t1.png', 'fa/virtuemart/product-category/interdum-nibh-gravida-detail', 'fa/virtuemart/product-category/interdum-nibh-gravida-detail', '0', '{\"file_type\":\"\",\"width\":810,\"height\":420,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/images\\/demo\\/t1.png\"}', '0', '0', '0', '2024-11-26 20:31:48', '2024-11-26 20:31:48'), ('323', '0', '/images/demo/t2.jpg', '/images/demo/t2.jpg', 'fa/virtuemart/product-category/interdum-nibh-gravida-detail', 'fa/virtuemart/product-category/interdum-nibh-gravida-detail', '0', '{\"file_type\":\"\",\"width\":810,\"height\":420,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/images\\/demo\\/t2.jpg\"}', '0', '0', '0', '2024-11-26 20:31:48', '2024-11-26 20:31:48'), ('324', '0', '/images/demo/t3.jpg', '/images/demo/t3.jpg', 'fa/virtuemart/product-category/interdum-nibh-gravida-detail', 'fa/virtuemart/product-category/interdum-nibh-gravida-detail', '0', '{\"file_type\":\"\",\"width\":390,\"height\":420,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/images\\/demo\\/t3.jpg\"}', '0', '0', '0', '2024-11-26 20:31:48', '2024-11-26 20:31:48'), ('325', '0', '/images/demo/t4.jpg', '/images/demo/t4.jpg', 'fa/virtuemart/product-category/interdum-nibh-gravida-detail', 'fa/virtuemart/product-category/interdum-nibh-gravida-detail', '0', '{\"file_type\":\"\",\"width\":390,\"height\":420,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/images\\/demo\\/t4.jpg\"}', '0', '0', '0', '2024-11-26 20:31:48', '2024-11-26 20:31:48'), ('326', '0', '/images/demo/banner-left.jpg', '/images/demo/banner-left.jpg', 'fa/virtuemart/product-category/interdum-nibh-gravida-detail', 'fa/virtuemart/product-category/interdum-nibh-gravida-detail', '0', '{\"file_type\":\"\",\"width\":270,\"height\":369,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/images\\/demo\\/banner-left.jpg\"}', '0', '0', '0', '2024-11-26 20:31:48', '2024-11-26 20:31:48'), ('327', '0', '/images/slider/cache/1d28c922c1312bf431385bab8172673e/bg.jpg', '/images/slider/cache/1d28c922c1312bf431385bab8172673e/bg.jpg', 'fa/virtuemart/product-category/interdum-nibh-gravida-detail', 'fa/virtuemart/product-category/interdum-nibh-gravida-detail', '0', '{\"file_type\":\"\",\"width\":1920,\"height\":800,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/1d28c922c1312bf431385bab8172673e\\/bg.jpg\"}', '0', '0', '0', '2024-11-26 20:31:48', '2024-11-26 20:31:48'), ('328', '0', '/images/demo/methor.png', '/images/demo/methor.png', 'fa/virtuemart/product-category/interdum-nibh-gravida-detail', 'fa/virtuemart/product-category/interdum-nibh-gravida-detail', '0', '{\"file_type\":\"\",\"width\":387,\"height\":22,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/images\\/demo\\/methor.png\"}', '0', '0', '0', '2024-11-26 20:31:48', '2024-11-26 20:31:48'), ('329', '0', '/cache/resized/bf4b94d3b5a397fefc07091fa724bc7e.jpg', '/cache/resized/bf4b94d3b5a397fefc07091fa724bc7e.jpg', 'fa/virtuemart/product-category/cras-nec-placerat-libe-detail', 'fa/virtuemart/product-category/cras-nec-placerat-libe-detail', '0', '{\"file_type\":\"\",\"width\":300,\"height\":300,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u0622\\u0628\\u0645\\u06cc\\u0648\\u0647 \\u06af\\u06cc\\u0631 \\u0641\\u0648\\u0644 \\u0627\\u0645\\u06a9\\u0627\\u0646\\u0627\\u062a\",\"title\":\"\\u0622\\u0628\\u0645\\u06cc\\u0648\\u0647 \\u06af\\u06cc\\u0631 \\u0641\\u0648\\u0644 \\u0627\\u0645\\u06a9\\u0627\\u0646\\u0627\\u062a\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/bf4b94d3b5a397fefc07091fa724bc7e.jpg\"}', '0', '0', '1', '2024-11-26 20:33:17', '2024-11-26 20:33:17'), ('330', '0', '/cache/resized/47357fcb4fa747b9b2a48443711022b3.jpg', '/cache/resized/47357fcb4fa747b9b2a48443711022b3.jpg', 'fa/virtuemart/product-category/cras-nec-placerat-libe-detail', 'fa/virtuemart/product-category/cras-nec-placerat-libe-detail', '0', '{\"file_type\":\"\",\"width\":300,\"height\":300,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u0627\\u0633\\u067e\\u06cc\\u06a9\\u0631 \\u0641\\u0644\\u0634 \\u062e\\u0648\\u0631\",\"title\":\"\\u0627\\u0633\\u067e\\u06cc\\u06a9\\u0631 \\u0641\\u0644\\u0634 \\u062e\\u0648\\u0631\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/47357fcb4fa747b9b2a48443711022b3.jpg\"}', '0', '0', '1', '2024-11-26 20:33:17', '2024-11-26 20:33:17'), ('331', '0', '/cache/resized/925e5e3325c2d2875ed3e15a55e1542a.jpg', '/cache/resized/925e5e3325c2d2875ed3e15a55e1542a.jpg', 'fa/virtuemart/product-category/cras-nec-placerat-libe-detail', 'fa/virtuemart/product-category/cras-nec-placerat-libe-detail', '0', '{\"file_type\":\"\",\"width\":300,\"height\":300,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u0627\\u0633\\u067e\\u06cc\\u06a9\\u0631 \\u0645\\u0627\\u0631\\u0634\\u0627\\u0644\",\"title\":\"\\u0627\\u0633\\u067e\\u06cc\\u06a9\\u0631 \\u0645\\u0627\\u0631\\u0634\\u0627\\u0644\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/925e5e3325c2d2875ed3e15a55e1542a.jpg\"}', '0', '0', '1', '2024-11-26 20:33:17', '2024-11-26 20:33:17'), ('332', '0', '/cache/resized/15e5ceb1d4e3b094cf628e01a3883e43.jpg', '/cache/resized/15e5ceb1d4e3b094cf628e01a3883e43.jpg', 'fa/virtuemart/product-category/cras-nec-placerat-libe-detail', 'fa/virtuemart/product-category/cras-nec-placerat-libe-detail', '0', '{\"file_type\":\"\",\"width\":270,\"height\":170,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u062f\\u0627\\u0631\\u0648 \\u060c \\u062f\\u0631\\u0645\\u0627\\u0646 \\u060c \\u062a\\u0642\\u0648\\u06cc\\u062a\",\"title\":\"\\u062f\\u0627\\u0631\\u0648 \\u060c \\u062f\\u0631\\u0645\\u0627\\u0646 \\u060c \\u062a\\u0642\\u0648\\u06cc\\u062a\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/15e5ceb1d4e3b094cf628e01a3883e43.jpg\"}', '0', '0', '1', '2024-11-26 20:33:17', '2024-11-26 20:33:17'), ('333', '0', '/cache/resized/fff31f2466ed3c3158f1bb31d8dd6545.jpg', '/cache/resized/fff31f2466ed3c3158f1bb31d8dd6545.jpg', 'fa/virtuemart/product-category/cras-nec-placerat-libe-detail', 'fa/virtuemart/product-category/cras-nec-placerat-libe-detail', '0', '{\"file_type\":\"\",\"width\":270,\"height\":170,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u0627\\u06a9\\u0633\\u0633\\u0648\\u0631\\u06cc\",\"title\":\"\\u0627\\u06a9\\u0633\\u0633\\u0648\\u0631\\u06cc\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/fff31f2466ed3c3158f1bb31d8dd6545.jpg\"}', '0', '0', '1', '2024-11-26 20:33:17', '2024-11-26 20:33:17'), ('334', '0', '/cache/resized/63a61fb10d376a68620e960b3b7b3025.jpg', '/cache/resized/63a61fb10d376a68620e960b3b7b3025.jpg', 'fa/virtuemart/product-category/cras-nec-placerat-libe-detail', 'fa/virtuemart/product-category/cras-nec-placerat-libe-detail', '0', '{\"file_type\":\"\",\"width\":270,\"height\":170,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u0644\\u0628\\u0627\\u0633 \\u0648 \\u067e\\u0648\\u0634\\u0627\\u06a9\",\"title\":\"\\u0644\\u0628\\u0627\\u0633 \\u0648 \\u067e\\u0648\\u0634\\u0627\\u06a9\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/63a61fb10d376a68620e960b3b7b3025.jpg\"}', '0', '0', '1', '2024-11-26 20:33:17', '2024-11-26 20:33:17'), ('335', '0', '/cache/resized/136c2c6100d6310747ec6639b697de1b.jpg', '/cache/resized/136c2c6100d6310747ec6639b697de1b.jpg', 'fa/virtuemart/product-category/cras-nec-placerat-libe-detail', 'fa/virtuemart/product-category/cras-nec-placerat-libe-detail', '0', '{\"file_type\":\"\",\"width\":270,\"height\":170,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u062e\\u0648\\u0634\\u0628\\u0648 \\u06a9\\u0646\\u0646\\u062f\\u0647 \\u0647\\u0627\\u06cc \\u062c\\u0646\\u0633\\u06cc\",\"title\":\"\\u062e\\u0648\\u0634\\u0628\\u0648 \\u06a9\\u0646\\u0646\\u062f\\u0647 \\u0647\\u0627\\u06cc \\u062c\\u0646\\u0633\\u06cc\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/136c2c6100d6310747ec6639b697de1b.jpg\"}', '0', '0', '1', '2024-11-26 20:33:17', '2024-11-26 20:33:17'), ('336', '0', '/images/slider/cache/c7f2f558aae426cb618eb45d1779dcd5/slide1.jpg', '/images/slider/cache/c7f2f558aae426cb618eb45d1779dcd5/slide1.jpg', 'fa/virtuemart/product-category/cras-nec-placerat-libe-detail', 'fa/virtuemart/product-category/cras-nec-placerat-libe-detail', '0', '{\"file_type\":\"\",\"width\":1200,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/c7f2f558aae426cb618eb45d1779dcd5\\/slide1.jpg\"}', '0', '0', '0', '2024-11-26 20:33:17', '2024-11-26 20:33:17'), ('337', '0', '/images/slider/cache/0016c23135dbf72b71b938eb15ad6eba/slide2.jpg', '/images/slider/cache/0016c23135dbf72b71b938eb15ad6eba/slide2.jpg', 'fa/virtuemart/product-category/cras-nec-placerat-libe-detail', 'fa/virtuemart/product-category/cras-nec-placerat-libe-detail', '0', '{\"file_type\":\"\",\"width\":1200,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/0016c23135dbf72b71b938eb15ad6eba\\/slide2.jpg\"}', '0', '0', '0', '2024-11-26 20:33:17', '2024-11-26 20:33:17'), ('338', '0', '/images/slider/cache/cb936b74f5c90e00bc4b4b5b820f64a4/slide3.jpg', '/images/slider/cache/cb936b74f5c90e00bc4b4b5b820f64a4/slide3.jpg', 'fa/virtuemart/product-category/cras-nec-placerat-libe-detail', 'fa/virtuemart/product-category/cras-nec-placerat-libe-detail', '0', '{\"file_type\":\"\",\"width\":1200,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/cb936b74f5c90e00bc4b4b5b820f64a4\\/slide3.jpg\"}', '0', '0', '0', '2024-11-26 20:33:17', '2024-11-26 20:33:17'), ('339', '0', '/images/slider/cache/afba72876cbc644463efba8fe637cfe1/slide4.jpg', '/images/slider/cache/afba72876cbc644463efba8fe637cfe1/slide4.jpg', 'fa/virtuemart/product-category/cras-nec-placerat-libe-detail', 'fa/virtuemart/product-category/cras-nec-placerat-libe-detail', '0', '{\"file_type\":\"\",\"width\":1200,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/afba72876cbc644463efba8fe637cfe1\\/slide4.jpg\"}', '0', '0', '0', '2024-11-26 20:33:17', '2024-11-26 20:33:17'), ('340', '0', '/images/slider/cache/186f4f5acf07d06fb443fb709f910f0e/slide5.jpg', '/images/slider/cache/186f4f5acf07d06fb443fb709f910f0e/slide5.jpg', 'fa/virtuemart/product-category/cras-nec-placerat-libe-detail', 'fa/virtuemart/product-category/cras-nec-placerat-libe-detail', '0', '{\"file_type\":\"\",\"width\":1200,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/186f4f5acf07d06fb443fb709f910f0e\\/slide5.jpg\"}', '0', '0', '0', '2024-11-26 20:33:17', '2024-11-26 20:33:17'), ('341', '0', '/images/slider/cache/c6cc2ca1c1c96725142b1f65b39f5172/slide6.jpg', '/images/slider/cache/c6cc2ca1c1c96725142b1f65b39f5172/slide6.jpg', 'fa/virtuemart/product-category/cras-nec-placerat-libe-detail', 'fa/virtuemart/product-category/cras-nec-placerat-libe-detail', '0', '{\"file_type\":\"\",\"width\":1200,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/c6cc2ca1c1c96725142b1f65b39f5172\\/slide6.jpg\"}', '0', '0', '0', '2024-11-26 20:33:17', '2024-11-26 20:33:17'), ('342', '0', '/images/slider/cache/efe225be99ba9274f12b054076dd54a3/slide7.jpg', '/images/slider/cache/efe225be99ba9274f12b054076dd54a3/slide7.jpg', 'fa/virtuemart/product-category/cras-nec-placerat-libe-detail', 'fa/virtuemart/product-category/cras-nec-placerat-libe-detail', '0', '{\"file_type\":\"\",\"width\":1200,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/efe225be99ba9274f12b054076dd54a3\\/slide7.jpg\"}', '0', '0', '0', '2024-11-26 20:33:17', '2024-11-26 20:33:17'), ('343', '0', '/images/slider7/logo.png', '/images/slider7/logo.png', 'fa/virtuemart/product-category/cras-nec-placerat-libe-detail', 'fa/virtuemart/product-category/cras-nec-placerat-libe-detail', '0', '{\"file_type\":\"\",\"width\":255,\"height\":60,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"Image is not available\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider7\\/logo.png\"}', '0', '0', '0', '2024-11-26 20:33:17', '2024-11-26 20:33:17'), ('344', '0', '/images/slider7/services.png', '/images/slider7/services.png', 'fa/virtuemart/product-category/cras-nec-placerat-libe-detail', 'fa/virtuemart/product-category/cras-nec-placerat-libe-detail', '0', '{\"file_type\":\"\",\"width\":255,\"height\":41,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"Image is not available\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider7\\/services.png\"}', '0', '0', '0', '2024-11-26 20:33:17', '2024-11-26 20:33:17'), ('345', '0', '/cache/sj_revo/a81865c609ec5b4404d433149185252f.jpeg', '/cache/sj_revo/a81865c609ec5b4404d433149185252f.jpeg', 'fa/virtuemart/product-category/cras-nec-placerat-libe-detail', 'fa/virtuemart/product-category/cras-nec-placerat-libe-detail', '0', '{\"file_type\":\"\",\"width\":600,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/sj_revo\\/a81865c609ec5b4404d433149185252f.jpeg\"}', '0', '0', '1', '2024-11-26 20:33:17', '2024-11-26 20:33:17'), ('346', '0', '/images/demo/t1.png', '/images/demo/t1.png', 'fa/virtuemart/product-category/cras-nec-placerat-libe-detail', 'fa/virtuemart/product-category/cras-nec-placerat-libe-detail', '0', '{\"file_type\":\"\",\"width\":810,\"height\":420,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/images\\/demo\\/t1.png\"}', '0', '0', '0', '2024-11-26 20:33:17', '2024-11-26 20:33:17'), ('347', '0', '/images/demo/t2.jpg', '/images/demo/t2.jpg', 'fa/virtuemart/product-category/cras-nec-placerat-libe-detail', 'fa/virtuemart/product-category/cras-nec-placerat-libe-detail', '0', '{\"file_type\":\"\",\"width\":810,\"height\":420,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/images\\/demo\\/t2.jpg\"}', '0', '0', '0', '2024-11-26 20:33:17', '2024-11-26 20:33:17'), ('348', '0', '/images/demo/t3.jpg', '/images/demo/t3.jpg', 'fa/virtuemart/product-category/cras-nec-placerat-libe-detail', 'fa/virtuemart/product-category/cras-nec-placerat-libe-detail', '0', '{\"file_type\":\"\",\"width\":390,\"height\":420,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/images\\/demo\\/t3.jpg\"}', '0', '0', '0', '2024-11-26 20:33:17', '2024-11-26 20:33:17'), ('349', '0', '/images/demo/t4.jpg', '/images/demo/t4.jpg', 'fa/virtuemart/product-category/cras-nec-placerat-libe-detail', 'fa/virtuemart/product-category/cras-nec-placerat-libe-detail', '0', '{\"file_type\":\"\",\"width\":390,\"height\":420,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/images\\/demo\\/t4.jpg\"}', '0', '0', '0', '2024-11-26 20:33:17', '2024-11-26 20:33:17'), ('350', '0', '/images/demo/banner-left.jpg', '/images/demo/banner-left.jpg', 'fa/virtuemart/product-category/cras-nec-placerat-libe-detail', 'fa/virtuemart/product-category/cras-nec-placerat-libe-detail', '0', '{\"file_type\":\"\",\"width\":270,\"height\":369,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/images\\/demo\\/banner-left.jpg\"}', '0', '0', '0', '2024-11-26 20:33:17', '2024-11-26 20:33:17'), ('351', '0', '/images/slider/cache/1d28c922c1312bf431385bab8172673e/bg.jpg', '/images/slider/cache/1d28c922c1312bf431385bab8172673e/bg.jpg', 'fa/virtuemart/product-category/cras-nec-placerat-libe-detail', 'fa/virtuemart/product-category/cras-nec-placerat-libe-detail', '0', '{\"file_type\":\"\",\"width\":1920,\"height\":800,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/1d28c922c1312bf431385bab8172673e\\/bg.jpg\"}', '0', '0', '0', '2024-11-26 20:33:17', '2024-11-26 20:33:17'), ('352', '0', '/images/demo/methor.png', '/images/demo/methor.png', 'fa/virtuemart/product-category/cras-nec-placerat-libe-detail', 'fa/virtuemart/product-category/cras-nec-placerat-libe-detail', '0', '{\"file_type\":\"\",\"width\":387,\"height\":22,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/images\\/demo\\/methor.png\"}', '0', '0', '0', '2024-11-26 20:33:17', '2024-11-26 20:33:17'), ('353', '0', '/cache/resized/bf4b94d3b5a397fefc07091fa724bc7e.jpg', '/cache/resized/bf4b94d3b5a397fefc07091fa724bc7e.jpg', 'fa/virtuemart/product-category/cras-id-risus-sem-detail', 'fa/virtuemart/product-category/cras-id-risus-sem-detail', '0', '{\"file_type\":\"\",\"width\":300,\"height\":300,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u0622\\u0628\\u0645\\u06cc\\u0648\\u0647 \\u06af\\u06cc\\u0631 \\u0641\\u0648\\u0644 \\u0627\\u0645\\u06a9\\u0627\\u0646\\u0627\\u062a\",\"title\":\"\\u0622\\u0628\\u0645\\u06cc\\u0648\\u0647 \\u06af\\u06cc\\u0631 \\u0641\\u0648\\u0644 \\u0627\\u0645\\u06a9\\u0627\\u0646\\u0627\\u062a\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/bf4b94d3b5a397fefc07091fa724bc7e.jpg\"}', '0', '0', '1', '2024-11-26 20:33:27', '2024-11-26 20:33:27'), ('354', '0', '/cache/resized/47357fcb4fa747b9b2a48443711022b3.jpg', '/cache/resized/47357fcb4fa747b9b2a48443711022b3.jpg', 'fa/virtuemart/product-category/cras-id-risus-sem-detail', 'fa/virtuemart/product-category/cras-id-risus-sem-detail', '0', '{\"file_type\":\"\",\"width\":300,\"height\":300,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u0627\\u0633\\u067e\\u06cc\\u06a9\\u0631 \\u0641\\u0644\\u0634 \\u062e\\u0648\\u0631\",\"title\":\"\\u0627\\u0633\\u067e\\u06cc\\u06a9\\u0631 \\u0641\\u0644\\u0634 \\u062e\\u0648\\u0631\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/47357fcb4fa747b9b2a48443711022b3.jpg\"}', '0', '0', '1', '2024-11-26 20:33:27', '2024-11-26 20:33:27'), ('355', '0', '/cache/resized/925e5e3325c2d2875ed3e15a55e1542a.jpg', '/cache/resized/925e5e3325c2d2875ed3e15a55e1542a.jpg', 'fa/virtuemart/product-category/cras-id-risus-sem-detail', 'fa/virtuemart/product-category/cras-id-risus-sem-detail', '0', '{\"file_type\":\"\",\"width\":300,\"height\":300,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u0627\\u0633\\u067e\\u06cc\\u06a9\\u0631 \\u0645\\u0627\\u0631\\u0634\\u0627\\u0644\",\"title\":\"\\u0627\\u0633\\u067e\\u06cc\\u06a9\\u0631 \\u0645\\u0627\\u0631\\u0634\\u0627\\u0644\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/925e5e3325c2d2875ed3e15a55e1542a.jpg\"}', '0', '0', '1', '2024-11-26 20:33:27', '2024-11-26 20:33:27'), ('356', '0', '/cache/resized/15e5ceb1d4e3b094cf628e01a3883e43.jpg', '/cache/resized/15e5ceb1d4e3b094cf628e01a3883e43.jpg', 'fa/virtuemart/product-category/cras-id-risus-sem-detail', 'fa/virtuemart/product-category/cras-id-risus-sem-detail', '0', '{\"file_type\":\"\",\"width\":270,\"height\":170,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u062f\\u0627\\u0631\\u0648 \\u060c \\u062f\\u0631\\u0645\\u0627\\u0646 \\u060c \\u062a\\u0642\\u0648\\u06cc\\u062a\",\"title\":\"\\u062f\\u0627\\u0631\\u0648 \\u060c \\u062f\\u0631\\u0645\\u0627\\u0646 \\u060c \\u062a\\u0642\\u0648\\u06cc\\u062a\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/15e5ceb1d4e3b094cf628e01a3883e43.jpg\"}', '0', '0', '1', '2024-11-26 20:33:27', '2024-11-26 20:33:27'), ('357', '0', '/cache/resized/fff31f2466ed3c3158f1bb31d8dd6545.jpg', '/cache/resized/fff31f2466ed3c3158f1bb31d8dd6545.jpg', 'fa/virtuemart/product-category/cras-id-risus-sem-detail', 'fa/virtuemart/product-category/cras-id-risus-sem-detail', '0', '{\"file_type\":\"\",\"width\":270,\"height\":170,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u0627\\u06a9\\u0633\\u0633\\u0648\\u0631\\u06cc\",\"title\":\"\\u0627\\u06a9\\u0633\\u0633\\u0648\\u0631\\u06cc\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/fff31f2466ed3c3158f1bb31d8dd6545.jpg\"}', '0', '0', '1', '2024-11-26 20:33:27', '2024-11-26 20:33:27'), ('358', '0', '/cache/resized/63a61fb10d376a68620e960b3b7b3025.jpg', '/cache/resized/63a61fb10d376a68620e960b3b7b3025.jpg', 'fa/virtuemart/product-category/cras-id-risus-sem-detail', 'fa/virtuemart/product-category/cras-id-risus-sem-detail', '0', '{\"file_type\":\"\",\"width\":270,\"height\":170,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u0644\\u0628\\u0627\\u0633 \\u0648 \\u067e\\u0648\\u0634\\u0627\\u06a9\",\"title\":\"\\u0644\\u0628\\u0627\\u0633 \\u0648 \\u067e\\u0648\\u0634\\u0627\\u06a9\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/63a61fb10d376a68620e960b3b7b3025.jpg\"}', '0', '0', '1', '2024-11-26 20:33:27', '2024-11-26 20:33:27'), ('359', '0', '/cache/resized/136c2c6100d6310747ec6639b697de1b.jpg', '/cache/resized/136c2c6100d6310747ec6639b697de1b.jpg', 'fa/virtuemart/product-category/cras-id-risus-sem-detail', 'fa/virtuemart/product-category/cras-id-risus-sem-detail', '0', '{\"file_type\":\"\",\"width\":270,\"height\":170,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\\u062e\\u0648\\u0634\\u0628\\u0648 \\u06a9\\u0646\\u0646\\u062f\\u0647 \\u0647\\u0627\\u06cc \\u062c\\u0646\\u0633\\u06cc\",\"title\":\"\\u062e\\u0648\\u0634\\u0628\\u0648 \\u06a9\\u0646\\u0646\\u062f\\u0647 \\u0647\\u0627\\u06cc \\u062c\\u0646\\u0633\\u06cc\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/resized\\/136c2c6100d6310747ec6639b697de1b.jpg\"}', '0', '0', '1', '2024-11-26 20:33:27', '2024-11-26 20:33:27'), ('360', '0', '/images/slider/cache/c7f2f558aae426cb618eb45d1779dcd5/slide1.jpg', '/images/slider/cache/c7f2f558aae426cb618eb45d1779dcd5/slide1.jpg', 'fa/virtuemart/product-category/cras-id-risus-sem-detail', 'fa/virtuemart/product-category/cras-id-risus-sem-detail', '0', '{\"file_type\":\"\",\"width\":1200,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/c7f2f558aae426cb618eb45d1779dcd5\\/slide1.jpg\"}', '0', '0', '0', '2024-11-26 20:33:27', '2024-11-26 20:33:27'), ('361', '0', '/images/slider/cache/0016c23135dbf72b71b938eb15ad6eba/slide2.jpg', '/images/slider/cache/0016c23135dbf72b71b938eb15ad6eba/slide2.jpg', 'fa/virtuemart/product-category/cras-id-risus-sem-detail', 'fa/virtuemart/product-category/cras-id-risus-sem-detail', '0', '{\"file_type\":\"\",\"width\":1200,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/0016c23135dbf72b71b938eb15ad6eba\\/slide2.jpg\"}', '0', '0', '0', '2024-11-26 20:33:27', '2024-11-26 20:33:27'), ('362', '0', '/images/slider/cache/cb936b74f5c90e00bc4b4b5b820f64a4/slide3.jpg', '/images/slider/cache/cb936b74f5c90e00bc4b4b5b820f64a4/slide3.jpg', 'fa/virtuemart/product-category/cras-id-risus-sem-detail', 'fa/virtuemart/product-category/cras-id-risus-sem-detail', '0', '{\"file_type\":\"\",\"width\":1200,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/cb936b74f5c90e00bc4b4b5b820f64a4\\/slide3.jpg\"}', '0', '0', '0', '2024-11-26 20:33:27', '2024-11-26 20:33:27'), ('363', '0', '/images/slider/cache/afba72876cbc644463efba8fe637cfe1/slide4.jpg', '/images/slider/cache/afba72876cbc644463efba8fe637cfe1/slide4.jpg', 'fa/virtuemart/product-category/cras-id-risus-sem-detail', 'fa/virtuemart/product-category/cras-id-risus-sem-detail', '0', '{\"file_type\":\"\",\"width\":1200,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/afba72876cbc644463efba8fe637cfe1\\/slide4.jpg\"}', '0', '0', '0', '2024-11-26 20:33:27', '2024-11-26 20:33:27'), ('364', '0', '/images/slider/cache/186f4f5acf07d06fb443fb709f910f0e/slide5.jpg', '/images/slider/cache/186f4f5acf07d06fb443fb709f910f0e/slide5.jpg', 'fa/virtuemart/product-category/cras-id-risus-sem-detail', 'fa/virtuemart/product-category/cras-id-risus-sem-detail', '0', '{\"file_type\":\"\",\"width\":1200,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/186f4f5acf07d06fb443fb709f910f0e\\/slide5.jpg\"}', '0', '0', '0', '2024-11-26 20:33:27', '2024-11-26 20:33:27'), ('365', '0', '/images/slider/cache/c6cc2ca1c1c96725142b1f65b39f5172/slide6.jpg', '/images/slider/cache/c6cc2ca1c1c96725142b1f65b39f5172/slide6.jpg', 'fa/virtuemart/product-category/cras-id-risus-sem-detail', 'fa/virtuemart/product-category/cras-id-risus-sem-detail', '0', '{\"file_type\":\"\",\"width\":1200,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/c6cc2ca1c1c96725142b1f65b39f5172\\/slide6.jpg\"}', '0', '0', '0', '2024-11-26 20:33:27', '2024-11-26 20:33:27'), ('366', '0', '/images/slider/cache/efe225be99ba9274f12b054076dd54a3/slide7.jpg', '/images/slider/cache/efe225be99ba9274f12b054076dd54a3/slide7.jpg', 'fa/virtuemart/product-category/cras-id-risus-sem-detail', 'fa/virtuemart/product-category/cras-id-risus-sem-detail', '0', '{\"file_type\":\"\",\"width\":1200,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/efe225be99ba9274f12b054076dd54a3\\/slide7.jpg\"}', '0', '0', '0', '2024-11-26 20:33:27', '2024-11-26 20:33:27'), ('367', '0', '/images/slider7/logo.png', '/images/slider7/logo.png', 'fa/virtuemart/product-category/cras-id-risus-sem-detail', 'fa/virtuemart/product-category/cras-id-risus-sem-detail', '0', '{\"file_type\":\"\",\"width\":255,\"height\":60,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"Image is not available\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider7\\/logo.png\"}', '0', '0', '0', '2024-11-26 20:33:27', '2024-11-26 20:33:27'), ('368', '0', '/images/slider7/services.png', '/images/slider7/services.png', 'fa/virtuemart/product-category/cras-id-risus-sem-detail', 'fa/virtuemart/product-category/cras-id-risus-sem-detail', '0', '{\"file_type\":\"\",\"width\":255,\"height\":41,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"Image is not available\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider7\\/services.png\"}', '0', '0', '0', '2024-11-26 20:33:27', '2024-11-26 20:33:27'), ('369', '0', '/cache/sj_revo/8e384c72c9c0ec637e30440fdb43f050.jpeg', '/cache/sj_revo/8e384c72c9c0ec637e30440fdb43f050.jpeg', 'fa/virtuemart/product-category/cras-id-risus-sem-detail', 'fa/virtuemart/product-category/cras-id-risus-sem-detail', '0', '{\"file_type\":\"\",\"width\":600,\"height\":600,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/cache\\/sj_revo\\/8e384c72c9c0ec637e30440fdb43f050.jpeg\"}', '0', '0', '1', '2024-11-26 20:33:27', '2024-11-26 20:33:27'), ('370', '0', '/images/demo/t1.png', '/images/demo/t1.png', 'fa/virtuemart/product-category/cras-id-risus-sem-detail', 'fa/virtuemart/product-category/cras-id-risus-sem-detail', '0', '{\"file_type\":\"\",\"width\":810,\"height\":420,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/images\\/demo\\/t1.png\"}', '0', '0', '0', '2024-11-26 20:33:27', '2024-11-26 20:33:27'), ('371', '0', '/images/demo/t2.jpg', '/images/demo/t2.jpg', 'fa/virtuemart/product-category/cras-id-risus-sem-detail', 'fa/virtuemart/product-category/cras-id-risus-sem-detail', '0', '{\"file_type\":\"\",\"width\":810,\"height\":420,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/images\\/demo\\/t2.jpg\"}', '0', '0', '0', '2024-11-26 20:33:27', '2024-11-26 20:33:27'), ('372', '0', '/images/demo/t3.jpg', '/images/demo/t3.jpg', 'fa/virtuemart/product-category/cras-id-risus-sem-detail', 'fa/virtuemart/product-category/cras-id-risus-sem-detail', '0', '{\"file_type\":\"\",\"width\":390,\"height\":420,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/images\\/demo\\/t3.jpg\"}', '0', '0', '0', '2024-11-26 20:33:27', '2024-11-26 20:33:27'), ('373', '0', '/images/demo/t4.jpg', '/images/demo/t4.jpg', 'fa/virtuemart/product-category/cras-id-risus-sem-detail', 'fa/virtuemart/product-category/cras-id-risus-sem-detail', '0', '{\"file_type\":\"\",\"width\":390,\"height\":420,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/images\\/demo\\/t4.jpg\"}', '0', '0', '0', '2024-11-26 20:33:27', '2024-11-26 20:33:27'), ('374', '0', '/images/demo/banner-left.jpg', '/images/demo/banner-left.jpg', 'fa/virtuemart/product-category/cras-id-risus-sem-detail', 'fa/virtuemart/product-category/cras-id-risus-sem-detail', '0', '{\"file_type\":\"\",\"width\":270,\"height\":369,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/images\\/demo\\/banner-left.jpg\"}', '0', '0', '0', '2024-11-26 20:33:27', '2024-11-26 20:33:27'), ('375', '0', '/images/slider/cache/1d28c922c1312bf431385bab8172673e/bg.jpg', '/images/slider/cache/1d28c922c1312bf431385bab8172673e/bg.jpg', 'fa/virtuemart/product-category/cras-id-risus-sem-detail', 'fa/virtuemart/product-category/cras-id-risus-sem-detail', '0', '{\"file_type\":\"\",\"width\":1920,\"height\":800,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":{\"skip-lazy\":\"1\"},\"url\":\"\\/images\\/slider\\/cache\\/1d28c922c1312bf431385bab8172673e\\/bg.jpg\"}', '0', '0', '0', '2024-11-26 20:33:27', '2024-11-26 20:33:27'), ('376', '0', '/images/demo/methor.png', '/images/demo/methor.png', 'fa/virtuemart/product-category/cras-id-risus-sem-detail', 'fa/virtuemart/product-category/cras-id-risus-sem-detail', '0', '{\"file_type\":\"\",\"width\":387,\"height\":22,\"el_width\":0,\"el_height\":0,\"pixels\":0,\"alt\":\"\",\"title\":\"\",\"geo\":\"\",\"license\":\"\",\"data\":[],\"url\":\"\\/images\\/demo\\/methor.png\"}', '0', '0', '0', '2024-11-26 20:33:27', '2024-11-26 20:33:27');/**ABDB**/
| ver. 1.4 |
Github
|
.
| PHP 7.4.33 | Генерация страницы: 0.25 |
proxy
|
phpinfo
|
Настройка