HEX
Server: nginx/1.18.0
System: Linux m1-ws1-ams3 5.4.0-148-generic #165-Ubuntu SMP Tue Apr 18 08:53:12 UTC 2023 x86_64
User: root (0)
PHP: 7.4.33
Disabled: NONE
Upload Files
File: /opt/aphex/sites/platowinkels.nl/db.sql
-- MySQL dump 10.13  Distrib 8.0.32, for Linux (x86_64)
--
-- Host: localhost    Database: platowinkels_nl
-- ------------------------------------------------------
-- Server version	8.0.32-0ubuntu0.20.04.2

/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!50503 SET NAMES utf8mb4 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;

--
-- Table structure for table `wp_commentmeta`
--

DROP TABLE IF EXISTS `wp_commentmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_commentmeta` (
  `meta_id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `comment_id` bigint unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`meta_id`),
  KEY `comment_id` (`comment_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_commentmeta`
--

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

--
-- Table structure for table `wp_comments`
--

DROP TABLE IF EXISTS `wp_comments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_comments` (
  `comment_ID` bigint unsigned NOT NULL AUTO_INCREMENT,
  `comment_post_ID` bigint unsigned NOT NULL DEFAULT '0',
  `comment_author` tinytext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `comment_author_email` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_author_url` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_author_IP` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_content` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `comment_karma` int NOT NULL DEFAULT '0',
  `comment_approved` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1',
  `comment_agent` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_type` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'comment',
  `comment_parent` bigint unsigned NOT NULL DEFAULT '0',
  `user_id` bigint unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`comment_ID`),
  KEY `comment_post_ID` (`comment_post_ID`),
  KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
  KEY `comment_date_gmt` (`comment_date_gmt`),
  KEY `comment_parent` (`comment_parent`),
  KEY `comment_author_email` (`comment_author_email`(10))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_comments`
--

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

--
-- Table structure for table `wp_links`
--

DROP TABLE IF EXISTS `wp_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_links` (
  `link_id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `link_url` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_image` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_target` varchar(25) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_description` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_visible` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Y',
  `link_owner` bigint unsigned NOT NULL DEFAULT '1',
  `link_rating` int NOT NULL DEFAULT '0',
  `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `link_rel` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_notes` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `link_rss` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`link_id`),
  KEY `link_visible` (`link_visible`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_links`
--

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

--
-- Table structure for table `wp_options`
--

DROP TABLE IF EXISTS `wp_options`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_options` (
  `option_id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `option_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `option_value` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `autoload` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'yes',
  PRIMARY KEY (`option_id`),
  UNIQUE KEY `option_name` (`option_name`),
  KEY `autoload` (`autoload`)
) ENGINE=InnoDB AUTO_INCREMENT=57001 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_options`
--

LOCK TABLES `wp_options` WRITE;
/*!40000 ALTER TABLE `wp_options` DISABLE KEYS */;
INSERT INTO `wp_options` VALUES (1,'siteurl','http://platowinkels.nl','yes'),(2,'home','http://platowinkels.nl','yes'),(3,'blogname','Plato','yes'),(4,'blogdescription','Plato The Great Philosopher','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','[email protected]','yes'),(7,'start_of_week','1','yes'),(8,'use_balanceTags','0','yes'),(9,'use_smilies','1','yes'),(10,'require_name_email','1','yes'),(11,'comments_notify','0','yes'),(12,'posts_per_rss','10','yes'),(13,'rss_use_excerpt','0','yes'),(14,'mailserver_url','mail.example.com','yes'),(15,'mailserver_login','[email protected]','yes'),(16,'mailserver_pass','password','yes'),(17,'mailserver_port','110','yes'),(18,'default_category','2','yes'),(19,'default_comment_status','closed','yes'),(20,'default_ping_status','closed','yes'),(21,'default_pingback_flag','1','yes'),(22,'posts_per_page','10','yes'),(23,'date_format','F j, Y','yes'),(24,'time_format','g:i a','yes'),(25,'links_updated_date_format','F j, Y g:i a','yes'),(26,'comment_moderation','0','yes'),(27,'moderation_notify','0','yes'),(28,'permalink_structure','/%postname%/','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:16:{i:0;s:43:\"wp-sheet-editor-premium/wp-sheet-editor.php\";i:1;s:35:\"404-to-homepage/404-to-homepage.php\";i:2;s:19:\"akismet/akismet.php\";i:3;s:91:\"all-in-one-wp-migration-multisite-extension/all-in-one-wp-migration-multisite-extension.php\";i:4;s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";i:5;s:81:\"auto-terms-of-service-and-privacy-policy/auto-terms-of-service-privacy-policy.php\";i:6;s:33:\"classic-editor/classic-editor.php\";i:7;s:36:\"contact-form-7/wp-contact-form-7.php\";i:8;s:37:\"link-whisper-premium/link-whisper.php\";i:9;s:29:\"mainwp-child/mainwp-child.php\";i:10;s:49:\"scheduled-post-trigger/scheduled-post-trigger.php\";i:11;s:47:\"simple-social-buttons/simple-social-buttons.php\";i:12;s:43:\"simple-social-icons/simple-social-icons.php\";i:13;s:29:\"theme-editor/theme_editor.php\";i:14;s:37:\"wordpress-autoblogging/basic-auth.php\";i:15;s:24:\"wordpress-seo/wp-seo.php\";}','yes'),(34,'category_base','','yes'),(35,'ping_sites','http://rpc.pingomatic.com/','yes'),(36,'comment_max_links','2','yes'),(37,'gmt_offset','0','yes'),(38,'default_email_category','1','yes'),(39,'recently_edited','','no'),(40,'template','opus-blog','yes'),(41,'stylesheet','opus-blog','yes'),(44,'comment_registration','0','yes'),(45,'html_type','text/html','yes'),(46,'use_trackback','0','yes'),(47,'default_role','subscriber','yes'),(48,'db_version','51917','yes'),(49,'uploads_use_yearmonth_folders','1','yes'),(50,'upload_path','','yes'),(51,'blog_public','1','yes'),(52,'default_link_category','2','yes'),(53,'show_on_front','posts','yes'),(54,'tag_base','','yes'),(55,'show_avatars','1','yes'),(56,'avatar_rating','G','yes'),(57,'upload_url_path','','yes'),(58,'thumbnail_size_w','150','yes'),(59,'thumbnail_size_h','150','yes'),(60,'thumbnail_crop','1','yes'),(61,'medium_size_w','300','yes'),(62,'medium_size_h','300','yes'),(63,'avatar_default','mystery','yes'),(64,'large_size_w','1024','yes'),(65,'large_size_h','1024','yes'),(66,'image_default_link_type','none','yes'),(67,'image_default_size','','yes'),(68,'image_default_align','','yes'),(69,'close_comments_for_old_posts','0','yes'),(70,'close_comments_days_old','14','yes'),(71,'thread_comments','1','yes'),(72,'thread_comments_depth','5','yes'),(73,'page_comments','0','yes'),(74,'comments_per_page','50','yes'),(75,'default_comments_page','newest','yes'),(76,'comment_order','asc','yes'),(77,'sticky_posts','a:7:{i:0;i:83;i:1;i:86;i:2;i:90;i:3;i:94;i:4;i:98;i:5;i:105;i:6;i:111;}','yes'),(78,'widget_categories','a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(79,'widget_text','a:3:{i:1;a:0:{}i:2;a:4:{s:5:\"title\";s:14:\"Subscribe Here\";s:4:\"text\";s:41:\"[contact-form-7 id=\"57\" title=\"Untitled\"]\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;}s:12:\"_multiwidget\";i:1;}','yes'),(80,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(81,'uninstall_plugins','a:3:{s:33:\"classic-editor/classic-editor.php\";a:2:{i:0;s:14:\"Classic_Editor\";i:1;s:9:\"uninstall\";}s:43:\"simple-social-icons/simple-social-icons.php\";a:2:{i:0;s:26:\"Simple_Social_Icons_Widget\";i:1;s:16:\"plugin_uninstall\";}s:31:\"cache-enabler/cache-enabler.php\";a:2:{i:0;s:13:\"Cache_Enabler\";i:1;s:12:\"on_uninstall\";}}','no'),(82,'timezone_string','','yes'),(83,'page_for_posts','0','yes'),(84,'page_on_front','0','yes'),(85,'default_post_format','0','yes'),(86,'link_manager_enabled','0','yes'),(87,'finished_splitting_shared_terms','1','yes'),(88,'site_icon','71','yes'),(89,'medium_large_size_w','768','yes'),(90,'medium_large_size_h','0','yes'),(91,'wp_page_for_privacy_policy','3','yes'),(92,'show_comments_cookies_opt_in','1','yes'),(93,'admin_email_lifespan','1609361873','yes'),(94,'initial_db_version','47018','yes'),(95,'wp_user_roles','a:9:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:62:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;s:20:\"wpseo_manage_options\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:35:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:15:\"wpseo_bulk_edit\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}s:24:\"manage_wpautoterms_pages\";a:2:{s:4:\"name\";s:37:\"WPAutoTerms Pages Editor (additional)\";s:12:\"capabilities\";a:10:{s:22:\"edit_wpautoterms_pages\";b:1;s:29:\"edit_others_wpautoterms_pages\";b:1;s:30:\"edit_private_wpautoterms_pages\";b:1;s:32:\"edit_published_wpautoterms_pages\";b:1;s:30:\"read_private_wpautoterms_pages\";b:1;s:24:\"delete_wpautoterms_pages\";b:1;s:31:\"delete_others_wpautoterms_pages\";b:1;s:32:\"delete_private_wpautoterms_pages\";b:1;s:34:\"delete_published_wpautoterms_pages\";b:1;s:25:\"publish_wpautoterms_pages\";b:1;}}s:31:\"manage_wpautoterms_pages_editor\";a:2:{s:4:\"name\";s:33:\"Editor + WPAutoTerms Pages Editor\";s:12:\"capabilities\";a:44:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:22:\"edit_wpautoterms_pages\";b:1;s:29:\"edit_others_wpautoterms_pages\";b:1;s:30:\"edit_private_wpautoterms_pages\";b:1;s:32:\"edit_published_wpautoterms_pages\";b:1;s:30:\"read_private_wpautoterms_pages\";b:1;s:24:\"delete_wpautoterms_pages\";b:1;s:31:\"delete_others_wpautoterms_pages\";b:1;s:32:\"delete_private_wpautoterms_pages\";b:1;s:34:\"delete_published_wpautoterms_pages\";b:1;s:25:\"publish_wpautoterms_pages\";b:1;}}s:13:\"wpseo_manager\";a:2:{s:4:\"name\";s:11:\"SEO Manager\";s:12:\"capabilities\";a:38:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:15:\"wpseo_bulk_edit\";b:1;s:28:\"wpseo_edit_advanced_metadata\";b:1;s:20:\"wpseo_manage_options\";b:1;s:23:\"view_site_health_checks\";b:1;}}s:12:\"wpseo_editor\";a:2:{s:4:\"name\";s:10:\"SEO Editor\";s:12:\"capabilities\";a:36:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:15:\"wpseo_bulk_edit\";b:1;s:28:\"wpseo_edit_advanced_metadata\";b:1;}}}','yes'),(96,'fresh_site','0','yes'),(97,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(98,'widget_recent-posts','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(99,'widget_recent-comments','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(100,'widget_archives','a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(101,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(102,'sidebars_widgets','a:7:{s:19:\"wp_inactive_widgets\";a:3:{i:0;s:10:\"archives-2\";i:1;s:6:\"meta-2\";i:2;s:17:\"recent-comments-2\";}s:9:\"sidebar-1\";a:7:{i:0;s:8:\"search-2\";i:1;s:21:\"simple-social-icons-2\";i:2;s:12:\"categories-2\";i:3;s:10:\"calendar-2\";i:4;s:13:\"media_image-2\";i:5;s:7:\"block-3\";i:6;s:7:\"block-5\";}s:8:\"footer-1\";a:1:{i:0;s:13:\"media_video-2\";}s:8:\"footer-2\";a:1:{i:0;s:13:\"media_image-3\";}s:8:\"footer-3\";a:1:{i:0;s:6:\"text-2\";}s:8:\"footer-4\";a:0:{}s:13:\"array_version\";i:3;}','yes'),(103,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(104,'db-version-secure','SZzcDXb7h6','yes'),(105,'tagline','','yes'),(107,'auth_key','F[4Qx~uBxZ VDP_{8f^Y^$~Y6Zu,K<CwBE3mX?g(tU;GMXk`D0k>n$,~i6`0_I)K','no'),(108,'auth_salt','hwMbSXOrDB$;lFnZRTt*CMT-$ (3h}5fQ5s=P)Zii8N~65KY]a|Ak^73@0U#IRcb','no'),(109,'logged_in_key','t{<=/iDDh[5RQ>FQLX4q(L15a(4{rhxZaMhGM3hWBpt``AY-5U),-Tw%KLeB>iFM','no'),(110,'logged_in_salt','d%.)!pT sbvnj<#i[myezFS-`J/IR=<]aTY]B7]/SJPdb.nrmsOS3ROh?hEniz,A','no'),(111,'cron','a:14:{i:1680076630;a:1:{s:27:\"wpil_broken_link_check_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"10min\";s:4:\"args\";a:0:{}s:8:\"interval\";i:600;}}}i:1680076674;a:1:{s:34:\"wp_privacy_delete_old_export_files\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1680080274;a:3:{s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1680085642;a:1:{s:30:\"wp_scheduled_auto_draft_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1680087665;a:1:{s:19:\"wpseo-reindex-links\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1680100874;a:1:{s:13:\"wpseo-reindex\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1680101705;a:1:{s:21:\"wp_update_user_counts\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1680112991;a:1:{s:21:\"ai1wm_storage_cleanup\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1680115371;a:1:{s:18:\"wp_https_detection\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1680123474;a:4:{s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:15:\"ebn_optimize_db\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1680158539;a:1:{s:31:\"wpseo_permalink_structure_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1680382674;a:1:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1680519664;a:1:{s:16:\"wpseo_ryte_fetch\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}s:7:\"version\";i:2;}','yes'),(112,'update_day','5','yes'),(113,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(114,'widget_calendar','a:2:{i:2;a:1:{s:5:\"title\";s:8:\"Calendar\";}s:12:\"_multiwidget\";i:1;}','yes'),(115,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(116,'widget_media_image','a:3:{i:2;a:15:{s:4:\"size\";s:4:\"full\";s:5:\"width\";i:804;s:6:\"height\";i:1052;s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:9:\"link_type\";s:6:\"custom\";s:8:\"link_url\";s:1:\"#\";s:13:\"image_classes\";s:0:\"\";s:12:\"link_classes\";s:0:\"\";s:8:\"link_rel\";s:0:\"\";s:17:\"link_target_blank\";b:0;s:11:\"image_title\";s:0:\"\";s:13:\"attachment_id\";i:55;s:3:\"url\";s:57:\"http://platowinkels.nl/wp-content/uploads/2020/08/602.jpg\";s:5:\"title\";s:5:\"Plato\";}i:3;a:15:{s:4:\"size\";s:5:\"large\";s:5:\"width\";i:1688;s:6:\"height\";i:1125;s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:9:\"link_type\";s:6:\"custom\";s:8:\"link_url\";s:1:\"#\";s:13:\"image_classes\";s:0:\"\";s:12:\"link_classes\";s:0:\"\";s:8:\"link_rel\";s:0:\"\";s:17:\"link_target_blank\";b:0;s:11:\"image_title\";s:0:\"\";s:13:\"attachment_id\";i:56;s:3:\"url\";s:66:\"http://platowinkels.nl/wp-content/uploads/2020/08/603-1024x682.jpg\";s:5:\"title\";s:10:\"Click Here\";}s:12:\"_multiwidget\";i:1;}','yes'),(117,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(118,'widget_media_video','a:2:{i:2;a:11:{s:7:\"preload\";s:8:\"metadata\";s:4:\"loop\";b:0;s:7:\"content\";s:0:\"\";s:3:\"mp4\";s:0:\"\";s:3:\"m4v\";s:0:\"\";s:4:\"webm\";s:0:\"\";s:3:\"ogv\";s:0:\"\";s:3:\"flv\";s:0:\"\";s:13:\"attachment_id\";i:0;s:3:\"url\";s:43:\"https://www.youtube.com/watch?v=VDiyQub6vpw\";s:5:\"title\";s:9:\"Know More\";}s:12:\"_multiwidget\";i:1;}','yes'),(119,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(120,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(122,'nonce_key','OU:PSF&Uxw1EN]^(cMw7OF~+:h*j).S&UE`n(*uava[g<shk$4jkhx`$EL)Fm(Fh','no'),(123,'nonce_salt','cSMeD,W<ra}A3-&IbxEpDfD:<+AXAGa8?eeTc`%A:{Ixgf?>q[ C&5;s?1eJd]-;','no'),(124,'widget_akismet_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(133,'current_theme','Opus Blog','yes'),(136,'theme_mods_arke_child','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1597662615;s:4:\"data\";a:4:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:4:{i:0;s:8:\"search-2\";i:1;s:12:\"categories-2\";i:2;s:14:\"recent-posts-2\";i:3;s:11:\"tag_cloud-2\";}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}}}}','yes'),(137,'crawl-delay-value','6','yes'),(138,'secure_auth_key','g%/ e)1KG?1^WLcAQ!``.(l&H60wsaDrBwY[L$$|soy^Qh)~,NHu~;LAaHA Z2wR','no'),(139,'secure_auth_salt','H3w`&)ek!sM@Ju#bjs_IPeVsz/f}AnklmGuRP-){Z-Vy(-Um:ykRnrlg_sKX$P:Q','no'),(165,'recently_activated','a:0:{}','yes'),(172,'mk_te_settings_options','a:5:{s:7:\"e_d_t_e\";s:3:\"yes\";s:17:\"code_editor_theme\";s:6:\"cobalt\";s:9:\"e_w_d_t_e\";s:3:\"yes\";s:7:\"e_d_p_e\";s:3:\"yes\";s:9:\"e_w_d_p_e\";s:3:\"yes\";}','yes'),(177,'wpautoterms_activated','1','yes'),(178,'wpautoterms_legal_pages_slug','wpautoterms','yes'),(179,'wpautoterms_version','2.4.9','yes'),(180,'widget_wpautoterms_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(181,'wpautoterms_links','1','yes'),(182,'wpautoterms_links_bg_color','#ffffff','yes'),(183,'wpautoterms_links_font','Arial, sans-serif','yes'),(184,'wpautoterms_links_font_size','14px','yes'),(185,'wpautoterms_links_text_color','#cccccc','yes'),(186,'wpautoterms_links_text_align','center','yes'),(187,'wpautoterms_links_links_color','#000000','yes'),(188,'wpautoterms_links_separator','-','yes'),(189,'wpautoterms_links_target_blank','','yes'),(190,'wpautoterms_update_notice','','yes'),(191,'wpautoterms_update_notice_bar_position','top','yes'),(192,'wpautoterms_update_notice_bar_type','static','yes'),(193,'wpautoterms_update_notice_disable_logged','yes','yes'),(194,'wpautoterms_update_notice_duration','3','yes'),(195,'wpautoterms_update_notice_message','Our <a href=\"[wpautoterms page_link]\">[wpautoterms page_title]</a> has been updated on [wpautoterms last_updated_date].','yes'),(196,'wpautoterms_update_notice_message_multiple','Our [wpautoterms page_links] have been updated on [wpautoterms last_updated_date].','yes'),(197,'wpautoterms_update_notice_close_message','Close','yes'),(198,'wpautoterms_update_notice_bg_color','','yes'),(199,'wpautoterms_update_notice_font','','yes'),(200,'wpautoterms_update_notice_font_size','','yes'),(201,'wpautoterms_update_notice_text_color','','yes'),(202,'wpautoterms_update_notice_links_color','','yes'),(203,'wpautoterms_cookies_notice','','yes'),(204,'wpautoterms_cookies_notice_bar_position','top','yes'),(205,'wpautoterms_cookies_notice_bar_type','static','yes'),(206,'wpautoterms_cookies_notice_disable_logged','yes','yes'),(207,'wpautoterms_cookies_notice_message','We use cookies to ensure that we give you the best experience on our website','yes'),(208,'wpautoterms_cookies_notice_close_message','Close','yes'),(209,'wpautoterms_cookies_notice_bg_color','','yes'),(210,'wpautoterms_cookies_notice_font','','yes'),(211,'wpautoterms_cookies_notice_font_size','','yes'),(212,'wpautoterms_cookies_notice_text_color','','yes'),(213,'wpautoterms_cookies_notice_links_color','','yes'),(214,'wpautoterms_endorsements','','yes'),(215,'wpautoterms_endorsements_message','<p>Some of the links in this article are \"affiliate links\", a link with a special tracking code. This means if you click on an affiliate link and purchase the item, we will receive an affiliate commission.</p> <p>The price of the item is the same whether it is an affiliate link or not. Regardless, we only recommend products or services we believe will add value to our readers.</p> <p>By using the affiliate links, you are helping support our Website, and we genuinely appreciate your support.</p>','yes'),(216,'wpautoterms_endorsements_when','','yes'),(217,'wpautoterms_endorsements_tag','','yes'),(218,'wpautoterms_site_name','www.platowinkels.nl','yes'),(219,'wpautoterms_site_url','http://platowinkels.nl','yes'),(220,'wpautoterms_company_name','www.platowinkels.nl','yes'),(221,'wpautoterms_country','','yes'),(222,'wpautoterms_state','','yes'),(223,'wpautoterms_show_in_pages_widget','','yes'),(224,'wpautoterms_cache_plugins_compat','','yes'),(225,'wpautoterms_license','','yes'),(227,'wpautoterms_cache_plugins_detection','','yes'),(228,'wpautoterms_ob_total','1','yes'),(229,'wpautoterms_ob_not_intercepted','0','yes'),(230,'wpseo','a:58:{s:8:\"tracking\";b:0;s:22:\"license_server_version\";i:2;s:15:\"ms_defaults_set\";b:0;s:40:\"ignore_search_engines_discouraged_notice\";b:0;s:19:\"indexing_first_time\";b:1;s:16:\"indexing_started\";b:0;s:15:\"indexing_reason\";s:23:\"home_url_option_changed\";s:29:\"indexables_indexing_completed\";b:0;s:7:\"version\";s:4:\"19.0\";s:16:\"previous_version\";s:4:\"18.9\";s:20:\"disableadvanced_meta\";b:1;s:30:\"enable_headless_rest_endpoints\";b:1;s:17:\"ryte_indexability\";b:1;s:11:\"baiduverify\";s:0:\"\";s:12:\"googleverify\";s:0:\"\";s:8:\"msverify\";s:0:\"\";s:12:\"yandexverify\";s:0:\"\";s:9:\"site_type\";s:0:\"\";s:20:\"has_multiple_authors\";s:0:\"\";s:16:\"environment_type\";s:0:\"\";s:23:\"content_analysis_active\";b:1;s:23:\"keyword_analysis_active\";b:1;s:21:\"enable_admin_bar_menu\";b:1;s:26:\"enable_cornerstone_content\";b:1;s:18:\"enable_xml_sitemap\";b:1;s:24:\"enable_text_link_counter\";b:1;s:22:\"show_onboarding_notice\";b:1;s:18:\"first_activated_on\";i:1597662064;s:13:\"myyoast-oauth\";b:0;s:26:\"semrush_integration_active\";b:1;s:14:\"semrush_tokens\";a:0:{}s:20:\"semrush_country_code\";s:2:\"us\";s:19:\"permalink_structure\";s:12:\"/%postname%/\";s:8:\"home_url\";s:23:\"https://platowinkels.nl\";s:18:\"dynamic_permalinks\";b:0;s:17:\"category_base_url\";s:0:\"\";s:12:\"tag_base_url\";s:0:\"\";s:21:\"custom_taxonomy_slugs\";a:0:{}s:29:\"enable_enhanced_slack_sharing\";b:1;s:25:\"zapier_integration_active\";b:0;s:19:\"zapier_subscription\";a:0:{}s:14:\"zapier_api_key\";s:0:\"\";s:23:\"enable_metabox_insights\";b:1;s:23:\"enable_link_suggestions\";b:1;s:26:\"algolia_integration_active\";b:0;s:14:\"import_cursors\";a:0:{}s:13:\"workouts_data\";a:1:{s:13:\"configuration\";a:1:{s:13:\"finishedSteps\";a:0:{}}}s:28:\"configuration_finished_steps\";a:0:{}s:36:\"dismiss_configuration_workout_notice\";b:0;s:19:\"importing_completed\";a:0:{}s:26:\"wincher_integration_active\";b:1;s:14:\"wincher_tokens\";a:0:{}s:36:\"wincher_automatically_add_keyphrases\";b:0;s:18:\"wincher_website_id\";s:0:\"\";s:18:\"first_time_install\";b:0;s:34:\"should_redirect_after_install_free\";b:0;s:34:\"activation_redirect_timestamp_free\";i:1652258756;s:25:\"remove_feed_post_comments\";b:0;}','yes'),(231,'wpseo_titles','a:126:{s:17:\"forcerewritetitle\";b:0;s:9:\"separator\";s:7:\"sc-dash\";s:16:\"title-home-wpseo\";s:42:\"%%sitename%% %%page%% %%sep%% %%sitedesc%%\";s:18:\"title-author-wpseo\";s:41:\"%%name%%, Author at %%sitename%% %%page%%\";s:19:\"title-archive-wpseo\";s:38:\"%%date%% %%page%% %%sep%% %%sitename%%\";s:18:\"title-search-wpseo\";s:63:\"You searched for %%searchphrase%% %%page%% %%sep%% %%sitename%%\";s:15:\"title-404-wpseo\";s:35:\"Page not found %%sep%% %%sitename%%\";s:25:\"social-title-author-wpseo\";s:8:\"%%name%%\";s:26:\"social-title-archive-wpseo\";s:8:\"%%date%%\";s:31:\"social-description-author-wpseo\";s:0:\"\";s:32:\"social-description-archive-wpseo\";s:0:\"\";s:29:\"social-image-url-author-wpseo\";s:0:\"\";s:30:\"social-image-url-archive-wpseo\";s:0:\"\";s:28:\"social-image-id-author-wpseo\";i:0;s:29:\"social-image-id-archive-wpseo\";i:0;s:19:\"metadesc-home-wpseo\";s:0:\"\";s:21:\"metadesc-author-wpseo\";s:0:\"\";s:22:\"metadesc-archive-wpseo\";s:0:\"\";s:9:\"rssbefore\";s:0:\"\";s:8:\"rssafter\";s:53:\"The post %%POSTLINK%% appeared first on %%BLOGLINK%%.\";s:20:\"noindex-author-wpseo\";b:0;s:28:\"noindex-author-noposts-wpseo\";b:1;s:21:\"noindex-archive-wpseo\";b:1;s:14:\"disable-author\";b:0;s:12:\"disable-date\";b:0;s:19:\"disable-post_format\";b:0;s:18:\"disable-attachment\";b:1;s:23:\"is-media-purge-relevant\";b:0;s:20:\"breadcrumbs-404crumb\";s:25:\"Error 404: Page not found\";s:29:\"breadcrumbs-display-blog-page\";b:1;s:20:\"breadcrumbs-boldlast\";b:0;s:25:\"breadcrumbs-archiveprefix\";s:12:\"Archives for\";s:18:\"breadcrumbs-enable\";b:0;s:16:\"breadcrumbs-home\";s:4:\"Home\";s:18:\"breadcrumbs-prefix\";s:0:\"\";s:24:\"breadcrumbs-searchprefix\";s:16:\"You searched for\";s:15:\"breadcrumbs-sep\";s:7:\"&raquo;\";s:12:\"website_name\";s:0:\"\";s:11:\"person_name\";s:0:\"\";s:11:\"person_logo\";s:0:\"\";s:22:\"alternate_website_name\";s:0:\"\";s:12:\"company_logo\";s:0:\"\";s:12:\"company_name\";s:0:\"\";s:17:\"company_or_person\";s:7:\"company\";s:25:\"company_or_person_user_id\";b:0;s:17:\"stripcategorybase\";b:0;s:26:\"open_graph_frontpage_title\";s:12:\"%%sitename%%\";s:25:\"open_graph_frontpage_desc\";s:0:\"\";s:26:\"open_graph_frontpage_image\";s:0:\"\";s:10:\"title-post\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:13:\"metadesc-post\";s:0:\"\";s:12:\"noindex-post\";b:0;s:23:\"display-metabox-pt-post\";b:1;s:23:\"post_types-post-maintax\";i:0;s:21:\"schema-page-type-post\";s:7:\"WebPage\";s:24:\"schema-article-type-post\";s:7:\"Article\";s:17:\"social-title-post\";s:9:\"%%title%%\";s:23:\"social-description-post\";s:0:\"\";s:21:\"social-image-url-post\";s:0:\"\";s:20:\"social-image-id-post\";i:0;s:10:\"title-page\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:13:\"metadesc-page\";s:0:\"\";s:12:\"noindex-page\";b:0;s:23:\"display-metabox-pt-page\";b:1;s:23:\"post_types-page-maintax\";i:0;s:21:\"schema-page-type-page\";s:7:\"WebPage\";s:24:\"schema-article-type-page\";s:4:\"None\";s:17:\"social-title-page\";s:9:\"%%title%%\";s:23:\"social-description-page\";s:0:\"\";s:21:\"social-image-url-page\";s:0:\"\";s:20:\"social-image-id-page\";i:0;s:16:\"title-attachment\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:19:\"metadesc-attachment\";s:0:\"\";s:18:\"noindex-attachment\";b:0;s:29:\"display-metabox-pt-attachment\";b:1;s:29:\"post_types-attachment-maintax\";i:0;s:27:\"schema-page-type-attachment\";s:7:\"WebPage\";s:30:\"schema-article-type-attachment\";s:4:\"None\";s:18:\"title-tax-category\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:21:\"metadesc-tax-category\";s:0:\"\";s:28:\"display-metabox-tax-category\";b:1;s:20:\"noindex-tax-category\";b:0;s:25:\"social-title-tax-category\";s:23:\"%%term_title%% Archives\";s:31:\"social-description-tax-category\";s:0:\"\";s:29:\"social-image-url-tax-category\";s:0:\"\";s:28:\"social-image-id-tax-category\";i:0;s:18:\"title-tax-post_tag\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:21:\"metadesc-tax-post_tag\";s:0:\"\";s:28:\"display-metabox-tax-post_tag\";b:1;s:20:\"noindex-tax-post_tag\";b:0;s:25:\"social-title-tax-post_tag\";s:23:\"%%term_title%% Archives\";s:31:\"social-description-tax-post_tag\";s:0:\"\";s:29:\"social-image-url-tax-post_tag\";s:0:\"\";s:28:\"social-image-id-tax-post_tag\";i:0;s:21:\"title-tax-post_format\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:24:\"metadesc-tax-post_format\";s:0:\"\";s:31:\"display-metabox-tax-post_format\";b:1;s:23:\"noindex-tax-post_format\";b:1;s:28:\"social-title-tax-post_format\";s:23:\"%%term_title%% Archives\";s:34:\"social-description-tax-post_format\";s:0:\"\";s:32:\"social-image-url-tax-post_format\";s:0:\"\";s:31:\"social-image-id-tax-post_format\";i:0;s:22:\"title-wpautoterms_page\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:25:\"metadesc-wpautoterms_page\";s:0:\"\";s:24:\"noindex-wpautoterms_page\";b:0;s:35:\"display-metabox-pt-wpautoterms_page\";b:1;s:35:\"post_types-wpautoterms_page-maintax\";i:0;s:33:\"schema-page-type-wpautoterms_page\";s:7:\"WebPage\";s:36:\"schema-article-type-wpautoterms_page\";s:4:\"None\";s:29:\"social-title-wpautoterms_page\";s:9:\"%%title%%\";s:35:\"social-description-wpautoterms_page\";s:0:\"\";s:33:\"social-image-url-wpautoterms_page\";s:0:\"\";s:32:\"social-image-id-wpautoterms_page\";i:0;s:32:\"title-ptarchive-wpautoterms_page\";s:51:\"%%pt_plural%% Archive %%page%% %%sep%% %%sitename%%\";s:35:\"metadesc-ptarchive-wpautoterms_page\";s:0:\"\";s:34:\"bctitle-ptarchive-wpautoterms_page\";s:0:\"\";s:34:\"noindex-ptarchive-wpautoterms_page\";b:0;s:39:\"social-title-ptarchive-wpautoterms_page\";s:21:\"%%pt_plural%% Archive\";s:45:\"social-description-ptarchive-wpautoterms_page\";s:0:\"\";s:43:\"social-image-url-ptarchive-wpautoterms_page\";s:0:\"\";s:42:\"social-image-id-ptarchive-wpautoterms_page\";i:0;s:14:\"person_logo_id\";i:0;s:15:\"company_logo_id\";i:0;s:17:\"company_logo_meta\";b:0;s:16:\"person_logo_meta\";b:0;s:29:\"open_graph_frontpage_image_id\";i:0;}','yes'),(232,'wpseo_social','a:18:{s:13:\"facebook_site\";s:0:\"\";s:13:\"instagram_url\";s:0:\"\";s:12:\"linkedin_url\";s:0:\"\";s:11:\"myspace_url\";s:0:\"\";s:16:\"og_default_image\";s:0:\"\";s:19:\"og_default_image_id\";s:0:\"\";s:18:\"og_frontpage_title\";s:0:\"\";s:17:\"og_frontpage_desc\";s:0:\"\";s:18:\"og_frontpage_image\";s:0:\"\";s:21:\"og_frontpage_image_id\";s:0:\"\";s:9:\"opengraph\";b:1;s:13:\"pinterest_url\";s:0:\"\";s:15:\"pinterestverify\";s:0:\"\";s:7:\"twitter\";b:1;s:12:\"twitter_site\";s:0:\"\";s:17:\"twitter_card_type\";s:19:\"summary_large_image\";s:11:\"youtube_url\";s:0:\"\";s:13:\"wikipedia_url\";s:0:\"\";}','yes'),(233,'wpseo_flush_rewrite','1','yes'),(234,'yoast_migrations_free','a:1:{s:7:\"version\";s:4:\"19.0\";}','yes'),(256,'wpcf7','a:2:{s:7:\"version\";s:7:\"5.5.6.1\";s:13:\"bulk_validate\";a:4:{s:9:\"timestamp\";i:1597662125;s:7:\"version\";s:5:\"5.2.1\";s:11:\"count_valid\";i:1;s:13:\"count_invalid\";i:0;}}','yes'),(259,'theme_mods_opus-blog','a:6:{i:0;b:0;s:18:\"nav_menu_locations\";a:3:{s:6:\"menu-1\";i:7;s:3:\"top\";i:8;s:6:\"social\";i:9;}s:18:\"custom_css_post_id\";i:59;s:17:\"opus_blog_options\";a:6:{s:25:\"opus-blog-select-category\";i:3;s:34:\"opus_blog_enable_top_header_search\";b:1;s:27:\"opus_blog_enable_top_header\";b:1;s:34:\"opus_blog_enable_top_header_social\";b:1;s:32:\"opus_blog_enable_top_header_menu\";b:1;s:27:\"opus-blog-content-show-from\";s:7:\"content\";}s:11:\"custom_logo\";i:68;s:16:\"header_textcolor\";s:5:\"blank\";}','yes'),(260,'theme_switched','','yes'),(261,'widget_opus-blog-featured-post','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(262,'widget_opus-blog-author','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(263,'widget_opus-blog-social-icons','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(266,'wpautoterms_cache_plugins_detected','1','yes'),(268,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','yes'),(271,'widget_pe_recent_posts','a:2:{i:2;a:28:{s:5:\"title\";s:12:\"Recent Posts\";s:9:\"post_type\";s:4:\"post\";s:18:\"post_type_category\";s:8:\"category\";s:13:\"taxonomy_link\";s:1:\"0\";s:12:\"sticky_posts\";s:1:\"0\";s:10:\"title_show\";s:1:\"1\";s:14:\"title_linkable\";s:1:\"1\";s:8:\"readmore\";s:1:\"0\";s:10:\"header_tag\";s:1:\"5\";s:11:\"create_date\";s:1:\"0\";s:6:\"author\";s:1:\"0\";s:13:\"taxonomy_list\";s:1:\"0\";s:19:\"number_of_all_items\";s:2:\"10\";s:17:\"number_of_columns\";s:1:\"1\";s:14:\"one_row_mobile\";s:1:\"0\";s:14:\"number_of_rows\";s:1:\"3\";s:11:\"order_posts\";s:4:\"date\";s:15:\"order_direction\";s:4:\"DESC\";s:14:\"navigation_way\";s:1:\"1\";s:10:\"desc_limit\";s:1:\"0\";s:15:\"image_alignment\";s:4:\"left\";s:14:\"show_thumbnail\";s:1:\"1\";s:18:\"thumbnail_linkable\";s:1:\"1\";s:10:\"image_size\";s:9:\"thumbnail\";s:11:\"category_id\";N;s:12:\"grid_spacing\";s:2:\"10\";s:8:\"interval\";s:4:\"5000\";s:12:\"slider_pause\";s:4:\"null\";}s:12:\"_multiwidget\";i:1;}','yes'),(278,'theme_editor_email_verified_1','yes','yes'),(284,'widget_simple-social-icons','a:2:{i:2;a:33:{s:5:\"title\";s:15:\"Connect With Us\";s:4:\"size\";s:2:\"40\";s:13:\"border_radius\";s:1:\"3\";s:12:\"border_width\";s:1:\"0\";s:9:\"alignment\";s:9:\"alignleft\";s:10:\"icon_color\";s:7:\"#ffffff\";s:16:\"icon_color_hover\";s:7:\"#ffffff\";s:16:\"background_color\";s:7:\"#999999\";s:22:\"background_color_hover\";s:7:\"#666666\";s:12:\"border_color\";s:7:\"#ffffff\";s:18:\"border_color_hover\";s:7:\"#ffffff\";s:7:\"behance\";s:0:\"\";s:9:\"bloglovin\";s:0:\"\";s:8:\"dribbble\";s:0:\"\";s:5:\"email\";s:46:\"https://accounts.google.com/b/1/AddMailService\";s:8:\"facebook\";s:25:\"https://www.facebook.com/\";s:6:\"flickr\";s:0:\"\";s:6:\"github\";s:0:\"\";s:5:\"gplus\";s:0:\"\";s:9:\"instagram\";s:26:\"https://www.instagram.com/\";s:8:\"linkedin\";s:24:\"https://bd.linkedin.com/\";s:6:\"medium\";s:0:\"\";s:9:\"periscope\";s:0:\"\";s:5:\"phone\";s:0:\"\";s:9:\"pinterest\";s:22:\"https://pinterest.com/\";s:3:\"rss\";s:0:\"\";s:8:\"snapchat\";s:0:\"\";s:11:\"stumbleupon\";s:0:\"\";s:6:\"tumblr\";s:0:\"\";s:7:\"twitter\";s:20:\"https://twitter.com/\";s:5:\"vimeo\";s:0:\"\";s:4:\"xing\";s:0:\"\";s:7:\"youtube\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(285,'ssb_networks','a:1:{s:14:\"icon_selection\";s:47:\"fbshare,twitter,email,linkedin,reddit,pinterest\";}','yes'),(286,'ssb_themes','a:1:{s:10:\"icon_style\";s:16:\"round-btm-border\";}','yes'),(287,'ssb_positions','a:1:{s:8:\"position\";a:1:{s:6:\"inline\";s:6:\"inline\";}}','yes'),(288,'ssb_inline','a:14:{s:8:\"location\";s:5:\"below\";s:14:\"icon_alignment\";s:4:\"left\";s:9:\"animation\";s:12:\"no-animation\";s:12:\"share_counts\";s:1:\"0\";s:11:\"total_share\";s:1:\"0\";s:10:\"icon_space\";s:1:\"0\";s:16:\"icon_space_value\";s:0:\"\";s:11:\"hide_mobile\";s:1:\"0\";s:16:\"show_on_category\";s:1:\"0\";s:15:\"show_on_archive\";s:1:\"0\";s:11:\"show_on_tag\";s:1:\"0\";s:14:\"show_on_search\";s:1:\"0\";s:11:\"share_title\";s:0:\"\";s:5:\"posts\";a:2:{s:4:\"home\";s:4:\"home\";s:4:\"post\";s:4:\"post\";}}','yes'),(289,'ssb_advanced','a:1:{s:11:\"ssb_og_tags\";s:1:\"1\";}','yes'),(290,'ssb_pr_version','3.1.1','yes'),(291,'widget_ssb_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(292,'ssb_sidebar','a:8:{s:11:\"orientation\";s:4:\"left\";s:9:\"animation\";s:12:\"no-animation\";s:12:\"share_counts\";s:1:\"0\";s:11:\"total_share\";s:1:\"0\";s:10:\"icon_space\";s:1:\"0\";s:16:\"icon_space_value\";s:0:\"\";s:11:\"hide_mobile\";s:1:\"0\";s:5:\"posts\";a:2:{s:4:\"post\";s:4:\"post\";s:4:\"page\";s:4:\"page\";}}','yes'),(293,'ssb_media','','yes'),(294,'ssb_popup','','yes'),(295,'ssb_flyin','','yes'),(296,'ssb_active_time','1597665083','no'),(329,'secret_key','AcPCSCSm@p0}=z/$O7XaANrKNu,j^w:44wF<Hm6zPp`uq;QX^4uQ<b-|SYEK`RRA','no'),(517,'mainwp_child_update_version','1.5','yes'),(518,'mainwp_child_plugin_version','4.2.3','yes'),(519,'mainwp_child_auth','a:7:{i:5;s:32:\"5d537ad364fb3f257e1b453018708001\";s:4:\"last\";i:1680050229;i:4;s:32:\"b1a956afe83595fe2d04dba64093cee9\";i:3;s:32:\"f01fa7d6bd8bbd4188dc58e607ac99af\";i:2;s:32:\"8ad695f19b3684d4c80b50da4ef95934\";i:1;s:32:\"1e62b123c5858954c8ecf9fa7d788b07\";i:0;s:32:\"0d6f878b728e9f51aeb003bc56eaee9f\";}','yes'),(520,'mainwp_child_branding_settings','a:4:{s:13:\"contact_label\";s:15:\"Contact Support\";s:18:\"cancelled_branding\";b:0;s:23:\"branding_preserve_title\";s:0:\"\";s:21:\"branding_disconnected\";s:0:\"\";}','no'),(521,'mainwp_child_activated_once','1','no'),(524,'mainwp_child_nonce','0','no'),(525,'mainwp_child_nossl','0','yes'),(527,'mainwp_premium_updates','a:0:{}','no'),(530,'mainwp_child_clone_sites','0','no'),(531,'mainwp_child_siteid','218','no'),(532,'recovery_keys','a:0:{}','yes'),(539,'wpseo_ryte','a:2:{s:6:\"status\";i:-1;s:10:\"last_fetch\";i:1649071149;}','yes'),(706,'auto_core_update_notified','a:4:{s:4:\"type\";s:4:\"fail\";s:5:\"email\";s:20:\"[email protected]\";s:7:\"version\";s:5:\"6.0.3\";s:9:\"timestamp\";i:1668416024;}','no'),(712,'https_detection_errors','a:0:{}','yes'),(722,'finished_updating_comment_type','1','yes'),(785,'disallowed_keys','','no'),(786,'comment_previously_approved','1','yes'),(787,'auto_plugin_theme_update_emails','a:0:{}','no'),(788,'auto_update_core_dev','enabled','yes'),(789,'auto_update_core_minor','enabled','yes'),(790,'auto_update_core_major','unset','yes'),(791,'db_upgraded','','yes'),(835,'category_children','a:0:{}','yes'),(1669,'widget_block','a:4:{s:12:\"_multiwidget\";i:1;i:3;a:1:{s:7:\"content\";s:115:\"<!-- wp:heading -->\n<h2>Belangrijke punten om te onthouden bij het rijden van de auto<br></h2>\n<!-- /wp:heading -->\";}i:4;a:1:{s:7:\"content\";s:52:\"<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\";}i:5;a:1:{s:7:\"content\";s:506:\"<!-- wp:paragraph -->\n<p>Het lijkt misschien vanzelfsprekend, maar het belangrijkste om te doen wanneer autorijden is om al uw zintuigen te gebruiken. Je zou het gevoel van het voertuig, de geur van de remmen en het geluid van de motor moeten kunnen voelen. Dan moet u leren hoe u de juiste ingangen kunt maken om uw voertuig de controle te houden&nbsp;<a href=\"https://www.autotheorie.nl/scooter-theorie/\" target=\"_blank\" rel=\"noreferrer noopener\">tips voor scooter theorie</a>.</p>\n<!-- /wp:paragraph -->\";}}','yes'),(8637,'wp_force_deactivated_plugins','a:0:{}','yes'),(20134,'mainwp_cache_control_cache_solution','','yes'),(20928,'can_compress_scripts','1','no'),(21975,'mainwp_child_auto_purge_cache','0','yes'),(21976,'mainwp_child_cloud_flair_enabled','0','yes'),(21977,'mainwp_cloudflair_email','','yes'),(21978,'mainwp_cloudflair_key','','yes'),(26299,'rewrite_rules','a:113:{s:19:\"sitemap_index\\.xml$\";s:19:\"index.php?sitemap=1\";s:31:\"([^/]+?)-sitemap([0-9]+)?\\.xml$\";s:51:\"index.php?sitemap=$matches[1]&sitemap_n=$matches[2]\";s:24:\"([a-z]+)?-?sitemap\\.xsl$\";s:39:\"index.php?yoast-sitemap-xsl=$matches[1]\";s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:17:\"^wp-sitemap\\.xml$\";s:23:\"index.php?sitemap=index\";s:17:\"^wp-sitemap\\.xsl$\";s:36:\"index.php?sitemap-stylesheet=sitemap\";s:23:\"^wp-sitemap-index\\.xsl$\";s:34:\"index.php?sitemap-stylesheet=index\";s:48:\"^wp-sitemap-([a-z]+?)-([a-z\\d_-]+?)-(\\d+?)\\.xml$\";s:75:\"index.php?sitemap=$matches[1]&sitemap-subtype=$matches[2]&paged=$matches[3]\";s:34:\"^wp-sitemap-([a-z]+?)-(\\d+?)\\.xml$\";s:47:\"index.php?sitemap=$matches[1]&paged=$matches[2]\";s:14:\"wpautoterms/?$\";s:36:\"index.php?post_type=wpautoterms_page\";s:44:\"wpautoterms/feed/(feed|rdf|rss|rss2|atom)/?$\";s:53:\"index.php?post_type=wpautoterms_page&feed=$matches[1]\";s:39:\"wpautoterms/(feed|rdf|rss|rss2|atom)/?$\";s:53:\"index.php?post_type=wpautoterms_page&feed=$matches[1]\";s:31:\"wpautoterms/page/([0-9]{1,})/?$\";s:54:\"index.php?post_type=wpautoterms_page&paged=$matches[1]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:37:\"wpautoterms/.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:47:\"wpautoterms/.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:67:\"wpautoterms/.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"wpautoterms/.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"wpautoterms/.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:43:\"wpautoterms/.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:26:\"wpautoterms/(.+?)/embed/?$\";s:49:\"index.php?wpautoterms_page=$matches[1]&embed=true\";s:30:\"wpautoterms/(.+?)/trackback/?$\";s:43:\"index.php?wpautoterms_page=$matches[1]&tb=1\";s:50:\"wpautoterms/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?wpautoterms_page=$matches[1]&feed=$matches[2]\";s:45:\"wpautoterms/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?wpautoterms_page=$matches[1]&feed=$matches[2]\";s:38:\"wpautoterms/(.+?)/page/?([0-9]{1,})/?$\";s:56:\"index.php?wpautoterms_page=$matches[1]&paged=$matches[2]\";s:45:\"wpautoterms/(.+?)/comment-page-([0-9]{1,})/?$\";s:56:\"index.php?wpautoterms_page=$matches[1]&cpage=$matches[2]\";s:34:\"wpautoterms/(.+?)(?:/([0-9]+))?/?$\";s:55:\"index.php?wpautoterms_page=$matches[1]&page=$matches[2]\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:13:\"favicon\\.ico$\";s:19:\"index.php?favicon=1\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";s:27:\"[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"([^/]+)/embed/?$\";s:37:\"index.php?name=$matches[1]&embed=true\";s:20:\"([^/]+)/trackback/?$\";s:31:\"index.php?name=$matches[1]&tb=1\";s:40:\"([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:35:\"([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:28:\"([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&paged=$matches[2]\";s:35:\"([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&cpage=$matches[2]\";s:24:\"([^/]+)(?:/([0-9]+))?/?$\";s:43:\"index.php?name=$matches[1]&page=$matches[2]\";s:16:\"[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:26:\"[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:46:\"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:22:\"[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";}','yes'),(36094,'ai1wm_secret_key','MJvK1JAB7rXC','yes'),(36095,'ai1wm_backups_labels','a:0:{}','yes'),(36096,'ai1wm_sites_links','a:0:{}','yes'),(36097,'swift_performance_plugin_organizer','a:0:{}','yes'),(36098,'jetpack_active_modules','a:0:{}','yes'),(36101,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:4:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:7:\"upgrade\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.1.1.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.1.1.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.1.1-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.1.1-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.1.1\";s:7:\"version\";s:5:\"6.1.1\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.1\";s:15:\"partial_version\";s:0:\"\";}i:1;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.1.1.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.1.1.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.1.1-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.1.1-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.1.1\";s:7:\"version\";s:5:\"6.1.1\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.1\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:2;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:57:\"https://downloads.wordpress.org/release/wordpress-6.1.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:57:\"https://downloads.wordpress.org/release/wordpress-6.1.zip\";s:10:\"no_content\";s:68:\"https://downloads.wordpress.org/release/wordpress-6.1-no-content.zip\";s:11:\"new_bundled\";s:69:\"https://downloads.wordpress.org/release/wordpress-6.1-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:3:\"6.1\";s:7:\"version\";s:3:\"6.1\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.1\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:3;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.0.3.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.0.3.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.0.3-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.0.3-new-bundled.zip\";s:7:\"partial\";s:69:\"https://downloads.wordpress.org/release/wordpress-6.0.3-partial-0.zip\";s:8:\"rollback\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.0.3-rollback-0.zip\";}s:7:\"current\";s:5:\"6.0.3\";s:7:\"version\";s:5:\"6.0.3\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.1\";s:15:\"partial_version\";s:3:\"6.0\";s:9:\"new_files\";s:0:\"\";}}s:12:\"last_checked\";i:1680043692;s:15:\"version_checked\";s:3:\"6.0\";s:12:\"translations\";a:0:{}}','no'),(36106,'cache_enabler','a:19:{s:7:\"version\";s:5:\"1.8.7\";s:20:\"use_trailing_slashes\";i:1;s:19:\"permalink_structure\";s:18:\"has_trailing_slash\";s:13:\"cache_expires\";i:0;s:17:\"cache_expiry_time\";i:0;s:30:\"clear_site_cache_on_saved_post\";i:0;s:33:\"clear_site_cache_on_saved_comment\";i:0;s:30:\"clear_site_cache_on_saved_term\";i:0;s:30:\"clear_site_cache_on_saved_user\";i:0;s:34:\"clear_site_cache_on_changed_plugin\";i:0;s:26:\"convert_image_urls_to_webp\";i:0;s:12:\"mobile_cache\";i:0;s:14:\"compress_cache\";i:0;s:11:\"minify_html\";i:0;s:20:\"minify_inline_css_js\";i:0;s:17:\"excluded_post_ids\";s:0:\"\";s:19:\"excluded_page_paths\";s:0:\"\";s:22:\"excluded_query_strings\";s:0:\"\";s:16:\"excluded_cookies\";s:0:\"\";}','yes'),(36274,'auto_core_update_failed','a:6:{s:9:\"attempted\";s:5:\"6.0.3\";s:7:\"current\";s:3:\"6.0\";s:10:\"error_code\";s:32:\"copy_failed_for_update_core_file\";s:10:\"error_data\";s:33:\"wp-admin/includes/update-core.php\";s:9:\"timestamp\";i:1668416024;s:5:\"retry\";b:0;}','no'),(36275,'ai1wm_updater','a:1:{s:43:\"all-in-one-wp-migration-multisite-extension\";a:13:{s:4:\"name\";s:19:\"Multisite Extension\";s:4:\"slug\";s:19:\"multisite-extension\";s:8:\"homepage\";s:51:\"https://servmask.com/extensions/multisite-extension\";s:13:\"download_link\";s:29:\"https://servmask.com/purchase\";s:7:\"version\";s:4:\"4.27\";s:6:\"author\";s:8:\"ServMask\";s:15:\"author_homepage\";s:20:\"https://servmask.com\";s:8:\"sections\";a:1:{s:11:\"description\";s:595:\"<ul class=\"description\"><li>Export single site from the network</li><li>Export multiple sites from the network</li><li>Export the whole network</li><li>Import single site into the network</li><li>Import multiple sites into the network</li><li>Import a network</li><li>Clone single site within a network</li><li>Multi-network support</li><li>Lifetime license with lifetime updates</li><li>Use on any number of websites that you own</li><li>Backup scheduler with hourly, daily, and weekly options</li><li>Unlimited Extension included</li><li>WP CLI commands</li><li>Premium support</li></ul><br />\";}s:7:\"banners\";a:2:{s:3:\"low\";s:65:\"https://servmask.com/img/products/multisite-extension-772x250.png\";s:4:\"high\";s:66:\"https://servmask.com/img/products/multisite-extension-1544x500.png\";}s:5:\"icons\";a:3:{s:2:\"1x\";s:65:\"https://servmask.com/img/products/multisite-extension-128x128.png\";s:2:\"2x\";s:65:\"https://servmask.com/img/products/multisite-extension-256x256.png\";s:7:\"default\";s:65:\"https://servmask.com/img/products/multisite-extension-256x256.png\";}s:6:\"rating\";i:99;s:11:\"num_ratings\";i:309;s:10:\"downloaded\";i:40189;}}','yes'),(36276,'_site_transient_ai1wm_last_check_for_updates','1680043693','no'),(36279,'_transient_health-check-site-status-result','{\"good\":12,\"recommended\":6,\"critical\":1}','yes'),(38839,'ai1wmme_plugin_key','72821048-196b-4fc6-a1e9-59bd100238e8','yes'),(38840,'Niteoweb.SpiderBlocker.Bots','a:40:{i:0;a:4:{s:4:\"name\";s:10:\"Ahrefs Bot\";s:2:\"re\";s:9:\"AhrefsBot\";s:4:\"desc\";s:25:\"https://ahrefs.com/robot/\";s:5:\"state\";b:1;}i:1;a:4:{s:4:\"name\";s:8:\"MJ12 bot\";s:2:\"re\";s:7:\"MJ12bot\";s:4:\"desc\";s:56:\"http://www.majestic12.co.uk/projects/dsearch/mj12bot.php\";s:5:\"state\";b:1;}i:2;a:4:{s:4:\"name\";s:9:\"Roger Bot\";s:2:\"re\";s:8:\"Rogerbot\";s:4:\"desc\";s:40:\"http://moz.com/help/pro/rogerbot-crawler\";s:5:\"state\";b:1;}i:3;a:4:{s:4:\"name\";s:11:\"Semrush Bot\";s:2:\"re\";s:10:\"SemrushBot\";s:4:\"desc\";s:31:\"http://www.semrush.com/bot.html\";s:5:\"state\";b:1;}i:4;a:4:{s:4:\"name\";s:11:\"ia_archiver\";s:2:\"re\";s:11:\"ia_archiver\";s:4:\"desc\";s:36:\"http://archive.org/about/exclude.php\";s:5:\"state\";b:1;}i:5;a:4:{s:4:\"name\";s:8:\"ScoutJet\";s:2:\"re\";s:8:\"ScoutJet\";s:4:\"desc\";s:19:\"http://scoutjet.com\";s:5:\"state\";b:1;}i:6;a:4:{s:4:\"name\";s:7:\"sistrix\";s:2:\"re\";s:7:\"sistrix\";s:4:\"desc\";s:26:\"http://crawler.sistrix.net\";s:5:\"state\";b:1;}i:7;a:4:{s:4:\"name\";s:16:\"SearchmetricsBot\";s:2:\"re\";s:16:\"SearchmetricsBot\";s:4:\"desc\";s:50:\"http://www.searchmetrics.com/en/searchmetrics-bot/\";s:5:\"state\";b:1;}i:8;a:4:{s:4:\"name\";s:14:\"SEOkicks-Robot\";s:2:\"re\";s:14:\"SEOkicks-Robot\";s:4:\"desc\";s:33:\"http://www.seokicks.de/robot.html\";s:5:\"state\";b:1;}i:9;a:4:{s:4:\"name\";s:16:\"Lipperhey Spider\";s:2:\"re\";s:16:\"Lipperhey Spider\";s:4:\"desc\";s:43:\"http://www.lipperhey.com/en/website-spider/\";s:5:\"state\";b:1;}i:10;a:4:{s:4:\"name\";s:6:\"Exabot\";s:2:\"re\";s:6:\"Exabot\";s:4:\"desc\";s:44:\"http://www.exalead.com/search/webmasterguide\";s:5:\"state\";b:1;}i:11;a:4:{s:4:\"name\";s:6:\"NC Bot\";s:2:\"re\";s:5:\"NCBot\";s:4:\"desc\";s:55:\"https://twitter.com/NetComber/status/334476871691550721\";s:5:\"state\";b:1;}i:12;a:4:{s:4:\"name\";s:15:\"BacklinkCrawler\";s:2:\"re\";s:15:\"BacklinkCrawler\";s:4:\"desc\";s:40:\"http://www.backlinktest.com/crawler.html\";s:5:\"state\";b:1;}i:13;a:4:{s:4:\"name\";s:15:\"archive.org Bot\";s:2:\"re\";s:15:\"archive.org_bot\";s:4:\"desc\";s:42:\"http://archive.org/details/archive.org_bot\";s:5:\"state\";b:1;}i:14;a:4:{s:4:\"name\";s:12:\"MeanPath Bot\";s:2:\"re\";s:11:\"meanpathbot\";s:4:\"desc\";s:37:\"https://meanpath.com/meanpathbot.html\";s:5:\"state\";b:1;}i:15;a:4:{s:4:\"name\";s:18:\"PagesInventory Bot\";s:2:\"re\";s:14:\"PagesInventory\";s:4:\"desc\";s:56:\"http://www.botsvsbrowsers.com/details/1002332/index.html\";s:5:\"state\";b:1;}i:16;a:4:{s:4:\"name\";s:12:\"Aboundex Bot\";s:2:\"re\";s:11:\"Aboundexbot\";s:4:\"desc\";s:32:\"http://www.aboundex.com/crawler/\";s:5:\"state\";b:1;}i:17;a:4:{s:4:\"name\";s:15:\"SeoProfiler Bot\";s:2:\"re\";s:5:\"spbot\";s:4:\"desc\";s:31:\"http://www.seoprofiler.com/bot/\";s:5:\"state\";b:1;}i:18;a:4:{s:4:\"name\";s:11:\"Linkdex Bot\";s:2:\"re\";s:10:\"linkdexbot\";s:4:\"desc\";s:34:\"http://www.linkdex.com/about/bots/\";s:5:\"state\";b:1;}i:19;a:4:{s:4:\"name\";s:7:\"Gigabot\";s:2:\"re\";s:7:\"Gigabot\";s:4:\"desc\";s:45:\"http://www.useragentstring.com/pages/Gigabot/\";s:5:\"state\";b:1;}i:20;a:4:{s:4:\"name\";s:6:\"DotBot\";s:2:\"re\";s:6:\"dotbot\";s:4:\"desc\";s:35:\"http://en.wikipedia.org/wiki/DotBot\";s:5:\"state\";b:1;}i:21;a:4:{s:4:\"name\";s:5:\"Nutch\";s:2:\"re\";s:5:\"Nutch\";s:4:\"desc\";s:32:\"http://nutch.apache.org/bot.html\";s:5:\"state\";b:1;}i:22;a:4:{s:4:\"name\";s:8:\"BLEX Bot\";s:2:\"re\";s:7:\"BLEXBot\";s:4:\"desc\";s:27:\"http://webmeup-crawler.com/\";s:5:\"state\";b:1;}i:23;a:4:{s:4:\"name\";s:6:\"Ezooms\";s:2:\"re\";s:6:\"Ezooms\";s:4:\"desc\";s:49:\"http://graphicline.co.za/blogs/what-is-ezooms-bot\";s:5:\"state\";b:1;}i:24;a:4:{s:4:\"name\";s:11:\"Majestic 12\";s:2:\"re\";s:11:\"Majestic-12\";s:4:\"desc\";s:56:\"http://www.majestic12.co.uk/projects/dsearch/mj12bot.php\";s:5:\"state\";b:1;}i:25;a:4:{s:4:\"name\";s:12:\"Majestic SEO\";s:2:\"re\";s:12:\"Majestic-SEO\";s:4:\"desc\";s:56:\"http://www.majestic12.co.uk/projects/dsearch/mj12bot.php\";s:5:\"state\";b:1;}i:26;a:4:{s:4:\"name\";s:7:\"DSearch\";s:2:\"re\";s:7:\"DSearch\";s:4:\"desc\";s:56:\"http://www.majestic12.co.uk/projects/dsearch/mj12bot.php\";s:5:\"state\";b:1;}i:27;a:4:{s:4:\"name\";s:4:\"MJ12\";s:2:\"re\";s:4:\"MJ12\";s:4:\"desc\";s:56:\"http://www.majestic12.co.uk/projects/dsearch/mj12bot.php\";s:5:\"state\";b:1;}i:28;a:4:{s:4:\"name\";s:10:\"Blekko Bot\";s:2:\"re\";s:9:\"BlekkoBot\";s:4:\"desc\";s:33:\"http://blekko.com/about/blekkobot\";s:5:\"state\";b:1;}i:29;a:4:{s:4:\"name\";s:6:\"Yandex\";s:2:\"re\";s:6:\"Yandex\";s:4:\"desc\";s:41:\"http://help.yandex.com/search/?id=1112030\";s:5:\"state\";b:0;}i:30;a:4:{s:4:\"name\";s:10:\"Google Bot\";s:2:\"re\";s:9:\"googlebot\";s:4:\"desc\";s:57:\"https://support.google.com/webmasters/answer/182072?hl=en\";s:5:\"state\";b:0;}i:31;a:4:{s:4:\"name\";s:18:\"Feedfetcher Google\";s:2:\"re\";s:18:\"Feedfetcher-Google\";s:4:\"desc\";s:51:\"https://support.google.com/webmasters/answer/178852\";s:5:\"state\";b:0;}i:32;a:4:{s:4:\"name\";s:8:\"Bing Bot\";s:2:\"re\";s:7:\"BingBot\";s:4:\"desc\";s:36:\"http://en.wikipedia.org/wiki/Bingbot\";s:5:\"state\";b:0;}i:33;a:4:{s:4:\"name\";s:9:\"Nerdy Bot\";s:2:\"re\";s:8:\"NerdyBot\";s:4:\"desc\";s:20:\"http://nerdybot.com/\";s:5:\"state\";b:1;}i:34;a:4:{s:4:\"name\";s:9:\"James BOT\";s:2:\"re\";s:8:\"JamesBOT\";s:4:\"desc\";s:32:\"http://cognitiveseo.com/bot.html\";s:5:\"state\";b:1;}i:35;a:4:{s:4:\"name\";s:7:\"Tin Eye\";s:2:\"re\";s:6:\"TinEye\";s:4:\"desc\";s:34:\"http://www.tineye.com/crawler.html\";s:5:\"state\";b:1;}i:36;a:4:{s:4:\"name\";s:5:\"Baidu\";s:2:\"re\";s:11:\"Baiduspider\";s:4:\"desc\";s:47:\"http://www.baidu.com/search/robots_english.html\";s:5:\"state\";b:1;}i:37;a:4:{s:4:\"name\";s:8:\"Serpstat\";s:2:\"re\";s:8:\"serpstat\";s:4:\"desc\";s:21:\"https://serpstat.com/\";s:5:\"state\";b:1;}i:38;a:4:{s:4:\"name\";s:5:\"SpyFu\";s:2:\"re\";s:5:\"spyfu\";s:4:\"desc\";s:22:\"https://www.spyfu.com/\";s:5:\"state\";b:1;}i:39;a:4:{s:4:\"name\";s:5:\"Prlog\";s:2:\"re\";s:5:\"Prlog\";s:4:\"desc\";s:17:\"https://prlog.ru/\";s:5:\"state\";b:1;}}','yes'),(40641,'wp_calendar_block_has_published_posts','1','yes'),(51939,'mainwp_child_pubkey','LS0tLS1CRUdJTiBQVUJMSUMgS0VZLS0tLS0KTUlJQklqQU5CZ2txaGtpRzl3MEJBUUVGQUFPQ0FROEFNSUlCQ2dLQ0FRRUEySC8rcVRrUk1Db2xuWTJHOTNIeApNd1ZjREZoWHFGQm8vcFNpSFBSTHFMUnhabUdkeWx6Mjl2a2NmUTE5dm1nVWlsL2VGdFBWaHRCSGZYNlZuUCtVClJUd2U1T0ZSMGRoZkxBYkNScHZGWDc2VFBMNUtESTYxQWtKb292ZHN0NEtZYWZCT0FxYzI2Z2dXSDRseEl3dk8KbHlmTnA2L3puRG01cElkZHhOclUrcnZuQ0Z3TGgxUGlqR3FpVVZwYmNkN200UTlJUnVEUWE1QmFvb1BSMlBKSgpCTEtJa0szSXZPR2hHTTkxUkE1Z2lHa0pZWHdGNVd6bnVLV0RWRVBvQ3hRTG1IeEpwKzdiQXc4cEtGdWYyTkxRCnozZTN1NEZTTmwrUGRxMm01RnloZHVmZnp2ZmRTU21zaDBpc2FMT3I3RVZQMHNsakhoSmhzdVUrRWZBSDBFUmwKb1FJREFRQUIKLS0tLS1FTkQgUFVCTElDIEtFWS0tLS0tCg==','yes'),(51940,'mainwp_child_server','https://clever-bartik.5-79-76-32.plesk.page/wp-admin/','no'),(51941,'mainwp_child_nossl_key','a6771f716f06d8b0264fda8030c5cb16eafb1672d00acdb4c798eafd74cfbdd1','yes'),(51942,'mainwp_child_uniqueId','','no'),(54144,'wpil_2_license_status','','yes'),(54145,'wpil_2_license_key','','yes'),(54146,'wpil_2_license_data','','yes'),(54147,'wpil_2_ignore_numbers','1','yes'),(54148,'wpil_2_post_types','a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}','yes'),(54149,'wpil_2_links_open_new_tab','0','yes'),(54150,'wpil_2_debug_mode','0','yes'),(54151,'wpil_option_update_reporting_data_on_save','0','yes'),(54152,'wpil_2_ignore_words','-\r\n-\r\na\r\nabout\r\nabove\r\nactually\r\nadd\r\nafter\r\nagain\r\nagainst\r\nago\r\nall\r\nam\r\nan\r\nand\r\nanother\r\nanswer\r\nany\r\nare\r\naren\'t\r\nas\r\nat\r\nbase\r\nbe\r\nbecause\r\nbeen\r\nbefore\r\nbeing\r\nbelow\r\nbest\r\nbetter\r\nbetween\r\nboth\r\nbut\r\nby\r\ncan\r\ncan\'t\r\ncannot\r\ncons\r\ncould\r\ncouldn\'t\r\ndid\r\ndidn\'t\r\ndifference\r\ndifferent\r\ndo\r\ndoes\r\ndoesn\'t\r\ndoing\r\ndon\'t\r\ndone\r\ndown\r\nduring\r\neach\r\neasier\r\neasy\r\neight\r\neven\r\nfar\r\nfew\r\nfind\r\nfirst\r\nfive\r\nfor\r\nfour\r\nfree\r\nfrom\r\nfurther\r\ngeneral\r\nget\r\ngett\r\ngetting\r\ngo\r\ngood\r\ngot\r\ngreat\r\nhad\r\nhadn\'t\r\nhas\r\nhasn\'t\r\nhave\r\nhaven\'t\r\nhaver\r\nhaving\r\nhe\r\nhe\'d\r\nhe\'ll\r\nhe\'s\r\nhelp\r\nher\r\nhere\r\nhere\'s\r\nhers\r\nherself\r\nhigh\r\nhim\r\nhimself\r\nhis\r\nhow\r\nhow\'s\r\ni\r\ni\'d\r\ni\'ll\r\ni\'m\r\ni\'ve\r\nif\r\nin\r\ninto\r\nis\r\nisn\'t\r\nit\r\nit\'s\r\nits\r\nitself\r\njust\r\nless\r\nlet\'s\r\nlike\r\nlong\r\nlook\r\nlove\r\nmake\r\nmany\r\nmatt\r\nmatter\r\nmay\r\nme\r\nmore\r\nmost\r\nmuch\r\nmustn\'t\r\nmy\r\nmyself\r\nnever\r\nnew\r\nnine\r\nno\r\nnor\r\nnot\r\nnow\r\nof\r\noff\r\non\r\nonce\r\none\r\nonly\r\nor\r\nother\r\nought\r\nour\r\nours\r\nourselves\r\nout\r\nover\r\noverall\r\nown\r\nper\r\npros\r\nquestion\r\nreview\r\nright\r\nsame\r\nseven\r\nshan\'t\r\nshe\r\nshe\'d\r\nshe\'ll\r\nshe\'s\r\nshock\r\nshocking\r\nshould\r\nshouldn\'t\r\nshow\r\nsimple\r\nsix\r\nso\r\nsome\r\nstart\r\nstill\r\nsuch\r\ntake\r\nten\r\nthan\r\nthat\r\nthat\'s\r\nthe\r\ntheir\r\ntheirs\r\nthem\r\nthemselves\r\nthen\r\nthere\r\nthere\'s\r\nthese\r\nthey\r\nthey\'d\r\nthey\'ll\r\nthey\'re\r\nthey\'ve\r\nthis\r\nthose\r\nthree\r\nthrough\r\nto\r\ntoo\r\ntool\r\ntwo\r\nunder\r\nuntil\r\nup\r\nuse\r\nusing\r\nvery\r\nwant\r\nwas\r\nwasn\'t\r\nwe\r\nwe\'d\r\nwe\'ll\r\nwe\'re\r\nwe\'ve\r\nwere\r\nweren\'t\r\nwhat\r\nwhat\'s\r\nwhen\r\nwhen\'s\r\nwhere\r\nwhere\'s\r\nwhich\r\nwhile\r\nwho\r\nwho\'s\r\nwhom\r\nwhy\r\nwhy\'s\r\nwill\r\nwith\r\nwithin\r\nwithout\r\nwon\'t\r\nwould\r\nwouldn\'t\r\nyou\r\nyou\'d\r\nyou\'ll\r\nyou\'re\r\nyou\'ve\r\nyour\r\nyours\r\nyourself\r\nyourselves\r\nzero\'\r\n-','yes'),(54153,'wpil_has_run_initial_scan','1','yes'),(54154,'wpil_site_db_version','1.22','yes'),(54155,'wpil_link_table_is_created','1','yes'),(54156,'wpil_fresh_install','','yes'),(54157,'wpil_install_date','2023-02-16 20:10:34','yes'),(54160,'fs_active_plugins','O:8:\"stdClass\":3:{s:7:\"plugins\";a:1:{s:39:\"wp-sheet-editor-premium/vendor/freemius\";O:8:\"stdClass\":4:{s:7:\"version\";s:5:\"2.5.3\";s:4:\"type\";s:6:\"plugin\";s:9:\"timestamp\";i:1676578236;s:11:\"plugin_path\";s:43:\"wp-sheet-editor-premium/wp-sheet-editor.php\";}}s:7:\"abspath\";s:33:\"/opt/aphex/sites/platowinkels.nl/\";s:6:\"newest\";O:8:\"stdClass\":5:{s:11:\"plugin_path\";s:43:\"wp-sheet-editor-premium/wp-sheet-editor.php\";s:8:\"sdk_path\";s:39:\"wp-sheet-editor-premium/vendor/freemius\";s:7:\"version\";s:5:\"2.5.3\";s:13:\"in_activation\";b:0;s:9:\"timestamp\";i:1676578236;}}','yes'),(54161,'fs_debug_mode','','yes'),(54162,'fs_accounts','a:6:{s:21:\"id_slug_type_path_map\";a:1:{i:1010;a:3:{s:4:\"slug\";s:59:\"wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\";s:4:\"type\";s:6:\"plugin\";s:4:\"path\";s:43:\"wp-sheet-editor-premium/wp-sheet-editor.php\";}}s:11:\"plugin_data\";a:1:{s:59:\"wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\";a:15:{s:16:\"plugin_main_file\";O:8:\"stdClass\":1:{s:4:\"path\";s:43:\"wp-sheet-editor-premium/wp-sheet-editor.php\";}s:20:\"is_network_activated\";b:0;s:17:\"install_timestamp\";i:1676578236;s:16:\"sdk_last_version\";N;s:11:\"sdk_version\";s:5:\"2.5.3\";s:16:\"sdk_upgrade_mode\";b:1;s:18:\"sdk_downgrade_mode\";b:0;s:19:\"plugin_last_version\";N;s:14:\"plugin_version\";s:13:\"2.25.2-beta.1\";s:19:\"plugin_upgrade_mode\";b:1;s:21:\"plugin_downgrade_mode\";b:0;s:17:\"was_plugin_loaded\";b:1;s:21:\"is_plugin_new_install\";b:0;s:17:\"connectivity_test\";a:6:{s:12:\"is_connected\";b:1;s:4:\"host\";s:15:\"platowinkels.nl\";s:9:\"server_ip\";s:9:\"127.0.0.1\";s:9:\"is_active\";b:1;s:9:\"timestamp\";i:1676745431;s:7:\"version\";s:13:\"2.25.2-beta.1\";}s:15:\"prev_is_premium\";b:1;}}s:13:\"file_slug_map\";a:1:{s:43:\"wp-sheet-editor-premium/wp-sheet-editor.php\";s:59:\"wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\";}s:7:\"plugins\";a:1:{s:59:\"wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\";O:9:\"FS_Plugin\":23:{s:16:\"parent_plugin_id\";N;s:5:\"title\";s:28:\"WP Sheet Editor - Post Types\";s:4:\"slug\";s:59:\"wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\";s:12:\"premium_slug\";s:23:\"wp-sheet-editor-premium\";s:4:\"type\";s:6:\"plugin\";s:20:\"affiliate_moderation\";b:0;s:19:\"is_wp_org_compliant\";b:1;s:22:\"premium_releases_count\";N;s:4:\"file\";s:43:\"wp-sheet-editor-premium/wp-sheet-editor.php\";s:7:\"version\";s:13:\"2.25.2-beta.1\";s:11:\"auto_update\";N;s:4:\"info\";N;s:10:\"is_premium\";b:1;s:14:\"premium_suffix\";s:9:\"(Premium)\";s:7:\"is_live\";b:1;s:9:\"bundle_id\";N;s:17:\"bundle_public_key\";N;s:10:\"public_key\";s:32:\"pk_ec1c7da603c0772f1bfe276efb715\";s:10:\"secret_key\";N;s:2:\"id\";s:4:\"1010\";s:7:\"updated\";N;s:7:\"created\";N;s:22:\"\0FS_Entity\0_is_updated\";b:0;}}s:9:\"unique_id\";s:32:\"7507568a1dd04e478a0f20f036b82881\";s:7:\"updates\";a:1:{i:1010;N;}}','yes'),(54183,'vg_sheet_editor','a:8:{s:8:\"last_tab\";N;s:13:\"be_post_types\";a:1:{i:0;s:4:\"post\";}s:17:\"be_posts_per_page\";i:20;s:23:\"be_load_items_on_scroll\";i:1;s:19:\"be_fix_columns_left\";i:2;s:22:\"be_posts_per_page_save\";i:4;s:26:\"be_timeout_between_batches\";i:6;s:23:\"be_disable_post_actions\";i:0;}','yes'),(54395,'vgse_columns_visibility','a:0:{}','yes'),(54396,'vgse_columns_visibility_migrated','1','yes'),(54397,'vgse_welcome_redirect','no','yes'),(54398,'vgse_hide_whats_new_2.25.2-beta.1','yes','yes'),(54399,'fs_gdpr','a:1:{s:2:\"u0\";a:1:{s:8:\"required\";b:0;}}','yes'),(56687,'_site_transient_timeout_php_check_0bf95b5f09d09e56bf994b7894d9087c','1680385050','no'),(56688,'_site_transient_php_check_0bf95b5f09d09e56bf994b7894d9087c','a:5:{s:19:\"recommended_version\";s:3:\"7.4\";s:15:\"minimum_version\";s:6:\"5.6.20\";s:12:\"is_supported\";b:1;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}','no'),(56973,'_transient_timeout_62b3f62e497d04db6615e8dca27b5d20','1680130093','no'),(56974,'_transient_62b3f62e497d04db6615e8dca27b5d20','a:6:{s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:7:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Tue, 28 Mar 2023 22:48:13 GMT\";s:12:\"content-type\";s:25:\"text/plain; charset=utf-8\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:16:\"content-encoding\";s:2:\"br\";s:4:\"x-nc\";s:5:\"ord 7\";}}s:4:\"body\";s:1159:\"{\"plugins\":{\"wp-sheet-editor-premium\\/wp-sheet-editor.php\":{\"id\":\"w.org\\/plugins\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\",\"slug\":\"wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\",\"plugin\":\"wp-sheet-editor-premium\\/wp-sheet-editor.php\",\"new_version\":\"2.25.1\",\"url\":\"https:\\/\\/wordpress.org\\/plugins\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\\/\",\"package\":\"https:\\/\\/downloads.wordpress.org\\/plugin\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages.2.25.1.zip\",\"icons\":{\"2x\":\"https:\\/\\/ps.w.org\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\\/assets\\/icon-256x256.png?rev=1543619\",\"1x\":\"https:\\/\\/ps.w.org\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\\/assets\\/icon-128x128.png?rev=1543619\"},\"banners\":{\"2x\":\"https:\\/\\/ps.w.org\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\\/assets\\/banner-1544x500.png?rev=1543619\",\"1x\":\"https:\\/\\/ps.w.org\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\\/assets\\/banner-772x250.png?rev=1543627\"},\"banners_rtl\":[],\"requires\":\"3.6\",\"tested\":\"6.1.1\",\"requires_php\":false,\"compatibility\":[]}},\"translations\":[]}\";s:8:\"response\";a:2:{s:4:\"code\";i:200;s:7:\"message\";s:2:\"OK\";}s:7:\"cookies\";a:0:{}s:8:\"filename\";N;s:13:\"http_response\";O:25:\"WP_HTTP_Requests_Response\":5:{s:11:\"\0*\0response\";O:17:\"Requests_Response\":10:{s:4:\"body\";s:1159:\"{\"plugins\":{\"wp-sheet-editor-premium\\/wp-sheet-editor.php\":{\"id\":\"w.org\\/plugins\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\",\"slug\":\"wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\",\"plugin\":\"wp-sheet-editor-premium\\/wp-sheet-editor.php\",\"new_version\":\"2.25.1\",\"url\":\"https:\\/\\/wordpress.org\\/plugins\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\\/\",\"package\":\"https:\\/\\/downloads.wordpress.org\\/plugin\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages.2.25.1.zip\",\"icons\":{\"2x\":\"https:\\/\\/ps.w.org\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\\/assets\\/icon-256x256.png?rev=1543619\",\"1x\":\"https:\\/\\/ps.w.org\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\\/assets\\/icon-128x128.png?rev=1543619\"},\"banners\":{\"2x\":\"https:\\/\\/ps.w.org\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\\/assets\\/banner-1544x500.png?rev=1543619\",\"1x\":\"https:\\/\\/ps.w.org\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\\/assets\\/banner-772x250.png?rev=1543627\"},\"banners_rtl\":[],\"requires\":\"3.6\",\"tested\":\"6.1.1\",\"requires_php\":false,\"compatibility\":[]}},\"translations\":[]}\";s:3:\"raw\";s:1406:\"HTTP/1.1 200 OK\r\nServer: nginx\r\nDate: Tue, 28 Mar 2023 22:48:13 GMT\r\nContent-Type: text/plain; charset=utf-8\r\nTransfer-Encoding: chunked\r\nConnection: close\r\nVary: Accept-Encoding\r\nX-Frame-Options: SAMEORIGIN\r\nContent-Encoding: br\r\nX-nc:  ord 7\r\n\r\n{\"plugins\":{\"wp-sheet-editor-premium\\/wp-sheet-editor.php\":{\"id\":\"w.org\\/plugins\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\",\"slug\":\"wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\",\"plugin\":\"wp-sheet-editor-premium\\/wp-sheet-editor.php\",\"new_version\":\"2.25.1\",\"url\":\"https:\\/\\/wordpress.org\\/plugins\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\\/\",\"package\":\"https:\\/\\/downloads.wordpress.org\\/plugin\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages.2.25.1.zip\",\"icons\":{\"2x\":\"https:\\/\\/ps.w.org\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\\/assets\\/icon-256x256.png?rev=1543619\",\"1x\":\"https:\\/\\/ps.w.org\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\\/assets\\/icon-128x128.png?rev=1543619\"},\"banners\":{\"2x\":\"https:\\/\\/ps.w.org\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\\/assets\\/banner-1544x500.png?rev=1543619\",\"1x\":\"https:\\/\\/ps.w.org\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\\/assets\\/banner-772x250.png?rev=1543627\"},\"banners_rtl\":[],\"requires\":\"3.6\",\"tested\":\"6.1.1\",\"requires_php\":false,\"compatibility\":[]}},\"translations\":[]}\";s:7:\"headers\";O:25:\"Requests_Response_Headers\":1:{s:7:\"\0*\0data\";a:7:{s:6:\"server\";a:1:{i:0;s:5:\"nginx\";}s:4:\"date\";a:1:{i:0;s:29:\"Tue, 28 Mar 2023 22:48:13 GMT\";}s:12:\"content-type\";a:1:{i:0;s:25:\"text/plain; charset=utf-8\";}s:4:\"vary\";a:1:{i:0;s:15:\"Accept-Encoding\";}s:15:\"x-frame-options\";a:1:{i:0;s:10:\"SAMEORIGIN\";}s:16:\"content-encoding\";a:1:{i:0;s:2:\"br\";}s:4:\"x-nc\";a:1:{i:0;s:5:\"ord 7\";}}}s:11:\"status_code\";i:200;s:16:\"protocol_version\";d:1.1000000000000001;s:7:\"success\";b:1;s:9:\"redirects\";i:0;s:3:\"url\";s:51:\"https://api.wordpress.org/plugins/update-check/1.1/\";s:7:\"history\";a:0:{}s:7:\"cookies\";O:19:\"Requests_Cookie_Jar\":1:{s:10:\"\0*\0cookies\";a:0:{}}}s:11:\"\0*\0filename\";N;s:4:\"data\";N;s:7:\"headers\";N;s:6:\"status\";N;}}','no'),(56975,'_site_transient_timeout_theme_roots','1680045493','no'),(56976,'_site_transient_theme_roots','a:5:{s:9:\"opus-blog\";s:7:\"/themes\";s:15:\"twentyseventeen\";s:7:\"/themes\";s:12:\"twentytwenty\";s:7:\"/themes\";s:15:\"twentytwentyone\";s:7:\"/themes\";s:15:\"twentytwentytwo\";s:7:\"/themes\";}','no'),(56977,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1680043694;s:7:\"checked\";a:5:{s:9:\"opus-blog\";s:5:\"1.1.2\";s:15:\"twentyseventeen\";s:3:\"3.0\";s:12:\"twentytwenty\";s:3:\"2.0\";s:15:\"twentytwentyone\";s:3:\"1.6\";s:15:\"twentytwentytwo\";s:3:\"1.2\";}s:8:\"response\";a:5:{s:9:\"opus-blog\";a:6:{s:5:\"theme\";s:9:\"opus-blog\";s:11:\"new_version\";s:5:\"1.1.3\";s:3:\"url\";s:39:\"https://wordpress.org/themes/opus-blog/\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/theme/opus-blog.1.1.3.zip\";s:8:\"requires\";b:0;s:12:\"requires_php\";s:3:\"5.2\";}s:15:\"twentyseventeen\";a:6:{s:5:\"theme\";s:15:\"twentyseventeen\";s:11:\"new_version\";s:3:\"3.1\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentyseventeen/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentyseventeen.3.1.zip\";s:8:\"requires\";s:3:\"4.7\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:12:\"twentytwenty\";a:6:{s:5:\"theme\";s:12:\"twentytwenty\";s:11:\"new_version\";s:3:\"2.1\";s:3:\"url\";s:42:\"https://wordpress.org/themes/twentytwenty/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/theme/twentytwenty.2.1.zip\";s:8:\"requires\";s:3:\"4.7\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:15:\"twentytwentyone\";a:6:{s:5:\"theme\";s:15:\"twentytwentyone\";s:11:\"new_version\";s:3:\"1.7\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentyone/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentyone.1.7.zip\";s:8:\"requires\";s:3:\"5.3\";s:12:\"requires_php\";s:3:\"5.6\";}s:15:\"twentytwentytwo\";a:6:{s:5:\"theme\";s:15:\"twentytwentytwo\";s:11:\"new_version\";s:3:\"1.3\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentytwo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentytwo.1.3.zip\";s:8:\"requires\";s:3:\"5.9\";s:12:\"requires_php\";s:3:\"5.6\";}}s:9:\"no_update\";a:0:{}s:12:\"translations\";a:0:{}}','no'),(56978,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1680043694;s:8:\"response\";a:10:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:21:\"w.org/plugins/akismet\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:3:\"5.1\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:54:\"https://downloads.wordpress.org/plugin/akismet.5.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:60:\"https://ps.w.org/akismet/assets/icon-256x256.png?rev=2818463\";s:2:\"1x\";s:60:\"https://ps.w.org/akismet/assets/icon-128x128.png?rev=2818463\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:61:\"https://ps.w.org/akismet/assets/banner-772x250.jpg?rev=479904\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:5:\"6.1.1\";s:12:\"requires_php\";s:3:\"5.2\";}s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:37:\"w.org/plugins/all-in-one-wp-migration\";s:4:\"slug\";s:23:\"all-in-one-wp-migration\";s:6:\"plugin\";s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";s:11:\"new_version\";s:4:\"7.73\";s:3:\"url\";s:54:\"https://wordpress.org/plugins/all-in-one-wp-migration/\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/plugin/all-in-one-wp-migration.7.73.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:76:\"https://ps.w.org/all-in-one-wp-migration/assets/icon-256x256.png?rev=2458334\";s:2:\"1x\";s:76:\"https://ps.w.org/all-in-one-wp-migration/assets/icon-128x128.png?rev=2458334\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:79:\"https://ps.w.org/all-in-one-wp-migration/assets/banner-1544x500.png?rev=2837281\";s:2:\"1x\";s:78:\"https://ps.w.org/all-in-one-wp-migration/assets/banner-772x250.png?rev=2837281\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.3\";s:6:\"tested\";s:3:\"6.2\";s:12:\"requires_php\";s:3:\"5.3\";}s:36:\"contact-form-7/wp-contact-form-7.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:28:\"w.org/plugins/contact-form-7\";s:4:\"slug\";s:14:\"contact-form-7\";s:6:\"plugin\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:11:\"new_version\";s:7:\"5.7.5.1\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/contact-form-7/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/contact-form-7.5.7.5.1.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:59:\"https://ps.w.org/contact-form-7/assets/icon.svg?rev=2339255\";s:3:\"svg\";s:59:\"https://ps.w.org/contact-form-7/assets/icon.svg?rev=2339255\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/contact-form-7/assets/banner-1544x500.png?rev=860901\";s:2:\"1x\";s:68:\"https://ps.w.org/contact-form-7/assets/banner-772x250.png?rev=880427\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.0\";s:6:\"tested\";s:3:\"6.2\";s:12:\"requires_php\";b:0;}s:29:\"mainwp-child/mainwp-child.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:26:\"w.org/plugins/mainwp-child\";s:4:\"slug\";s:12:\"mainwp-child\";s:6:\"plugin\";s:29:\"mainwp-child/mainwp-child.php\";s:11:\"new_version\";s:7:\"4.4.0.2\";s:3:\"url\";s:43:\"https://wordpress.org/plugins/mainwp-child/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/mainwp-child.4.4.0.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/mainwp-child/assets/icon-256x256.png?rev=2734948\";s:2:\"1x\";s:65:\"https://ps.w.org/mainwp-child/assets/icon-128x128.png?rev=2734948\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/mainwp-child/assets/banner-1544x500.jpg?rev=2734948\";s:2:\"1x\";s:67:\"https://ps.w.org/mainwp-child/assets/banner-772x250.jpg?rev=2734948\";}s:11:\"banners_rtl\";a:2:{s:2:\"2x\";s:72:\"https://ps.w.org/mainwp-child/assets/banner-1544x500-rtl.jpg?rev=2712922\";s:2:\"1x\";s:71:\"https://ps.w.org/mainwp-child/assets/banner-772x250-rtl.jpg?rev=2712922\";}s:8:\"requires\";s:3:\"5.4\";s:6:\"tested\";s:5:\"6.1.1\";s:12:\"requires_php\";s:3:\"7.4\";}s:49:\"scheduled-post-trigger/scheduled-post-trigger.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:36:\"w.org/plugins/scheduled-post-trigger\";s:4:\"slug\";s:22:\"scheduled-post-trigger\";s:6:\"plugin\";s:49:\"scheduled-post-trigger/scheduled-post-trigger.php\";s:11:\"new_version\";s:3:\"3.1\";s:3:\"url\";s:53:\"https://wordpress.org/plugins/scheduled-post-trigger/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/scheduled-post-trigger.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:75:\"https://ps.w.org/scheduled-post-trigger/assets/icon-128x128.jpg?rev=1492075\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:77:\"https://ps.w.org/scheduled-post-trigger/assets/banner-772x250.jpg?rev=1492080\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.2\";s:6:\"tested\";s:5:\"6.1.1\";s:12:\"requires_php\";b:0;}s:47:\"simple-social-buttons/simple-social-buttons.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:35:\"w.org/plugins/simple-social-buttons\";s:4:\"slug\";s:21:\"simple-social-buttons\";s:6:\"plugin\";s:47:\"simple-social-buttons/simple-social-buttons.php\";s:11:\"new_version\";s:5:\"4.1.0\";s:3:\"url\";s:52:\"https://wordpress.org/plugins/simple-social-buttons/\";s:7:\"package\";s:70:\"https://downloads.wordpress.org/plugin/simple-social-buttons.4.1.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:74:\"https://ps.w.org/simple-social-buttons/assets/icon-256x256.png?rev=2439696\";s:2:\"1x\";s:74:\"https://ps.w.org/simple-social-buttons/assets/icon-128x128.png?rev=2439696\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:77:\"https://ps.w.org/simple-social-buttons/assets/banner-1544x500.png?rev=2439696\";s:2:\"1x\";s:76:\"https://ps.w.org/simple-social-buttons/assets/banner-772x250.png?rev=2439696\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.0\";s:6:\"tested\";s:3:\"6.2\";s:12:\"requires_php\";b:0;s:14:\"upgrade_notice\";s:47:\"<ul>\n<li>Please upgrade immediately.</li>\n</ul>\";}s:43:\"simple-social-icons/simple-social-icons.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:33:\"w.org/plugins/simple-social-icons\";s:4:\"slug\";s:19:\"simple-social-icons\";s:6:\"plugin\";s:43:\"simple-social-icons/simple-social-icons.php\";s:11:\"new_version\";s:5:\"3.1.1\";s:3:\"url\";s:50:\"https://wordpress.org/plugins/simple-social-icons/\";s:7:\"package\";s:68:\"https://downloads.wordpress.org/plugin/simple-social-icons.3.1.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:72:\"https://ps.w.org/simple-social-icons/assets/icon-256x256.png?rev=1335655\";s:2:\"1x\";s:72:\"https://ps.w.org/simple-social-icons/assets/icon-128x128.png?rev=1335655\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:75:\"https://ps.w.org/simple-social-icons/assets/banner-1544x500.png?rev=1587503\";s:2:\"1x\";s:74:\"https://ps.w.org/simple-social-icons/assets/banner-772x250.png?rev=1587503\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.0\";s:6:\"tested\";s:5:\"6.1.1\";s:12:\"requires_php\";b:0;}s:23:\"spiderblocker/index.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:27:\"w.org/plugins/spiderblocker\";s:4:\"slug\";s:13:\"spiderblocker\";s:6:\"plugin\";s:23:\"spiderblocker/index.php\";s:11:\"new_version\";s:5:\"1.3.3\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/spiderblocker/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/plugin/spiderblocker.1.3.3.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:66:\"https://ps.w.org/spiderblocker/assets/icon-256x256.jpg?rev=2476085\";s:2:\"1x\";s:66:\"https://ps.w.org/spiderblocker/assets/icon-128x128.jpg?rev=2476085\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/spiderblocker/assets/banner-1544x500.jpg?rev=2476085\";s:2:\"1x\";s:68:\"https://ps.w.org/spiderblocker/assets/banner-772x250.jpg?rev=2476085\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.0\";s:6:\"tested\";s:5:\"6.1.1\";s:12:\"requires_php\";b:0;}s:81:\"auto-terms-of-service-and-privacy-policy/auto-terms-of-service-privacy-policy.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:54:\"w.org/plugins/auto-terms-of-service-and-privacy-policy\";s:4:\"slug\";s:40:\"auto-terms-of-service-and-privacy-policy\";s:6:\"plugin\";s:81:\"auto-terms-of-service-and-privacy-policy/auto-terms-of-service-privacy-policy.php\";s:11:\"new_version\";s:5:\"2.5.0\";s:3:\"url\";s:71:\"https://wordpress.org/plugins/auto-terms-of-service-and-privacy-policy/\";s:7:\"package\";s:89:\"https://downloads.wordpress.org/plugin/auto-terms-of-service-and-privacy-policy.2.5.0.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:85:\"https://ps.w.org/auto-terms-of-service-and-privacy-policy/assets/icon.svg?rev=2292425\";s:3:\"svg\";s:85:\"https://ps.w.org/auto-terms-of-service-and-privacy-policy/assets/icon.svg?rev=2292425\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:95:\"https://ps.w.org/auto-terms-of-service-and-privacy-policy/assets/banner-772x250.png?rev=2292425\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.2\";s:6:\"tested\";s:5:\"6.1.1\";s:12:\"requires_php\";s:3:\"5.3\";}s:24:\"wordpress-seo/wp-seo.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:27:\"w.org/plugins/wordpress-seo\";s:4:\"slug\";s:13:\"wordpress-seo\";s:6:\"plugin\";s:24:\"wordpress-seo/wp-seo.php\";s:11:\"new_version\";s:4:\"20.4\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/wordpress-seo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.20.4.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:58:\"https://ps.w.org/wordpress-seo/assets/icon.svg?rev=2363699\";s:3:\"svg\";s:58:\"https://ps.w.org/wordpress-seo/assets/icon.svg?rev=2363699\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/wordpress-seo/assets/banner-1544x500.png?rev=2643727\";s:2:\"1x\";s:68:\"https://ps.w.org/wordpress-seo/assets/banner-772x250.png?rev=2643727\";}s:11:\"banners_rtl\";a:2:{s:2:\"2x\";s:73:\"https://ps.w.org/wordpress-seo/assets/banner-1544x500-rtl.png?rev=2643727\";s:2:\"1x\";s:72:\"https://ps.w.org/wordpress-seo/assets/banner-772x250-rtl.png?rev=2643727\";}s:8:\"requires\";s:3:\"6.0\";s:6:\"tested\";s:3:\"6.2\";s:12:\"requires_php\";s:6:\"5.6.20\";}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:6:{s:35:\"404-to-homepage/404-to-homepage.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:29:\"w.org/plugins/404-to-homepage\";s:4:\"slug\";s:15:\"404-to-homepage\";s:6:\"plugin\";s:35:\"404-to-homepage/404-to-homepage.php\";s:11:\"new_version\";s:3:\"1.0\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/404-to-homepage/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/404-to-homepage.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/404-to-homepage/assets/icon-256x256.png?rev=2105401\";s:2:\"1x\";s:68:\"https://ps.w.org/404-to-homepage/assets/icon-128x128.png?rev=2105401\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/404-to-homepage/assets/banner-1544x500.jpg?rev=2105401\";s:2:\"1x\";s:70:\"https://ps.w.org/404-to-homepage/assets/banner-772x250.jpg?rev=2105401\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.0\";}s:33:\"classic-editor/classic-editor.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:28:\"w.org/plugins/classic-editor\";s:4:\"slug\";s:14:\"classic-editor\";s:6:\"plugin\";s:33:\"classic-editor/classic-editor.php\";s:11:\"new_version\";s:5:\"1.6.2\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/classic-editor/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/classic-editor.1.6.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/classic-editor/assets/icon-256x256.png?rev=1998671\";s:2:\"1x\";s:67:\"https://ps.w.org/classic-editor/assets/icon-128x128.png?rev=1998671\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/classic-editor/assets/banner-1544x500.png?rev=1998671\";s:2:\"1x\";s:69:\"https://ps.w.org/classic-editor/assets/banner-772x250.png?rev=1998676\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.9\";}s:9:\"hello.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/hello-dolly\";s:4:\"slug\";s:11:\"hello-dolly\";s:6:\"plugin\";s:9:\"hello.php\";s:11:\"new_version\";s:5:\"1.7.2\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/hello-dolly/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/hello-dolly.1.7.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-256x256.jpg?rev=2052855\";s:2:\"1x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-128x128.jpg?rev=2052855\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/hello-dolly/assets/banner-1544x500.jpg?rev=2645582\";s:2:\"1x\";s:66:\"https://ps.w.org/hello-dolly/assets/banner-772x250.jpg?rev=2052855\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";}s:35:\"pe-recent-posts/pe-recent-posts.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:29:\"w.org/plugins/pe-recent-posts\";s:4:\"slug\";s:15:\"pe-recent-posts\";s:6:\"plugin\";s:35:\"pe-recent-posts/pe-recent-posts.php\";s:11:\"new_version\";s:3:\"1.2\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/pe-recent-posts/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/plugin/pe-recent-posts.1.2.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:68:\"https://ps.w.org/pe-recent-posts/assets/icon-128x128.png?rev=1220719\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:70:\"https://ps.w.org/pe-recent-posts/assets/banner-772x250.png?rev=1220719\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.4\";}s:29:\"theme-editor/theme_editor.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:26:\"w.org/plugins/theme-editor\";s:4:\"slug\";s:12:\"theme-editor\";s:6:\"plugin\";s:29:\"theme-editor/theme_editor.php\";s:11:\"new_version\";s:3:\"2.7\";s:3:\"url\";s:43:\"https://wordpress.org/plugins/theme-editor/\";s:7:\"package\";s:55:\"https://downloads.wordpress.org/plugin/theme-editor.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:65:\"https://ps.w.org/theme-editor/assets/icon-128x128.png?rev=1644634\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:67:\"https://ps.w.org/theme-editor/assets/banner-772x250.jpg?rev=1644636\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.4\";}s:43:\"wp-sheet-editor-premium/wp-sheet-editor.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:43:\"wp-sheet-editor-premium/wp-sheet-editor.php\";s:4:\"slug\";s:59:\"wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\";s:6:\"plugin\";s:43:\"wp-sheet-editor-premium/wp-sheet-editor.php\";s:11:\"new_version\";s:13:\"2.25.2-beta.1\";s:3:\"url\";s:0:\"\";s:7:\"package\";s:0:\"\";s:5:\"icons\";a:0:{}s:7:\"banners\";a:0:{}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:0:\"\";s:12:\"requires_php\";s:0:\"\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}}s:7:\"checked\";a:19:{s:35:\"404-to-homepage/404-to-homepage.php\";s:3:\"1.0\";s:19:\"akismet/akismet.php\";s:5:\"4.2.4\";s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";s:4:\"7.61\";s:91:\"all-in-one-wp-migration-multisite-extension/all-in-one-wp-migration-multisite-extension.php\";s:4:\"4.18\";s:33:\"classic-editor/classic-editor.php\";s:5:\"1.6.2\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:7:\"5.5.6.1\";s:9:\"hello.php\";s:5:\"1.7.2\";s:37:\"wordpress-autoblogging/basic-auth.php\";s:3:\"0.1\";s:37:\"link-whisper-premium/link-whisper.php\";s:5:\"1.5.9\";s:29:\"mainwp-child/mainwp-child.php\";s:5:\"4.2.3\";s:35:\"pe-recent-posts/pe-recent-posts.php\";s:3:\"1.2\";s:49:\"scheduled-post-trigger/scheduled-post-trigger.php\";s:3:\"3.0\";s:47:\"simple-social-buttons/simple-social-buttons.php\";s:5:\"4.0.1\";s:43:\"simple-social-icons/simple-social-icons.php\";s:5:\"3.1.0\";s:23:\"spiderblocker/index.php\";s:5:\"1.3.1\";s:29:\"theme-editor/theme_editor.php\";s:3:\"2.7\";s:81:\"auto-terms-of-service-and-privacy-policy/auto-terms-of-service-privacy-policy.php\";s:5:\"2.4.9\";s:43:\"wp-sheet-editor-premium/wp-sheet-editor.php\";s:13:\"2.25.2-beta.1\";s:24:\"wordpress-seo/wp-seo.php\";s:4:\"19.0\";}}','no'),(56996,'_transient_timeout_global_styles_opus-blog','1680074015','no'),(56997,'_transient_global_styles_opus-blog','body{--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--duotone--dark-grayscale: url(\'#wp-duotone-dark-grayscale\');--wp--preset--duotone--grayscale: url(\'#wp-duotone-grayscale\');--wp--preset--duotone--purple-yellow: url(\'#wp-duotone-purple-yellow\');--wp--preset--duotone--blue-red: url(\'#wp-duotone-blue-red\');--wp--preset--duotone--midnight: url(\'#wp-duotone-midnight\');--wp--preset--duotone--magenta-yellow: url(\'#wp-duotone-magenta-yellow\');--wp--preset--duotone--purple-green: url(\'#wp-duotone-purple-green\');--wp--preset--duotone--blue-orange: url(\'#wp-duotone-blue-orange\');--wp--preset--font-size--small: 15px;--wp--preset--font-size--medium: 25px;--wp--preset--font-size--large: 31px;--wp--preset--font-size--x-large: 42px;--wp--preset--font-size--larger: 39px;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}','no'),(56998,'_transient_timeout_global_styles_svg_filters_opus-blog','1680074016','no'),(56999,'_transient_global_styles_svg_filters_opus-blog','<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-dark-grayscale\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0 0.49803921568627\" /><feFuncG type=\"table\" tableValues=\"0 0.49803921568627\" /><feFuncB type=\"table\" tableValues=\"0 0.49803921568627\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-grayscale\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0 1\" /><feFuncG type=\"table\" tableValues=\"0 1\" /><feFuncB type=\"table\" tableValues=\"0 1\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-purple-yellow\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0.54901960784314 0.98823529411765\" /><feFuncG type=\"table\" tableValues=\"0 1\" /><feFuncB type=\"table\" tableValues=\"0.71764705882353 0.25490196078431\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-blue-red\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0 1\" /><feFuncG type=\"table\" tableValues=\"0 0.27843137254902\" /><feFuncB type=\"table\" tableValues=\"0.5921568627451 0.27843137254902\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-midnight\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0 0\" /><feFuncG type=\"table\" tableValues=\"0 0.64705882352941\" /><feFuncB type=\"table\" tableValues=\"0 1\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-magenta-yellow\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0.78039215686275 1\" /><feFuncG type=\"table\" tableValues=\"0 0.94901960784314\" /><feFuncB type=\"table\" tableValues=\"0.35294117647059 0.47058823529412\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-purple-green\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0.65098039215686 0.40392156862745\" /><feFuncG type=\"table\" tableValues=\"0 1\" /><feFuncB type=\"table\" tableValues=\"0.44705882352941 0.4\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-blue-orange\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0.098039215686275 1\" /><feFuncG type=\"table\" tableValues=\"0 0.66274509803922\" /><feFuncB type=\"table\" tableValues=\"0.84705882352941 0.41960784313725\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg>','no');
/*!40000 ALTER TABLE `wp_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_postmeta`
--

DROP TABLE IF EXISTS `wp_postmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_postmeta` (
  `meta_id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `post_id` bigint unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`meta_id`),
  KEY `post_id` (`post_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=399 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_postmeta`
--

LOCK TABLES `wp_postmeta` WRITE;
/*!40000 ALTER TABLE `wp_postmeta` DISABLE KEYS */;
INSERT INTO `wp_postmeta` VALUES (3,8,'_edit_last','1'),(4,8,'_edit_lock','1597661648:1'),(5,9,'_wp_attached_file','2020/08/600.jpg'),(6,9,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:827;s:4:\"file\";s:15:\"2020/08/600.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"600-300x194.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:194;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"600-1024x662.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:662;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"600-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:15:\"600-768x496.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:496;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"arke-blog\";a:4:{s:4:\"file\";s:15:\"600-640x414.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:414;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(7,8,'_thumbnail_id','9'),(10,11,'_edit_last','1'),(11,11,'_edit_lock','1597661825:1'),(12,12,'_wp_attached_file','2020/08/601.jpg'),(13,12,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1885;s:6:\"height\";i:1414;s:4:\"file\";s:15:\"2020/08/601.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"601-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"601-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"601-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:15:\"601-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:17:\"601-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"arke-blog\";a:4:{s:4:\"file\";s:15:\"601-640x480.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14,11,'_thumbnail_id','12'),(29,20,'_form','<label> Your Name (required)\n    [text* your-name] </label>\n\n<label> Your Email (required)\n    [email* your-email] </label>\n\n<label> Subject\n    [text your-subject] </label>\n\n<label> Your Message\n    [textarea your-message] </label>\n\n[submit \"Send\"]'),(30,20,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:36:\"www.platowinkels.nl \"[your-subject]\"\";s:6:\"sender\";s:42:\"www.platowinkels.nl <[email protected]>\";s:9:\"recipient\";s:20:\"[email protected]\";s:4:\"body\";s:180:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on www.platowinkels.nl (http://platowinkels.nl)\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(31,20,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:36:\"www.platowinkels.nl \"[your-subject]\"\";s:6:\"sender\";s:42:\"www.platowinkels.nl <[email protected]>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:122:\"Message Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on www.platowinkels.nl (http://platowinkels.nl)\";s:18:\"additional_headers\";s:30:\"Reply-To: [email protected]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(32,20,'_messages','a:22:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}'),(33,20,'_additional_settings',''),(34,20,'_locale','en_US'),(35,18,'_edit_last','1'),(36,18,'_wp_page_template','default'),(37,18,'_edit_lock','1597662000:1'),(38,19,'_edit_last','1'),(39,19,'_edit_lock','1597662103:1'),(40,19,'_wp_page_template','default'),(41,19,'_yoast_wpseo_content_score','30'),(42,25,'_edit_last','1'),(43,25,'_edit_lock','1597662153:1'),(44,25,'_wp_page_template','default'),(45,25,'_yoast_wpseo_content_score','60'),(46,24,'_edit_last','1'),(47,24,'_edit_lock','1598337301:1'),(48,23,'_edit_last','1'),(49,23,'_edit_lock','1598337303:1'),(53,23,'_wp_page_template','default'),(54,23,'_yoast_wpseo_content_score','30'),(58,24,'_wp_page_template','default'),(59,24,'_yoast_wpseo_content_score','30'),(76,42,'_menu_item_type','custom'),(77,42,'_menu_item_menu_item_parent','0'),(78,42,'_menu_item_object_id','42'),(79,42,'_menu_item_object','custom'),(80,42,'_menu_item_target',''),(81,42,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(82,42,'_menu_item_xfn',''),(83,42,'_menu_item_url','http://platowinkels.nl/'),(85,43,'_menu_item_type','post_type'),(86,43,'_menu_item_menu_item_parent','0'),(87,43,'_menu_item_object_id','19'),(88,43,'_menu_item_object','page'),(89,43,'_menu_item_target',''),(90,43,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(91,43,'_menu_item_xfn',''),(92,43,'_menu_item_url',''),(94,44,'_menu_item_type','post_type'),(95,44,'_menu_item_menu_item_parent','0'),(96,44,'_menu_item_object_id','25'),(97,44,'_menu_item_object','page'),(98,44,'_menu_item_target',''),(99,44,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(100,44,'_menu_item_xfn',''),(101,44,'_menu_item_url',''),(103,45,'_menu_item_type','post_type'),(104,45,'_menu_item_menu_item_parent','0'),(105,45,'_menu_item_object_id','18'),(106,45,'_menu_item_object','page'),(107,45,'_menu_item_target',''),(108,45,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(109,45,'_menu_item_xfn',''),(110,45,'_menu_item_url',''),(111,45,'_menu_item_orphaned','1597663050'),(112,46,'_menu_item_type','post_type'),(113,46,'_menu_item_menu_item_parent','0'),(114,46,'_menu_item_object_id','24'),(115,46,'_menu_item_object','page'),(116,46,'_menu_item_target',''),(117,46,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(118,46,'_menu_item_xfn',''),(119,46,'_menu_item_url',''),(121,47,'_menu_item_type','post_type'),(122,47,'_menu_item_menu_item_parent','0'),(123,47,'_menu_item_object_id','23'),(124,47,'_menu_item_object','page'),(125,47,'_menu_item_target',''),(126,47,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(127,47,'_menu_item_xfn',''),(128,47,'_menu_item_url',''),(130,48,'_menu_item_type','custom'),(131,48,'_menu_item_menu_item_parent','0'),(132,48,'_menu_item_object_id','48'),(133,48,'_menu_item_object','custom'),(134,48,'_menu_item_target',''),(135,48,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(136,48,'_menu_item_xfn',''),(137,48,'_menu_item_url','#'),(139,49,'_menu_item_type','custom'),(140,49,'_menu_item_menu_item_parent','0'),(141,49,'_menu_item_object_id','49'),(142,49,'_menu_item_object','custom'),(143,49,'_menu_item_target',''),(144,49,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(145,49,'_menu_item_xfn',''),(146,49,'_menu_item_url','#'),(148,50,'_menu_item_type','custom'),(149,50,'_menu_item_menu_item_parent','0'),(150,50,'_menu_item_object_id','50'),(151,50,'_menu_item_object','custom'),(152,50,'_menu_item_target',''),(153,50,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(154,50,'_menu_item_xfn',''),(155,50,'_menu_item_url','#'),(157,51,'_menu_item_type','custom'),(158,51,'_menu_item_menu_item_parent','0'),(159,51,'_menu_item_object_id','51'),(160,51,'_menu_item_object','custom'),(161,51,'_menu_item_target',''),(162,51,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(163,51,'_menu_item_xfn',''),(164,51,'_menu_item_url','https://www.facebook.com/'),(166,52,'_menu_item_type','custom'),(167,52,'_menu_item_menu_item_parent','0'),(168,52,'_menu_item_object_id','52'),(169,52,'_menu_item_object','custom'),(170,52,'_menu_item_target',''),(171,52,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(172,52,'_menu_item_xfn',''),(173,52,'_menu_item_url','https://twitter.com/'),(175,53,'_menu_item_type','custom'),(176,53,'_menu_item_menu_item_parent','0'),(177,53,'_menu_item_object_id','53'),(178,53,'_menu_item_object','custom'),(179,53,'_menu_item_target',''),(180,53,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(181,53,'_menu_item_xfn',''),(182,53,'_menu_item_url','https://bd.linkedin.com/'),(184,54,'_menu_item_type','custom'),(185,54,'_menu_item_menu_item_parent','0'),(186,54,'_menu_item_object_id','54'),(187,54,'_menu_item_object','custom'),(188,54,'_menu_item_target',''),(189,54,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(190,54,'_menu_item_xfn',''),(191,54,'_menu_item_url','https://pinterest.com/'),(193,55,'_wp_attached_file','2020/08/602.jpg'),(194,55,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:804;s:6:\"height\";i:1052;s:4:\"file\";s:15:\"2020/08/602.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"602-229x300.jpg\";s:5:\"width\";i:229;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"602-783x1024.jpg\";s:5:\"width\";i:783;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"602-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:16:\"602-768x1005.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1005;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"opus-blog-thumbnail-size\";a:4:{s:4:\"file\";s:15:\"602-800x800.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"opus-blog-related-size\";a:4:{s:4:\"file\";s:15:\"602-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(195,56,'_wp_attached_file','2020/08/603.jpg'),(196,56,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1688;s:6:\"height\";i:1125;s:4:\"file\";s:15:\"2020/08/603.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"603-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"603-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"603-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:15:\"603-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:17:\"603-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"opus-blog-thumbnail-size\";a:4:{s:4:\"file\";s:15:\"603-800x800.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"opus-blog-related-size\";a:4:{s:4:\"file\";s:15:\"603-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:25:\"spiritofamerica - Fotolia\";s:6:\"camera\";s:12:\"Canon EOS 5D\";s:7:\"caption\";s:254:\"The Vatican Museums, Musei Vaticani, are the public art and sculpture museums in the Vatican City, which display works from the extensive collection of the Roman Catholic Church. Pope Julius II founded the museums in the 16th century, Rome, Italy, Europe\";s:17:\"created_timestamp\";s:10:\"1217423257\";s:9:\"copyright\";s:25:\"spiritofamerica - Fotolia\";s:12:\"focal_length\";s:2:\"24\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:4:\"0.04\";s:5:\"title\";s:40:\"The Vatican Museums, Vatican City, Italy\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:100:{i:0;s:6:\"Europe\";i:1;s:5:\"Italy\";i:2;s:4:\"Rome\";i:3;s:12:\"Vatican City\";i:4;s:15:\"Vatican Museums\";i:5;s:11:\"visual arts\";i:6;s:8:\"fine art\";i:7;s:9:\"paintings\";i:8;s:6:\"people\";i:9;s:5:\"males\";i:10;s:3:\"men\";i:11;s:7:\"Raphael\";i:12;s:31:\"The School of Athens by Raphael\";i:13;s:34:\"Located in: Stanza della Segnatura\";i:14;s:30:\"Ancient and historic Europeans\";i:15;s:14:\"Ancient Greeks\";i:16;s:6:\"Greeks\";i:17;s:11:\"Philosopher\";i:18;s:10:\"Philosophy\";i:19;s:10:\"Alcibiades\";i:20;s:9:\"Aristotle\";i:21;s:8:\"Diogenes\";i:22;s:8:\"Socrates\";i:23;s:16:\"Ancient cultures\";i:24;s:16:\"fresco paintings\";i:25;s:6:\"Europe\";i:26;s:5:\"Italy\";i:27;s:4:\"Rome\";i:28;s:12:\"Vatican City\";i:29;s:15:\"Vatican Museums\";i:30;s:11:\"visual arts\";i:31;s:8:\"fine art\";i:32;s:9:\"paintings\";i:33;s:6:\"people\";i:34;s:5:\"males\";i:35;s:3:\"men\";i:36;s:7:\"Raphael\";i:37;s:31:\"The School of Athens by Raphael\";i:38;s:34:\"Located in: Stanza della Segnatura\";i:39;s:30:\"Ancient and historic Europeans\";i:40;s:14:\"Ancient Greeks\";i:41;s:6:\"Greeks\";i:42;s:11:\"Philosopher\";i:43;s:10:\"Philosophy\";i:44;s:10:\"Alcibiades\";i:45;s:9:\"Aristotle\";i:46;s:8:\"Diogenes\";i:47;s:8:\"Socrates\";i:48;s:16:\"Ancient cultures\";i:49;s:16:\"fresco paintings\";i:50;s:6:\"Europe\";i:51;s:5:\"Italy\";i:52;s:4:\"Rome\";i:53;s:12:\"Vatican City\";i:54;s:15:\"Vatican Museums\";i:55;s:11:\"visual arts\";i:56;s:8:\"fine art\";i:57;s:9:\"paintings\";i:58;s:6:\"people\";i:59;s:5:\"males\";i:60;s:3:\"men\";i:61;s:7:\"Raphael\";i:62;s:31:\"The School of Athens by Raphael\";i:63;s:34:\"Located in: Stanza della Segnatura\";i:64;s:30:\"Ancient and historic Europeans\";i:65;s:14:\"Ancient Greeks\";i:66;s:6:\"Greeks\";i:67;s:11:\"Philosopher\";i:68;s:10:\"Philosophy\";i:69;s:10:\"Alcibiades\";i:70;s:9:\"Aristotle\";i:71;s:8:\"Diogenes\";i:72;s:8:\"Socrates\";i:73;s:16:\"Ancient cultures\";i:74;s:16:\"fresco paintings\";i:75;s:6:\"europe\";i:76;s:5:\"italy\";i:77;s:4:\"rome\";i:78;s:12:\"vatican city\";i:79;s:15:\"vatican museums\";i:80;s:11:\"visual arts\";i:81;s:8:\"fine art\";i:82;s:9:\"paintings\";i:83;s:6:\"people\";i:84;s:5:\"males\";i:85;s:3:\"men\";i:86;s:7:\"raphael\";i:87;s:31:\"the school of athens by raphael\";i:88;s:34:\"located in  stanza della segnatura\";i:89;s:30:\"ancient and historic europeans\";i:90;s:14:\"ancient greeks\";i:91;s:6:\"greeks\";i:92;s:11:\"philosopher\";i:93;s:10:\"philosophy\";i:94;s:10:\"alcibiades\";i:95;s:9:\"aristotle\";i:96;s:8:\"diogenes\";i:97;s:8:\"socrates\";i:98;s:16:\"ancient cultures\";i:99;s:16:\"fresco paintings\";}}}'),(197,57,'_form','<label> Your Name (required)\n    [text* your-name] </label>\n\n<label> Your Email (required)\n    [email* your-email] </label>\n\n[submit \"Send\"]'),(198,57,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:36:\"www.platowinkels.nl \"[your-subject]\"\";s:6:\"sender\";s:42:\"www.platowinkels.nl <[email protected]>\";s:9:\"recipient\";s:20:\"[email protected]\";s:4:\"body\";s:180:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on www.platowinkels.nl (http://platowinkels.nl)\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(199,57,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:36:\"www.platowinkels.nl \"[your-subject]\"\";s:6:\"sender\";s:42:\"www.platowinkels.nl <[email protected]>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:122:\"Message Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on www.platowinkels.nl (http://platowinkels.nl)\";s:18:\"additional_headers\";s:30:\"Reply-To: [email protected]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(200,57,'_messages','a:22:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}'),(201,57,'_additional_settings',''),(202,57,'_locale','en_US'),(203,19,'_pe_base_popular_posts_count','375'),(204,25,'_pe_base_popular_posts_count','1105'),(213,67,'_wp_attached_file','2020/08/logo143.png'),(214,67,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:292;s:6:\"height\";i:43;s:4:\"file\";s:19:\"2020/08/logo143.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"logo143-150x43.png\";s:5:\"width\";i:150;s:6:\"height\";i:43;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(215,68,'_wp_attached_file','2020/08/cropped-logo143.png'),(216,68,'_wp_attachment_context','custom-logo'),(217,68,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:292;s:6:\"height\";i:43;s:4:\"file\";s:27:\"2020/08/cropped-logo143.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"cropped-logo143-150x43.png\";s:5:\"width\";i:150;s:6:\"height\";i:43;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(220,70,'_wp_attached_file','2020/08/favicon7.png'),(221,70,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:91;s:6:\"height\";i:89;s:4:\"file\";s:20:\"2020/08/favicon7.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(222,71,'_wp_attached_file','2020/08/cropped-favicon7.png'),(223,71,'_wp_attachment_context','site-icon'),(224,71,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:28:\"2020/08/cropped-favicon7.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"cropped-favicon7-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"cropped-favicon7-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:22:\"opus-blog-related-size\";a:4:{s:4:\"file\";s:28:\"cropped-favicon7-512x400.png\";s:5:\"width\";i:512;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"site_icon-270\";a:4:{s:4:\"file\";s:28:\"cropped-favicon7-270x270.png\";s:5:\"width\";i:270;s:6:\"height\";i:270;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"site_icon-192\";a:4:{s:4:\"file\";s:28:\"cropped-favicon7-192x192.png\";s:5:\"width\";i:192;s:6:\"height\";i:192;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"site_icon-180\";a:4:{s:4:\"file\";s:28:\"cropped-favicon7-180x180.png\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"site_icon-32\";a:4:{s:4:\"file\";s:26:\"cropped-favicon7-32x32.png\";s:5:\"width\";i:32;s:6:\"height\";i:32;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(228,24,'_pe_base_popular_posts_count','300'),(229,23,'_pe_base_popular_posts_count','322'),(230,11,'_pe_base_popular_posts_count','374'),(231,8,'_pe_base_popular_posts_count','328'),(244,18,'_pe_base_popular_posts_count','38'),(245,83,'_edit_last','1'),(246,83,'_edit_lock','1602033811:1'),(247,83,'_oembed_919393436cb56a0b91f22254dac069e7','<iframe title=\"CBR Auto Theorie Examen oefenen in 2020 Gratis Tips Dit kun jij verwachten\" width=\"640\" height=\"360\" src=\"https://www.youtube.com/embed/LtXyfRrsla0?start=2&feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(248,83,'_oembed_time_919393436cb56a0b91f22254dac069e7','1602033873'),(249,84,'_wp_attached_file','2020/10/5fg45d4fvs5d4.jpg'),(250,84,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:744;s:6:\"height\";i:446;s:4:\"file\";s:25:\"2020/10/5fg45d4fvs5d4.jpg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"5fg45d4fvs5d4-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"5fg45d4fvs5d4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"opus-blog-related-size\";a:4:{s:4:\"file\";s:25:\"5fg45d4fvs5d4-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(251,83,'_thumbnail_id','84'),(252,83,'_wp_page_template','default'),(253,83,'_ssb_hide','false'),(254,83,'_yoast_wpseo_content_score','30'),(255,83,'_yoast_wpseo_primary_category','10'),(256,86,'_edit_last','1'),(257,86,'_edit_lock','1603332832:1'),(258,87,'_wp_attached_file','2020/10/r6e5re45er45.png'),(259,87,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:900;s:6:\"height\";i:497;s:4:\"file\";s:24:\"2020/10/r6e5re45er45.png\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"r6e5re45er45-300x166.png\";s:5:\"width\";i:300;s:6:\"height\";i:166;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"r6e5re45er45-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"r6e5re45er45-768x424.png\";s:5:\"width\";i:768;s:6:\"height\";i:424;s:9:\"mime-type\";s:9:\"image/png\";}s:24:\"opus-blog-thumbnail-size\";a:4:{s:4:\"file\";s:24:\"r6e5re45er45-800x497.png\";s:5:\"width\";i:800;s:6:\"height\";i:497;s:9:\"mime-type\";s:9:\"image/png\";}s:22:\"opus-blog-related-size\";a:4:{s:4:\"file\";s:24:\"r6e5re45er45-600x400.png\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(260,86,'_thumbnail_id','87'),(261,86,'_wp_page_template','default'),(262,86,'_ssb_hide','false'),(263,86,'_yoast_wpseo_content_score','30'),(264,86,'_yoast_wpseo_primary_category','11'),(267,11,'_oembed_919393436cb56a0b91f22254dac069e7','<iframe title=\"CBR Auto Theorie Examen oefenen in 2020 Gratis Tips Dit kun jij verwachten\" width=\"640\" height=\"360\" src=\"https://www.youtube.com/embed/LtXyfRrsla0?start=2&feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(268,11,'_oembed_time_919393436cb56a0b91f22254dac069e7','1603596017'),(269,83,'_pe_base_popular_posts_count','307'),(270,8,'ssb_old_counts','a:5:{s:7:\"twitter\";i:0;s:9:\"pinterest\";i:0;s:7:\"fbshare\";i:0;s:6:\"reddit\";i:0;s:6:\"tumblr\";i:0;}'),(271,8,'ssb_total_counts','0'),(272,8,'ssb_cache_timestamp','466429'),(275,86,'_pe_base_popular_posts_count','174'),(276,90,'_edit_last','1'),(277,90,'_edit_lock','1608757155:1'),(278,90,'_oembed_5309371bf043d9acd3bbde9a43dd50a4','<iframe title=\"MASSIVE TOP Stocks To Buy Now   BIG MOVERS TODAY REVEALED\" width=\"640\" height=\"360\" src=\"https://www.youtube.com/embed/LjuvlDub3Mw?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(279,90,'_oembed_time_5309371bf043d9acd3bbde9a43dd50a4','1608756786'),(280,91,'_wp_attached_file','2020/12/f8v9d8v9df8.jpg'),(281,91,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:225;s:6:\"height\";i:225;s:4:\"file\";s:23:\"2020/12/f8v9d8v9df8.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"f8v9d8v9df8-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(282,90,'_thumbnail_id','91'),(283,90,'_wp_page_template','default'),(284,90,'_ssb_hide','false'),(285,90,'_yoast_wpseo_content_score','30'),(286,90,'_yoast_wpseo_primary_category','12'),(287,94,'_edit_last','1'),(288,94,'_edit_lock','1649692476:1'),(289,94,'_oembed_c6ac437401f9a52d64bc282bb187d073','<iframe title=\"Find The Best Forex Trading Setups Daily Part 1 of 2\" width=\"640\" height=\"360\" src=\"https://www.youtube.com/embed/rgAkANz4kCw?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(290,94,'_oembed_time_c6ac437401f9a52d64bc282bb187d073','1649692592'),(291,95,'_wp_attached_file','2020/12/fg4b.gif'),(292,95,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:295;s:6:\"height\";i:236;s:4:\"file\";s:16:\"2020/12/fg4b.gif\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"fg4b-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(293,94,'_thumbnail_id','95'),(294,94,'_wp_page_template','default'),(295,94,'_ssb_hide','false'),(296,94,'_yoast_wpseo_content_score','30'),(297,94,'_yoast_wpseo_primary_category','13'),(298,98,'_edit_last','1'),(299,98,'_edit_lock','1609262429:1'),(300,99,'_wp_attached_file','2020/12/gkd121.jpg'),(301,99,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:648;s:4:\"file\";s:18:\"2020/12/gkd121.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"gkd121-300x190.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:190;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"gkd121-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"gkd121-768x486.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:486;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"opus-blog-thumbnail-size\";a:4:{s:4:\"file\";s:18:\"gkd121-800x648.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:648;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"opus-blog-related-size\";a:4:{s:4:\"file\";s:18:\"gkd121-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(302,98,'_thumbnail_id','99'),(303,98,'_wp_page_template','default'),(304,98,'_ssb_hide','false'),(305,98,'_yoast_wpseo_content_score','60'),(306,98,'_yoast_wpseo_primary_category','12'),(309,98,'_pe_base_popular_posts_count','160'),(312,98,'_oembed_c6ac437401f9a52d64bc282bb187d073','<iframe title=\"Find The Best Forex Trading Setups Daily Part 1 of 2\" width=\"640\" height=\"360\" src=\"https://www.youtube.com/embed/rgAkANz4kCw?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(313,98,'_oembed_time_c6ac437401f9a52d64bc282bb187d073','1610744104'),(314,94,'_pe_base_popular_posts_count','135'),(317,83,'_oembed_5309371bf043d9acd3bbde9a43dd50a4','<iframe title=\"MASSIVE TOP Stocks To Buy Now   BIG MOVERS TODAY REVEALED\" width=\"640\" height=\"360\" src=\"https://www.youtube.com/embed/LjuvlDub3Mw?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(318,83,'_oembed_time_5309371bf043d9acd3bbde9a43dd50a4','1610918470'),(319,90,'_pe_base_popular_posts_count','160'),(320,11,'ssb_old_counts','a:5:{s:7:\"twitter\";i:0;s:9:\"pinterest\";i:0;s:7:\"fbshare\";i:0;s:6:\"reddit\";i:0;s:6:\"tumblr\";i:0;}'),(321,11,'ssb_total_counts','0'),(322,11,'ssb_cache_timestamp','466573'),(323,98,'ssb_old_counts','a:5:{s:7:\"twitter\";i:0;s:9:\"pinterest\";i:0;s:7:\"fbshare\";i:0;s:6:\"reddit\";i:0;s:6:\"tumblr\";i:0;}'),(324,98,'ssb_total_counts','0'),(325,98,'ssb_cache_timestamp','466429'),(326,90,'ssb_old_counts','a:5:{s:7:\"twitter\";i:0;s:9:\"pinterest\";i:0;s:7:\"fbshare\";i:0;s:6:\"reddit\";i:0;s:6:\"tumblr\";i:0;}'),(327,90,'ssb_total_counts','0'),(328,90,'ssb_cache_timestamp','466662'),(329,94,'ssb_old_counts','a:5:{s:7:\"twitter\";i:0;s:9:\"pinterest\";i:0;s:7:\"fbshare\";i:0;s:6:\"reddit\";i:0;s:6:\"tumblr\";i:0;}'),(330,94,'ssb_total_counts','0'),(331,94,'ssb_cache_timestamp','464238'),(332,86,'ssb_old_counts','a:5:{s:7:\"twitter\";i:0;s:9:\"pinterest\";i:0;s:7:\"fbshare\";i:0;s:6:\"reddit\";i:0;s:6:\"tumblr\";i:0;}'),(333,86,'ssb_total_counts','0'),(334,86,'ssb_cache_timestamp','466159'),(335,83,'ssb_old_counts','a:5:{s:7:\"twitter\";i:0;s:9:\"pinterest\";i:0;s:7:\"fbshare\";i:0;s:6:\"reddit\";i:0;s:6:\"tumblr\";i:0;}'),(336,83,'ssb_total_counts','0'),(337,83,'ssb_cache_timestamp','466424'),(338,71,'_oembed_b73a4954cc94b068394505e428332114','{{unknown}}'),(339,68,'_oembed_d3b8effb362132e8ad0162df84bd1255','{{unknown}}'),(342,105,'_edit_last','1'),(343,105,'_edit_lock','1622572417:1'),(344,105,'_oembed_b8ccfc65e9b99378973175d43d37794c','<iframe title=\"Auto Theorie Examen Oefenen 1\" width=\"640\" height=\"360\" src=\"https://www.youtube.com/embed/B6p2wMkhAaA?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(345,105,'_oembed_time_b8ccfc65e9b99378973175d43d37794c','1622570065'),(346,106,'_wp_attached_file','2021/06/4dsf.jpg'),(347,106,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:247;s:6:\"height\";i:204;s:4:\"file\";s:16:\"2021/06/4dsf.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"4dsf-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(348,105,'_thumbnail_id','106'),(349,105,'_wp_page_template','default'),(352,105,'_ssb_hide','false'),(353,105,'_yoast_wpseo_content_score','30'),(354,105,'_yoast_wpseo_primary_category','14'),(355,108,'_oembed_e1fb1b996a97af8ab7e9d7449e92f194','<iframe title=\"TOP 5 CRYPTO COINS FOR JUNE 2021!! ?\" width=\"640\" height=\"360\" src=\"https://www.youtube.com/embed/gt00Lw-veko?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(356,108,'_oembed_time_e1fb1b996a97af8ab7e9d7449e92f194','1622611413'),(357,109,'_wp_attached_file','2021/06/4fdg.jpg'),(358,109,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:318;s:6:\"height\";i:159;s:4:\"file\";s:16:\"2021/06/4fdg.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"4fdg-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"4fdg-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(359,108,'_edit_last','1'),(360,108,'_edit_lock','1622611523:1'),(361,111,'_edit_last','1'),(362,111,'_edit_lock','1622650401:1'),(363,111,'_oembed_e1fb1b996a97af8ab7e9d7449e92f194','<iframe title=\"TOP 5 CRYPTO COINS FOR JUNE 2021!! ?\" width=\"640\" height=\"360\" src=\"https://www.youtube.com/embed/gt00Lw-veko?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(364,111,'_oembed_time_e1fb1b996a97af8ab7e9d7449e92f194','1622650405'),(365,112,'_wp_attached_file','2021/06/4fdg-1.jpg'),(366,112,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:318;s:6:\"height\";i:159;s:4:\"file\";s:18:\"2021/06/4fdg-1.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"4fdg-1-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"4fdg-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(367,111,'_thumbnail_id','112'),(368,111,'_wp_page_template','default'),(371,111,'_ssb_hide','false'),(372,111,'_yoast_wpseo_content_score','30'),(373,111,'_yoast_wpseo_primary_category','15'),(374,105,'_pe_base_popular_posts_count','51'),(375,111,'_pe_base_popular_posts_count','55'),(376,105,'ssb_old_counts','a:5:{s:7:\"twitter\";i:0;s:9:\"pinterest\";i:0;s:7:\"fbshare\";i:0;s:6:\"reddit\";i:0;s:6:\"tumblr\";N;}'),(377,105,'ssb_total_counts','0'),(378,105,'ssb_cache_timestamp','455926'),(379,111,'ssb_old_counts','a:5:{s:7:\"twitter\";i:0;s:9:\"pinterest\";i:0;s:7:\"fbshare\";i:0;s:6:\"reddit\";i:0;s:6:\"tumblr\";N;}'),(380,111,'ssb_total_counts','0'),(381,111,'ssb_cache_timestamp','465688'),(384,94,'_yoast_wpseo_estimated-reading-time-minutes','2'),(385,119,'_edit_last','1'),(386,119,'_edit_lock','1670663143:1'),(387,119,'_wp_page_template','default'),(390,119,'_ssb_hide','false'),(391,119,'_yoast_wpseo_content_score','60'),(392,119,'_yoast_wpseo_estimated-reading-time-minutes','2'),(393,119,'ssb_old_counts','a:5:{s:7:\"twitter\";i:0;s:9:\"pinterest\";i:0;s:7:\"fbshare\";i:0;s:6:\"reddit\";i:0;s:6:\"tumblr\";N;}'),(394,119,'ssb_total_counts','0'),(395,119,'ssb_cache_timestamp','464073');
/*!40000 ALTER TABLE `wp_postmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_posts`
--

DROP TABLE IF EXISTS `wp_posts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_posts` (
  `ID` bigint unsigned NOT NULL AUTO_INCREMENT,
  `post_author` bigint unsigned NOT NULL DEFAULT '0',
  `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_title` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_excerpt` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_status` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'publish',
  `comment_status` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open',
  `ping_status` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open',
  `post_password` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `post_name` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `to_ping` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `pinged` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content_filtered` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_parent` bigint unsigned NOT NULL DEFAULT '0',
  `guid` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `menu_order` int NOT NULL DEFAULT '0',
  `post_type` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'post',
  `post_mime_type` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_count` bigint NOT NULL DEFAULT '0',
  PRIMARY KEY (`ID`),
  KEY `post_name` (`post_name`(191)),
  KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
  KEY `post_parent` (`post_parent`),
  KEY `post_author` (`post_author`)
) ENGINE=InnoDB AUTO_INCREMENT=124 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_posts`
--

LOCK TABLES `wp_posts` WRITE;
/*!40000 ALTER TABLE `wp_posts` DISABLE KEYS */;
INSERT INTO `wp_posts` VALUES (8,1,'2020-08-17 10:56:19','2020-08-17 10:56:19','Verbetering is tegenwoordig een patroon. Elke natie doet er alles aan om de veronderstelde gang van zaken te bereiken. In The Republic begrijpt Plato dat mensen een cyclus doormaken die van een ruwe samenleving naar een zeer geschapen samenleving gaat, en op dat punt terugkomt naar de eerste beginfase (de ruwe fase van het leven). De reden waarom Plato The Republic componeerde, is om het algemene publiek te bevriezen en verandering te voorkomen. Maar hoe kan het gebeuren als verandering de belangrijkste consistente is in deze wereld? Zou het grote publiek zijn manier van leven kunnen behouden zonder het te transformeren of te creëren? Het beperkt een mens en geeft hem bijvoorbeeld geen ruimte voor veelzijdigheid; als hij een boer is, is dat de limiet. De Republiek probeert aan te geven hoe rechtvaardigheid kan worden bereikt, en hoe Plato omschrijft hoe die bereikt kan worden. De Republiek is een uitwisseling tussen Socrates, Polymarchus en Thrasymachus, en anderen, in de plaats van Cephalus, naar wie redelijkerwijs niet kan worden verwezen. Er wordt geredeneerd over hoe rechtvaardig en juist kan worden onderworpen, en wat is billijkheid? Wat meer is, dat leidt tot de weergave van het inlijsten van een perfecte staat, in een scan naar de betekenis van gelijkheid?\r\n\r\nPrecies en goed. Deze voorwaarden kunnen talrijke implicaties hebben. Het belang ervan kan veranderen in wat het is in de indruk van de kijker. Zoals wat Thrasymachus \"juist\" en \"juist\" typeert als alleen wat tot het enthousiasme van de meer geaarde partij is. Hoe het ook zij, deze ideeën zijn een term waarvan mensen niet kunnen ontdekken wat deze theoretische ideeën werkelijk zouden betekenen. Zoals wat Plato in zijn boek The Republic uitdrukte, \"was \'goed\' wat acceptabel was voor een andere persoon en \'rechtvaardig\' betekent het dienen van het enthousiasme van de meer gegronde die regeert, ten koste van het onderwerp dat eraan voldoet.\r\n\r\nHet heeft 15 onderdelen. Gelijkheid is de belangrijkste kwestie in het boek. Hoe bereik je gelijkheid? Wat is de betekenis van gelijkheid? Dit waren slechts een deel van het onderzoek dat Plato een antwoord op de Republiek trekt. Hij vertegenwoordigt het op dat moment door het kaderen van een fantasievolle staat. De fantasievolle staat kan bestaan ​​uit drie klassen van individuen; makers, die de controle hebben over het voedsel van het grote publiek; gewapend geweld, dat de controle heeft voor de verzekering van het grote publiek; en wachters, de beslissingsklasse. De fantasievolle toestand is een structuur om op te volgen waar gelijkheid of slechte vorm plaatsvindt en de aard van gelijkheid kan in een heel netwerk bestaan. Elk van de sociale klassen van het grote publiek wordt bestuurd door een van de drie delen van de geest. Er is een gezond deel, een energetisch deel en een smakelijk deel van de geest. Elk van de klassen van het grote publiek wordt aangestuurd door een van de drie delen van de geest.\r\n\r\nDe staat is structuur vanwege de gedachte dat de mens niet zelf de truc doet en in het geval dat de mens zelf de truc doet, zou hij geen mens moeten zijn, maar eerder een monster of een goddelijk wezen. manier, ze maken geen deel uit van de staat. Bovendien kan het door het vormgeven van deze staat groter en groter worden, waarbij talloze benodigdheden binnen handbereik zijn. Naarmate het zich ontwikkelde, zal er een periode komen dat het in oorlog zal komen als gevolg van de strijd om grenzeloze rijkdom te verwerven. Het zal de extra van de individuen uit het netwerk oproepen - dat is het leger. Een andere klasse is de Guardians. Dit zijn de beslissingsklassen. De kenmerken van een wachter zijn, waarnaar in het boek wordt verwezen, die belangrijk zijn om een ​​fatsoenlijke poortwachter te worden, zijn delicaatheid en een hoog humeur. Naast deze kenmerken is onverschrokkenheid ook belangrijk. Door deze kenmerken staan ​​poortwachters in contrast met een zeer veel gefokte hond. Net als de rondom gereproduceerde hoektanden, zijn ze kwetsbaar voor de mensen die ze kennen en woest voor buitenstaanders. Op dat moment is er uitbreiding van het grote publiek. Door deze uitbreiding van het netwerk en de gedachte aan troost kunnen we ons helpen te ontdekken hoe rechtvaardigheid en verraad floreren. Plato probeert in duidelijke bewoordingen weer te geven hoe de gedachte aan billijkheid kan worden verworven en vervolgens een vergelijkbaar idee van individuele billijkheid af te leiden. Zoals het boek uitdrukte, is het slimmer om het idee van gelijkheid in het individu te begrijpen als de kans bestaat dat het in een grotere reikwijdte wordt genomen.\r\n\r\nHet bespreekt ook filosoof koningen, of heersers worden overweldigd door een poging tot inzicht. Je kunt geen heerser zijn, behalve als je een logicus bent, dat ze de intelligentie en informatie hebben om de show te runnen. De geesten van deze savants zijn iets buiten de anderen; het betekent voldoen aan de behoeften van het fatsoenlijke deel. Ze structureren de klasse van mannen om informatie te hebben. Met deze fundamentele componenten van een volmaakte samenleving die Plato had ingevoerd, geeft het weer waarom mensen eerlijk leven. In The Republic wordt aangegeven hoe het met een ideale samenleving moet gaan en met welke middelen zullen de poortwachters bereid zijn de vermeende billijkheid te verwezenlijken. Plato verduidelijkt bovendien dat de wereld in twee domeinen is geïsoleerd; het voor de hand liggende en het begrijpelijke. In ieder geval kunnen alleen die psychen die voorbereid zijn grip krijgen op de structuren, - duidelijk - dat zijn de logici. Zoals hij had laten zien, moet het essentiële onderdeel van een volmaakte samenleving zijn geschikte capaciteit (die heersers moeten leiden, makers moeten alle capaciteiten uitoefenen die hun toekomen) gebruiken om te erkennen wat gelijkheid inhoudt. Wordt equity overal gekenmerkt? Plato maakt een einde aan The Republic door equity te karakteriseren als de beste grote.','Een boekbespreking over de Republiek door Plato','','publish','closed','closed','','een-boekbespreking-over-de-republiek-door-plato','','','2020-08-17 10:56:19','2020-08-17 10:56:19','',0,'http://platowinkels.nl/?p=8',0,'post','',0),(9,1,'2020-08-17 10:56:11','2020-08-17 10:56:11','','600','','inherit','closed','closed','','600','','','2020-08-17 10:56:11','2020-08-17 10:56:11','',8,'http://platowinkels.nl/wp-content/uploads/2020/08/600.jpg',0,'attachment','image/jpeg',0),(10,1,'2020-08-17 10:56:19','2020-08-17 10:56:19','Verbetering is tegenwoordig een patroon. Elke natie doet er alles aan om de veronderstelde gang van zaken te bereiken. In The Republic begrijpt Plato dat mensen een cyclus doormaken die van een ruwe samenleving naar een zeer geschapen samenleving gaat, en op dat punt terugkomt naar de eerste beginfase (de ruwe fase van het leven). De reden waarom Plato The Republic componeerde, is om het algemene publiek te bevriezen en verandering te voorkomen. Maar hoe kan het gebeuren als verandering de belangrijkste consistente is in deze wereld? Zou het grote publiek zijn manier van leven kunnen behouden zonder het te transformeren of te creëren? Het beperkt een mens en geeft hem bijvoorbeeld geen ruimte voor veelzijdigheid; als hij een boer is, is dat de limiet. De Republiek probeert aan te geven hoe rechtvaardigheid kan worden bereikt, en hoe Plato omschrijft hoe die bereikt kan worden. De Republiek is een uitwisseling tussen Socrates, Polymarchus en Thrasymachus, en anderen, in de plaats van Cephalus, naar wie redelijkerwijs niet kan worden verwezen. Er wordt geredeneerd over hoe rechtvaardig en juist kan worden onderworpen, en wat is billijkheid? Wat meer is, dat leidt tot de weergave van het inlijsten van een perfecte staat, in een scan naar de betekenis van gelijkheid?\r\n\r\nPrecies en goed. Deze voorwaarden kunnen talrijke implicaties hebben. Het belang ervan kan veranderen in wat het is in de indruk van de kijker. Zoals wat Thrasymachus \"juist\" en \"juist\" typeert als alleen wat tot het enthousiasme van de meer geaarde partij is. Hoe het ook zij, deze ideeën zijn een term waarvan mensen niet kunnen ontdekken wat deze theoretische ideeën werkelijk zouden betekenen. Zoals wat Plato in zijn boek The Republic uitdrukte, \"was \'goed\' wat acceptabel was voor een andere persoon en \'rechtvaardig\' betekent het dienen van het enthousiasme van de meer gegronde die regeert, ten koste van het onderwerp dat eraan voldoet.\r\n\r\nHet heeft 15 onderdelen. Gelijkheid is de belangrijkste kwestie in het boek. Hoe bereik je gelijkheid? Wat is de betekenis van gelijkheid? Dit waren slechts een deel van het onderzoek dat Plato een antwoord op de Republiek trekt. Hij vertegenwoordigt het op dat moment door het kaderen van een fantasievolle staat. De fantasievolle staat kan bestaan ​​uit drie klassen van individuen; makers, die de controle hebben over het voedsel van het grote publiek; gewapend geweld, dat de controle heeft voor de verzekering van het grote publiek; en wachters, de beslissingsklasse. De fantasievolle toestand is een structuur om op te volgen waar gelijkheid of slechte vorm plaatsvindt en de aard van gelijkheid kan in een heel netwerk bestaan. Elk van de sociale klassen van het grote publiek wordt bestuurd door een van de drie delen van de geest. Er is een gezond deel, een energetisch deel en een smakelijk deel van de geest. Elk van de klassen van het grote publiek wordt aangestuurd door een van de drie delen van de geest.\r\n\r\nDe staat is structuur vanwege de gedachte dat de mens niet zelf de truc doet en in het geval dat de mens zelf de truc doet, zou hij geen mens moeten zijn, maar eerder een monster of een goddelijk wezen. manier, ze maken geen deel uit van de staat. Bovendien kan het door het vormgeven van deze staat groter en groter worden, waarbij talloze benodigdheden binnen handbereik zijn. Naarmate het zich ontwikkelde, zal er een periode komen dat het in oorlog zal komen als gevolg van de strijd om grenzeloze rijkdom te verwerven. Het zal de extra van de individuen uit het netwerk oproepen - dat is het leger. Een andere klasse is de Guardians. Dit zijn de beslissingsklassen. De kenmerken van een wachter zijn, waarnaar in het boek wordt verwezen, die belangrijk zijn om een ​​fatsoenlijke poortwachter te worden, zijn delicaatheid en een hoog humeur. Naast deze kenmerken is onverschrokkenheid ook belangrijk. Door deze kenmerken staan ​​poortwachters in contrast met een zeer veel gefokte hond. Net als de rondom gereproduceerde hoektanden, zijn ze kwetsbaar voor de mensen die ze kennen en woest voor buitenstaanders. Op dat moment is er uitbreiding van het grote publiek. Door deze uitbreiding van het netwerk en de gedachte aan troost kunnen we ons helpen te ontdekken hoe rechtvaardigheid en verraad floreren. Plato probeert in duidelijke bewoordingen weer te geven hoe de gedachte aan billijkheid kan worden verworven en vervolgens een vergelijkbaar idee van individuele billijkheid af te leiden. Zoals het boek uitdrukte, is het slimmer om het idee van gelijkheid in het individu te begrijpen als de kans bestaat dat het in een grotere reikwijdte wordt genomen.\r\n\r\nHet bespreekt ook filosoof koningen, of heersers worden overweldigd door een poging tot inzicht. Je kunt geen heerser zijn, behalve als je een logicus bent, dat ze de intelligentie en informatie hebben om de show te runnen. De geesten van deze savants zijn iets buiten de anderen; het betekent voldoen aan de behoeften van het fatsoenlijke deel. Ze structureren de klasse van mannen om informatie te hebben. Met deze fundamentele componenten van een volmaakte samenleving die Plato had ingevoerd, geeft het weer waarom mensen eerlijk leven. In The Republic wordt aangegeven hoe het met een ideale samenleving moet gaan en met welke middelen zullen de poortwachters bereid zijn de vermeende billijkheid te verwezenlijken. Plato verduidelijkt bovendien dat de wereld in twee domeinen is geïsoleerd; het voor de hand liggende en het begrijpelijke. In ieder geval kunnen alleen die psychen die voorbereid zijn grip krijgen op de structuren, - duidelijk - dat zijn de logici. Zoals hij had laten zien, moet het essentiële onderdeel van een volmaakte samenleving zijn geschikte capaciteit (die heersers moeten leiden, makers moeten alle capaciteiten uitoefenen die hun toekomen) gebruiken om te erkennen wat gelijkheid inhoudt. Wordt equity overal gekenmerkt? Plato maakt een einde aan The Republic door equity te karakteriseren als de beste grote.','Een boekbespreking over de Republiek door Plato','','inherit','closed','closed','','8-revision-v1','','','2020-08-17 10:56:19','2020-08-17 10:56:19','',8,'http://platowinkels.nl/8-revision-v1/',0,'revision','',0),(11,1,'2020-08-17 10:59:21','2020-08-17 10:59:21','Speak With Plato\r\n\r\nPlato, one of the incredible masterminds and scholars ever, was conceived in Athens, Greece (427 - 347 B.C.) He was an understudy of Socrates. He set up his own school of reasoning at the Academy. He composed exchanges containing shrewdness that is appropriate to us today.\r\n\r\nToday we remain on the edge of another age. The Age of Aquarius. We will require another worldview to assist us with comprehension and execute this new worldview that will be with us for the following 2000 years.\r\n\r\nThe Age of Aquarius has given us an instrument to use to fabricate this new worldview. It is known as the Laws of Quantum Physics. These laws let us know, in addition to other things, that there truly is no time, past, present nor future. There is just the NOW.\r\n\r\nThey additionally disclose to us that everything is vitality and that everything that at any point was, is or will be is here with us now.\r\n\r\nThe incredible news is that Plato is here with us NOW. The intelligence of his books, however the genuine, living vitality field called Plato.\r\n\r\nHe is nearer to us than our own hands and feet. This is additionally the occupant of the Laws of Quantum Physics, that says we as a whole exist in an interminable expanse of smart reasoning vitality called the Quantum Ocean, or the Mind of God.\r\n\r\nOur considerations are our association with the Mind of God. What we think we draw in. Our psyche is the connection.\r\n\r\nWe are vitality creatures apparently existing in two universes, our physical world and the universe of the Quantum Ocean. The connection or entryway between these two universes is our Aura.\r\n\r\nOur opinion of hauls energies out of the unending sea into our Aura. What energies we convey in our Aura pulls in our real life to us as individuals, spots and occasions.\r\n\r\nThe principle motivation behind why the Creator God sent our spirits over and over into a physical the truth is so we could utilize our encounters to discover our way back. The street we use to discover our way back is the street of Consciousness.\r\n\r\nWhy not have one of the most Conscious everything being equal, Plato walk the street with us and help manage us. To do this you should get Plato\'s energies into your Aura. You do this by intentionally contemplating him, perusing his words and pondering upon his picture.\r\n\r\nThe most ideal way I know to get vitality out of the Quantum Ocean and into your Aura, is to inhale it in.\r\n\r\nEach morning, sit discreetly in your preferred seat. Have your picture of Plato, one of his books and a cushion, and pencil in your lap. Unwind. Presently utilize your psyche to make the linkage to Plato in the Quantum Ocean and draw in him into your Aura.\r\n\r\nIntellectually state, \"I am currently drawing in the energies of Plato, out of the Quantum Ocean and into my Aura, multiple times. Unwind and make notes all things considered, emotions, hunches, and motivations in your scratch pad. Before long you will see the association between both of you coming to fruition.\r\n\r\nAt the point when you read one of his books, recollect that the incredible Law of Three is continually grinding away. There is you, the book and the energies of Plato who composed the book.\r\n\r\nPose inquiries of Plato. Have an exchange with him. Consider the Apdoghma, Socrates protection before the Athenean Jury. Talk about his convention of memory. Also, above all, converse with Plato about his most celebrated work The Republic.','Talk to Plato Using Quantum Physics','','publish','closed','closed','','talk-to-plato-using-quantum-physics','','','2020-08-17 10:59:21','2020-08-17 10:59:21','',0,'http://platowinkels.nl/?p=11',0,'post','',0),(12,1,'2020-08-17 10:59:08','2020-08-17 10:59:08','','601','','inherit','closed','closed','','601','','','2020-08-17 10:59:08','2020-08-17 10:59:08','',11,'http://platowinkels.nl/wp-content/uploads/2020/08/601.jpg',0,'attachment','image/jpeg',0),(13,1,'2020-08-17 10:59:21','2020-08-17 10:59:21','Speak With Plato\r\n\r\nPlato, one of the incredible masterminds and scholars ever, was conceived in Athens, Greece (427 - 347 B.C.) He was an understudy of Socrates. He set up his own school of reasoning at the Academy. He composed exchanges containing shrewdness that is appropriate to us today.\r\n\r\nToday we remain on the edge of another age. The Age of Aquarius. We will require another worldview to assist us with comprehension and execute this new worldview that will be with us for the following 2000 years.\r\n\r\nThe Age of Aquarius has given us an instrument to use to fabricate this new worldview. It is known as the Laws of Quantum Physics. These laws let us know, in addition to other things, that there truly is no time, past, present nor future. There is just the NOW.\r\n\r\nThey additionally disclose to us that everything is vitality and that everything that at any point was, is or will be is here with us now.\r\n\r\nThe incredible news is that Plato is here with us NOW. The intelligence of his books, however the genuine, living vitality field called Plato.\r\n\r\nHe is nearer to us than our own hands and feet. This is additionally the occupant of the Laws of Quantum Physics, that says we as a whole exist in an interminable expanse of smart reasoning vitality called the Quantum Ocean, or the Mind of God.\r\n\r\nOur considerations are our association with the Mind of God. What we think we draw in. Our psyche is the connection.\r\n\r\nWe are vitality creatures apparently existing in two universes, our physical world and the universe of the Quantum Ocean. The connection or entryway between these two universes is our Aura.\r\n\r\nOur opinion of hauls energies out of the unending sea into our Aura. What energies we convey in our Aura pulls in our real life to us as individuals, spots and occasions.\r\n\r\nThe principle motivation behind why the Creator God sent our spirits over and over into a physical the truth is so we could utilize our encounters to discover our way back. The street we use to discover our way back is the street of Consciousness.\r\n\r\nWhy not have one of the most Conscious everything being equal, Plato walk the street with us and help manage us. To do this you should get Plato\'s energies into your Aura. You do this by intentionally contemplating him, perusing his words and pondering upon his picture.\r\n\r\nThe most ideal way I know to get vitality out of the Quantum Ocean and into your Aura, is to inhale it in.\r\n\r\nEach morning, sit discreetly in your preferred seat. Have your picture of Plato, one of his books and a cushion, and pencil in your lap. Unwind. Presently utilize your psyche to make the linkage to Plato in the Quantum Ocean and draw in him into your Aura.\r\n\r\nIntellectually state, \"I am currently drawing in the energies of Plato, out of the Quantum Ocean and into my Aura, multiple times. Unwind and make notes all things considered, emotions, hunches, and motivations in your scratch pad. Before long you will see the association between both of you coming to fruition.\r\n\r\nAt the point when you read one of his books, recollect that the incredible Law of Three is continually grinding away. There is you, the book and the energies of Plato who composed the book.\r\n\r\nPose inquiries of Plato. Have an exchange with him. Consider the Apdoghma, Socrates protection before the Athenean Jury. Talk about his convention of memory. Also, above all, converse with Plato about his most celebrated work The Republic.','Talk to Plato Using Quantum Physics','','inherit','closed','closed','','11-revision-v1','','','2020-08-17 10:59:21','2020-08-17 10:59:21','',11,'http://platowinkels.nl/11-revision-v1/',0,'revision','',0),(18,1,'2020-08-17 11:02:17','2020-08-17 11:02:17','','Home','','publish','closed','closed','','home','','','2020-08-17 11:02:17','2020-08-17 11:02:17','',0,'http://platowinkels.nl/?page_id=18',0,'page','',0),(19,1,'2020-08-17 11:03:56','2020-08-17 11:03:56','Plato is eminent as one of the world\'s most prominent logicians. Conceived in 429 BC around the hour of the passing of Pericles, he lived for almost eighty years up until the period that started with the introduction of Alexander the Great. He had a place with a highborn Athenian family who were by the norms of those days generally rich. Countless Plato\'s family members assumed a functioning job in Athenian governmental issues, yet this was a movement that Plato himself avoided.\r\n\r\nDuring his childhood he got intrigued by the lessons and contemplations of Socrates, to such an extent that he went to the foundation that Socrates set up. Plato was just thirty years of age when Socrates was murdered in jail for carrying out violations against the divine beings.\r\n\r\nIn spite of the fact that inconceivably troubled by the passing of Socrates, Plato set about recording the discussions he had held with his educator. Today, the majority of what we think about Socrates, the man and his speculation, originates from the writings made by Plato.\r\n\r\nAfter some time, he started to build up his own ideas and thoughts identifying with reasoning. One of his most popular works is \"The Republic\". This is a book that portrays his contemplations on how a superior government could be framed than that what was in power in Athens at that point.\r\n\r\nAs was normal among the old rationalists of that age he was not an enthusiast of vote based system. It was his feeling that uneducated individuals ought not have a state in choosing authorities that were to administer. He set forward a proposal that the most mentally practiced in the public arena ought to be those that hold force and decide. A skeptic may state that because of his childhood among the privileged he would consistently recommend that the exclusive class ought to administer.\r\n\r\nPlato had an enthusiasm for the common world and how natural frameworks communicate and create. He accepted that all issue and musings had an ideal structure. One of the most popular strategies he used to clarify his ideas was an allegory identifying with a cavern.\r\n\r\nHe proposed that if there was a cavern inside which there were a gathering of men tied in a bad position and they could just observe the rear of the cavern and not any more, all that would be obvious to them would be shadows, and these shadows included all reality. He suggested that in the event that one of these cavern detainees was to get away and take in the excellence of the outside world, in the event that he, at that point came back to visit the rest of the hostages and mention to them what existed outside, all things considered, he would be informed that he was insane and maybe in any event, daydreaming.\r\n\r\nPlato recommended that we are on the whole fundamentally the same as those men stuck in a cavern. We accept that we have a deep understanding of the world and presence, yet we are caught in our bodies similarly as the men in the story were caught on a cavern. It was his strategic assist individuals with comprehending this present reality, both in down to earth and hypothetical ways.','About Us','','publish','closed','closed','','about-us','','','2020-08-17 11:03:56','2020-08-17 11:03:56','',0,'http://platowinkels.nl/?page_id=19',0,'page','',0),(20,1,'2020-08-17 11:02:05','2020-08-17 11:02:05','<label> Your Name (required)\r\n    [text* your-name] </label>\r\n\r\n<label> Your Email (required)\r\n    [email* your-email] </label>\r\n\r\n<label> Subject\r\n    [text your-subject] </label>\r\n\r\n<label> Your Message\r\n    [textarea your-message] </label>\r\n\r\n[submit \"Send\"]\n1\nwww.platowinkels.nl \"[your-subject]\"\nwww.platowinkels.nl <[email protected]>\[email protected]\nFrom: [your-name] <[your-email]>\r\nSubject: [your-subject]\r\n\r\nMessage Body:\r\n[your-message]\r\n\r\n-- \r\nThis e-mail was sent from a contact form on www.platowinkels.nl (http://platowinkels.nl)\nReply-To: [your-email]\n\n\n\n\nwww.platowinkels.nl \"[your-subject]\"\nwww.platowinkels.nl <[email protected]>\n[your-email]\nMessage Body:\r\n[your-message]\r\n\r\n-- \r\nThis e-mail was sent from a contact form on www.platowinkels.nl (http://platowinkels.nl)\nReply-To: [email protected]\n\n\n\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.','Contact form 1','','publish','closed','closed','','contact-form-1','','','2020-08-17 11:04:35','2020-08-17 11:04:35','',0,'http://platowinkels.nl/?post_type=wpcf7_contact_form&#038;p=20',0,'wpcf7_contact_form','',0),(21,1,'2020-08-17 11:02:17','2020-08-17 11:02:17','','Home','','inherit','closed','closed','','18-revision-v1','','','2020-08-17 11:02:17','2020-08-17 11:02:17','',18,'http://platowinkels.nl/18-revision-v1/',0,'revision','',0),(22,1,'2020-08-17 11:03:56','2020-08-17 11:03:56','Plato is eminent as one of the world\'s most prominent logicians. Conceived in 429 BC around the hour of the passing of Pericles, he lived for almost eighty years up until the period that started with the introduction of Alexander the Great. He had a place with a highborn Athenian family who were by the norms of those days generally rich. Countless Plato\'s family members assumed a functioning job in Athenian governmental issues, yet this was a movement that Plato himself avoided.\r\n\r\nDuring his childhood he got intrigued by the lessons and contemplations of Socrates, to such an extent that he went to the foundation that Socrates set up. Plato was just thirty years of age when Socrates was murdered in jail for carrying out violations against the divine beings.\r\n\r\nIn spite of the fact that inconceivably troubled by the passing of Socrates, Plato set about recording the discussions he had held with his educator. Today, the majority of what we think about Socrates, the man and his speculation, originates from the writings made by Plato.\r\n\r\nAfter some time, he started to build up his own ideas and thoughts identifying with reasoning. One of his most popular works is \"The Republic\". This is a book that portrays his contemplations on how a superior government could be framed than that what was in power in Athens at that point.\r\n\r\nAs was normal among the old rationalists of that age he was not an enthusiast of vote based system. It was his feeling that uneducated individuals ought not have a state in choosing authorities that were to administer. He set forward a proposal that the most mentally practiced in the public arena ought to be those that hold force and decide. A skeptic may state that because of his childhood among the privileged he would consistently recommend that the exclusive class ought to administer.\r\n\r\nPlato had an enthusiasm for the common world and how natural frameworks communicate and create. He accepted that all issue and musings had an ideal structure. One of the most popular strategies he used to clarify his ideas was an allegory identifying with a cavern.\r\n\r\nHe proposed that if there was a cavern inside which there were a gathering of men tied in a bad position and they could just observe the rear of the cavern and not any more, all that would be obvious to them would be shadows, and these shadows included all reality. He suggested that in the event that one of these cavern detainees was to get away and take in the excellence of the outside world, in the event that he, at that point came back to visit the rest of the hostages and mention to them what existed outside, all things considered, he would be informed that he was insane and maybe in any event, daydreaming.\r\n\r\nPlato recommended that we are on the whole fundamentally the same as those men stuck in a cavern. We accept that we have a deep understanding of the world and presence, yet we are caught in our bodies similarly as the men in the story were caught on a cavern. It was his strategic assist individuals with comprehending this present reality, both in down to earth and hypothetical ways.','About Us','','inherit','closed','closed','','19-revision-v1','','','2020-08-17 11:03:56','2020-08-17 11:03:56','',19,'http://platowinkels.nl/19-revision-v1/',0,'revision','',0),(23,1,'2020-08-17 11:06:58','2020-08-17 11:06:58','Last updated: [wpautoterms last_updated_date]\r\n\r\nPlease read these Terms of Use (\"Terms\", \"Terms of Use\") carefully before using the [wpautoterms site_url] website (the \"Service\") operated by [wpautoterms company_name] (\"us\", \"we\", or \"our\").\r\n\r\nYour access to and use of the Service is conditioned on your acceptance of and compliance with these Terms. These Terms apply to all visitors, users and others who access or use the Service.\r\n\r\nBy accessing or using the Service you agree to be bound by these Terms. If you disagree with any part of the terms then you may not access the Service.\r\n<h2>Intellectual Property</h2>\r\nThe Service and its original content, features and functionality are and will remain the exclusive property of [wpautoterms company_name] and its licensors.\r\n<h2>Links To Other Web Sites</h2>\r\nOur Service may contain links to third-party web sites or services that are not owned or controlled by [wpautoterms company_name].\r\n\r\n[wpautoterms company_name] has no control over, and assumes no responsibility for, the content, privacy policies, or practices of any third party web sites or services. You further acknowledge and agree that [wpautoterms company_name] shall not be responsible or liable, directly or indirectly, for any damage or loss caused or alleged to be caused by or in connection with use of or reliance on any such content, goods or services available on or through any such web sites or services.\r\n\r\nWe strongly advise you to read the terms and conditions and privacy policies of any third-party web sites or services that you visit.\r\n<h2>Termination</h2>\r\nWe may terminate or suspend access to our Service immediately, without prior notice or liability, for any reason whatsoever, including without limitation if you breach the Terms.\r\n\r\nAll provisions of the Terms which by their nature should survive termination shall survive termination, including, without limitation, ownership provisions, warranty disclaimers, indemnity and limitations of liability.\r\n<h2>Disclaimer</h2>\r\nYour use of the Service is at your sole risk. The Service is provided on an \"AS IS\" and \"AS AVAILABLE\" basis. The Service is provided without warranties of any kind, whether express or implied, including, but not limited to, implied warranties of merchantability, fitness for a particular purpose, non-infringement or course of performance.\r\n<h2>Governing Law</h2>\r\nThese Terms shall be governed and construed in accordance with the laws of Netherlands without regard to its conflict of law provisions.\r\n\r\nOur failure to enforce any right or provision of these Terms will not be considered a waiver of those rights. If any provision of these Terms is held to be invalid or unenforceable by a court, the remaining provisions of these Terms will remain in effect. These Terms constitute the entire agreement between us regarding our Service, and supersede and replace any prior agreements we might have between us regarding the Service.\r\n<h2>Changes</h2>\r\nWe reserve the right, at our sole discretion, to modify or replace these Terms at any time. If a revision is material we will try to provide at least 30 days notice prior to any new terms taking effect. What constitutes a material change will be determined at our sole discretion.\r\n\r\nBy continuing to access or use our Service after those revisions become effective, you agree to be bound by the revised terms. If you do not agree to the new terms, please stop using the Service.\r\n<h2>Contact Us</h2>\r\nIf you have any questions about these Terms, please contact us.','Terms and Conditions','','publish','closed','closed','','terms-and-conditions','','','2020-08-25 06:37:10','2020-08-25 06:37:10','',0,'http://platowinkels.nl/?page_id=23',0,'page','',0),(24,1,'2020-08-17 11:07:55','2020-08-17 11:07:55','Last updated: [wpautoterms last_updated_date]\r\n\r\n[wpautoterms company_name] (\"us\", \"we\", or \"our\") operates the [wpautoterms site_name] website (the \"Service\").\r\n\r\nThis page informs you of our policies regarding the collection, use and disclosure of Personal Information when you use our Service.\r\n\r\nWe will not use or share your information with anyone except as described in this Privacy Policy.\r\n\r\nWe use your Personal Information for providing and improving the Service. By using the Service, you agree to the collection and use of information in accordance with this policy. Unless otherwise defined in this Privacy Policy, terms used in this Privacy Policy have the same meanings as in our Terms and Conditions, accessible at [wpautoterms site_url]\r\n<h2>Information Collection And Use</h2>\r\nWhile using our Service, we may ask you to provide us with certain personally identifiable information that can be used to contact or identify you. Personally identifiable information (\"Personal Information\") may include, but is not limited to:\r\n<ul>\r\n 	<li>Name</li>\r\n 	<li>Email address</li>\r\n 	<li>Telephone number</li>\r\n 	<li>Address</li>\r\n</ul>\r\n<h2>Log Data</h2>\r\nWe collect information that your browser sends whenever you visit our Service (\"Log Data\"). This Log Data may include information such as your computer\'s Internet Protocol (\"IP\") address, browser type, browser version, the pages of our Service that you visit, the time and date of your visit, the time spent on those pages and other statistics.\r\n<h2>Cookies</h2>\r\nCookies are files with small amount of data, which may include an anonymous unique identifier. Cookies are sent to your browser from a web site and stored on your computer\'s hard drive.\r\n\r\nWe use \"cookies\" to collect information. You can instruct your browser to refuse all cookies or to indicate when a cookie is being sent. However, if you do not accept cookies, you may not be able to use some portions of our Service.\r\n<h2>Service Providers</h2>\r\nWe may employ third party companies and individuals to facilitate our Service, to provide the Service on our behalf, to perform Service-related services or to assist us in analyzing how our Service is used.\r\n\r\nThese third parties have access to your Personal Information only to perform these tasks on our behalf and are obligated not to disclose or use it for any other purpose.\r\n<h2>Security</h2>\r\nThe security of your Personal Information is important to us, but remember that no method of transmission over the Internet, or method of electronic storage is 100% secure. While we strive to use commercially acceptable means to protect your Personal Information, we cannot guarantee its absolute security.\r\n<h2>Links To Other Sites</h2>\r\nOur Service may contain links to other sites that are not operated by us. If you click on a third party link, you will be directed to that third party\'s site. We strongly advise you to review the Privacy Policy of every site you visit.\r\n\r\nWe have no control over, and assume no responsibility for the content, privacy policies or practices of any third party sites or services.\r\n<h2>Children\'s Privacy</h2>\r\nOur Service does not address anyone under the age of 18 (\"Children\").\r\n\r\nWe do not knowingly collect personally identifiable information from children under 18. If you are a parent or guardian and you are aware that your child has provided us with Personal Information, please contact us. If we discover that a child under 18 has provided us with Personal Information, we will delete such information from our servers immediately.\r\n<h2>Compliance With Laws</h2>\r\nWe will disclose your Personal Information where required to do so by law or subpoena.\r\n<h2>Changes To This Privacy Policy</h2>\r\nWe may update our Privacy Policy from time to time. We will notify you of any changes by posting the new Privacy Policy on this page.\r\n\r\nYou are advised to review this Privacy Policy periodically for any changes. Changes to this Privacy Policy are effective when they are posted on this page.\r\n<h2>Contact Us</h2>\r\nIf you have any questions about this Privacy Policy, please contact us.','Privacy Policy','','publish','closed','closed','','privacy-policy','','','2020-08-25 06:37:02','2020-08-25 06:37:02','',0,'http://platowinkels.nl/?page_id=24',0,'page','',0),(25,1,'2020-08-17 11:04:47','2020-08-17 11:04:47','[contact-form-7 id=\"20\" title=\"Contact form 1\"]','Contact Us','','publish','closed','closed','','contact-us','','','2020-08-17 11:04:47','2020-08-17 11:04:47','',0,'http://platowinkels.nl/?page_id=25',0,'page','',0),(26,1,'2020-08-17 11:04:47','2020-08-17 11:04:47','[contact-form-7 id=\"20\" title=\"Contact form 1\"]','Contact Us','','inherit','closed','closed','','25-revision-v1','','','2020-08-17 11:04:47','2020-08-17 11:04:47','',25,'http://platowinkels.nl/25-revision-v1/',0,'revision','',0),(33,1,'2020-08-17 11:06:58','2020-08-17 11:06:58','<h2>Intellectual Property</h2>\r\nThe Service and its original content, features and functionality are and will remain the exclusive property of  company_name and its licensors.\r\n<h2>Links To Other Web Sites</h2>\r\nOur Service may contain links to third-party web sites or services that are not owned or controlled by  company_name.\r\n\r\ncompany_name has no control over, and assumes no responsibility for, the content, privacy policies, or practices of any third party web sites or services. You further acknowledge and agree that  company_name shall not be responsible or liable, directly or indirectly, for any damage or loss caused or alleged to be caused by or in connection with use of or reliance on any such content, goods or services available on or through any such web sites or services.\r\n\r\nWe strongly advise you to read the terms and conditions and privacy policies of any third-party web sites or services that you visit.\r\n<h2>Termination</h2>\r\nWe may terminate or suspend access to our Service immediately, without prior notice or liability, for any reason whatsoever, including without limitation if you breach the Terms.\r\n\r\nAll provisions of the Terms which by their nature should survive termination shall survive termination, including, without limitation, ownership provisions, warranty disclaimers, indemnity and limitations of liability.\r\n<h2>Disclaimer</h2>\r\nYour use of the Service is at your sole risk. The Service is provided on an \"AS IS\" and \"AS AVAILABLE\" basis. The Service is provided without warranties of any kind, whether express or implied, including, but not limited to, implied warranties of merchantability, fitness for a particular purpose, non-infringement or course of performance.\r\n<h2>Governing Law</h2>\r\nThese Terms shall be governed and construed in accordance with the laws of Netherlands without regard to its conflict of law provisions.\r\n\r\nOur failure to enforce any right or provision of these Terms will not be considered a waiver of those rights. If any provision of these Terms is held to be invalid or unenforceable by a court, the remaining provisions of these Terms will remain in effect. These Terms constitute the entire agreement between us regarding our Service, and supersede and replace any prior agreements we might have between us regarding the Service.\r\n<h2>Changes</h2>\r\nWe reserve the right, at our sole discretion, to modify or replace these Terms at any time. If a revision is material we will try to provide at least 30 days notice prior to any new terms taking effect. What constitutes a material change will be determined at our sole discretion.\r\n\r\nBy continuing to access or use our Service after those revisions become effective, you agree to be bound by the revised terms. If you do not agree to the new terms, please stop using the Service.\r\n<h2>Contact Us</h2>\r\nIf you have any questions about these Terms, please contact us.','Terms and Conditions','','inherit','closed','closed','','23-revision-v1','','','2020-08-17 11:06:58','2020-08-17 11:06:58','',23,'http://platowinkels.nl/23-revision-v1/',0,'revision','',0),(36,1,'2020-08-17 11:07:55','2020-08-17 11:07:55','<h2>Information Collection And Use</h2>\r\nWhile using our Service, we may ask you to provide us with certain personally identifiable information that can be used to contact or identify you. Personally identifiable information (\"Personal Information\") may include, but is not limited to:\r\n<ul>\r\n 	<li>Name</li>\r\n 	<li>Email address</li>\r\n 	<li>Telephone number</li>\r\n 	<li>Address</li>\r\n</ul>\r\n<h2>Log Data</h2>\r\nWe collect information that your browser sends whenever you visit our Service (\"Log Data\"). This Log Data may include information such as your computer\'s Internet Protocol (\"IP\") address, browser type, browser version, the pages of our Service that you visit, the time and date of your visit, the time spent on those pages and other statistics.\r\n<h2>Cookies</h2>\r\nCookies are files with small amount of data, which may include an anonymous unique identifier. Cookies are sent to your browser from a web site and stored on your computer\'s hard drive.\r\n\r\nWe use \"cookies\" to collect information. You can instruct your browser to refuse all cookies or to indicate when a cookie is being sent. However, if you do not accept cookies, you may not be able to use some portions of our Service.\r\n<h2>Service Providers</h2>\r\nWe may employ third party companies and individuals to facilitate our Service, to provide the Service on our behalf, to perform Service-related services or to assist us in analyzing how our Service is used.\r\n\r\nThese third parties have access to your Personal Information only to perform these tasks on our behalf and are obligated not to disclose or use it for any other purpose.\r\n<h2>Security</h2>\r\nThe security of your Personal Information is important to us, but remember that no method of transmission over the Internet, or method of electronic storage is 100% secure. While we strive to use commercially acceptable means to protect your Personal Information, we cannot guarantee its absolute security.\r\n<h2>Links To Other Sites</h2>\r\nOur Service may contain links to other sites that are not operated by us. If you click on a third party link, you will be directed to that third party\'s site. We strongly advise you to review the Privacy Policy of every site you visit.\r\n\r\nWe have no control over, and assume no responsibility for the content, privacy policies or practices of any third party sites or services.\r\n<h2>Children\'s Privacy</h2>\r\nOur Service does not address anyone under the age of 18 (\"Children\").\r\n\r\nWe do not knowingly collect personally identifiable information from children under 18. If you are a parent or guardian and you are aware that your child has provided us with Personal Information, please contact us. If we discover that a child under 18 has provided us with Personal Information, we will delete such information from our servers immediately.\r\n<h2>Compliance With Laws</h2>\r\nWe will disclose your Personal Information where required to do so by law or subpoena.\r\n<h2>Changes To This Privacy Policy</h2>\r\nWe may update our Privacy Policy from time to time. We will notify you of any changes by posting the new Privacy Policy on this page.\r\n\r\nYou are advised to review this Privacy Policy periodically for any changes. Changes to this Privacy Policy are effective when they are posted on this page.\r\n<h2>Contact Us</h2>\r\nIf you have any questions about this Privacy Policy, please contact us.','Privacy Policy','','inherit','closed','closed','','24-revision-v1','','','2020-08-17 11:07:55','2020-08-17 11:07:55','',24,'http://platowinkels.nl/24-revision-v1/',0,'revision','',0),(42,1,'2020-08-17 11:17:40','2020-08-17 11:17:40','','Home','','publish','closed','closed','','home','','','2020-08-17 11:17:40','2020-08-17 11:17:40','',0,'http://platowinkels.nl/?p=42',1,'nav_menu_item','',0),(43,1,'2020-08-17 11:17:40','2020-08-17 11:17:40',' ','','','publish','closed','closed','','43','','','2020-08-17 11:17:40','2020-08-17 11:17:40','',0,'http://platowinkels.nl/?p=43',2,'nav_menu_item','',0),(44,1,'2020-08-17 11:17:40','2020-08-17 11:17:40',' ','','','publish','closed','closed','','44','','','2020-08-17 11:17:40','2020-08-17 11:17:40','',0,'http://platowinkels.nl/?p=44',3,'nav_menu_item','',0),(45,1,'2020-08-17 11:17:30','0000-00-00 00:00:00',' ','','','draft','closed','closed','','','','','2020-08-17 11:17:30','0000-00-00 00:00:00','',0,'http://platowinkels.nl/?p=45',1,'nav_menu_item','',0),(46,1,'2020-08-17 11:17:40','2020-08-17 11:17:40',' ','','','publish','closed','closed','','46','','','2020-08-17 11:17:40','2020-08-17 11:17:40','',0,'http://platowinkels.nl/?p=46',4,'nav_menu_item','',0),(47,1,'2020-08-17 11:17:40','2020-08-17 11:17:40',' ','','','publish','closed','closed','','47','','','2020-08-17 11:17:40','2020-08-17 11:17:40','',0,'http://platowinkels.nl/?p=47',5,'nav_menu_item','',0),(48,1,'2020-08-17 11:19:03','2020-08-17 11:19:03','','Lochterstraat 168,Haler','','publish','closed','closed','','lochterstraat-168haler','','','2020-08-17 11:20:01','2020-08-17 11:20:01','',0,'http://platowinkels.nl/?p=48',1,'nav_menu_item','',0),(49,1,'2020-08-17 11:20:01','2020-08-17 11:20:01','','Phone : 06-71 31 08 79','','publish','closed','closed','','phone-06-71-31-08-79','','','2020-08-17 11:20:01','2020-08-17 11:20:01','',0,'http://platowinkels.nl/?p=49',2,'nav_menu_item','',0),(50,1,'2020-08-17 11:20:01','2020-08-17 11:20:01','','[email protected]','','publish','closed','closed','','infoplatowinkels-nl','','','2020-08-17 11:20:01','2020-08-17 11:20:01','',0,'http://platowinkels.nl/?p=50',3,'nav_menu_item','',0),(51,1,'2020-08-17 11:20:58','2020-08-17 11:20:58','','Facebook','','publish','closed','closed','','facebook','','','2020-08-17 11:22:15','2020-08-17 11:22:15','',0,'http://platowinkels.nl/?p=51',1,'nav_menu_item','',0),(52,1,'2020-08-17 11:22:15','2020-08-17 11:22:15','','Twitter','','publish','closed','closed','','twitter','','','2020-08-17 11:22:15','2020-08-17 11:22:15','',0,'http://platowinkels.nl/?p=52',2,'nav_menu_item','',0),(53,1,'2020-08-17 11:22:15','2020-08-17 11:22:15','','LinkedIn','','publish','closed','closed','','linkedin','','','2020-08-17 11:22:15','2020-08-17 11:22:15','',0,'http://platowinkels.nl/?p=53',3,'nav_menu_item','',0),(54,1,'2020-08-17 11:22:15','2020-08-17 11:22:15','','Pinterest','','publish','closed','closed','','pinterest','','','2020-08-17 11:22:15','2020-08-17 11:22:15','',0,'http://platowinkels.nl/?p=54',4,'nav_menu_item','',0),(55,1,'2020-08-17 11:26:16','2020-08-17 11:26:16','','602','','inherit','closed','closed','','602','','','2020-08-17 11:26:16','2020-08-17 11:26:16','',0,'http://platowinkels.nl/wp-content/uploads/2020/08/602.jpg',0,'attachment','image/jpeg',0),(56,1,'2020-08-17 11:29:10','2020-08-17 11:29:10','','The Vatican Museums, Vatican City, Italy','The Vatican Museums, Musei Vaticani, are the public art and sculpture museums in the Vatican City, which display works from the extensive collection of the Roman Catholic Church. Pope Julius II founded the museums in the 16th century, Rome, Italy, Europe','inherit','closed','closed','','the-vatican-museums-vatican-city-italy','','','2020-08-17 11:29:10','2020-08-17 11:29:10','',0,'http://platowinkels.nl/wp-content/uploads/2020/08/603.jpg',0,'attachment','image/jpeg',0),(57,1,'2020-08-17 11:30:18','2020-08-17 11:30:18','<label> Your Name (required)\r\n    [text* your-name] </label>\r\n\r\n<label> Your Email (required)\r\n    [email* your-email] </label>\r\n\r\n[submit \"Send\"]\n1\nwww.platowinkels.nl \"[your-subject]\"\nwww.platowinkels.nl <[email protected]>\[email protected]\nFrom: [your-name] <[your-email]>\r\nSubject: [your-subject]\r\n\r\nMessage Body:\r\n[your-message]\r\n\r\n-- \r\nThis e-mail was sent from a contact form on www.platowinkels.nl (http://platowinkels.nl)\nReply-To: [your-email]\n\n\n\n\nwww.platowinkels.nl \"[your-subject]\"\nwww.platowinkels.nl <[email protected]>\n[your-email]\nMessage Body:\r\n[your-message]\r\n\r\n-- \r\nThis e-mail was sent from a contact form on www.platowinkels.nl (http://platowinkels.nl)\nReply-To: [email protected]\n\n\n\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.','Untitled','','publish','closed','closed','','untitled','','','2020-08-17 11:30:18','2020-08-17 11:30:18','',0,'http://platowinkels.nl/?post_type=wpcf7_contact_form&p=57',0,'wpcf7_contact_form','',0),(59,1,'2020-08-17 11:32:19','2020-08-17 11:32:19','.entry-content p{\n	text-align: justify;\n	font-size: 16px !important;\n}\n\np.right {\n    text-align: center;\n		font-size: 16px;\n}\n\nfooter.site-footer {\n    padding: 15px 0;\n}\n\ninput[type=text],[type=email]{\n	width: 100%;\n}\n\ntextarea{\n	width: 100%;\n}','opus-blog','','publish','closed','closed','','opus-blog','','','2020-08-17 11:43:02','2020-08-17 11:43:02','',0,'http://platowinkels.nl/opus-blog/',0,'custom_css','',0),(60,1,'2020-08-17 11:32:19','2020-08-17 11:32:19','.entry-content p{\n	text-align: justify;\n	font-size: 16px !important;\n}','opus-blog','','inherit','closed','closed','','59-revision-v1','','','2020-08-17 11:32:19','2020-08-17 11:32:19','',59,'http://platowinkels.nl/59-revision-v1/',0,'revision','',0),(62,1,'2020-08-17 11:38:06','2020-08-17 11:38:06','.entry-content p{\n	text-align: justify;\n	font-size: 16px !important;\n}\n\np.right {\n    text-align: center;\n		font-size: 16px;\n}\n\nfooter.site-footer {\n    padding: 15px 0;\n}','opus-blog','','inherit','closed','closed','','59-revision-v1','','','2020-08-17 11:38:06','2020-08-17 11:38:06','',59,'http://platowinkels.nl/59-revision-v1/',0,'revision','',0),(64,1,'2020-08-17 11:41:59','2020-08-17 11:41:59','.entry-content p{\n	text-align: justify;\n	font-size: 16px !important;\n}\n\np.right {\n    text-align: center;\n		font-size: 16px;\n}\n\nfooter.site-footer {\n    padding: 15px 0;\n}\n\ninput[type=text]{\n	width: 100%;\n}\n\ntextarea{\n	width: 100%;\n}','opus-blog','','inherit','closed','closed','','59-revision-v1','','','2020-08-17 11:41:59','2020-08-17 11:41:59','',59,'http://platowinkels.nl/59-revision-v1/',0,'revision','',0),(66,1,'2020-08-17 11:43:02','2020-08-17 11:43:02','.entry-content p{\n	text-align: justify;\n	font-size: 16px !important;\n}\n\np.right {\n    text-align: center;\n		font-size: 16px;\n}\n\nfooter.site-footer {\n    padding: 15px 0;\n}\n\ninput[type=text],[type=email]{\n	width: 100%;\n}\n\ntextarea{\n	width: 100%;\n}','opus-blog','','inherit','closed','closed','','59-revision-v1','','','2020-08-17 11:43:02','2020-08-17 11:43:02','',59,'http://platowinkels.nl/59-revision-v1/',0,'revision','',0),(67,1,'2020-08-17 11:45:58','2020-08-17 11:45:58','','logo143','','inherit','closed','closed','','logo143','','','2020-08-17 11:45:58','2020-08-17 11:45:58','',0,'http://platowinkels.nl/wp-content/uploads/2020/08/logo143.png',0,'attachment','image/png',0),(68,1,'2020-08-17 11:46:08','2020-08-17 11:46:08','http://platowinkels.nl/wp-content/uploads/2020/08/cropped-logo143.png','cropped-logo143.png','','inherit','closed','closed','','cropped-logo143-png','','','2020-08-17 11:46:08','2020-08-17 11:46:08','',0,'http://platowinkels.nl/wp-content/uploads/2020/08/cropped-logo143.png',0,'attachment','image/png',0),(70,1,'2020-08-17 11:48:20','2020-08-17 11:48:20','','favicon7','','inherit','closed','closed','','favicon7','','','2020-08-17 11:48:20','2020-08-17 11:48:20','',0,'http://platowinkels.nl/wp-content/uploads/2020/08/favicon7.png',0,'attachment','image/png',0),(71,1,'2020-08-17 11:48:33','2020-08-17 11:48:33','http://platowinkels.nl/wp-content/uploads/2020/08/cropped-favicon7.png','cropped-favicon7.png','','inherit','closed','closed','','cropped-favicon7-png','','','2020-08-17 11:48:33','2020-08-17 11:48:33','',0,'http://platowinkels.nl/wp-content/uploads/2020/08/cropped-favicon7.png',0,'attachment','image/png',0),(79,1,'2020-08-25 06:36:38','2020-08-25 06:36:38','Last updated: [wpautoterms last_updated_date]\r\n\r\n[wpautoterms company_name] (\"us\", \"we\", or \"our\") operates the [wpautoterms site_name] website (the \"Service\").\r\n\r\nThis page informs you of our policies regarding the collection, use and disclosure of Personal Information when you use our Service.\r\n\r\nWe will not use or share your information with anyone except as described in this Privacy Policy.\r\n\r\nWe use your Personal Information for providing and improving the Service. By using the Service, you agree to the collection and use of information in accordance with this policy. Unless otherwise defined in this Privacy Policy, terms used in this Privacy Policy have the same meanings as in our Terms and Conditions, accessible at [wpautoterms site_url]\r\n<h2>Information Collection And Use</h2>\r\nWhile using our Service, we may ask you to provide us with certain personally identifiable information that can be used to contact or identify you. Personally identifiable information (\"Personal Information\") may include, but is not limited to:\r\n<ul>\r\n 	<li>Name</li>\r\n 	<li>Email address</li>\r\n 	<li>Telephone number</li>\r\n 	<li>Address</li>\r\n</ul>\r\n<h2>Log Data</h2>\r\nWe collect information that your browser sends whenever you visit our Service (\"Log Data\"). This Log Data may include information such as your computer\'s Internet Protocol (\"IP\") address, browser type, browser version, the pages of our Service that you visit, the time and date of your visit, the time spent on those pages and other statistics.\r\n<h2>Cookies</h2>\r\nCookies are files with small amount of data, which may include an anonymous unique identifier. Cookies are sent to your browser from a web site and stored on your computer\'s hard drive.\r\n\r\nWe use \"cookies\" to collect information. You can instruct your browser to refuse all cookies or to indicate when a cookie is being sent. However, if you do not accept cookies, you may not be able to use some portions of our Service.\r\n<h2>Service Providers</h2>\r\nWe may employ third party companies and individuals to facilitate our Service, to provide the Service on our behalf, to perform Service-related services or to assist us in analyzing how our Service is used.\r\n\r\nThese third parties have access to your Personal Information only to perform these tasks on our behalf and are obligated not to disclose or use it for any other purpose.\r\n<h2>Security</h2>\r\nThe security of your Personal Information is important to us, but remember that no method of transmission over the Internet, or method of electronic storage is 100% secure. While we strive to use commercially acceptable means to protect your Personal Information, we cannot guarantee its absolute security.\r\n<h2>Links To Other Sites</h2>\r\nOur Service may contain links to other sites that are not operated by us. If you click on a third party link, you will be directed to that third party\'s site. We strongly advise you to review the Privacy Policy of every site you visit.\r\n\r\nWe have no control over, and assume no responsibility for the content, privacy policies or practices of any third party sites or services.\r\n<h2>Children\'s Privacy</h2>\r\nOur Service does not address anyone under the age of 18 (\"Children\").\r\n\r\nWe do not knowingly collect personally identifiable information from children under 18. If you are a parent or guardian and you are aware that your child has provided us with Personal Information, please contact us. If we discover that a child under 18 has provided us with Personal Information, we will delete such information from our servers immediately.\r\n<h2>Compliance With Laws</h2>\r\nWe will disclose your Personal Information where required to do so by law or subpoena.\r\n<h2>Changes To This Privacy Policy</h2>\r\nWe may update our Privacy Policy from time to time. We will notify you of any changes by posting the new Privacy Policy on this page.\r\n\r\nYou are advised to review this Privacy Policy periodically for any changes. Changes to this Privacy Policy are effective when they are posted on this page.\r\n<h2>Contact Us</h2>\r\nIf you have any questions about this Privacy Policy, please contact us.','Privacy Policy','','inherit','closed','closed','','24-revision-v1','','','2020-08-25 06:36:38','2020-08-25 06:36:38','',24,'http://platowinkels.nl/24-revision-v1/',0,'revision','',0),(82,1,'2020-08-25 06:37:10','2020-08-25 06:37:10','Last updated: [wpautoterms last_updated_date]\r\n\r\nPlease read these Terms of Use (\"Terms\", \"Terms of Use\") carefully before using the [wpautoterms site_url] website (the \"Service\") operated by [wpautoterms company_name] (\"us\", \"we\", or \"our\").\r\n\r\nYour access to and use of the Service is conditioned on your acceptance of and compliance with these Terms. These Terms apply to all visitors, users and others who access or use the Service.\r\n\r\nBy accessing or using the Service you agree to be bound by these Terms. If you disagree with any part of the terms then you may not access the Service.\r\n<h2>Intellectual Property</h2>\r\nThe Service and its original content, features and functionality are and will remain the exclusive property of [wpautoterms company_name] and its licensors.\r\n<h2>Links To Other Web Sites</h2>\r\nOur Service may contain links to third-party web sites or services that are not owned or controlled by [wpautoterms company_name].\r\n\r\n[wpautoterms company_name] has no control over, and assumes no responsibility for, the content, privacy policies, or practices of any third party web sites or services. You further acknowledge and agree that [wpautoterms company_name] shall not be responsible or liable, directly or indirectly, for any damage or loss caused or alleged to be caused by or in connection with use of or reliance on any such content, goods or services available on or through any such web sites or services.\r\n\r\nWe strongly advise you to read the terms and conditions and privacy policies of any third-party web sites or services that you visit.\r\n<h2>Termination</h2>\r\nWe may terminate or suspend access to our Service immediately, without prior notice or liability, for any reason whatsoever, including without limitation if you breach the Terms.\r\n\r\nAll provisions of the Terms which by their nature should survive termination shall survive termination, including, without limitation, ownership provisions, warranty disclaimers, indemnity and limitations of liability.\r\n<h2>Disclaimer</h2>\r\nYour use of the Service is at your sole risk. The Service is provided on an \"AS IS\" and \"AS AVAILABLE\" basis. The Service is provided without warranties of any kind, whether express or implied, including, but not limited to, implied warranties of merchantability, fitness for a particular purpose, non-infringement or course of performance.\r\n<h2>Governing Law</h2>\r\nThese Terms shall be governed and construed in accordance with the laws of Netherlands without regard to its conflict of law provisions.\r\n\r\nOur failure to enforce any right or provision of these Terms will not be considered a waiver of those rights. If any provision of these Terms is held to be invalid or unenforceable by a court, the remaining provisions of these Terms will remain in effect. These Terms constitute the entire agreement between us regarding our Service, and supersede and replace any prior agreements we might have between us regarding the Service.\r\n<h2>Changes</h2>\r\nWe reserve the right, at our sole discretion, to modify or replace these Terms at any time. If a revision is material we will try to provide at least 30 days notice prior to any new terms taking effect. What constitutes a material change will be determined at our sole discretion.\r\n\r\nBy continuing to access or use our Service after those revisions become effective, you agree to be bound by the revised terms. If you do not agree to the new terms, please stop using the Service.\r\n<h2>Contact Us</h2>\r\nIf you have any questions about these Terms, please contact us.','Terms and Conditions','','inherit','closed','closed','','23-revision-v1','','','2020-08-25 06:37:10','2020-08-25 06:37:10','',23,'http://platowinkels.nl/23-revision-v1/',0,'revision','',0),(83,1,'2020-10-25 01:23:33','2020-10-25 01:23:33','Bitcoin-prijs tikte vrijdag hoger, zelfs toen daytraders elders bleven zoeken om betere intraday-winsten te behalen.\r\n\r\n&nbsp;\r\n\r\nhttps://www.youtube.com/watch?v=LtXyfRrsla0&amp;t=2s\r\n\r\n&nbsp;\r\n\r\nDe benchmark-cryptocurrency steeg 0,1 procent tot ongeveer $ 9.139 na de openingsbel van New York. De bescheiden stijging deed zich voor toen rivaliserende cryptocurrencies - vooral die uit de gedecentraliseerde financiële sector - torenhoge rally\'s bleven leveren aan haar investeerders.\r\n\r\n&nbsp;\r\n\r\nZo steeg LEND tijdens de sessie van vrijdag meer dan 11 procent ten opzichte van de Amerikaanse dollar. Het steeg ook scherp tegen Bitcoin - met bijna 12 procent. Dat was een van de vele gevallen waarin handelaren hun BTC-kapitaal verschoven naar een opkomende altcoin-markt.\r\n\r\n&nbsp;\r\n\r\nbitcoin, btcusd, cryptocurrency, xbtusd\r\n\r\nBitcoin-prijs bleef de afgelopen twee weken binnen een bereik. Bron: TradingView.com\r\n\r\n&nbsp;\r\n\r\nEen deel van de reden was de matige prijsactie van Bitcoin in de afgelopen twee weken. De cryptocurrency is er herhaaldelijk niet in geslaagd haar uitbraak boven $ 9.300 te handhaven. Aan de andere kant blijft de neerwaartse bias ook beperkt door een aanzienlijk ondersteuningsniveau van bijna $ 9.100. Op het hoogtepunt van twee weken handelde BTCUSD op $ 9.475.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nDat heeft ertoe geleid dat handelaren elders op jacht gingen naar opbrengsten. En de DeFi-ruimte is naar voren gekomen als een aantrekkelijk alternatief zolang Bitcoin binnen het bereik blijft.\r\n\r\n&nbsp;\r\n\r\nDe macro-correlatie gaat door\r\n\r\nEen andere reden waarom Bitcoin zijn stoom verliest, is zijn overdreven vertrouwen op de Amerikaanse aandelenmarkt. Sinds maart 2020 heeft de cryptocurrency de S&amp;P 500 onregelmatig gevolgd. De bewegingen van de copycat waren vrijdag ook zichtbaar toen Bitcoin bijna naast de Amerikaanse benchmarkindex steeg.\r\n\r\n&nbsp;\r\n\r\nDat laat Bitcoin zeker blootgesteld aan de macroverhalen - en ze zien er niet goed uit. De winst van de S&amp;P 500 komt in een tijd van de escalerende spanningen tussen de VS en China, het toenemende aantal gevallen van coronavirus in de Amerikaanse staten, een vertraging van het banenherstel en de mogelijke economische gevolgen.\r\n\r\n&nbsp;\r\n\r\nOndertussen zijn de macro-bullish bias tot nu toe optimistische vaccinproeven, die de bedrijfsactiviteiten nieuw leven inblazen in gebieden die hun lock-out voorbij zijn, en de verwachting dat de Federal Reserve en de Amerikaanse regering geld zullen blijven injecteren om de economie door de gezondheidscrisis te loodsen. <a href=\"https://www.bitcoinexchangenederland.nl/cardano/\">cardano prijs verwachting</a> is hoog.\r\n\r\n&nbsp;\r\n\r\nRisico\'s vooruit voor Bitcoin\r\n\r\nBitcoin en de S&amp;P 500 riskeren hun winst volgende week te verliezen als grote bedrijven hun winst over het tweede kwartaal bekendmaken. Dataservice FactSet zei vorige week dat de winst per aandeel van S&amp;P 500 met 45 procent zou dalen. Dat laat investeerders met twee keuzes: ofwel verkopen ze hun aandelen aan lokale toppen of blijven ze eraan vastgelijmd in afwachting van positieve vooruitzichten. <a href=\"https://www.bitcoinexchangenederland.nl/icon/\">icon koers verwachting</a> is stabiel.\r\n\r\n&nbsp;\r\n\r\nOndertussen kan Bitcoin alleen de show bekijken als een stomme toeschouwer. De cryptocurrency heeft niets aan de hand met DeFi-munten die de meeste aandacht van de handelaar trekken.\r\n\r\n&nbsp;','Bitcoin stijgt nadat Wall Street hoger opent op Stimulus Hopes','','publish','closed','closed','','bitcoin-stijgt-nadat-wall-street-hoger-opent-op-stimulus-hopes','','','2020-10-07 01:25:30','2020-10-07 01:25:30','',0,'http://platowinkels.nl/?p=83',0,'post','',0),(84,1,'2020-10-07 01:24:49','2020-10-07 01:24:49','','5fg45d4fvs5d4','','inherit','closed','closed','','5fg45d4fvs5d4','','','2020-10-07 01:24:49','2020-10-07 01:24:49','',83,'http://platowinkels.nl/wp-content/uploads/2020/10/5fg45d4fvs5d4.jpg',0,'attachment','image/jpeg',0),(85,1,'2020-10-07 01:25:30','2020-10-07 01:25:30','Bitcoin-prijs tikte vrijdag hoger, zelfs toen daytraders elders bleven zoeken om betere intraday-winsten te behalen.\r\n\r\n&nbsp;\r\n\r\nhttps://www.youtube.com/watch?v=LtXyfRrsla0&amp;t=2s\r\n\r\n&nbsp;\r\n\r\nDe benchmark-cryptocurrency steeg 0,1 procent tot ongeveer $ 9.139 na de openingsbel van New York. De bescheiden stijging deed zich voor toen rivaliserende cryptocurrencies - vooral die uit de gedecentraliseerde financiële sector - torenhoge rally\'s bleven leveren aan haar investeerders.\r\n\r\n&nbsp;\r\n\r\nZo steeg LEND tijdens de sessie van vrijdag meer dan 11 procent ten opzichte van de Amerikaanse dollar. Het steeg ook scherp tegen Bitcoin - met bijna 12 procent. Dat was een van de vele gevallen waarin handelaren hun BTC-kapitaal verschoven naar een opkomende altcoin-markt.\r\n\r\n&nbsp;\r\n\r\nbitcoin, btcusd, cryptocurrency, xbtusd\r\n\r\nBitcoin-prijs bleef de afgelopen twee weken binnen een bereik. Bron: TradingView.com\r\n\r\n&nbsp;\r\n\r\nEen deel van de reden was de matige prijsactie van Bitcoin in de afgelopen twee weken. De cryptocurrency is er herhaaldelijk niet in geslaagd haar uitbraak boven $ 9.300 te handhaven. Aan de andere kant blijft de neerwaartse bias ook beperkt door een aanzienlijk ondersteuningsniveau van bijna $ 9.100. Op het hoogtepunt van twee weken handelde BTCUSD op $ 9.475.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nDat heeft ertoe geleid dat handelaren elders op jacht gingen naar opbrengsten. En de DeFi-ruimte is naar voren gekomen als een aantrekkelijk alternatief zolang Bitcoin binnen het bereik blijft.\r\n\r\n&nbsp;\r\n\r\nDe macro-correlatie gaat door\r\n\r\nEen andere reden waarom Bitcoin zijn stoom verliest, is zijn overdreven vertrouwen op de Amerikaanse aandelenmarkt. Sinds maart 2020 heeft de cryptocurrency de S&amp;P 500 onregelmatig gevolgd. De bewegingen van de copycat waren vrijdag ook zichtbaar toen Bitcoin bijna naast de Amerikaanse benchmarkindex steeg.\r\n\r\n&nbsp;\r\n\r\nDat laat Bitcoin zeker blootgesteld aan de macroverhalen - en ze zien er niet goed uit. De winst van de S&amp;P 500 komt in een tijd van de escalerende spanningen tussen de VS en China, het toenemende aantal gevallen van coronavirus in de Amerikaanse staten, een vertraging van het banenherstel en de mogelijke economische gevolgen.\r\n\r\n&nbsp;\r\n\r\nOndertussen zijn de macro-bullish bias tot nu toe optimistische vaccinproeven, die de bedrijfsactiviteiten nieuw leven inblazen in gebieden die hun lock-out voorbij zijn, en de verwachting dat de Federal Reserve en de Amerikaanse regering geld zullen blijven injecteren om de economie door de gezondheidscrisis te loodsen. <a href=\"https://www.bitcoinexchangenederland.nl/cardano/\">cardano prijs verwachting</a> is hoog.\r\n\r\n&nbsp;\r\n\r\nRisico\'s vooruit voor Bitcoin\r\n\r\nBitcoin en de S&amp;P 500 riskeren hun winst volgende week te verliezen als grote bedrijven hun winst over het tweede kwartaal bekendmaken. Dataservice FactSet zei vorige week dat de winst per aandeel van S&amp;P 500 met 45 procent zou dalen. Dat laat investeerders met twee keuzes: ofwel verkopen ze hun aandelen aan lokale toppen of blijven ze eraan vastgelijmd in afwachting van positieve vooruitzichten. <a href=\"https://www.bitcoinexchangenederland.nl/icon/\">icon koers verwachting</a> is stabiel.\r\n\r\n&nbsp;\r\n\r\nOndertussen kan Bitcoin alleen de show bekijken als een stomme toeschouwer. De cryptocurrency heeft niets aan de hand met DeFi-munten die de meeste aandacht van de handelaar trekken.\r\n\r\n&nbsp;','Bitcoin stijgt nadat Wall Street hoger opent op Stimulus Hopes','','inherit','closed','closed','','83-revision-v1','','','2020-10-07 01:25:30','2020-10-07 01:25:30','',83,'http://platowinkels.nl/83-revision-v1/',0,'revision','',0),(86,1,'2020-11-27 01:49:47','2020-11-27 01:49:47','De X1-creditcard is gemaakt van roestvrij staal. X1\r\n\r\nDit artikel wordt u aangeboden door het Personal Finance Insider-team. Het is niet beoordeeld, goedgekeurd of anderszins onderschreven door een van de vermelde emittenten. Sommige aanbiedingen die u op de pagina ziet, zijn afkomstig van onze partners zoals Citi en American Express, maar onze dekking is altijd onafhankelijk. Op de aanbiedingen op deze pagina zijn voorwaarden van toepassing.\r\n\r\n&nbsp;\r\n\r\nDe X1 Card is een nieuwe creditcard met \"slimme\" features zoals automatisch verlopen virtuele kaartnummers en het opzeggen van abonnementen.\r\n\r\nUw kredietlimiet wordt bepaald op basis van uw inkomen, niet uw kredietscore - wat ten goede kan komen aan studenten en andere mensen die nieuw zijn bij krediet.\r\n\r\nDe wachtlijst is nu open en de kaart zal later dit jaar beschikbaar zijn.\r\n\r\nDe X1-kaart verdient 2 punten per dollar - of 3 punten per dollar als u $ 15.000 of meer in een kalenderjaar uitgeeft. Als u een vriend naar de kaart verwijst, kunt u een hoger 4x beloningspercentage ontgrendelen.\r\n\r\nBekijk de lijst van Business Insider met de beste creditcards met beloningen »\r\n\r\nMeestal komen nieuwe creditcards van hetzelfde handjevol grote banken, maar deze laatste aankondiging is van een startup opgericht door Twitter-alumni, met steun van andere spraakmakende figuren in de technologie, waaronder PayPal-mede-oprichter Max Levchin.\r\n\r\n&nbsp;\r\n\r\nHet bedrijf zegt dat de X1-kaart zonder jaarlijkse vergoeding \'ontworpen is voor een nieuwe generatie kaarthouders\' en een handvol \'slimme\' functies heeft, waaronder de optie om een ​​virtueel kaartnummer te gebruiken dat automatisch verloopt en uw gratis proefperiode vanaf het opladen van uw kaart. Er is ook een functie voor het opzeggen van abonnementen die u zowel tijd als geld kan besparen bij het verwerken van terugkerende kosten, en X1 zegt dat het kredietlimieten biedt die tot vijf keer hoger zijn dan bij concurrerende kaarten. De beloningen zien er ook behoorlijk competitief uit.\r\n\r\n<iframe src=\"https://www.youtube.com/embed/x0SkxyFjPCY\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n&nbsp;\r\n\r\nDe X1-kaart zal naar verwachting in de winter van 2020 arriveren en de wachtlijst is nu open. Volgens een woordvoerder van X1 hebben meer dan 75.000 mensen zich aangemeld in de eerste 24 uur na de onthulling van de kaart.\r\n\r\n&nbsp;\r\n\r\nDe X1-kaart zal hightech-functies hebben\r\n\r\nDe meest unieke kenmerken van de X1 Card hebben betrekking op de virtuele kaartnummers die u kunt maken, met een vervaldatum die voorkomt dat u wordt belast door een abonnementsservice nadat uw gratis proefperiode is afgelopen. Dit doet denken aan de functie voor virtuele kaartnummers op de Apple Card.\r\n\r\n&nbsp;\r\n\r\nU kunt op elk moment virtuele kaartnummers gebruiken, ook bij online verkopers waar u uw normale kaartnummer niet wilt opgeven, en u kunt abonnementen ook met één klik opzeggen.\r\n\r\n&nbsp;\r\n\r\nDe kaart claimt ook kredietlimieten te bieden die tot vijf keer hoger zijn dan die van concurrerende kaarten. X1 lijkt dit te doen door uw kredietlimiet te berekenen op basis van uw inkomen, en de kredietlimieten van kaarthouders zullen automatisch toenemen naarmate hun inkomen in de toekomst stijgt. Het hebben van een hoge kredietlimiet kan u helpen uw kredietscore te verbeteren als u uw kredietgebruik laag houdt en alleen in rekening brengt wat u zich kunt veroorloven om elke maand volledig af te betalen.\r\n\r\n&nbsp;\r\n\r\nDe kaart zelf is gemaakt van roestvrij staal en is met 17 gram zwaar. Dat maakt het een van de zwaarste metalen creditcards op de markt. <a href=\"https://www.123creditcardvergelijk.nl/\">de beste creditcard online vergelijken</a> is beter.\r\n\r\n&nbsp;\r\n\r\nDe kaart draagt ​​het Visa Signature-merk, dat waardevolle voordelen en beschermingen biedt, waaronder een automatische verlengde garantie op in aanmerking komende aankopen en dekking van huurauto\'s.\r\n\r\n&nbsp;\r\n\r\nVanaf de lancering van de kaart beweert het de laagste APR\'s in zijn kaartklasse te hebben. Met een top variabel tarief van 19,9% op het moment van schrijven, kan dat het geval zijn, afhankelijk van uw kredietgeschiedenis.\r\n\r\n&nbsp;\r\n\r\nDe beloningen zien er ook indrukwekkend uit\r\n\r\nOp basis van afbeeldingen op de X1-kaartwebsite lijkt het erop dat punten elk 1 cent waard zijn en kunnen worden ingewisseld voor aankopen bij een lange lijst met merken, waaronder Apple, Airbnb, Etsy, Sephora en Wayfair.\r\n\r\n&nbsp;\r\n\r\nKaarthouders verdienen minimaal 2x punten per dollar bij alle aankopen, hoewel iedereen die minimaal $ 15.000 aan de kaart uitgeeft per jaar 3x punten verdient voor elke dollar die dat jaar wordt uitgegeven. Als u een vriend naar de kaart verwijst, kunt u een hoger 4x beloningspercentage ontgrendelen voor de maand van de verwijzing.\r\n\r\n&nbsp;\r\n\r\nHet 2x tot 3x puntentarief dat de meeste gebruikers zullen verdienen, is indrukwekkend en plaatst het bovenaan de lijst voor forfaitaire beloningskaarten. Als u minimaal $ 15.000 per jaar uitgeeft, wat neerkomt op een gemiddelde van $ 1.250 per maand, is uw 3x tarief voor het hele jaar een van de beste die u in de categorie kunt vinden. <a href=\"https://www.123creditcardvergelijk.nl/american-express/\">american express kaarten</a> is niet goedkoop.\r\n\r\n&nbsp;\r\n\r\nDe X1 Card-website toont een \"Betaal met punten\" -functie in de X1-app. Op basis van de afbeelding zijn punten elk 1 cent waard. Dat betekent dat iemand die het minimum van $ 15.000 op de kaart uitgeeft om het 3x beloningspercentage te verdienen, 45.000 punten ter waarde van $ 450 in contanten terug zou verdienen.','De X1-creditcard richt zich op jongere kaarthouders met een andere benadering van kredietlimieten - en de wachtlijst heeft al 75.000 aanmeldingen gepasseerd','','publish','closed','closed','','de-x1-creditcard-richt-zich-op-jongere-kaarthouders-met-een-andere-benadering-van-kredietlimieten-en-de-wachtlijst-heeft-al-75-000-aanmeldingen-gepasseerd','','','2020-10-22 02:15:13','2020-10-22 02:15:13','',0,'http://platowinkels.nl/?p=86',0,'post','',0),(87,1,'2020-10-22 02:14:24','2020-10-22 02:14:24','','r6e5re45er45','','inherit','closed','closed','','r6e5re45er45','','','2020-10-22 02:14:24','2020-10-22 02:14:24','',86,'http://platowinkels.nl/wp-content/uploads/2020/10/r6e5re45er45.png',0,'attachment','image/png',0),(88,1,'2020-10-22 02:15:13','2020-10-22 02:15:13','De X1-creditcard is gemaakt van roestvrij staal. X1\r\n\r\nDit artikel wordt u aangeboden door het Personal Finance Insider-team. Het is niet beoordeeld, goedgekeurd of anderszins onderschreven door een van de vermelde emittenten. Sommige aanbiedingen die u op de pagina ziet, zijn afkomstig van onze partners zoals Citi en American Express, maar onze dekking is altijd onafhankelijk. Op de aanbiedingen op deze pagina zijn voorwaarden van toepassing.\r\n\r\n&nbsp;\r\n\r\nDe X1 Card is een nieuwe creditcard met \"slimme\" features zoals automatisch verlopen virtuele kaartnummers en het opzeggen van abonnementen.\r\n\r\nUw kredietlimiet wordt bepaald op basis van uw inkomen, niet uw kredietscore - wat ten goede kan komen aan studenten en andere mensen die nieuw zijn bij krediet.\r\n\r\nDe wachtlijst is nu open en de kaart zal later dit jaar beschikbaar zijn.\r\n\r\nDe X1-kaart verdient 2 punten per dollar - of 3 punten per dollar als u $ 15.000 of meer in een kalenderjaar uitgeeft. Als u een vriend naar de kaart verwijst, kunt u een hoger 4x beloningspercentage ontgrendelen.\r\n\r\nBekijk de lijst van Business Insider met de beste creditcards met beloningen »\r\n\r\nMeestal komen nieuwe creditcards van hetzelfde handjevol grote banken, maar deze laatste aankondiging is van een startup opgericht door Twitter-alumni, met steun van andere spraakmakende figuren in de technologie, waaronder PayPal-mede-oprichter Max Levchin.\r\n\r\n&nbsp;\r\n\r\nHet bedrijf zegt dat de X1-kaart zonder jaarlijkse vergoeding \'ontworpen is voor een nieuwe generatie kaarthouders\' en een handvol \'slimme\' functies heeft, waaronder de optie om een ​​virtueel kaartnummer te gebruiken dat automatisch verloopt en uw gratis proefperiode vanaf het opladen van uw kaart. Er is ook een functie voor het opzeggen van abonnementen die u zowel tijd als geld kan besparen bij het verwerken van terugkerende kosten, en X1 zegt dat het kredietlimieten biedt die tot vijf keer hoger zijn dan bij concurrerende kaarten. De beloningen zien er ook behoorlijk competitief uit.\r\n\r\n<iframe src=\"https://www.youtube.com/embed/x0SkxyFjPCY\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n&nbsp;\r\n\r\nDe X1-kaart zal naar verwachting in de winter van 2020 arriveren en de wachtlijst is nu open. Volgens een woordvoerder van X1 hebben meer dan 75.000 mensen zich aangemeld in de eerste 24 uur na de onthulling van de kaart.\r\n\r\n&nbsp;\r\n\r\nDe X1-kaart zal hightech-functies hebben\r\n\r\nDe meest unieke kenmerken van de X1 Card hebben betrekking op de virtuele kaartnummers die u kunt maken, met een vervaldatum die voorkomt dat u wordt belast door een abonnementsservice nadat uw gratis proefperiode is afgelopen. Dit doet denken aan de functie voor virtuele kaartnummers op de Apple Card.\r\n\r\n&nbsp;\r\n\r\nU kunt op elk moment virtuele kaartnummers gebruiken, ook bij online verkopers waar u uw normale kaartnummer niet wilt opgeven, en u kunt abonnementen ook met één klik opzeggen.\r\n\r\n&nbsp;\r\n\r\nDe kaart claimt ook kredietlimieten te bieden die tot vijf keer hoger zijn dan die van concurrerende kaarten. X1 lijkt dit te doen door uw kredietlimiet te berekenen op basis van uw inkomen, en de kredietlimieten van kaarthouders zullen automatisch toenemen naarmate hun inkomen in de toekomst stijgt. Het hebben van een hoge kredietlimiet kan u helpen uw kredietscore te verbeteren als u uw kredietgebruik laag houdt en alleen in rekening brengt wat u zich kunt veroorloven om elke maand volledig af te betalen.\r\n\r\n&nbsp;\r\n\r\nDe kaart zelf is gemaakt van roestvrij staal en is met 17 gram zwaar. Dat maakt het een van de zwaarste metalen creditcards op de markt. <a href=\"https://www.123creditcardvergelijk.nl/\">de beste creditcard online vergelijken</a> is beter.\r\n\r\n&nbsp;\r\n\r\nDe kaart draagt ​​het Visa Signature-merk, dat waardevolle voordelen en beschermingen biedt, waaronder een automatische verlengde garantie op in aanmerking komende aankopen en dekking van huurauto\'s.\r\n\r\n&nbsp;\r\n\r\nVanaf de lancering van de kaart beweert het de laagste APR\'s in zijn kaartklasse te hebben. Met een top variabel tarief van 19,9% op het moment van schrijven, kan dat het geval zijn, afhankelijk van uw kredietgeschiedenis.\r\n\r\n&nbsp;\r\n\r\nDe beloningen zien er ook indrukwekkend uit\r\n\r\nOp basis van afbeeldingen op de X1-kaartwebsite lijkt het erop dat punten elk 1 cent waard zijn en kunnen worden ingewisseld voor aankopen bij een lange lijst met merken, waaronder Apple, Airbnb, Etsy, Sephora en Wayfair.\r\n\r\n&nbsp;\r\n\r\nKaarthouders verdienen minimaal 2x punten per dollar bij alle aankopen, hoewel iedereen die minimaal $ 15.000 aan de kaart uitgeeft per jaar 3x punten verdient voor elke dollar die dat jaar wordt uitgegeven. Als u een vriend naar de kaart verwijst, kunt u een hoger 4x beloningspercentage ontgrendelen voor de maand van de verwijzing.\r\n\r\n&nbsp;\r\n\r\nHet 2x tot 3x puntentarief dat de meeste gebruikers zullen verdienen, is indrukwekkend en plaatst het bovenaan de lijst voor forfaitaire beloningskaarten. Als u minimaal $ 15.000 per jaar uitgeeft, wat neerkomt op een gemiddelde van $ 1.250 per maand, is uw 3x tarief voor het hele jaar een van de beste die u in de categorie kunt vinden. <a href=\"https://www.123creditcardvergelijk.nl/american-express/\">american express kaarten</a> is niet goedkoop.\r\n\r\n&nbsp;\r\n\r\nDe X1 Card-website toont een \"Betaal met punten\" -functie in de X1-app. Op basis van de afbeelding zijn punten elk 1 cent waard. Dat betekent dat iemand die het minimum van $ 15.000 op de kaart uitgeeft om het 3x beloningspercentage te verdienen, 45.000 punten ter waarde van $ 450 in contanten terug zou verdienen.','De X1-creditcard richt zich op jongere kaarthouders met een andere benadering van kredietlimieten - en de wachtlijst heeft al 75.000 aanmeldingen gepasseerd','','inherit','closed','closed','','86-revision-v1','','','2020-10-22 02:15:13','2020-10-22 02:15:13','',86,'http://platowinkels.nl/86-revision-v1/',0,'revision','',0),(89,0,'2020-10-29 20:29:02','2020-10-29 20:29:02','<iframe title=\"CBR Auto Theorie Examen oefenen in 2020 Gratis Tips Dit kun jij verwachten\" width=\"640\" height=\"360\" src=\"https://www.youtube.com/embed/LtXyfRrsla0?start=2&feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>','','','publish','closed','closed','','919393436cb56a0b91f22254dac069e7','','','2020-10-29 20:29:02','2020-10-29 20:29:02','',0,'http://platowinkels.nl/919393436cb56a0b91f22254dac069e7/',0,'oembed_cache','',0),(90,1,'2021-01-17 20:50:41','2021-01-17 20:50:41','ASX-aandelen om te vermijden\r\n\r\nWederom raakte vorige week een groot aantal makelaarsbrieven de draad. Sommige van deze notes waren positief en andere waren bearish.\r\n\r\n&nbsp;\r\n\r\nDrie verkoopbeoordelingen die mijn aandacht trokken, worden hieronder samengevat. Dit is waarom topmakelaars denken dat beleggers deze aandelen volgende week zouden moeten verkopen:\r\n\r\n&nbsp;\r\n\r\nASX Ltd (ASX: ASX)\r\n\r\nVolgens een bericht van Credit Suisse hebben de analisten hun ondermaatse rating en het koersdoel van $ 73,00 op deze beursoperator behouden. Dit volgt op de publicatie van de handelsgegevens voor de maand november. Hoewel ASX in de loop van de maand grotendeels in lijn met de verwachtingen presteerde, blijft de makelaar geloven dat zijn aandelen op het huidige niveau duur zijn. Vooral gezien het feit dat het verwacht dat de omzetgroei moeilijk te realiseren zal zijn in FY 2021. De ASX-aandelenkoers eindigde de week op $ 74,89. <a href=\"https://aandelenkopen.nl/\">https://aandelenkopen.nl/</a>heeft de juiste informatie.\r\n\r\n&nbsp;\r\n\r\nhttps://youtu.be/LjuvlDub3Mw\r\n\r\n&nbsp;\r\n\r\nFortescue Metals Group Limited (ASX: FMG)\r\n\r\nAnalisten bij Morgan Stanley hebben hun onderwogen rating behouden, maar hebben het koersdoel voor de aandelen van deze ijzerertsproducent verhoogd naar $ 17,45. Hoewel de makelaar zijn winstverwachtingen voor Fortescue de komende jaren heeft bijgesteld om de hoger dan verwachte ijzerertsprijzen weer te geven, is dat niet genoeg voor een wijziging van de rating. De broker lijkt op het huidige niveau niet genoeg waarde in zijn aandelen te zien en houdt vast aan zijn bearish standpunt. De aandelenkoers van Fortescue veranderde vrijdag van eigenaar voor $ 22,95. <a href=\"https://aandelenkopen.nl/apple-aandeel/\">apple aandelen kopen</a> zijn vereist.\r\n\r\n&nbsp;\r\n\r\nNorthern Star Resources Ltd (ASX: NST)\r\n\r\nEen andere notitie van Morgan Stanley onthult dat zijn analisten de aandelen van deze goudzoeker hebben gedegradeerd tot een onderwogen rating en het koersdoel hebben verlaagd tot $ 11,70. De makelaar verwacht niet dat de goudprijs veel zal doen in 2021 en voorspelt dat deze op of rond het huidige niveau zal blijven. Morgan Stanley is ook van mening dat potentiële exploratiesuccessen en verbeteringen bij zijn Pogo-operatie al in zijn aandelenkoers zijn verwerkt. De koers van het aandeel Northern Star eindigde de week op $ 12,39.\r\n\r\n&nbsp;\r\n\r\nWaar nu $ 1.000 te investeren\r\n\r\nAls beleggingsexpert Scott Phillips een aandelentip heeft, kan het lonen om te luisteren. Tenslotte heeft de vlaggenschip Motley Fool Share Advisor-nieuwsbrief die hij al meer dan acht jaar beheert, duizenden betalende leden voorzien van een verdubbelde, verdrievoudigde of zelfs meer aandelenselectie.\r\n\r\n&nbsp;\r\n\r\nScott heeft zojuist onthuld wat volgens hem de vijf beste ASX-aandelen zijn die beleggers nu kunnen kopen. Deze aandelen worden verhandeld tegen spotgoedkope prijzen en Scott denkt dat ze op dit moment geweldige aankopen zijn.\r\n\r\n&nbsp;','Topmakelaars noemen 3 ASX-aandelen om volgende week te verkopen','','publish','closed','closed','','topmakelaars-noemen-3-asx-aandelen-om-volgende-week-te-verkopen','','','2020-12-23 20:59:48','2020-12-23 20:59:48','',0,'http://platowinkels.nl/?p=90',0,'post','',0),(91,1,'2020-12-23 20:54:51','2020-12-23 20:54:51','','f8v9d8v9df8','','inherit','closed','closed','','f8v9d8v9df8','','','2020-12-23 20:54:51','2020-12-23 20:54:51','',90,'http://platowinkels.nl/wp-content/uploads/2020/12/f8v9d8v9df8.jpg',0,'attachment','image/jpeg',0),(92,1,'2020-12-23 20:59:00','2020-12-23 20:59:00','<iframe title=\"MASSIVE TOP Stocks To Buy Now   BIG MOVERS TODAY REVEALED\" width=\"640\" height=\"360\" src=\"https://www.youtube.com/embed/LjuvlDub3Mw?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>','','','publish','closed','closed','','5309371bf043d9acd3bbde9a43dd50a4','','','2020-12-23 20:59:00','2020-12-23 20:59:00','',0,'http://platowinkels.nl/5309371bf043d9acd3bbde9a43dd50a4/',0,'oembed_cache','',0),(93,1,'2020-12-23 20:59:48','2020-12-23 20:59:48','ASX-aandelen om te vermijden\r\n\r\nWederom raakte vorige week een groot aantal makelaarsbrieven de draad. Sommige van deze notes waren positief en andere waren bearish.\r\n\r\n&nbsp;\r\n\r\nDrie verkoopbeoordelingen die mijn aandacht trokken, worden hieronder samengevat. Dit is waarom topmakelaars denken dat beleggers deze aandelen volgende week zouden moeten verkopen:\r\n\r\n&nbsp;\r\n\r\nASX Ltd (ASX: ASX)\r\n\r\nVolgens een bericht van Credit Suisse hebben de analisten hun ondermaatse rating en het koersdoel van $ 73,00 op deze beursoperator behouden. Dit volgt op de publicatie van de handelsgegevens voor de maand november. Hoewel ASX in de loop van de maand grotendeels in lijn met de verwachtingen presteerde, blijft de makelaar geloven dat zijn aandelen op het huidige niveau duur zijn. Vooral gezien het feit dat het verwacht dat de omzetgroei moeilijk te realiseren zal zijn in FY 2021. De ASX-aandelenkoers eindigde de week op $ 74,89. <a href=\"https://aandelenkopen.nl/\">https://aandelenkopen.nl/</a>heeft de juiste informatie.\r\n\r\n&nbsp;\r\n\r\nhttps://youtu.be/LjuvlDub3Mw\r\n\r\n&nbsp;\r\n\r\nFortescue Metals Group Limited (ASX: FMG)\r\n\r\nAnalisten bij Morgan Stanley hebben hun onderwogen rating behouden, maar hebben het koersdoel voor de aandelen van deze ijzerertsproducent verhoogd naar $ 17,45. Hoewel de makelaar zijn winstverwachtingen voor Fortescue de komende jaren heeft bijgesteld om de hoger dan verwachte ijzerertsprijzen weer te geven, is dat niet genoeg voor een wijziging van de rating. De broker lijkt op het huidige niveau niet genoeg waarde in zijn aandelen te zien en houdt vast aan zijn bearish standpunt. De aandelenkoers van Fortescue veranderde vrijdag van eigenaar voor $ 22,95. <a href=\"https://aandelenkopen.nl/apple-aandeel/\">apple aandelen kopen</a> zijn vereist.\r\n\r\n&nbsp;\r\n\r\nNorthern Star Resources Ltd (ASX: NST)\r\n\r\nEen andere notitie van Morgan Stanley onthult dat zijn analisten de aandelen van deze goudzoeker hebben gedegradeerd tot een onderwogen rating en het koersdoel hebben verlaagd tot $ 11,70. De makelaar verwacht niet dat de goudprijs veel zal doen in 2021 en voorspelt dat deze op of rond het huidige niveau zal blijven. Morgan Stanley is ook van mening dat potentiële exploratiesuccessen en verbeteringen bij zijn Pogo-operatie al in zijn aandelenkoers zijn verwerkt. De koers van het aandeel Northern Star eindigde de week op $ 12,39.\r\n\r\n&nbsp;\r\n\r\nWaar nu $ 1.000 te investeren\r\n\r\nAls beleggingsexpert Scott Phillips een aandelentip heeft, kan het lonen om te luisteren. Tenslotte heeft de vlaggenschip Motley Fool Share Advisor-nieuwsbrief die hij al meer dan acht jaar beheert, duizenden betalende leden voorzien van een verdubbelde, verdrievoudigde of zelfs meer aandelenselectie.\r\n\r\n&nbsp;\r\n\r\nScott heeft zojuist onthuld wat volgens hem de vijf beste ASX-aandelen zijn die beleggers nu kunnen kopen. Deze aandelen worden verhandeld tegen spotgoedkope prijzen en Scott denkt dat ze op dit moment geweldige aankopen zijn.\r\n\r\n&nbsp;','Topmakelaars noemen 3 ASX-aandelen om volgende week te verkopen','','inherit','closed','closed','','90-revision-v1','','','2020-12-23 20:59:48','2020-12-23 20:59:48','',90,'http://platowinkels.nl/90-revision-v1/',0,'revision','',0),(94,1,'2021-01-15 18:46:57','2021-01-15 18:46:57','Bitcoin kan het moeilijk hebben om op korte termijn een V-vormig herstel naar recente hoogtepunten in kaart te brengen, waarbij on-chain activiteit een verhoogde verkoopdruk op de markt laat zien.\r\n\r\n&nbsp;\r\n\r\nDe uitwisselingsinstroomindicator van Blockchain-analysebedrijf CryptoQuant - die het 144-blok (ongeveer 24-uurs) gemiddelde van gemiddelde bitcoin-stortingen op grote cryptocurrency-uitwisselingen meet - is gestegen tot 2,5 bitcoin, het hoogste niveau sinds 20 maart.\r\n\r\n&nbsp;\r\n\r\nMet andere woorden, de gemiddelde omvang van inkomende transacties naar handelsplatforms is gestegen tot het hoogste punt in acht maanden. Ontology is de nieuwe technologie.\r\n\r\n&nbsp;\r\n\r\nhttps://youtu.be/rgAkANz4kCw\r\n\r\n&nbsp;\r\n\r\nBitcoin: gemiddelde instroom van alle uitwisselingen\r\n\r\n\"De gegevens laten zien dat walvissen [grote handelaren] hun munten naar uitwisselingen overbrengen\", vertelde CryptoQuant CEO Ki-Young Ju aan CoinDesk. \"De cryptocurrency handelt gewoonlijk zijwaarts naar negatief wanneer walvissen actief worden op beurzen.\"\r\n\r\n&nbsp;\r\n\r\nBitcoin handelt in de buurt van $ 16.820 op het moment van drukken, wat neerkomt op een daling van 2% op 24-uurbasis. De cryptocurrency zag vrijdag vroeg een afwijzing van meer dan $ 17.400.\r\n\r\n&nbsp;\r\n\r\nDe mogelijkheid dat prijzen dalen tot of onder het dieptepunt van donderdag van $ 16.327, kan niet worden uitgesloten, aangezien de gemiddelde instroom nu boven twee bitcoin beweegt - in de \'gevarenzone\' van CryptoQuant. NEO is veel drukker.\r\n\r\n&nbsp;\r\n\r\nBitcoin: gemiddelde instroom van alle uitwisselingen (2020)\r\n\r\nEen waarde van meer dan 2,00 op de indicator heeft consequent de weg geëffend voor opmerkelijke prijsdalingen dit jaar. De indicator steeg minstens een week vóór de daling van 40% op 12 maart boven dat niveau.\r\n\r\n&nbsp;\r\n\r\nBitcoin: gemiddelde instroom van alle uitwisselingen (2018)\r\n\r\nEvenzo werd de scherpe uitverkoop van november 2018 voorafgegaan door een sterke stijging van de maatstaf.\r\n\r\n&nbsp;\r\n\r\nTechnische grafiekstudies wijzen op een lage kans op een onmiddellijke sprong naar niveaus boven $ 19.000.\r\n\r\n&nbsp;\r\n\r\nDe prijsdaling van donderdag werd ondersteund door het hoogste verkoopvolume (rode balk) sinds 1 juni. Als zodanig lijkt de terugval op peil te houden. Momentumindicatoren voor de korte termijn, zoals de vijf- en tiendaagse voortschrijdende gemiddelden, kijken nu naar het zuiden.\r\n\r\n&nbsp;','Snel herstel van de Bitcoin-prijs lijkt twijfelachtig als walvissen munten naar uitwisselingen verplaatsen','','publish','closed','closed','','snel-herstel-van-de-bitcoin-prijs-lijkt-twijfelachtig-als-walvissen-munten-naar-uitwisselingen-verplaatsen','','','2022-04-11 15:56:17','2022-04-11 15:56:17','',0,'http://platowinkels.nl/?p=94',0,'post','',0),(95,1,'2020-12-24 18:52:12','2020-12-24 18:52:12','','fg4b','','inherit','closed','closed','','fg4b','','','2020-12-24 18:52:12','2020-12-24 18:52:12','',94,'http://platowinkels.nl/wp-content/uploads/2020/12/fg4b.gif',0,'attachment','image/gif',0),(96,1,'2020-12-24 18:55:47','2020-12-24 18:55:47','<iframe title=\"Find The Best Forex Trading Setups Daily Part 1 of 2\" width=\"640\" height=\"360\" src=\"https://www.youtube.com/embed/rgAkANz4kCw?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>','','','publish','closed','closed','','c6ac437401f9a52d64bc282bb187d073','','','2020-12-24 18:55:47','2020-12-24 18:55:47','',0,'http://platowinkels.nl/c6ac437401f9a52d64bc282bb187d073/',0,'oembed_cache','',0),(97,1,'2020-12-24 18:57:23','2020-12-24 18:57:23','Bitcoin kan het moeilijk hebben om op korte termijn een V-vormig herstel naar recente hoogtepunten in kaart te brengen, waarbij on-chain activiteit een verhoogde verkoopdruk op de markt laat zien.\r\n\r\n&nbsp;\r\n\r\nDe uitwisselingsinstroomindicator van Blockchain-analysebedrijf CryptoQuant - die het 144-blok (ongeveer 24-uurs) gemiddelde van gemiddelde bitcoin-stortingen op grote cryptocurrency-uitwisselingen meet - is gestegen tot 2,5 bitcoin, het hoogste niveau sinds 20 maart.\r\n\r\n&nbsp;\r\n\r\nMet andere woorden, de gemiddelde omvang van inkomende transacties naar handelsplatforms is gestegen tot het hoogste punt in acht maanden. <a href=\"https://biflatie.nl/ontology/\">Ontology</a> is de nieuwe technologie.\r\n\r\n&nbsp;\r\n\r\nhttps://youtu.be/rgAkANz4kCw\r\n\r\n&nbsp;\r\n\r\nBitcoin: gemiddelde instroom van alle uitwisselingen\r\n\r\n\"De gegevens laten zien dat walvissen [grote handelaren] hun munten naar uitwisselingen overbrengen\", vertelde CryptoQuant CEO Ki-Young Ju aan CoinDesk. \"De cryptocurrency handelt gewoonlijk zijwaarts naar negatief wanneer walvissen actief worden op beurzen.\"\r\n\r\n&nbsp;\r\n\r\nBitcoin handelt in de buurt van $ 16.820 op het moment van drukken, wat neerkomt op een daling van 2% op 24-uurbasis. De cryptocurrency zag vrijdag vroeg een afwijzing van meer dan $ 17.400.\r\n\r\n&nbsp;\r\n\r\nDe mogelijkheid dat prijzen dalen tot of onder het dieptepunt van donderdag van $ 16.327, kan niet worden uitgesloten, aangezien de gemiddelde instroom nu boven twee bitcoin beweegt - in de \'gevarenzone\' van CryptoQuant. <a href=\"https://biflatie.nl/neo/\">NEO</a> is veel drukker.\r\n\r\n&nbsp;\r\n\r\nBitcoin: gemiddelde instroom van alle uitwisselingen (2020)\r\n\r\nEen waarde van meer dan 2,00 op de indicator heeft consequent de weg geëffend voor opmerkelijke prijsdalingen dit jaar. De indicator steeg minstens een week vóór de daling van 40% op 12 maart boven dat niveau.\r\n\r\n&nbsp;\r\n\r\nBitcoin: gemiddelde instroom van alle uitwisselingen (2018)\r\n\r\nEvenzo werd de scherpe uitverkoop van november 2018 voorafgegaan door een sterke stijging van de maatstaf.\r\n\r\n&nbsp;\r\n\r\nTechnische grafiekstudies wijzen op een lage kans op een onmiddellijke sprong naar niveaus boven $ 19.000.\r\n\r\n&nbsp;\r\n\r\nDe prijsdaling van donderdag werd ondersteund door het hoogste verkoopvolume (rode balk) sinds 1 juni. Als zodanig lijkt de terugval op peil te houden. Momentumindicatoren voor de korte termijn, zoals de vijf- en tiendaagse voortschrijdende gemiddelden, kijken nu naar het zuiden.\r\n\r\n&nbsp;','Snel herstel van de Bitcoin-prijs lijkt twijfelachtig als walvissen munten naar uitwisselingen verplaatsen','','inherit','closed','closed','','94-revision-v1','','','2020-12-24 18:57:23','2020-12-24 18:57:23','',94,'http://platowinkels.nl/94-revision-v1/',0,'revision','',0),(98,1,'2021-01-01 12:47:54','2021-01-01 12:47:54','De wereldwijde marihuanamarkten groeien als een onkruid. De wereldwijde uitgaven aan cannabis liggen op schema naar de top van 29 miljard dollar in 2020, volgens Statista. Het totaal zal naar verwachting stijgen tot 63,5 miljard dollar in 2024, bij een samengesteld jaarlijks groeipercentage (CAGR) van 21%. Met dit soort indrukwekkende groei is het geen wonder dat veel beleggers geïnteresseerd zijn in beursgenoteerde cannabisaandelen. Ook in Nederland is er onderzoek gedaan, op deze site <a href=\"https://spaarbuidel.nl/marihuana-aandelen/\">heb je bijvoorbeeld 1 onderzoek naar wiet aandelen.</a>\r\n<h2>1. Begrijp de soorten marihuanaproducten, er zijn twee grote categorieën cannabisproducten:</h2>\r\n<ol>\r\n 	<li>Medische marihuana: Medische marihuana is over het algemeen legaal in 35 Amerikaanse staten plus het District of Columbia en in meer dan 30 landen. Voor het verkrijgen van medische marihuana is meestal een recept van een geautoriseerde zorgverlener nodig; het wordt vaak aan volwassenen voorgeschreven voor angst, depressie, pijn en stress.</li>\r\n 	<li>Recreatieve marihuana: Vijftien Amerikaanse staten plus D.C. hebben recreatieve marihuana gelegaliseerd voor gebruik door volwassenen. Recreatieve marihuana is legaal in Canada sinds oktober 2018 en legaal in Uruguay sinds 2014.</li>\r\n</ol>\r\n<h2>2. Ken de verschillende soorten marihuanabestanden, er zijn ook verschillende soorten marihuanabestanden, en de drie belangrijkste zijn:</h2>\r\nCannabiskwekers en -handelaren: Deze bedrijven, waaronder Canopy Growth, telen cannabis (vaak in binnenfaciliteiten en kassen), oogsten de gewassen en distribueren de eindproducten naar de klanten. Sommige richten zich ook op het exploiteren van winkels voor de verkoop van medische en/of recreatieve cannabis. Cannabisgerichte biotechs: Dit zijn biotechs (zoals GW Pharmaceuticals) die cannabinoïdedrugs ontwikkelen. Aanbieders van aanvullende producten en diensten: Deze bedrijven ondersteunen de marihuanakwekers door het leveren van producten en diensten zoals hydrocultuurproducten en verlichtingssystemen (een belangrijk aandachtsgebied voor Scotts Miracle-Gro), verpakkingsdiensten en managementdiensten. In Nederland zijn er verschillende merken die <a href=\"https://spaarbuidel.nl/beleggen/accenture-aandelen/\">interessant zijn zoals de aandelen van Accenture.</a>\r\n<h2>3. De risico\'s van het beleggen in marihuana aandelen begrijpen</h2>\r\nInvesteren in eender welk type van activa brengt een zekere mate van risico met zich mee. Beleggen in marihuana-aandelen heeft echter specifieke risico\'s die u moet begrijpen. Juridische en politieke risico\'s: De verkoop van marihuana blijft illegaal op federaal niveau in de VS. Bovendien legt de Amerikaanse federale wet strenge beperkingen op aan banken die zich bezighouden met marihuanagerelateerde bedrijven.\r\n<ul>\r\n 	<li>Als gevolg daarvan is het voor Amerikaanse cannabisbedrijven moeilijk om toegang te krijgen tot kritieke financiële diensten. De politieke steun voor het federaal legaliseren of decriminaliseren van marihuana is toegenomen, maar er is geen garantie dat beide acties zullen plaatsvinden.</li>\r\n 	<li>Evenwicht tussen vraag en aanbod: Canadese marihuanakwekers hebben in eerste instantie grote uitbreidingsinitiatieven genomen om de productiecapaciteit te verhogen om aan de vraag naar recreatieve marihuana te voldoen. Sommige bedrijven hebben nu echter hun productie teruggeschroefd. Wanneer het aanbod de vraag overtreft, dalen de prijzen meestal. In dit scenario zouden de marihuanakwekers hun inkomsten en inkomsten kunnen zien dalen, wat hun voorraadprijzen zou schaden.</li>\r\n 	<li>Over-the-counter (OTC) voorraadrisico\'s: OTC-voorraden hoeven geen regelmatige financiële overzichten in te dienen, die belangrijk zijn voor beleggers, zodat zij het risico van de voorraden kunnen inschatten. Ze hoeven ook geen minimale marktcapsules aan te houden (de totale waarde van de uitstaande aandelen), wat kan resulteren in een laag liquiditeitsniveau (hoe gemakkelijk het aandeel kan worden gekocht of verkocht zonder dat de prijs ervan wordt beïnvloed).</li>\r\n 	<li>Financiële beperkingen: Veel cannabisbedrijven zijn onrendabel en worden geconfronteerd met het vooruitzicht dat hun liquide middelen opraken. Ze moeten vaak kapitaal aantrekken door nieuwe aandelen uit te geven, waardoor de waarde van bestaande aandelen verwatert. Zelfs met deze optie kan het verkrijgen van voldoende kapitaal om de groei te financieren een uitdaging zijn.</li>\r\n</ul>','Welke 3 tips kun je goed gebruiken als je wil gaan investeren in wiet aandelen? Een aantal belangrijke voorwaarden die je moet bekijken','','publish','closed','closed','','welke-3-tips-kun-je-goed-gebruiken-als-je-wil-gaan-investeren-in-wiet-aandelen-een-aantal-belangrijke-voorwaarden-die-je-moet-bekijken','','','2020-12-29 17:22:47','2020-12-29 17:22:47','',0,'http://platowinkels.nl/?p=98',0,'post','',0),(99,1,'2020-12-29 17:04:43','2020-12-29 17:04:43','','gkd121','','inherit','closed','closed','','gkd121','','','2020-12-29 17:04:43','2020-12-29 17:04:43','',98,'http://platowinkels.nl/wp-content/uploads/2020/12/gkd121.jpg',0,'attachment','image/jpeg',0),(100,1,'2020-12-29 17:05:10','2020-12-29 17:05:10','De wereldwijde marihuanamarkten groeien als een onkruid. De wereldwijde uitgaven aan cannabis liggen op schema naar de top van 29 miljard dollar in 2020, volgens Statista. Het totaal zal naar verwachting stijgen tot 63,5 miljard dollar in 2024, bij een samengesteld jaarlijks groeipercentage (CAGR) van 21%. Met dit soort indrukwekkende groei is het geen wonder dat veel beleggers geïnteresseerd zijn in beursgenoteerde cannabisaandelen.\r\n<h2>1. Begrijp de soorten marihuanaproducten, er zijn twee grote categorieën cannabisproducten:</h2>\r\n<ol>\r\n 	<li>Medische marihuana: Medische marihuana is over het algemeen legaal in 35 Amerikaanse staten plus het District of Columbia en in meer dan 30 landen. Voor het verkrijgen van medische marihuana is meestal een recept van een geautoriseerde zorgverlener nodig; het wordt vaak aan volwassenen voorgeschreven voor angst, depressie, pijn en stress.</li>\r\n 	<li>Recreatieve marihuana: Vijftien Amerikaanse staten plus D.C. hebben recreatieve marihuana gelegaliseerd voor gebruik door volwassenen. Recreatieve marihuana is legaal in Canada sinds oktober 2018 en legaal in Uruguay sinds 2014.</li>\r\n</ol>\r\n<h2>2. Ken de verschillende soorten marihuanabestanden, er zijn ook verschillende soorten marihuanabestanden, en de drie belangrijkste zijn:</h2>\r\nCannabiskwekers en -handelaren: Deze bedrijven, waaronder Canopy Growth, telen cannabis (vaak in binnenfaciliteiten en kassen), oogsten de gewassen en distribueren de eindproducten naar de klanten. Sommige richten zich ook op het exploiteren van winkels voor de verkoop van medische en/of recreatieve cannabis. Cannabisgerichte biotechs: Dit zijn biotechs (zoals GW Pharmaceuticals) die cannabinoïdedrugs ontwikkelen. Aanbieders van aanvullende producten en diensten: Deze bedrijven ondersteunen de marihuanakwekers door het leveren van producten en diensten zoals hydrocultuurproducten en verlichtingssystemen (een belangrijk aandachtsgebied voor Scotts Miracle-Gro), verpakkingsdiensten en managementdiensten.\r\n<h2>3. De risico\'s van het beleggen in marihuana aandelen begrijpen</h2>\r\nInvesteren in eender welk type van activa brengt een zekere mate van risico met zich mee. Beleggen in marihuana-aandelen heeft echter specifieke risico\'s die u moet begrijpen. Juridische en politieke risico\'s: De verkoop van marihuana blijft illegaal op federaal niveau in de VS. Bovendien legt de Amerikaanse federale wet strenge beperkingen op aan banken die zich bezighouden met marihuanagerelateerde bedrijven.\r\n<ul>\r\n 	<li>Als gevolg daarvan is het voor Amerikaanse cannabisbedrijven moeilijk om toegang te krijgen tot kritieke financiële diensten. De politieke steun voor het federaal legaliseren of decriminaliseren van marihuana is toegenomen, maar er is geen garantie dat beide acties zullen plaatsvinden.</li>\r\n 	<li>Evenwicht tussen vraag en aanbod: Canadese marihuanakwekers hebben in eerste instantie grote uitbreidingsinitiatieven genomen om de productiecapaciteit te verhogen om aan de vraag naar recreatieve marihuana te voldoen. Sommige bedrijven hebben nu echter hun productie teruggeschroefd. Wanneer het aanbod de vraag overtreft, dalen de prijzen meestal. In dit scenario zouden de marihuanakwekers hun inkomsten en inkomsten kunnen zien dalen, wat hun voorraadprijzen zou schaden.</li>\r\n 	<li>Over-the-counter (OTC) voorraadrisico\'s: OTC-voorraden hoeven geen regelmatige financiële overzichten in te dienen, die belangrijk zijn voor beleggers, zodat zij het risico van de voorraden kunnen inschatten. Ze hoeven ook geen minimale marktcapsules aan te houden (de totale waarde van de uitstaande aandelen), wat kan resulteren in een laag liquiditeitsniveau (hoe gemakkelijk het aandeel kan worden gekocht of verkocht zonder dat de prijs ervan wordt beïnvloed).</li>\r\n 	<li>Financiële beperkingen: Veel cannabisbedrijven zijn onrendabel en worden geconfronteerd met het vooruitzicht dat hun liquide middelen opraken. Ze moeten vaak kapitaal aantrekken door nieuwe aandelen uit te geven, waardoor de waarde van bestaande aandelen verwatert. Zelfs met deze optie kan het verkrijgen van voldoende kapitaal om de groei te financieren een uitdaging zijn.</li>\r\n</ul>','Welke 3 tips kun je goed gebruiken als je wil gaan investeren in wiet aandelen? Een aantal belangrijke voorwaarden die je moet bekijken','','inherit','closed','closed','','98-revision-v1','','','2020-12-29 17:05:10','2020-12-29 17:05:10','',98,'http://platowinkels.nl/98-revision-v1/',0,'revision','',0),(101,1,'2020-12-29 17:22:47','2020-12-29 17:22:47','De wereldwijde marihuanamarkten groeien als een onkruid. De wereldwijde uitgaven aan cannabis liggen op schema naar de top van 29 miljard dollar in 2020, volgens Statista. Het totaal zal naar verwachting stijgen tot 63,5 miljard dollar in 2024, bij een samengesteld jaarlijks groeipercentage (CAGR) van 21%. Met dit soort indrukwekkende groei is het geen wonder dat veel beleggers geïnteresseerd zijn in beursgenoteerde cannabisaandelen. Ook in Nederland is er onderzoek gedaan, op deze site <a href=\"https://spaarbuidel.nl/marihuana-aandelen/\">heb je bijvoorbeeld 1 onderzoek naar wiet aandelen.</a>\r\n<h2>1. Begrijp de soorten marihuanaproducten, er zijn twee grote categorieën cannabisproducten:</h2>\r\n<ol>\r\n 	<li>Medische marihuana: Medische marihuana is over het algemeen legaal in 35 Amerikaanse staten plus het District of Columbia en in meer dan 30 landen. Voor het verkrijgen van medische marihuana is meestal een recept van een geautoriseerde zorgverlener nodig; het wordt vaak aan volwassenen voorgeschreven voor angst, depressie, pijn en stress.</li>\r\n 	<li>Recreatieve marihuana: Vijftien Amerikaanse staten plus D.C. hebben recreatieve marihuana gelegaliseerd voor gebruik door volwassenen. Recreatieve marihuana is legaal in Canada sinds oktober 2018 en legaal in Uruguay sinds 2014.</li>\r\n</ol>\r\n<h2>2. Ken de verschillende soorten marihuanabestanden, er zijn ook verschillende soorten marihuanabestanden, en de drie belangrijkste zijn:</h2>\r\nCannabiskwekers en -handelaren: Deze bedrijven, waaronder Canopy Growth, telen cannabis (vaak in binnenfaciliteiten en kassen), oogsten de gewassen en distribueren de eindproducten naar de klanten. Sommige richten zich ook op het exploiteren van winkels voor de verkoop van medische en/of recreatieve cannabis. Cannabisgerichte biotechs: Dit zijn biotechs (zoals GW Pharmaceuticals) die cannabinoïdedrugs ontwikkelen. Aanbieders van aanvullende producten en diensten: Deze bedrijven ondersteunen de marihuanakwekers door het leveren van producten en diensten zoals hydrocultuurproducten en verlichtingssystemen (een belangrijk aandachtsgebied voor Scotts Miracle-Gro), verpakkingsdiensten en managementdiensten. In Nederland zijn er verschillende merken die <a href=\"https://spaarbuidel.nl/beleggen/accenture-aandelen/\">interessant zijn zoals de aandelen van Accenture.</a>\r\n<h2>3. De risico\'s van het beleggen in marihuana aandelen begrijpen</h2>\r\nInvesteren in eender welk type van activa brengt een zekere mate van risico met zich mee. Beleggen in marihuana-aandelen heeft echter specifieke risico\'s die u moet begrijpen. Juridische en politieke risico\'s: De verkoop van marihuana blijft illegaal op federaal niveau in de VS. Bovendien legt de Amerikaanse federale wet strenge beperkingen op aan banken die zich bezighouden met marihuanagerelateerde bedrijven.\r\n<ul>\r\n 	<li>Als gevolg daarvan is het voor Amerikaanse cannabisbedrijven moeilijk om toegang te krijgen tot kritieke financiële diensten. De politieke steun voor het federaal legaliseren of decriminaliseren van marihuana is toegenomen, maar er is geen garantie dat beide acties zullen plaatsvinden.</li>\r\n 	<li>Evenwicht tussen vraag en aanbod: Canadese marihuanakwekers hebben in eerste instantie grote uitbreidingsinitiatieven genomen om de productiecapaciteit te verhogen om aan de vraag naar recreatieve marihuana te voldoen. Sommige bedrijven hebben nu echter hun productie teruggeschroefd. Wanneer het aanbod de vraag overtreft, dalen de prijzen meestal. In dit scenario zouden de marihuanakwekers hun inkomsten en inkomsten kunnen zien dalen, wat hun voorraadprijzen zou schaden.</li>\r\n 	<li>Over-the-counter (OTC) voorraadrisico\'s: OTC-voorraden hoeven geen regelmatige financiële overzichten in te dienen, die belangrijk zijn voor beleggers, zodat zij het risico van de voorraden kunnen inschatten. Ze hoeven ook geen minimale marktcapsules aan te houden (de totale waarde van de uitstaande aandelen), wat kan resulteren in een laag liquiditeitsniveau (hoe gemakkelijk het aandeel kan worden gekocht of verkocht zonder dat de prijs ervan wordt beïnvloed).</li>\r\n 	<li>Financiële beperkingen: Veel cannabisbedrijven zijn onrendabel en worden geconfronteerd met het vooruitzicht dat hun liquide middelen opraken. Ze moeten vaak kapitaal aantrekken door nieuwe aandelen uit te geven, waardoor de waarde van bestaande aandelen verwatert. Zelfs met deze optie kan het verkrijgen van voldoende kapitaal om de groei te financieren een uitdaging zijn.</li>\r\n</ul>','Welke 3 tips kun je goed gebruiken als je wil gaan investeren in wiet aandelen? Een aantal belangrijke voorwaarden die je moet bekijken','','inherit','closed','closed','','98-revision-v1','','','2020-12-29 17:22:47','2020-12-29 17:22:47','',98,'http://platowinkels.nl/98-revision-v1/',0,'revision','',0),(105,1,'2021-06-01 17:56:28','2021-06-01 17:56:28','Uit cijfers blijkt hoeveel tests zijn afgelast vanwege het coronavirus.\r\n\r\n&nbsp;\r\n\r\nOFFICIËLE cijfers hebben onthuld hoeveel rijexamens in Galashiels en Peebles zijn afgelast vanwege de pandemie van het coronavirus.\r\n\r\n&nbsp;\r\n\r\nGegevens over de redenen achter annuleringen van praktische tests in het hele land worden gepubliceerd door het Driver and Vehicle Standards Agency.\r\n\r\n&nbsp;\r\n\r\nDe laatste update - uitgebracht in maart van dit jaar - laat zien dat 128 rijexamens in Galashiels werden afgeblazen vanwege de pandemie tussen april en december 2020. <a href=\"https://www.autotheorie.nl/\">Auto theorie examen leren</a> kan online.\r\n\r\n&nbsp;\r\n\r\nhttps://youtu.be/B6p2wMkhAaA\r\n\r\n&nbsp;\r\n\r\nUit eerdere cijfers blijkt dat in maart vorig jaar 57 werden geannuleerd, waardoor in totaal 185 tests werden uitgevoerd die sinds het begin van de pandemie niet in de stad zijn uitgevoerd vanwege COVID-19.\r\n\r\n&nbsp;\r\n\r\nHet hoogste totaal dat gedurende een maand in Galashiels werd geannuleerd, was in april vorig jaar, toen 66 werden afgelast. De laagste was in juli (1).\r\n\r\n&nbsp;\r\n\r\nCoronavirus was tussen maart en december vorig jaar niet de enige reden voor annulering van de test in Galashiels.\r\n\r\n&nbsp;\r\n\r\nDrie tests werden geannuleerd wegens medische afwezigheid en nog eens drie werden afgelast wegens natuurrampen - ongunstige weersomstandigheden en slecht licht.\r\n\r\n&nbsp;\r\n\r\nBij Peebles Test Center werden tussen april en december 2020 63 tests afgeblazen vanwege de pandemie.\r\n\r\n&nbsp;\r\n\r\nIn maart vorig jaar werden er 10 geannuleerd, wat in totaal 73 tests oplevert die niet in Peebles zijn uitgevoerd vanwege COVID-19. <a href=\"https://www.theorieexamenoefenen.net/\">Theorieexamenoefenen.net</a> is duidelijker.\r\n\r\n&nbsp;\r\n\r\nDe overgrote meerderheid van de geannuleerde tests in Peebles vond plaats in april vorig jaar, toen 41 werden afgeblazen.\r\n\r\n&nbsp;\r\n\r\nIn juni gingen 14 tests niet door vanwege de pandemie, terwijl er in december acht werden afgelast.\r\n\r\n&nbsp;\r\n\r\nAnders dan in Galashiels was het coronavirus vorig jaar tussen maart en december de enige reden voor annulering van de test in Peebles.\r\n\r\n&nbsp;\r\n\r\nRijlessen en tests zijn in Schotland de afgelopen 14 maanden enorm verstoord, met gebieden van niveau 4 die geen enkele vorm van autolessen kunnen volgen, \"tenzij alle inzittenden lid zijn van hetzelfde huishouden\".\r\n\r\n&nbsp;','Coronavirus: annuleringsgegevens van Galashiels rijexamen','','publish','closed','closed','','coronavirus-annuleringsgegevens-van-galashiels-rijexamen','','','2021-06-01 17:56:28','2021-06-01 17:56:28','',0,'http://platowinkels.nl/?p=105',0,'post','',0),(106,1,'2021-06-01 17:55:06','2021-06-01 17:55:06','','4dsf','','inherit','closed','closed','','4dsf','','','2021-06-01 17:55:06','2021-06-01 17:55:06','',105,'http://platowinkels.nl/wp-content/uploads/2021/06/4dsf.jpg',0,'attachment','image/jpeg',0),(107,1,'2021-06-01 17:56:28','2021-06-01 17:56:28','Uit cijfers blijkt hoeveel tests zijn afgelast vanwege het coronavirus.\r\n\r\n&nbsp;\r\n\r\nOFFICIËLE cijfers hebben onthuld hoeveel rijexamens in Galashiels en Peebles zijn afgelast vanwege de pandemie van het coronavirus.\r\n\r\n&nbsp;\r\n\r\nGegevens over de redenen achter annuleringen van praktische tests in het hele land worden gepubliceerd door het Driver and Vehicle Standards Agency.\r\n\r\n&nbsp;\r\n\r\nDe laatste update - uitgebracht in maart van dit jaar - laat zien dat 128 rijexamens in Galashiels werden afgeblazen vanwege de pandemie tussen april en december 2020. <a href=\"https://www.autotheorie.nl/\">Auto theorie examen leren</a> kan online.\r\n\r\n&nbsp;\r\n\r\nhttps://youtu.be/B6p2wMkhAaA\r\n\r\n&nbsp;\r\n\r\nUit eerdere cijfers blijkt dat in maart vorig jaar 57 werden geannuleerd, waardoor in totaal 185 tests werden uitgevoerd die sinds het begin van de pandemie niet in de stad zijn uitgevoerd vanwege COVID-19.\r\n\r\n&nbsp;\r\n\r\nHet hoogste totaal dat gedurende een maand in Galashiels werd geannuleerd, was in april vorig jaar, toen 66 werden afgelast. De laagste was in juli (1).\r\n\r\n&nbsp;\r\n\r\nCoronavirus was tussen maart en december vorig jaar niet de enige reden voor annulering van de test in Galashiels.\r\n\r\n&nbsp;\r\n\r\nDrie tests werden geannuleerd wegens medische afwezigheid en nog eens drie werden afgelast wegens natuurrampen - ongunstige weersomstandigheden en slecht licht.\r\n\r\n&nbsp;\r\n\r\nBij Peebles Test Center werden tussen april en december 2020 63 tests afgeblazen vanwege de pandemie.\r\n\r\n&nbsp;\r\n\r\nIn maart vorig jaar werden er 10 geannuleerd, wat in totaal 73 tests oplevert die niet in Peebles zijn uitgevoerd vanwege COVID-19. <a href=\"https://www.theorieexamenoefenen.net/\">Theorieexamenoefenen.net</a> is duidelijker.\r\n\r\n&nbsp;\r\n\r\nDe overgrote meerderheid van de geannuleerde tests in Peebles vond plaats in april vorig jaar, toen 41 werden afgeblazen.\r\n\r\n&nbsp;\r\n\r\nIn juni gingen 14 tests niet door vanwege de pandemie, terwijl er in december acht werden afgelast.\r\n\r\n&nbsp;\r\n\r\nAnders dan in Galashiels was het coronavirus vorig jaar tussen maart en december de enige reden voor annulering van de test in Peebles.\r\n\r\n&nbsp;\r\n\r\nRijlessen en tests zijn in Schotland de afgelopen 14 maanden enorm verstoord, met gebieden van niveau 4 die geen enkele vorm van autolessen kunnen volgen, \"tenzij alle inzittenden lid zijn van hetzelfde huishouden\".\r\n\r\n&nbsp;','Coronavirus: annuleringsgegevens van Galashiels rijexamen','','inherit','closed','closed','','105-revision-v1','','','2021-06-01 17:56:28','2021-06-01 17:56:28','',105,'http://platowinkels.nl/?p=107',0,'revision','',0),(108,1,'2021-06-02 05:25:22','0000-00-00 00:00:00','FILE – In this Aug. 28, 2013, file photo, Joseph Maldonado-Passage, also known as Joe Exotic, answers a question during an interview at the zoo he runs in Wynnewood, Okla. The Oklahoma zoo, featured in Netflix’s “Tiger King” documentary, has closed after federal authorities investigated it for alleged maltreatment of animals and suspended its license. The Greater Wynnewood Exotic Animal Park closed to the public after the U.S. Department of Agriculture on Monday, Aug. 17, 2020, suspended the exhibitor license for current-owner Jeff Lowe for 21 days. <a href=\"https://cryptoclan.nl/welke-crypto-kopen/\">Welke cryptomunt kopen tips</a> is online mogelijk?\n\n&nbsp;\n\nhttps://youtu.be/gt00Lw-veko\n\n&nbsp;\n\nOKLAHOMA CITY (KFOR) – The Tiger King pop culture wave has now crashed onto cryptocurrency.\n\n&nbsp;\n\nTiger-King Crypto Coins are now available for purchase, according to the website of Joe Exotic, whose real name is Joseph Maldonado-Passage. Money raised from the coins will go toward a defense fund created for Maldonado-Passage, the self-proclaimed Tiger King.\n\n&nbsp;\n\nCryptocurrency is digital money secured by encryption technology.\n\n&nbsp;\n\n“No tigers left at Tiger King Park,” Federal law enforcement seizes 68 big cats, jaguar\n\nMaldonado-Passage is currently serving a 22-year prison sentence for two counts of hiring someone to murder Carole Baskin, a big cat advocate and his long-time rival, as well as 17 federal wildlife violations that include killing tigers he kept at his Greater Wynnewood Exotic Animal Park.<a href=\"https://cryptoclan.nl/crypto-staken/\"> Crypto staking</a> kun je online regelen.\n\n&nbsp;\n\nThe story of Maldonado-Passage and his feud with Baskin was told in the Netflix docuseries “Tiger King: Murder, Mayhem and Madness,” which became a massive hit for the streaming service.\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;','Tiger King is now a cryptocoin','','draft','closed','closed','','','','','2021-06-02 05:25:22','2021-06-02 05:25:22','',0,'http://platowinkels.nl/?p=108',0,'post','',0),(109,1,'2021-06-02 05:23:47','2021-06-02 05:23:47','','4fdg','','inherit','closed','closed','','4fdg','','','2021-06-02 05:23:47','2021-06-02 05:23:47','',108,'http://platowinkels.nl/wp-content/uploads/2021/06/4fdg.jpg',0,'attachment','image/jpeg',0),(110,1,'2021-06-02 05:25:23','2021-06-02 05:25:23','<iframe title=\"TOP 5 CRYPTO COINS FOR JUNE 2021!! ?\" width=\"640\" height=\"360\" src=\"https://www.youtube.com/embed/gt00Lw-veko?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>','','','publish','closed','closed','','e1fb1b996a97af8ab7e9d7449e92f194','','','2021-06-02 05:25:23','2021-06-02 05:25:23','',0,'http://platowinkels.nl/e1fb1b996a97af8ab7e9d7449e92f194/',0,'oembed_cache','',0),(111,1,'2021-06-02 16:15:10','2021-06-02 16:15:10','BESTAND – In deze bestandsfoto van 28 augustus 2013 beantwoordt Joseph Maldonado-Passage, ook bekend als Joe Exotic, een vraag tijdens een interview in de dierentuin die hij runt in Wynnewood, Okla. ”-documentaire, is gesloten nadat de federale autoriteiten het hadden onderzocht op vermeende mishandeling van dieren en de vergunning hadden opgeschort. Het Greater Wynnewood Exotic Animal Park is voor het publiek gesloten nadat het Amerikaanse ministerie van landbouw op maandag 17 augustus 2020 de exposantenvergunning voor de huidige eigenaar Jeff Lowe voor 21 dagen heeft opgeschort. <a href=\"https://cryptoclan.nl/welke-crypto-kopen/\">welke cryptomunt kopen tips</a>\r\n\r\nis online mogelijk?\r\n\r\n&nbsp;\r\n\r\nhttps://youtu.be/gt00Lw-veko\r\n\r\n&nbsp;\r\n\r\nOKLAHOMA CITY (KFOR) - De popcultuurgolf van Tiger King is nu gecrasht op cryptocurrency.\r\n\r\n&nbsp;\r\n\r\nTiger-King Crypto Coins zijn nu beschikbaar voor aankoop, volgens de website van Joe Exotic, wiens echte naam Joseph Maldonado-Passage is. Het geld dat met de munten wordt opgehaald, gaat naar een defensiefonds dat is opgericht voor Maldonado-Passage, de zelfverklaarde Tiger King.\r\n\r\n&nbsp;\r\n\r\nCryptocurrency is digitaal geld dat wordt beveiligd door coderingstechnologie.\r\n\r\n&nbsp;\r\n\r\n\"Geen tijgers meer in Tiger King Park\", federale politie neemt 68 grote katten in beslag, jaguar\r\n\r\nMaldonado-Passage zit momenteel een gevangenisstraf van 22 jaar uit voor twee tellingen van het inhuren van iemand om Carole Baskin, een grote kattenadvocaat en zijn oude rivaal, te vermoorden, evenals voor 17 federale schendingen van wilde dieren, waaronder het doden van tijgers die hij in zijn Greater Wynnewood Exotisch Dierenpark. <a href=\"https://cryptoclan.nl/crypto-staken/\">Crypto staking</a> kun je online regelen.\r\n\r\n&nbsp;\r\n\r\nHet verhaal van Maldonado-Passage en zijn vete met Baskin werd verteld in de Netflix-docuserie \"Tiger King: Murder, Mayhem and Madness\", die een enorme hit werd voor de streamingdienst.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Tiger King is nu een cryptomunt','','publish','closed','closed','','tiger-king-is-nu-een-cryptomunt','','','2021-06-02 16:15:10','2021-06-02 16:15:10','',0,'http://platowinkels.nl/?p=111',0,'post','',0),(112,1,'2021-06-02 16:14:01','2021-06-02 16:14:01','','4fdg','','inherit','closed','closed','','4fdg-2','','','2021-06-02 16:14:01','2021-06-02 16:14:01','',111,'http://platowinkels.nl/wp-content/uploads/2021/06/4fdg-1.jpg',0,'attachment','image/jpeg',0),(113,1,'2021-06-02 16:15:10','2021-06-02 16:15:10','BESTAND – In deze bestandsfoto van 28 augustus 2013 beantwoordt Joseph Maldonado-Passage, ook bekend als Joe Exotic, een vraag tijdens een interview in de dierentuin die hij runt in Wynnewood, Okla. ”-documentaire, is gesloten nadat de federale autoriteiten het hadden onderzocht op vermeende mishandeling van dieren en de vergunning hadden opgeschort. Het Greater Wynnewood Exotic Animal Park is voor het publiek gesloten nadat het Amerikaanse ministerie van landbouw op maandag 17 augustus 2020 de exposantenvergunning voor de huidige eigenaar Jeff Lowe voor 21 dagen heeft opgeschort. <a href=\"https://cryptoclan.nl/welke-crypto-kopen/\">welke cryptomunt kopen tips</a>\r\n\r\nis online mogelijk?\r\n\r\n&nbsp;\r\n\r\nhttps://youtu.be/gt00Lw-veko\r\n\r\n&nbsp;\r\n\r\nOKLAHOMA CITY (KFOR) - De popcultuurgolf van Tiger King is nu gecrasht op cryptocurrency.\r\n\r\n&nbsp;\r\n\r\nTiger-King Crypto Coins zijn nu beschikbaar voor aankoop, volgens de website van Joe Exotic, wiens echte naam Joseph Maldonado-Passage is. Het geld dat met de munten wordt opgehaald, gaat naar een defensiefonds dat is opgericht voor Maldonado-Passage, de zelfverklaarde Tiger King.\r\n\r\n&nbsp;\r\n\r\nCryptocurrency is digitaal geld dat wordt beveiligd door coderingstechnologie.\r\n\r\n&nbsp;\r\n\r\n\"Geen tijgers meer in Tiger King Park\", federale politie neemt 68 grote katten in beslag, jaguar\r\n\r\nMaldonado-Passage zit momenteel een gevangenisstraf van 22 jaar uit voor twee tellingen van het inhuren van iemand om Carole Baskin, een grote kattenadvocaat en zijn oude rivaal, te vermoorden, evenals voor 17 federale schendingen van wilde dieren, waaronder het doden van tijgers die hij in zijn Greater Wynnewood Exotisch Dierenpark. <a href=\"https://cryptoclan.nl/crypto-staken/\">Crypto staking</a> kun je online regelen.\r\n\r\n&nbsp;\r\n\r\nHet verhaal van Maldonado-Passage en zijn vete met Baskin werd verteld in de Netflix-docuserie \"Tiger King: Murder, Mayhem and Madness\", die een enorme hit werd voor de streamingdienst.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Tiger King is nu een cryptomunt','','inherit','closed','closed','','111-revision-v1','','','2021-06-02 16:15:10','2021-06-02 16:15:10','',111,'http://platowinkels.nl/?p=113',0,'revision','',0),(114,0,'2021-10-07 14:27:57','2021-10-07 14:27:57','<iframe title=\"Auto Theorie Examen Oefenen 1\" width=\"640\" height=\"360\" src=\"https://www.youtube.com/embed/B6p2wMkhAaA?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>','','','publish','closed','closed','','b8ccfc65e9b99378973175d43d37794c','','','2021-10-07 14:27:57','2021-10-07 14:27:57','',0,'http://platowinkels.nl/b8ccfc65e9b99378973175d43d37794c/',0,'oembed_cache','',0),(116,1,'2022-04-11 15:54:20','2022-04-11 15:54:20','Bitcoin kan het moeilijk hebben om op korte termijn een V-vormig herstel naar recente hoogtepunten in kaart te brengen, waarbij on-chain activiteit een verhoogde verkoopdruk op de markt laat zien.\n\n&nbsp;\n\nDe uitwisselingsinstroomindicator van Blockchain-analysebedrijf CryptoQuant - die het 144-blok (ongeveer 24-uurs) gemiddelde van gemiddelde bitcoin-stortingen op grote cryptocurrency-uitwisselingen meet - is gestegen tot 2,5 bitcoin, het hoogste niveau sinds 20 maart.\n\n&nbsp;\n\nMet andere woorden, de gemiddelde omvang van inkomende transacties naar handelsplatforms is gestegen tot het hoogste punt in acht maanden. Ontology is de nieuwe technologie.\n\n&nbsp;\n\nhttps://youtu.be/rgAkANz4kCw\n\n&nbsp;\n\nBitcoin: gemiddelde instroom van alle uitwisselingen\n\n\"De gegevens laten zien dat walvissen [grote handelaren] hun munten naar uitwisselingen overbrengen\", vertelde CryptoQuant CEO Ki-Young Ju aan CoinDesk. \"De cryptocurrency handelt gewoonlijk zijwaarts naar negatief wanneer walvissen actief worden op beurzen.\"\n\n&nbsp;\n\nBitcoin handelt in de buurt van $ 16.820 op het moment van drukken, wat neerkomt op een daling van 2% op 24-uurbasis. De cryptocurrency zag vrijdag vroeg een afwijzing van meer dan $ 17.400.\n\n&nbsp;\n\nDe mogelijkheid dat prijzen dalen tot of onder het dieptepunt van donderdag van $ 16.327, kan niet worden uitgesloten, aangezien de gemiddelde instroom nu boven twee bitcoin beweegt - in de \'gevarenzone\' van CryptoQuant. NEO is veel drukker.\n\n&nbsp;\n\nBitcoin: gemiddelde instroom van alle uitwisselingen (2020)\n\nEen waarde van meer dan 2,00 op de indicator heeft consequent de weg geëffend voor opmerkelijke prijsdalingen dit jaar. De indicator steeg minstens een week vóór de daling van 40% op 12 maart boven dat niveau.\n\n&nbsp;\n\nBitcoin: gemiddelde instroom van alle uitwisselingen (2018)\n\nEvenzo werd de scherpe uitverkoop van november 2018 voorafgegaan door een sterke stijging van de maatstaf.\n\n&nbsp;\n\nTechnische grafiekstudies wijzen op een lage kans op een onmiddellijke sprong naar niveaus boven $ 19.000.\n\n&nbsp;\n\nDe prijsdaling van donderdag werd ondersteund door het hoogste verkoopvolume (rode balk) sinds 1 juni. Als zodanig lijkt de terugval op peil te houden. Momentumindicatoren voor de korte termijn, zoals de vijf- en tiendaagse voortschrijdende gemiddelden, kijken nu naar het zuiden.\n\n&nbsp;','Snel herstel van de Bitcoin-prijs lijkt twijfelachtig als walvissen munten naar uitwisselingen verplaatsen','','inherit','closed','closed','','94-autosave-v1','','','2022-04-11 15:54:20','2022-04-11 15:54:20','',94,'http://platowinkels.nl/?p=116',0,'revision','',0),(117,1,'2022-04-11 15:56:17','2022-04-11 15:56:17','Bitcoin kan het moeilijk hebben om op korte termijn een V-vormig herstel naar recente hoogtepunten in kaart te brengen, waarbij on-chain activiteit een verhoogde verkoopdruk op de markt laat zien.\r\n\r\n&nbsp;\r\n\r\nDe uitwisselingsinstroomindicator van Blockchain-analysebedrijf CryptoQuant - die het 144-blok (ongeveer 24-uurs) gemiddelde van gemiddelde bitcoin-stortingen op grote cryptocurrency-uitwisselingen meet - is gestegen tot 2,5 bitcoin, het hoogste niveau sinds 20 maart.\r\n\r\n&nbsp;\r\n\r\nMet andere woorden, de gemiddelde omvang van inkomende transacties naar handelsplatforms is gestegen tot het hoogste punt in acht maanden. Ontology is de nieuwe technologie.\r\n\r\n&nbsp;\r\n\r\nhttps://youtu.be/rgAkANz4kCw\r\n\r\n&nbsp;\r\n\r\nBitcoin: gemiddelde instroom van alle uitwisselingen\r\n\r\n\"De gegevens laten zien dat walvissen [grote handelaren] hun munten naar uitwisselingen overbrengen\", vertelde CryptoQuant CEO Ki-Young Ju aan CoinDesk. \"De cryptocurrency handelt gewoonlijk zijwaarts naar negatief wanneer walvissen actief worden op beurzen.\"\r\n\r\n&nbsp;\r\n\r\nBitcoin handelt in de buurt van $ 16.820 op het moment van drukken, wat neerkomt op een daling van 2% op 24-uurbasis. De cryptocurrency zag vrijdag vroeg een afwijzing van meer dan $ 17.400.\r\n\r\n&nbsp;\r\n\r\nDe mogelijkheid dat prijzen dalen tot of onder het dieptepunt van donderdag van $ 16.327, kan niet worden uitgesloten, aangezien de gemiddelde instroom nu boven twee bitcoin beweegt - in de \'gevarenzone\' van CryptoQuant. NEO is veel drukker.\r\n\r\n&nbsp;\r\n\r\nBitcoin: gemiddelde instroom van alle uitwisselingen (2020)\r\n\r\nEen waarde van meer dan 2,00 op de indicator heeft consequent de weg geëffend voor opmerkelijke prijsdalingen dit jaar. De indicator steeg minstens een week vóór de daling van 40% op 12 maart boven dat niveau.\r\n\r\n&nbsp;\r\n\r\nBitcoin: gemiddelde instroom van alle uitwisselingen (2018)\r\n\r\nEvenzo werd de scherpe uitverkoop van november 2018 voorafgegaan door een sterke stijging van de maatstaf.\r\n\r\n&nbsp;\r\n\r\nTechnische grafiekstudies wijzen op een lage kans op een onmiddellijke sprong naar niveaus boven $ 19.000.\r\n\r\n&nbsp;\r\n\r\nDe prijsdaling van donderdag werd ondersteund door het hoogste verkoopvolume (rode balk) sinds 1 juni. Als zodanig lijkt de terugval op peil te houden. Momentumindicatoren voor de korte termijn, zoals de vijf- en tiendaagse voortschrijdende gemiddelden, kijken nu naar het zuiden.\r\n\r\n&nbsp;','Snel herstel van de Bitcoin-prijs lijkt twijfelachtig als walvissen munten naar uitwisselingen verplaatsen','','inherit','closed','closed','','94-revision-v1','','','2022-04-11 15:56:17','2022-04-11 15:56:17','',94,'http://platowinkels.nl/?p=117',0,'revision','',0),(119,1,'2022-12-10 09:07:50','2022-12-10 09:07:50','Of u nu een bedrijf runt of gewoon op zoek bent naar een loopbaanverandering, een studie van financiën kan u helpen beter geïnformeerde beslissingen te nemen. Het internet is een geweldige bron voor het ontdekken van de financiële sector en de soorten beschikbare banen.\r\n\r\nFinanciën is een multidisciplinair veld dat economie, boekhouding en management bestudeert. Het gaat om het beheer van geld, krediet en investeringen. Het wordt gebruikt door particulieren, bedrijven en overheden.\r\n\r\nFinanciën is een zeer belangrijk onderdeel van een organisatie. De financiële afdeling is verantwoordelijk om ervoor te zorgen dat het geld dat door een organisatie wordt gebruikt, correct wordt beheerd en toegewezen.\r\n\r\nFinanciële activiteiten omvatten inkoopactiva, het verkopen van activa, startende leningen en het onderhouden van rekeningen. Er zijn veel verschillende soorten financiën, waaronder investeringen, bedrijven en persoonlijk.\r\n\r\nEnkele van de meest populaire studiegebieden in financiën zijn risicobeheer, kapitaalmarkten en financiële instellingen<a href=\"https://www.mijnonlineidentiteit.nl/beste-cryptomunten-2022/\" target=\"_blank\" rel=\"noopener\"> </a><a href=\"https://www.mijnonlineidentiteit.nl/beste-cryptomunten-2022/\" target=\"_blank\" rel=\"noopener\">lijst met veelbelovende crypto</a>. Deze worden meestal behandeld in cursussen binnen de discipline van de economie. Andere onderwerpen zijn onder meer investeren, regelgeving en leveringsvoertuigen.\r\n\r\nEen belangrijke focus van de financieringstheorie is het bepalen van de kortingspercentages. Dit wordt gedaan door een bedrijfsactiva te vergelijken met zijn verplichtingen. Wanneer een bedrijf een teveel aan kosten heeft, kunnen ze geld lenen of investeren om een rendement te behalen.\r\n\r\nIn de economie van vandaag is de juiste financiering essentieel om ervoor te zorgen dat de economie groeit. Dit kan worden bereikt door fondsen te lenen of te beleggen in de publieke sector. Afhankelijk van het type entiteit, kan een bedrijf obligaties verkopen of aandelen uitgeven om geld in te zamelen.','Een studie van financiën kan u helpen betere beslissingen te nemen','','publish','closed','closed','','een-studie-van-financien-kan-u-helpen-betere-beslissingen-te-nemen','','','2022-12-10 09:07:50','2022-12-10 09:07:50','',0,'https://platowinkels.nl/?p=119',0,'post','',0),(120,1,'2022-12-10 09:07:50','2022-12-10 09:07:50','Of u nu een bedrijf runt of gewoon op zoek bent naar een loopbaanverandering, een studie van financiën kan u helpen beter geïnformeerde beslissingen te nemen. Het internet is een geweldige bron voor het ontdekken van de financiële sector en de soorten beschikbare banen.\r\n\r\nFinanciën is een multidisciplinair veld dat economie, boekhouding en management bestudeert. Het gaat om het beheer van geld, krediet en investeringen. Het wordt gebruikt door particulieren, bedrijven en overheden.\r\n\r\nFinanciën is een zeer belangrijk onderdeel van een organisatie. De financiële afdeling is verantwoordelijk om ervoor te zorgen dat het geld dat door een organisatie wordt gebruikt, correct wordt beheerd en toegewezen.\r\n\r\nFinanciële activiteiten omvatten inkoopactiva, het verkopen van activa, startende leningen en het onderhouden van rekeningen. Er zijn veel verschillende soorten financiën, waaronder investeringen, bedrijven en persoonlijk.\r\n\r\nEnkele van de meest populaire studiegebieden in financiën zijn risicobeheer, kapitaalmarkten en financiële instellingen<a href=\"https://www.mijnonlineidentiteit.nl/beste-cryptomunten-2022/\" target=\"_blank\" rel=\"noopener\"> </a><a href=\"https://www.mijnonlineidentiteit.nl/beste-cryptomunten-2022/\" target=\"_blank\" rel=\"noopener\">lijst met veelbelovende crypto</a>. Deze worden meestal behandeld in cursussen binnen de discipline van de economie. Andere onderwerpen zijn onder meer investeren, regelgeving en leveringsvoertuigen.\r\n\r\nEen belangrijke focus van de financieringstheorie is het bepalen van de kortingspercentages. Dit wordt gedaan door een bedrijfsactiva te vergelijken met zijn verplichtingen. Wanneer een bedrijf een teveel aan kosten heeft, kunnen ze geld lenen of investeren om een rendement te behalen.\r\n\r\nIn de economie van vandaag is de juiste financiering essentieel om ervoor te zorgen dat de economie groeit. Dit kan worden bereikt door fondsen te lenen of te beleggen in de publieke sector. Afhankelijk van het type entiteit, kan een bedrijf obligaties verkopen of aandelen uitgeven om geld in te zamelen.','Een studie van financiën kan u helpen betere beslissingen te nemen','','inherit','closed','closed','','119-revision-v1','','','2022-12-10 09:07:50','2022-12-10 09:07:50','',119,'https://platowinkels.nl/?p=120',0,'revision','',0);
/*!40000 ALTER TABLE `wp_posts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_term_relationships`
--

DROP TABLE IF EXISTS `wp_term_relationships`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_term_relationships` (
  `object_id` bigint unsigned NOT NULL DEFAULT '0',
  `term_taxonomy_id` bigint unsigned NOT NULL DEFAULT '0',
  `term_order` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`object_id`,`term_taxonomy_id`),
  KEY `term_taxonomy_id` (`term_taxonomy_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_term_relationships`
--

LOCK TABLES `wp_term_relationships` WRITE;
/*!40000 ALTER TABLE `wp_term_relationships` DISABLE KEYS */;
INSERT INTO `wp_term_relationships` VALUES (8,3,0),(8,4,0),(8,5,0),(11,3,0),(11,4,0),(11,5,0),(11,6,0),(42,7,0),(43,7,0),(44,7,0),(46,7,0),(47,7,0),(48,8,0),(49,8,0),(50,8,0),(51,9,0),(52,9,0),(53,9,0),(54,9,0),(83,10,0),(86,11,0),(90,12,0),(94,13,0),(98,12,0),(105,14,0),(108,2,0),(111,15,0),(119,2,0);
/*!40000 ALTER TABLE `wp_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_term_taxonomy`
--

DROP TABLE IF EXISTS `wp_term_taxonomy`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_term_taxonomy` (
  `term_taxonomy_id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `term_id` bigint unsigned NOT NULL DEFAULT '0',
  `taxonomy` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `description` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `parent` bigint unsigned NOT NULL DEFAULT '0',
  `count` bigint NOT NULL DEFAULT '0',
  PRIMARY KEY (`term_taxonomy_id`),
  UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
  KEY `taxonomy` (`taxonomy`)
) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_term_taxonomy`
--

LOCK TABLES `wp_term_taxonomy` WRITE;
/*!40000 ALTER TABLE `wp_term_taxonomy` DISABLE KEYS */;
INSERT INTO `wp_term_taxonomy` VALUES (1,1,'category','',0,0),(2,2,'category','',0,1),(3,3,'category','',0,2),(4,4,'category','',0,2),(5,5,'category','',0,2),(6,6,'category','',0,1),(7,7,'nav_menu','',0,5),(8,8,'nav_menu','',0,3),(9,9,'nav_menu','',0,4),(10,10,'category','',0,1),(11,11,'category','',0,1),(12,12,'category','',0,2),(13,13,'category','',0,1),(14,14,'category','',0,1),(15,15,'category','',0,1);
/*!40000 ALTER TABLE `wp_term_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_termmeta`
--

DROP TABLE IF EXISTS `wp_termmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_termmeta` (
  `meta_id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `term_id` bigint unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`meta_id`),
  KEY `term_id` (`term_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_termmeta`
--

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

--
-- Table structure for table `wp_terms`
--

DROP TABLE IF EXISTS `wp_terms`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_terms` (
  `term_id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `slug` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `term_group` bigint NOT NULL DEFAULT '0',
  PRIMARY KEY (`term_id`),
  KEY `slug` (`slug`(191)),
  KEY `name` (`name`(191))
) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_terms`
--

LOCK TABLES `wp_terms` WRITE;
/*!40000 ALTER TABLE `wp_terms` DISABLE KEYS */;
INSERT INTO `wp_terms` VALUES (1,'Uncategorized','uncategorized',0),(2,'My Blog','my-blog',0),(3,'Blog','blog',0),(4,'News','news',0),(5,'Philosopher','philosopher',0),(6,'Plato','plato',0),(7,'Main menu','main-menu',0),(8,'Top Menu','top-menu',0),(9,'Social Menu','social-menu',0),(10,'bitcoin en hoogtes','bitcoin-en-hoogtes',0),(11,'credit card en categorie','credit-card-en-categorie',0),(12,'aandeel en inkopen','aandeel-en-inkopen',0),(13,'biflatie en uitwisseling','biflatie-en-uitwisseling',0),(14,'theorie cijfers','theorie-cijfers',0),(15,'cryptoclan munten','cryptoclan-munten',0);
/*!40000 ALTER TABLE `wp_terms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_usermeta`
--

DROP TABLE IF EXISTS `wp_usermeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_usermeta` (
  `umeta_id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`umeta_id`),
  KEY `user_id` (`user_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=31 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_usermeta`
--

LOCK TABLES `wp_usermeta` WRITE;
/*!40000 ALTER TABLE `wp_usermeta` DISABLE KEYS */;
INSERT INTO `wp_usermeta` VALUES (1,1,'nickname','administrator'),(2,1,'first_name','Kyle'),(3,1,'last_name','Brown'),(4,1,'description',''),(5,1,'rich_editing','true'),(6,1,'syntax_highlighting','true'),(7,1,'comment_shortcuts','false'),(8,1,'admin_color','fresh'),(9,1,'use_ssl','0'),(10,1,'show_admin_bar_front','true'),(11,1,'locale',''),(12,1,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(13,1,'wp_user_level','10'),(14,1,'dismissed_wp_pointers',''),(15,1,'show_welcome_panel','1'),(16,1,'session_tokens','a:2:{s:64:\"f334e56ad57d44f431c4e4836afa0a25fe4e73b5c8d323630ffc81f86bb44c4e\";a:4:{s:10:\"expiration\";i:1679987909;s:2:\"ip\";s:9:\"127.0.0.1\";s:2:\"ua\";s:58:\"Mozilla/5.0 (compatible; MainWP/4.3.1; +http://mainwp.com)\";s:5:\"login\";i:1679815109;}s:64:\"79347f8dfca9379be4d8bd9c3684f047664a61527c47a8ea8320f9689ae72b2a\";a:4:{s:10:\"expiration\";i:1679987909;s:2:\"ip\";s:9:\"127.0.0.1\";s:2:\"ua\";s:58:\"Mozilla/5.0 (compatible; MainWP/4.3.1; +http://mainwp.com)\";s:5:\"login\";i:1679815109;}}'),(17,1,'wp_dashboard_quick_press_last_post_id','123'),(18,1,'community-events-location','a:1:{s:2:\"ip\";s:12:\"185.56.137.0\";}'),(19,1,'wp_user-settings','libraryContent=browse&editor=tinymce'),(20,1,'wp_user-settings-time','1603332908'),(22,1,'_yoast_wpseo_profile_updated','1597662616'),(23,1,'managenav-menuscolumnshidden','a:5:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";i:4;s:15:\"title-attribute\";}'),(24,1,'metaboxhidden_nav-menus','a:3:{i:0;s:30:\"add-post-type-wpautoterms_page\";i:1;s:12:\"add-post_tag\";i:2;s:15:\"add-post_format\";}'),(30,1,'wp_yoast_notifications','a:1:{i:0;a:2:{s:7:\"message\";O:61:\"Yoast\\WP\\SEO\\Presenters\\Admin\\Indexing_Notification_Presenter\":3:{s:18:\"\0*\0total_unindexed\";i:31;s:9:\"\0*\0reason\";s:23:\"home_url_option_changed\";s:20:\"\0*\0short_link_helper\";O:38:\"Yoast\\WP\\SEO\\Helpers\\Short_Link_Helper\":2:{s:17:\"\0*\0options_helper\";O:35:\"Yoast\\WP\\SEO\\Helpers\\Options_Helper\":0:{}s:17:\"\0*\0product_helper\";O:35:\"Yoast\\WP\\SEO\\Helpers\\Product_Helper\":0:{}}}s:7:\"options\";a:10:{s:4:\"type\";s:7:\"warning\";s:2:\"id\";s:13:\"wpseo-reindex\";s:4:\"user\";O:7:\"WP_User\":8:{s:4:\"data\";O:8:\"stdClass\":10:{s:2:\"ID\";s:1:\"1\";s:10:\"user_login\";s:13:\"administrator\";s:9:\"user_pass\";s:34:\"$P$BtIx3HRkl11cGJ1/5NMV03ZQcugJBv1\";s:13:\"user_nicename\";s:13:\"administrator\";s:10:\"user_email\";s:20:\"[email protected]\";s:8:\"user_url\";s:22:\"http://platowinkels.nl\";s:15:\"user_registered\";s:19:\"2020-07-03 20:57:53\";s:19:\"user_activation_key\";s:0:\"\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:10:\"Kyle Brown\";}s:2:\"ID\";i:1;s:4:\"caps\";a:1:{s:13:\"administrator\";b:1;}s:7:\"cap_key\";s:15:\"wp_capabilities\";s:5:\"roles\";a:1:{i:0;s:13:\"administrator\";}s:7:\"allcaps\";a:63:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;s:20:\"wpseo_manage_options\";b:1;s:13:\"administrator\";b:1;}s:6:\"filter\";N;s:16:\"\0WP_User\0site_id\";i:1;}s:5:\"nonce\";N;s:8:\"priority\";d:0.80000000000000004;s:9:\"data_json\";a:0:{}s:13:\"dismissal_key\";N;s:12:\"capabilities\";s:20:\"wpseo_manage_options\";s:16:\"capability_check\";s:3:\"all\";s:14:\"yoast_branding\";b:0;}}}');
/*!40000 ALTER TABLE `wp_usermeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_users`
--

DROP TABLE IF EXISTS `wp_users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_users` (
  `ID` bigint unsigned NOT NULL AUTO_INCREMENT,
  `user_login` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_pass` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_nicename` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_email` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_url` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `user_activation_key` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_status` int NOT NULL DEFAULT '0',
  `display_name` varchar(250) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`ID`),
  KEY `user_login_key` (`user_login`),
  KEY `user_nicename` (`user_nicename`),
  KEY `user_email` (`user_email`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_users`
--

LOCK TABLES `wp_users` WRITE;
/*!40000 ALTER TABLE `wp_users` DISABLE KEYS */;
INSERT INTO `wp_users` VALUES (1,'administrator','$P$BtIx3HRkl11cGJ1/5NMV03ZQcugJBv1','administrator','[email protected]','http://platowinkels.nl','2020-07-03 20:57:53','',0,'Kyle Brown');
/*!40000 ALTER TABLE `wp_users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wpil_keyword_select_links`
--

DROP TABLE IF EXISTS `wp_wpil_keyword_select_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_wpil_keyword_select_links` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `keyword_id` int unsigned NOT NULL,
  `post_id` int unsigned NOT NULL,
  `post_type` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL,
  `sentence_text` text COLLATE utf8mb4_unicode_ci,
  `case_keyword` text COLLATE utf8mb4_unicode_ci,
  `meta_data` text COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`id`),
  KEY `keyword_id` (`keyword_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wpil_keyword_select_links`
--

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

--
-- Table structure for table `wp_wpil_report_links`
--

DROP TABLE IF EXISTS `wp_wpil_report_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_wpil_report_links` (
  `link_id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `post_id` bigint unsigned NOT NULL,
  `clean_url` text COLLATE utf8mb4_unicode_ci,
  `raw_url` text COLLATE utf8mb4_unicode_ci,
  `host` text COLLATE utf8mb4_unicode_ci,
  `anchor` text COLLATE utf8mb4_unicode_ci,
  `internal` tinyint(1) DEFAULT '0',
  `has_links` tinyint(1) NOT NULL DEFAULT '0',
  `post_type` text COLLATE utf8mb4_unicode_ci,
  `location` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`link_id`),
  KEY `post_id` (`post_id`),
  KEY `clean_url` (`clean_url`(500))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wpil_report_links`
--

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

--
-- Table structure for table `wp_yoast_indexable`
--

DROP TABLE IF EXISTS `wp_yoast_indexable`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_yoast_indexable` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `permalink` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `permalink_hash` varchar(40) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `object_id` bigint DEFAULT NULL,
  `object_type` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `object_sub_type` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `author_id` bigint DEFAULT NULL,
  `post_parent` bigint DEFAULT NULL,
  `title` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `description` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `breadcrumb_title` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `post_status` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `is_public` tinyint(1) DEFAULT NULL,
  `is_protected` tinyint(1) DEFAULT '0',
  `has_public_posts` tinyint(1) DEFAULT NULL,
  `number_of_pages` int unsigned DEFAULT NULL,
  `canonical` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `primary_focus_keyword` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `primary_focus_keyword_score` int DEFAULT NULL,
  `readability_score` int DEFAULT NULL,
  `is_cornerstone` tinyint(1) DEFAULT '0',
  `is_robots_noindex` tinyint(1) DEFAULT '0',
  `is_robots_nofollow` tinyint(1) DEFAULT '0',
  `is_robots_noarchive` tinyint(1) DEFAULT '0',
  `is_robots_noimageindex` tinyint(1) DEFAULT '0',
  `is_robots_nosnippet` tinyint(1) DEFAULT '0',
  `twitter_title` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `twitter_image` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `twitter_description` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `twitter_image_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `twitter_image_source` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `open_graph_title` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `open_graph_description` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `open_graph_image` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `open_graph_image_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `open_graph_image_source` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `open_graph_image_meta` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `link_count` int DEFAULT NULL,
  `incoming_link_count` int DEFAULT NULL,
  `prominent_words_version` int unsigned DEFAULT NULL,
  `created_at` datetime DEFAULT NULL,
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `blog_id` bigint NOT NULL DEFAULT '1',
  `language` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `region` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `schema_page_type` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `schema_article_type` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `has_ancestors` tinyint(1) DEFAULT '0',
  `estimated_reading_time_minutes` int DEFAULT NULL,
  `version` int DEFAULT '1',
  `object_last_modified` datetime DEFAULT NULL,
  `object_published_at` datetime DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `object_type_and_sub_type` (`object_type`,`object_sub_type`),
  KEY `object_id_and_type` (`object_id`,`object_type`),
  KEY `permalink_hash_and_object_type` (`permalink_hash`,`object_type`),
  KEY `subpages` (`post_parent`,`object_type`,`post_status`,`object_id`),
  KEY `prominent_words` (`prominent_words_version`,`object_type`,`object_sub_type`,`post_status`),
  KEY `published_sitemap_index` (`object_published_at`,`is_robots_noindex`,`object_type`,`object_sub_type`)
) ENGINE=InnoDB AUTO_INCREMENT=100 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_yoast_indexable`
--

LOCK TABLES `wp_yoast_indexable` WRITE;
/*!40000 ALTER TABLE `wp_yoast_indexable` DISABLE KEYS */;
INSERT INTO `wp_yoast_indexable` VALUES (1,'https://platowinkels.nl/author/administrator/','45:e37991261bc40ce676dec8231dbb9d4c',1,'user',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'https://secure.gravatar.com/avatar/e239ae464029b311d4127331264ec45c?s=500&d=mm&r=g',NULL,NULL,'gravatar-image',NULL,NULL,'https://secure.gravatar.com/avatar/e239ae464029b311d4127331264ec45c?s=500&d=mm&r=g',NULL,'gravatar-image',NULL,NULL,NULL,NULL,'2020-08-17 11:01:05','2023-02-02 04:46:31',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-01-02 09:05:56','2020-08-17 10:56:19'),(2,'https://platowinkels.nl/een-boekbespreking-over-de-republiek-door-plato/','72:cf078352c49c8437856a5f7e724b3f76',8,'post','post',1,0,NULL,NULL,'Een boekbespreking over de Republiek door Plato','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://platowinkels.nl/wp-content/uploads/2020/08/600.jpg',NULL,'9','featured-image',NULL,NULL,'https://platowinkels.nl/wp-content/uploads/2020/08/600.jpg','9','featured-image','{\"width\":1280,\"height\":827,\"url\":\"https://platowinkels.nl/wp-content/uploads/2020/08/600.jpg\",\"path\":\"/opt/aphex/sites/platowinkels.nl/wp-content/uploads/2020/08/600.jpg\",\"size\":\"full\",\"id\":9,\"alt\":\"\",\"pixels\":1058560,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2020-08-17 11:01:05','2022-11-11 00:18:07',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-08-17 10:56:19','2020-08-17 10:56:19'),(3,NULL,NULL,9,'post','attachment',1,8,NULL,NULL,'600','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://platowinkels.nl/wp-content/uploads/2020/08/600.jpg',NULL,'9','attachment-image',NULL,NULL,'http://platowinkels.nl/wp-content/uploads/2020/08/600.jpg','9','attachment-image','{\"width\":1280,\"height\":827,\"url\":\"http://platowinkels.nl/wp-content/uploads/2020/08/600.jpg\",\"path\":\"/var/www/platowinkels.nl/public_html/wp-content/uploads/2020/08/600.jpg\",\"size\":\"full\",\"id\":9,\"alt\":\"\",\"pixels\":1058560,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2020-08-17 11:01:05','2022-11-11 00:12:12',1,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL),(4,'https://platowinkels.nl/talk-to-plato-using-quantum-physics/','60:0c04a9d56b8b652932d8c053495a7fa3',11,'post','post',1,0,NULL,NULL,'Talk to Plato Using Quantum Physics','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://platowinkels.nl/wp-content/uploads/2020/08/601.jpg',NULL,'12','featured-image',NULL,NULL,'https://platowinkels.nl/wp-content/uploads/2020/08/601.jpg','12','featured-image','{\"width\":1885,\"height\":1414,\"url\":\"https://platowinkels.nl/wp-content/uploads/2020/08/601.jpg\",\"path\":\"/opt/aphex/sites/platowinkels.nl/wp-content/uploads/2020/08/601.jpg\",\"size\":\"full\",\"id\":12,\"alt\":\"\",\"pixels\":2665390,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2020-08-17 11:01:05','2022-11-11 00:18:07',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-08-17 10:59:21','2020-08-17 10:59:21'),(5,NULL,NULL,12,'post','attachment',1,11,NULL,NULL,'601','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://platowinkels.nl/wp-content/uploads/2020/08/601.jpg',NULL,'12','attachment-image',NULL,NULL,'http://platowinkels.nl/wp-content/uploads/2020/08/601.jpg','12','attachment-image','{\"width\":1885,\"height\":1414,\"url\":\"http://platowinkels.nl/wp-content/uploads/2020/08/601.jpg\",\"path\":\"/var/www/platowinkels.nl/public_html/wp-content/uploads/2020/08/601.jpg\",\"size\":\"full\",\"id\":12,\"alt\":\"\",\"pixels\":2665390,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2020-08-17 11:01:05','2022-11-11 00:12:12',1,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL),(11,NULL,NULL,1,'term','category',NULL,NULL,NULL,NULL,'Uncategorized',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-08-17 11:01:05','2022-11-11 00:12:12',1,NULL,NULL,NULL,NULL,0,NULL,0,NULL,NULL),(12,'https://platowinkels.nl/category/my-blog/','41:a813fad05934fdec398f308b0c81b339',2,'term','category',NULL,NULL,NULL,NULL,'My Blog',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-08-17 11:01:05','2022-12-10 09:07:50',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-12-10 09:07:50','2022-12-10 09:07:50'),(13,'https://platowinkels.nl/category/blog/','38:9d47f8954005cf475fbf9f9b666a59c4',3,'term','category',NULL,NULL,NULL,NULL,'Blog',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-08-17 11:01:05','2022-11-11 11:24:13',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-08-17 10:59:21','2020-08-17 10:56:19'),(14,'https://platowinkels.nl/category/news/','38:10a2486b6c61bbb51d7abc121c6b4df5',4,'term','category',NULL,NULL,NULL,NULL,'News',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-08-17 11:01:05','2022-11-11 03:09:27',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-08-17 10:59:21','2020-08-17 10:56:19'),(15,'https://platowinkels.nl/category/philosopher/','45:38c8a64af70af654212abed49dafeecb',5,'term','category',NULL,NULL,NULL,NULL,'Philosopher',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-08-17 11:01:05','2022-11-17 10:45:46',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-08-17 10:59:21','2020-08-17 10:56:19'),(16,'https://platowinkels.nl/category/plato/','39:62d0f7f6f73a05aa5d985e13301bc8c8',6,'term','category',NULL,NULL,NULL,NULL,'Plato',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-08-17 11:01:05','2022-11-12 02:46:32',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-08-17 10:59:21','2020-08-17 10:59:21'),(17,NULL,NULL,NULL,'system-page','404',NULL,NULL,'Page not found %%sep%% %%sitename%%',NULL,'Error 404: Page not found',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-08-17 11:01:05','2022-12-07 09:04:37',1,NULL,NULL,NULL,NULL,0,NULL,1,NULL,NULL),(18,NULL,NULL,NULL,'system-page','search-result',NULL,NULL,'You searched for %%searchphrase%% %%page%% %%sep%% %%sitename%%',NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-08-17 11:01:05','2022-12-07 09:04:37',1,NULL,NULL,NULL,NULL,0,NULL,1,NULL,NULL),(19,NULL,NULL,NULL,'date-archive',NULL,NULL,NULL,'%%date%% %%page%% %%sep%% %%sitename%%','',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-08-17 11:01:05','2022-11-11 01:11:18',1,NULL,NULL,NULL,NULL,0,NULL,1,NULL,NULL),(20,'https://platowinkels.nl/','24:154b8ff0a6628dae287c3b97e41f3136',NULL,'home-page',NULL,NULL,NULL,'%%sitename%% %%page%% %%sep%% %%sitedesc%%','Plato The Great Philosopher','Home',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,'%%sitename%%','','','0',NULL,NULL,NULL,NULL,NULL,'2020-08-17 11:01:05','2023-02-02 04:46:31',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-01-02 09:05:56','2020-08-17 10:56:19'),(21,'https://platowinkels.nl/wpautoterms/','36:64d2ce5f63752abb06fce66ace13c041',NULL,'post-type-archive','wpautoterms_page',NULL,NULL,'%%pt_plural%% Archive %%page%% %%sep%% %%sitename%%','','Legal Pages',NULL,1,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-08-17 11:01:05','2022-12-02 22:47:57',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL),(22,'https://platowinkels.nl/home/','29:3866b133381eec80e53015eee4556c81',18,'post','page',1,0,NULL,NULL,'Home','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,'2020-08-17 11:01:32','2022-11-11 00:18:08',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-08-17 11:02:17','2020-08-17 11:02:17'),(23,'https://platowinkels.nl/about-us/','33:777062067c1cadbc9480fb269f95f79e',19,'post','page',1,0,NULL,NULL,'About Us','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,'2020-08-17 11:01:34','2022-11-11 00:18:08',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-08-17 11:03:56','2020-08-17 11:03:56'),(24,NULL,NULL,20,'post','wpcf7_contact_form',1,0,NULL,NULL,'Contact form 1','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-08-17 11:02:05','2022-11-11 00:12:12',1,NULL,NULL,NULL,NULL,0,NULL,0,NULL,NULL),(25,'https://platowinkels.nl/terms-and-conditions/','45:9786c6ced394d9d6ce5ab5a3daecddcf',23,'post','page',1,0,NULL,NULL,'Terms and Conditions','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,'2020-08-17 11:04:03','2022-11-11 00:18:08',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-08-25 06:37:10','2020-08-17 11:06:58'),(26,'https://platowinkels.nl/privacy-policy/','39:244d5af3925487b388249c4ac4beb52f',24,'post','page',1,0,NULL,NULL,'Privacy Policy','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,'2020-08-17 11:04:04','2022-11-11 00:18:07',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-08-25 06:37:02','2020-08-17 11:07:55'),(27,'https://platowinkels.nl/contact-us/','35:c7d4ceb8949571d390618d44477dae26',25,'post','page',1,0,NULL,NULL,'Contact Us','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,'2020-08-17 11:04:13','2022-11-11 00:18:08',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-08-17 11:04:47','2020-08-17 11:04:47'),(37,NULL,NULL,42,'post','nav_menu_item',1,0,NULL,NULL,'Home','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-08-17 11:17:30','2022-11-11 00:12:12',1,NULL,NULL,NULL,NULL,0,NULL,0,NULL,NULL),(38,NULL,NULL,43,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-08-17 11:17:30','2022-11-11 00:12:12',1,NULL,NULL,NULL,NULL,0,NULL,0,NULL,NULL),(39,NULL,NULL,44,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-08-17 11:17:30','2022-11-11 00:12:12',1,NULL,NULL,NULL,NULL,0,NULL,0,NULL,NULL),(40,NULL,NULL,45,'post','nav_menu_item',1,0,NULL,NULL,'','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-08-17 11:17:30','2022-11-11 00:12:12',1,NULL,NULL,NULL,NULL,0,NULL,0,NULL,NULL),(41,NULL,NULL,46,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-08-17 11:17:30','2022-11-11 00:12:12',1,NULL,NULL,NULL,NULL,0,NULL,0,NULL,NULL),(42,NULL,NULL,47,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-08-17 11:17:30','2022-11-11 00:12:12',1,NULL,NULL,NULL,NULL,0,NULL,0,NULL,NULL),(43,NULL,NULL,48,'post','nav_menu_item',1,0,NULL,NULL,'Lochterstraat 168,Haler','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-08-17 11:18:58','2022-11-11 00:12:12',1,NULL,NULL,NULL,NULL,0,NULL,0,NULL,NULL),(44,NULL,NULL,49,'post','nav_menu_item',1,0,NULL,NULL,'Phone : 06-71 31 08 79','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-08-17 11:19:31','2022-11-11 00:12:12',1,NULL,NULL,NULL,NULL,0,NULL,0,NULL,NULL),(45,NULL,NULL,50,'post','nav_menu_item',1,0,NULL,NULL,'[email protected]','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-08-17 11:19:57','2022-11-11 00:12:12',1,NULL,NULL,NULL,NULL,0,NULL,0,NULL,NULL),(46,NULL,NULL,51,'post','nav_menu_item',1,0,NULL,NULL,'Facebook','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-08-17 11:20:51','2022-11-11 00:12:12',1,NULL,NULL,NULL,NULL,0,NULL,0,NULL,NULL),(47,NULL,NULL,52,'post','nav_menu_item',1,0,NULL,NULL,'Twitter','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-08-17 11:21:26','2022-11-11 00:12:12',1,NULL,NULL,NULL,NULL,0,NULL,0,NULL,NULL),(48,NULL,NULL,53,'post','nav_menu_item',1,0,NULL,NULL,'LinkedIn','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-08-17 11:21:45','2022-11-11 00:12:12',1,NULL,NULL,NULL,NULL,0,NULL,0,NULL,NULL),(49,NULL,NULL,54,'post','nav_menu_item',1,0,NULL,NULL,'Pinterest','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-08-17 11:22:12','2022-11-11 00:12:12',1,NULL,NULL,NULL,NULL,0,NULL,0,NULL,NULL),(50,NULL,NULL,55,'post','attachment',1,0,NULL,NULL,'602','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://platowinkels.nl/wp-content/uploads/2020/08/602.jpg',NULL,'55','attachment-image',NULL,NULL,NULL,'55','attachment-image',NULL,NULL,NULL,NULL,'2020-08-17 11:26:16','2022-11-11 00:12:12',1,NULL,NULL,NULL,NULL,0,NULL,0,NULL,NULL),(51,NULL,NULL,56,'post','attachment',1,0,NULL,NULL,'The Vatican Museums, Vatican City, Italy','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://platowinkels.nl/wp-content/uploads/2020/08/603.jpg',NULL,'56','attachment-image',NULL,NULL,NULL,'56','attachment-image',NULL,NULL,NULL,NULL,'2020-08-17 11:29:10','2022-11-11 00:12:12',1,NULL,NULL,NULL,NULL,0,NULL,0,NULL,NULL),(52,NULL,NULL,57,'post','wpcf7_contact_form',1,0,NULL,NULL,'Untitled','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-08-17 11:30:18','2022-11-11 00:12:12',1,NULL,NULL,NULL,NULL,0,NULL,0,NULL,NULL),(53,NULL,NULL,59,'post','custom_css',1,0,NULL,NULL,'opus-blog','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-08-17 11:32:19','2022-11-11 00:12:12',1,NULL,NULL,NULL,NULL,0,NULL,0,NULL,NULL),(58,NULL,NULL,67,'post','attachment',1,0,NULL,NULL,'logo143','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://platowinkels.nl/wp-content/uploads/2020/08/logo143.png',NULL,'67','attachment-image',NULL,NULL,NULL,'67','attachment-image',NULL,NULL,NULL,NULL,'2020-08-17 11:45:58','2022-11-11 00:12:12',1,NULL,NULL,NULL,NULL,0,NULL,0,NULL,NULL),(59,NULL,NULL,68,'post','attachment',1,0,NULL,NULL,'cropped-logo143.png','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://platowinkels.nl/wp-content/uploads/2020/08/cropped-logo143.png',NULL,'68','attachment-image',NULL,NULL,NULL,'68','attachment-image',NULL,NULL,NULL,NULL,'2020-08-17 11:46:08','2022-11-11 00:12:12',1,NULL,NULL,NULL,NULL,0,NULL,0,NULL,NULL),(61,NULL,NULL,70,'post','attachment',1,0,NULL,NULL,'favicon7','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://platowinkels.nl/wp-content/uploads/2020/08/favicon7.png',NULL,'70','attachment-image',NULL,NULL,NULL,'70','attachment-image',NULL,NULL,NULL,NULL,'2020-08-17 11:48:20','2022-11-11 00:12:12',1,NULL,NULL,NULL,NULL,0,NULL,0,NULL,NULL),(62,NULL,NULL,71,'post','attachment',1,0,NULL,NULL,'cropped-favicon7.png','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://platowinkels.nl/wp-content/uploads/2020/08/cropped-favicon7.png',NULL,'71','attachment-image',NULL,NULL,NULL,'71','attachment-image',NULL,NULL,NULL,NULL,'2020-08-17 11:48:33','2022-11-11 00:12:12',1,NULL,NULL,NULL,NULL,0,NULL,0,NULL,NULL),(68,'https://platowinkels.nl/bitcoin-stijgt-nadat-wall-street-hoger-opent-op-stimulus-hopes/','87:9adbaee86a397575dd02dd6311a00a0e',83,'post','post',1,0,NULL,NULL,'Bitcoin stijgt nadat Wall Street hoger opent op Stimulus Hopes','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,'https://platowinkels.nl/wp-content/uploads/2020/10/5fg45d4fvs5d4.jpg',NULL,'84','featured-image',NULL,NULL,'https://platowinkels.nl/wp-content/uploads/2020/10/5fg45d4fvs5d4.jpg','84','featured-image','{\"width\":744,\"height\":446,\"url\":\"https://platowinkels.nl/wp-content/uploads/2020/10/5fg45d4fvs5d4.jpg\",\"path\":\"/opt/aphex/sites/platowinkels.nl/wp-content/uploads/2020/10/5fg45d4fvs5d4.jpg\",\"size\":\"full\",\"id\":84,\"alt\":\"\",\"pixels\":331824,\"type\":\"image/jpeg\"}',0,0,NULL,'2020-10-07 01:23:33','2022-11-11 00:18:07',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-10-07 01:25:30','2020-10-25 01:23:33'),(69,NULL,NULL,84,'post','attachment',1,83,NULL,NULL,'5fg45d4fvs5d4','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://platowinkels.nl/wp-content/uploads/2020/10/5fg45d4fvs5d4.jpg',NULL,'84','attachment-image',NULL,NULL,NULL,'84','attachment-image',NULL,NULL,NULL,NULL,'2020-10-07 01:24:49','2022-11-11 00:12:12',1,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL),(70,'https://platowinkels.nl/category/bitcoin-en-hoogtes/','52:c001448309a7fc260aef93d9bd152f24',10,'term','category',NULL,NULL,NULL,NULL,'bitcoin en hoogtes',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-10-07 01:25:10','2022-11-11 01:57:33',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-10-07 01:25:30','2020-10-25 01:23:33'),(71,'https://platowinkels.nl/de-x1-creditcard-richt-zich-op-jongere-kaarthouders-met-een-andere-benadering-van-kredietlimieten-en-de-wachtlijst-heeft-al-75-000-aanmeldingen-gepasseerd/','179:e8b5766e4b4e2762b5a5bc6cb209feeb',86,'post','post',1,0,NULL,NULL,'De X1-creditcard richt zich op jongere kaarthouders met een andere benadering van kredietlimieten &#8211; en de wachtlijst heeft al 75.000 aanmeldingen gepasseerd','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,'https://platowinkels.nl/wp-content/uploads/2020/10/r6e5re45er45.png',NULL,'87','featured-image',NULL,NULL,'https://platowinkels.nl/wp-content/uploads/2020/10/r6e5re45er45.png','87','featured-image','{\"width\":900,\"height\":497,\"url\":\"https://platowinkels.nl/wp-content/uploads/2020/10/r6e5re45er45.png\",\"path\":\"/opt/aphex/sites/platowinkels.nl/wp-content/uploads/2020/10/r6e5re45er45.png\",\"size\":\"full\",\"id\":87,\"alt\":\"\",\"pixels\":447300,\"type\":\"image/png\"}',0,0,NULL,'2020-10-22 01:49:47','2022-11-11 00:18:07',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-10-22 02:15:13','2020-11-27 01:49:47'),(72,NULL,NULL,87,'post','attachment',1,86,NULL,NULL,'r6e5re45er45','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://platowinkels.nl/wp-content/uploads/2020/10/r6e5re45er45.png',NULL,'87','attachment-image',NULL,NULL,NULL,'87','attachment-image',NULL,NULL,NULL,NULL,'2020-10-22 02:14:24','2022-11-11 00:12:12',1,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL),(73,'https://platowinkels.nl/category/credit-card-en-categorie/','58:2853a697388db45e89b1a4977c99e861',11,'term','category',NULL,NULL,NULL,NULL,'credit card en categorie',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-10-22 02:14:44','2022-11-15 20:11:53',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-10-22 02:15:13','2020-11-27 01:49:47'),(74,NULL,NULL,0,'user',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'https://secure.gravatar.com/avatar/?s=500&d=mm&r=g',NULL,NULL,'gravatar-image',NULL,NULL,'https://secure.gravatar.com/avatar/?s=500&d=mm&r=g',NULL,'gravatar-image',NULL,NULL,NULL,NULL,'2020-10-29 20:29:02','2022-11-11 00:12:12',1,NULL,NULL,NULL,NULL,0,NULL,0,NULL,NULL),(75,NULL,NULL,89,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-10-29 20:29:02','2022-11-11 00:12:12',1,NULL,NULL,NULL,NULL,0,NULL,0,NULL,NULL),(76,'https://platowinkels.nl/topmakelaars-noemen-3-asx-aandelen-om-volgende-week-te-verkopen/','88:3f02c7458dcf0fb34cc4b59d6e115634',90,'post','post',1,0,NULL,NULL,'Topmakelaars noemen 3 ASX-aandelen om volgende week te verkopen','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,'https://platowinkels.nl/wp-content/uploads/2020/12/f8v9d8v9df8.jpg',NULL,'91','featured-image',NULL,NULL,'https://platowinkels.nl/wp-content/uploads/2020/12/f8v9d8v9df8.jpg','91','featured-image','{\"width\":225,\"height\":225,\"url\":\"https://platowinkels.nl/wp-content/uploads/2020/12/f8v9d8v9df8.jpg\",\"path\":\"/opt/aphex/sites/platowinkels.nl/wp-content/uploads/2020/12/f8v9d8v9df8.jpg\",\"size\":\"full\",\"id\":91,\"alt\":\"\",\"pixels\":50625,\"type\":\"image/jpeg\"}',0,0,NULL,'2020-12-23 20:50:41','2022-11-11 00:18:07',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-12-23 20:59:48','2021-01-17 20:50:41'),(77,NULL,NULL,91,'post','attachment',1,90,NULL,NULL,'f8v9d8v9df8','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://platowinkels.nl/wp-content/uploads/2020/12/f8v9d8v9df8.jpg',NULL,'91','attachment-image',NULL,NULL,NULL,'91','attachment-image',NULL,NULL,NULL,NULL,'2020-12-23 20:54:51','2022-11-11 00:12:12',1,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL),(78,'https://platowinkels.nl/category/aandeel-en-inkopen/','52:0b6b99cb9c0bfb963e667b1cecbcb3d6',12,'term','category',NULL,NULL,NULL,NULL,'aandeel en inkopen',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-12-23 20:56:57','2022-11-12 04:40:13',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-12-29 17:22:47','2021-01-01 12:47:54'),(79,NULL,NULL,92,'post','oembed_cache',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-12-23 20:59:00','2022-11-11 00:12:12',1,NULL,NULL,NULL,NULL,0,NULL,0,NULL,NULL),(80,'https://platowinkels.nl/snel-herstel-van-de-bitcoin-prijs-lijkt-twijfelachtig-als-walvissen-munten-naar-uitwisselingen-verplaatsen/','131:b0b8f9396b124cbaf7af4b10bf8aca88',94,'post','post',1,0,NULL,NULL,'Snel herstel van de Bitcoin-prijs lijkt twijfelachtig als walvissen munten naar uitwisselingen verplaatsen','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,'https://platowinkels.nl/wp-content/uploads/2020/12/fg4b.gif',NULL,'95','featured-image',NULL,NULL,'https://platowinkels.nl/wp-content/uploads/2020/12/fg4b.gif','95','featured-image','{\"width\":295,\"height\":236,\"url\":\"https://platowinkels.nl/wp-content/uploads/2020/12/fg4b.gif\",\"path\":\"/opt/aphex/sites/platowinkels.nl/wp-content/uploads/2020/12/fg4b.gif\",\"size\":\"full\",\"id\":95,\"alt\":\"\",\"pixels\":69620,\"type\":\"image/gif\"}',0,0,NULL,'2020-12-24 18:46:57','2022-11-11 00:18:07',1,NULL,NULL,NULL,NULL,0,2,2,'2022-04-11 15:56:17','2021-01-15 18:46:57'),(81,NULL,NULL,95,'post','attachment',1,94,NULL,NULL,'fg4b','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://platowinkels.nl/wp-content/uploads/2020/12/fg4b.gif',NULL,'95','attachment-image',NULL,NULL,NULL,'95','attachment-image',NULL,NULL,NULL,NULL,'2020-12-24 18:52:12','2022-11-11 00:12:12',1,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL),(82,'https://platowinkels.nl/category/biflatie-en-uitwisseling/','58:24f4f5416d95b1513096cc7609f02d73',13,'term','category',NULL,NULL,NULL,NULL,'biflatie en uitwisseling',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-12-24 18:54:22','2022-11-11 00:19:52',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-04-11 15:56:17','2021-01-15 18:46:57'),(83,NULL,NULL,96,'post','oembed_cache',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-12-24 18:55:47','2022-11-11 00:12:12',1,NULL,NULL,NULL,NULL,0,NULL,0,NULL,NULL),(84,'https://platowinkels.nl/welke-3-tips-kun-je-goed-gebruiken-als-je-wil-gaan-investeren-in-wiet-aandelen-een-aantal-belangrijke-voorwaarden-die-je-moet-bekijken/','159:16a36550f4d4ba919c5b79072e5eff6d',98,'post','post',1,0,NULL,NULL,'Welke 3 tips kun je goed gebruiken als je wil gaan investeren in wiet aandelen? Een aantal belangrijke voorwaarden die je moet bekijken','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://platowinkels.nl/wp-content/uploads/2020/12/gkd121.jpg',NULL,'99','featured-image',NULL,NULL,'https://platowinkels.nl/wp-content/uploads/2020/12/gkd121.jpg','99','featured-image','{\"width\":1024,\"height\":648,\"url\":\"https://platowinkels.nl/wp-content/uploads/2020/12/gkd121.jpg\",\"path\":\"/opt/aphex/sites/platowinkels.nl/wp-content/uploads/2020/12/gkd121.jpg\",\"size\":\"full\",\"id\":99,\"alt\":\"\",\"pixels\":663552,\"type\":\"image/jpeg\"}',0,0,NULL,'2020-12-29 16:47:54','2022-11-11 00:18:07',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-12-29 17:22:47','2021-01-01 12:47:54'),(85,NULL,NULL,99,'post','attachment',1,98,NULL,NULL,'gkd121','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://platowinkels.nl/wp-content/uploads/2020/12/gkd121.jpg',NULL,'99','attachment-image',NULL,NULL,NULL,'99','attachment-image',NULL,NULL,NULL,NULL,'2020-12-29 17:04:43','2022-11-11 00:12:12',1,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL),(89,'https://platowinkels.nl/coronavirus-annuleringsgegevens-van-galashiels-rijexamen/','81:089a09846e884f6d6fd88c9a6459475d',105,'post','post',1,0,NULL,NULL,'Coronavirus: annuleringsgegevens van Galashiels rijexamen','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,'https://platowinkels.nl/wp-content/uploads/2021/06/4dsf.jpg',NULL,'106','featured-image',NULL,NULL,'https://platowinkels.nl/wp-content/uploads/2021/06/4dsf.jpg','106','featured-image','{\"width\":247,\"height\":204,\"url\":\"https://platowinkels.nl/wp-content/uploads/2021/06/4dsf.jpg\",\"path\":\"/opt/aphex/sites/platowinkels.nl/wp-content/uploads/2021/06/4dsf.jpg\",\"size\":\"full\",\"id\":106,\"alt\":\"\",\"pixels\":50388,\"type\":\"image/jpeg\"}',0,0,NULL,'2021-06-01 17:53:45','2022-11-11 00:18:07',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-06-01 17:56:28','2021-06-01 17:56:28'),(90,NULL,NULL,106,'post','attachment',1,105,NULL,NULL,'4dsf','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://platowinkels.nl/wp-content/uploads/2021/06/4dsf.jpg',NULL,'106','attachment-image',NULL,NULL,NULL,'106','attachment-image',NULL,NULL,NULL,NULL,'2021-06-01 17:55:06','2022-11-11 00:12:12',1,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL),(91,'https://platowinkels.nl/category/theorie-cijfers/','49:092e8da2701313cc380cfeb1bc45c875',14,'term','category',NULL,NULL,NULL,NULL,'theorie cijfers',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-06-01 17:55:57','2022-11-14 15:53:39',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-06-01 17:56:28','2021-06-01 17:56:28'),(92,'https://platowinkels.nl/?p=108','30:b6c4572abf4447ff734b72e807395b91',108,'post','post',1,0,NULL,NULL,'Tiger King is now a cryptocoin','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,'2021-06-02 05:23:06','2022-12-10 08:48:08',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-06-02 05:25:22','0000-00-00 00:00:00'),(93,NULL,NULL,109,'post','attachment',1,108,NULL,NULL,'4fdg','inherit',NULL,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://platowinkels.nl/wp-content/uploads/2021/06/4fdg.jpg',NULL,'109','attachment-image',NULL,NULL,NULL,'109','attachment-image',NULL,NULL,NULL,NULL,'2021-06-02 05:23:47','2022-11-11 00:12:12',1,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL),(94,NULL,NULL,110,'post','oembed_cache',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-06-02 05:25:23','2022-11-11 00:12:12',1,NULL,NULL,NULL,NULL,0,NULL,0,NULL,NULL),(95,'https://platowinkels.nl/tiger-king-is-nu-een-cryptomunt/','56:77a77c076cc73b1cb1b35c4ff23255fb',111,'post','post',1,0,NULL,NULL,'Tiger King is nu een cryptomunt','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,'https://platowinkels.nl/wp-content/uploads/2021/06/4fdg-1.jpg',NULL,'112','featured-image',NULL,NULL,'https://platowinkels.nl/wp-content/uploads/2021/06/4fdg-1.jpg','112','featured-image','{\"width\":318,\"height\":159,\"url\":\"https://platowinkels.nl/wp-content/uploads/2021/06/4fdg-1.jpg\",\"path\":\"/opt/aphex/sites/platowinkels.nl/wp-content/uploads/2021/06/4fdg-1.jpg\",\"size\":\"full\",\"id\":112,\"alt\":\"\",\"pixels\":50562,\"type\":\"image/jpeg\"}',0,0,NULL,'2021-06-02 16:12:55','2022-11-11 00:18:06',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-06-02 16:15:10','2021-06-02 16:15:10'),(96,NULL,NULL,112,'post','attachment',1,111,NULL,NULL,'4fdg','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://platowinkels.nl/wp-content/uploads/2021/06/4fdg-1.jpg',NULL,'112','attachment-image',NULL,NULL,NULL,'112','attachment-image',NULL,NULL,NULL,NULL,'2021-06-02 16:14:01','2022-11-11 00:12:12',1,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL),(97,'https://platowinkels.nl/category/cryptoclan-munten/','51:e989cb4a109412f9baacfbcf479f09bc',15,'term','category',NULL,NULL,NULL,NULL,'cryptoclan munten',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-06-02 16:14:34','2022-11-12 04:26:18',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-06-02 16:15:10','2021-06-02 16:15:10'),(98,'https://platowinkels.nl/een-studie-van-financien-kan-u-helpen-betere-beslissingen-te-nemen/','91:3f88123e6976916d68a0425f0aff9339',119,'post','post',1,0,NULL,NULL,'Een studie van financiën kan u helpen betere beslissingen te nemen','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2022-12-10 09:07:29','2022-12-10 09:07:50',1,NULL,NULL,NULL,NULL,0,2,2,'2022-12-10 09:07:50','2022-12-10 09:07:50');
/*!40000 ALTER TABLE `wp_yoast_indexable` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_yoast_indexable_hierarchy`
--

DROP TABLE IF EXISTS `wp_yoast_indexable_hierarchy`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_yoast_indexable_hierarchy` (
  `indexable_id` int unsigned NOT NULL,
  `ancestor_id` int unsigned NOT NULL,
  `depth` int unsigned DEFAULT NULL,
  `blog_id` bigint NOT NULL DEFAULT '1',
  PRIMARY KEY (`indexable_id`,`ancestor_id`),
  KEY `indexable_id` (`indexable_id`),
  KEY `ancestor_id` (`ancestor_id`),
  KEY `depth` (`depth`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_yoast_indexable_hierarchy`
--

LOCK TABLES `wp_yoast_indexable_hierarchy` WRITE;
/*!40000 ALTER TABLE `wp_yoast_indexable_hierarchy` DISABLE KEYS */;
INSERT INTO `wp_yoast_indexable_hierarchy` VALUES (1,0,0,1),(2,0,0,1),(4,0,0,1),(12,0,0,1),(13,0,0,1),(14,0,0,1),(15,0,0,1),(16,0,0,1),(18,0,0,1),(19,0,0,1),(20,0,0,1),(21,0,0,1),(22,0,0,1),(23,0,0,1),(25,0,0,1),(26,0,0,1),(27,0,0,1),(68,0,0,1),(70,0,0,1),(71,0,0,1),(73,0,0,1),(76,0,0,1),(78,0,0,1),(80,0,0,1),(82,0,0,1),(84,0,0,1),(89,0,0,1),(91,0,0,1),(92,0,0,1),(95,0,0,1),(97,0,0,1),(98,0,0,1);
/*!40000 ALTER TABLE `wp_yoast_indexable_hierarchy` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_yoast_migrations`
--

DROP TABLE IF EXISTS `wp_yoast_migrations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_yoast_migrations` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `version` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `WP_yoast_migrations_version` (`version`)
) ENGINE=InnoDB AUTO_INCREMENT=24 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_yoast_migrations`
--

LOCK TABLES `wp_yoast_migrations` WRITE;
/*!40000 ALTER TABLE `wp_yoast_migrations` DISABLE KEYS */;
INSERT INTO `wp_yoast_migrations` VALUES (1,'20171228151840'),(2,'20171228151841'),(3,'20190529075038'),(4,'20191011111109'),(5,'20200408101900'),(6,'20200420073606'),(7,'20200428123747'),(8,'20200428194858'),(9,'20200429105310'),(10,'20200430075614'),(11,'20200430150130'),(12,'20200507054848'),(13,'20200513133401'),(14,'20200609154515'),(15,'20200616130143'),(18,'20200617122511'),(16,'20200702141921'),(17,'20200728095334'),(19,'20201202144329'),(20,'20201216124002'),(21,'20201216141134'),(22,'20210817092415'),(23,'20211020091404');
/*!40000 ALTER TABLE `wp_yoast_migrations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_yoast_primary_term`
--

DROP TABLE IF EXISTS `wp_yoast_primary_term`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_yoast_primary_term` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `post_id` bigint DEFAULT NULL,
  `term_id` bigint DEFAULT NULL,
  `taxonomy` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `created_at` datetime DEFAULT NULL,
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `blog_id` bigint NOT NULL DEFAULT '1',
  PRIMARY KEY (`id`),
  KEY `post_taxonomy` (`post_id`,`taxonomy`),
  KEY `post_term` (`post_id`,`term_id`)
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_yoast_primary_term`
--

LOCK TABLES `wp_yoast_primary_term` WRITE;
/*!40000 ALTER TABLE `wp_yoast_primary_term` DISABLE KEYS */;
INSERT INTO `wp_yoast_primary_term` VALUES (1,83,10,'category','2020-10-07 01:25:30','2022-11-11 00:18:07',1),(2,86,11,'category','2020-10-22 02:15:13','2022-11-11 00:18:07',1),(3,90,12,'category','2020-12-23 20:59:48','2022-11-11 00:18:07',1),(4,94,13,'category','2020-12-24 18:57:23','2022-11-11 00:18:07',1),(5,98,12,'category','2020-12-29 17:05:16','2022-11-11 00:18:07',1),(6,105,14,'category','2021-06-01 17:56:28','2022-11-11 00:18:07',1),(7,111,15,'category','2021-06-02 16:15:10','2022-11-11 00:18:06',1);
/*!40000 ALTER TABLE `wp_yoast_primary_term` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_yoast_seo_links`
--

DROP TABLE IF EXISTS `wp_yoast_seo_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_yoast_seo_links` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `url` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_id` bigint unsigned NOT NULL,
  `target_post_id` bigint unsigned NOT NULL,
  `type` varchar(8) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `indexable_id` int unsigned DEFAULT NULL,
  `target_indexable_id` int unsigned DEFAULT NULL,
  `height` int unsigned DEFAULT NULL,
  `width` int unsigned DEFAULT NULL,
  `size` int unsigned DEFAULT NULL,
  `language` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `region` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `link_direction` (`post_id`,`type`),
  KEY `indexable_link_direction` (`indexable_id`,`type`)
) ENGINE=InnoDB AUTO_INCREMENT=33 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_yoast_seo_links`
--

LOCK TABLES `wp_yoast_seo_links` WRITE;
/*!40000 ALTER TABLE `wp_yoast_seo_links` DISABLE KEYS */;
INSERT INTO `wp_yoast_seo_links` VALUES (5,'https://www.bitcoinexchangenederland.nl/cardano/',83,0,'external',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(6,'https://www.bitcoinexchangenederland.nl/icon/',83,0,'external',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(7,'https://www.123creditcardvergelijk.nl/',86,0,'external',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(8,'https://www.123creditcardvergelijk.nl/american-express/',86,0,'external',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19,'https://spaarbuidel.nl/marihuana-aandelen/',98,0,'external',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(20,'https://spaarbuidel.nl/beleggen/accenture-aandelen/',98,0,'external',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(23,'https://aandelenkopen.nl/',90,0,'external',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24,'https://aandelenkopen.nl/apple-aandeel/',90,0,'external',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(25,'https://www.autotheorie.nl/',105,0,'external',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(26,'https://www.theorieexamenoefenen.net/',105,0,'external',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(27,'https://cryptoclan.nl/welke-crypto-kopen/',108,0,'external',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(28,'https://cryptoclan.nl/crypto-staken/',108,0,'external',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(29,'https://cryptoclan.nl/welke-crypto-kopen/',111,0,'external',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(30,'https://cryptoclan.nl/crypto-staken/',111,0,'external',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(31,'https://www.mijnonlineidentiteit.nl/beste-cryptomunten-2022/',119,0,'external',98,NULL,NULL,NULL,NULL,NULL,NULL),(32,'https://www.mijnonlineidentiteit.nl/beste-cryptomunten-2022/',119,0,'external',98,NULL,NULL,NULL,NULL,NULL,NULL);
/*!40000 ALTER TABLE `wp_yoast_seo_links` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_yoast_seo_meta`
--

DROP TABLE IF EXISTS `wp_yoast_seo_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_yoast_seo_meta` (
  `object_id` bigint unsigned NOT NULL,
  `internal_link_count` int unsigned DEFAULT NULL,
  `incoming_link_count` int unsigned DEFAULT NULL,
  UNIQUE KEY `object_id` (`object_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_yoast_seo_meta`
--

LOCK TABLES `wp_yoast_seo_meta` WRITE;
/*!40000 ALTER TABLE `wp_yoast_seo_meta` DISABLE KEYS */;
INSERT INTO `wp_yoast_seo_meta` VALUES (3,0,0),(4,0,0),(5,0,0),(6,0,0),(7,0,0),(14,0,0),(15,0,0),(16,0,0),(17,0,0),(18,0,0),(19,0,0),(23,0,0),(24,0,0),(25,0,0),(27,0,0),(28,0,0),(29,0,0),(30,0,0),(31,0,0),(32,0,0),(34,0,0),(35,0,0),(37,0,0),(38,0,0),(39,0,0),(40,0,0),(41,0,0),(58,0,0),(61,0,0),(63,0,0),(65,0,0),(69,0,0),(72,0,0),(73,0,0),(74,0,0),(75,0,0),(76,0,0),(77,0,0),(78,0,0),(80,0,0),(81,0,0),(83,0,0),(86,0,0),(90,0,0),(94,0,0),(98,0,0),(102,0,0),(105,0,0),(108,0,0),(111,0,0);
/*!40000 ALTER TABLE `wp_yoast_seo_meta` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

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

-- Dump completed on 2023-03-29  8:30:06