SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; -- -- Database: `drupal1140` -- -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]batch` -- CREATE TABLE `[[dbprefix]]batch` ( `bid` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Primary Key: Unique batch ID.', `token` varchar(64) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL COMMENT 'A string token generated against the current user''s session id and the batch id, used to ensure that only the user who submitted the batch can effectively access it.', `timestamp` int NOT NULL COMMENT 'A Unix timestamp indicating when this batch was submitted for processing. Stale batches are purged at cron time.', `batch` longblob COMMENT 'A serialized array containing the processing data for the batch.', PRIMARY KEY (`bid`), KEY `token` (`token`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Stores details about batches (processes that run in…' AUTO_INCREMENT=2 ; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]block_content` -- CREATE TABLE `[[dbprefix]]block_content` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `revision_id` int unsigned DEFAULT NULL, `type` varchar(32) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL COMMENT 'The ID of the target entity.', `uuid` varchar(128) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL, `langcode` varchar(12) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `block_content_field__uuid__value` (`uuid`), UNIQUE KEY `block_content__revision_id` (`revision_id`), KEY `block_content_field__type__target_id` (`type`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='The base table for block_content entities.' AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]block_content_field_data` -- CREATE TABLE `[[dbprefix]]block_content_field_data` ( `id` int unsigned NOT NULL, `revision_id` int unsigned NOT NULL, `type` varchar(32) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL COMMENT 'The ID of the target entity.', `langcode` varchar(12) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL, `status` tinyint NOT NULL, `info` varchar(255) DEFAULT NULL, `changed` int DEFAULT NULL, `reusable` tinyint DEFAULT NULL, `default_langcode` tinyint NOT NULL, `revision_translation_affected` tinyint DEFAULT NULL, PRIMARY KEY (`id`,`langcode`), KEY `block_content__id__default_langcode__langcode` (`id`,`default_langcode`,`langcode`), KEY `block_content__revision_id` (`revision_id`), KEY `block_content_field__type__target_id` (`type`), KEY `block_content_field__reusable` (`reusable`), KEY `block_content__status_type` (`status`,`type`,`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='The data table for block_content entities.'; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]block_content_field_revision` -- CREATE TABLE `[[dbprefix]]block_content_field_revision` ( `id` int unsigned NOT NULL, `revision_id` int unsigned NOT NULL, `langcode` varchar(12) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL, `status` tinyint NOT NULL, `info` varchar(255) DEFAULT NULL, `changed` int DEFAULT NULL, `default_langcode` tinyint NOT NULL, `revision_translation_affected` tinyint DEFAULT NULL, PRIMARY KEY (`revision_id`,`langcode`), KEY `block_content__id__default_langcode__langcode` (`id`,`default_langcode`,`langcode`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='The revision data table for block_content entities.'; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]block_content_revision` -- CREATE TABLE `[[dbprefix]]block_content_revision` ( `id` int unsigned NOT NULL, `revision_id` int unsigned NOT NULL AUTO_INCREMENT, `langcode` varchar(12) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL, `revision_user` int unsigned DEFAULT NULL COMMENT 'The ID of the target entity.', `revision_created` int DEFAULT NULL, `revision_log` longtext, `revision_default` tinyint DEFAULT NULL, PRIMARY KEY (`revision_id`), KEY `block_content__id` (`id`), KEY `block_content_field__revision_user__target_id` (`revision_user`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='The revision table for block_content entities.'; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]block_content_revision__body` -- CREATE TABLE `[[dbprefix]]block_content_revision__body` ( `bundle` varchar(128) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance', `deleted` tinyint NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether this data item has been deleted', `entity_id` int unsigned NOT NULL COMMENT 'The entity id this data is attached to', `revision_id` int unsigned NOT NULL COMMENT 'The entity revision id this data is attached to', `langcode` varchar(32) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL DEFAULT '' COMMENT 'The language code for this data item.', `delta` int unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields', `body_value` longtext NOT NULL, `body_format` varchar(255) CHARACTER SET ascii COLLATE ascii_general_ci DEFAULT NULL, PRIMARY KEY (`entity_id`,`revision_id`,`deleted`,`delta`,`langcode`), KEY `bundle` (`bundle`), KEY `revision_id` (`revision_id`), KEY `body_format` (`body_format`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Revision archive storage for block_content field body.'; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]block_content__body` -- CREATE TABLE `[[dbprefix]]block_content__body` ( `bundle` varchar(128) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance', `deleted` tinyint NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether this data item has been deleted', `entity_id` int unsigned NOT NULL COMMENT 'The entity id this data is attached to', `revision_id` int unsigned NOT NULL COMMENT 'The entity revision id this data is attached to', `langcode` varchar(32) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL DEFAULT '' COMMENT 'The language code for this data item.', `delta` int unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields', `body_value` longtext NOT NULL, `body_format` varchar(255) CHARACTER SET ascii COLLATE ascii_general_ci DEFAULT NULL, PRIMARY KEY (`entity_id`,`deleted`,`delta`,`langcode`), KEY `bundle` (`bundle`), KEY `revision_id` (`revision_id`), KEY `body_format` (`body_format`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Data storage for block_content field body.'; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]cachetags` -- CREATE TABLE `[[dbprefix]]cachetags` ( `tag` varchar(255) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL DEFAULT '' COMMENT 'Namespace-prefixed tag string.', `invalidations` int NOT NULL DEFAULT '0' COMMENT 'Number incremented when the tag is invalidated.', PRIMARY KEY (`tag`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Cache table for tracking cache tag invalidations.'; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]cache_bootstrap` -- CREATE TABLE `[[dbprefix]]cache_bootstrap` ( `cid` varchar(255) CHARACTER SET ascii COLLATE ascii_bin NOT NULL DEFAULT '' COMMENT 'Primary Key: Unique cache ID.', `data` longblob COMMENT 'A collection of data to cache.', `expire` bigint NOT NULL DEFAULT '0' COMMENT 'A Unix timestamp indicating when the cache entry should expire, or -1 for never.', `created` decimal(14,3) NOT NULL DEFAULT '0.000' COMMENT 'A timestamp with millisecond precision indicating when the cache entry was created.', `serialized` smallint NOT NULL DEFAULT '0' COMMENT 'A flag to indicate whether content is serialized (1) or not (0).', `tags` longtext COMMENT 'Space-separated list of cache tags for this entry.', `checksum` varchar(255) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL COMMENT 'The tag invalidation checksum when this entry was saved.', PRIMARY KEY (`cid`), KEY `expire` (`expire`), KEY `created` (`created`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Storage for the cache API.'; -- -- Dumping data for table `[[dbprefix]]cache_bootstrap` -- -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]cache_config` -- CREATE TABLE `[[dbprefix]]cache_config` ( `cid` varchar(255) CHARACTER SET ascii COLLATE ascii_bin NOT NULL DEFAULT '' COMMENT 'Primary Key: Unique cache ID.', `data` longblob COMMENT 'A collection of data to cache.', `expire` bigint NOT NULL DEFAULT '0' COMMENT 'A Unix timestamp indicating when the cache entry should expire, or -1 for never.', `created` decimal(14,3) NOT NULL DEFAULT '0.000' COMMENT 'A timestamp with millisecond precision indicating when the cache entry was created.', `serialized` smallint NOT NULL DEFAULT '0' COMMENT 'A flag to indicate whether content is serialized (1) or not (0).', `tags` longtext COMMENT 'Space-separated list of cache tags for this entry.', `checksum` varchar(255) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL COMMENT 'The tag invalidation checksum when this entry was saved.', PRIMARY KEY (`cid`), KEY `expire` (`expire`), KEY `created` (`created`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Storage for the cache API.'; -- -- Dumping data for table `[[dbprefix]]cache_config` -- -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]cache_container` -- CREATE TABLE `[[dbprefix]]cache_container` ( `cid` varchar(255) CHARACTER SET ascii COLLATE ascii_bin NOT NULL DEFAULT '' COMMENT 'Primary Key: Unique cache ID.', `data` longblob COMMENT 'A collection of data to cache.', `expire` bigint NOT NULL DEFAULT '0' COMMENT 'A Unix timestamp indicating when the cache entry should expire, or -1 for never.', `created` decimal(14,3) NOT NULL DEFAULT '0.000' COMMENT 'A timestamp with millisecond precision indicating when the cache entry was created.', `serialized` smallint NOT NULL DEFAULT '0' COMMENT 'A flag to indicate whether content is serialized (1) or not (0).', `tags` longtext COMMENT 'Space-separated list of cache tags for this entry.', `checksum` varchar(255) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL COMMENT 'The tag invalidation checksum when this entry was saved.', PRIMARY KEY (`cid`), KEY `expire` (`expire`), KEY `created` (`created`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Storage for the cache API.'; -- -- Dumping data for table `[[dbprefix]]cache_container` -- -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]cache_data` -- CREATE TABLE `[[dbprefix]]cache_data` ( `cid` varchar(255) CHARACTER SET ascii COLLATE ascii_bin NOT NULL DEFAULT '' COMMENT 'Primary Key: Unique cache ID.', `data` longblob COMMENT 'A collection of data to cache.', `expire` bigint NOT NULL DEFAULT '0' COMMENT 'A Unix timestamp indicating when the cache entry should expire, or -1 for never.', `created` decimal(14,3) NOT NULL DEFAULT '0.000' COMMENT 'A timestamp with millisecond precision indicating when the cache entry was created.', `serialized` smallint NOT NULL DEFAULT '0' COMMENT 'A flag to indicate whether content is serialized (1) or not (0).', `tags` longtext COMMENT 'Space-separated list of cache tags for this entry.', `checksum` varchar(255) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL COMMENT 'The tag invalidation checksum when this entry was saved.', PRIMARY KEY (`cid`), KEY `expire` (`expire`), KEY `created` (`created`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Storage for the cache API.'; -- -- Dumping data for table `[[dbprefix]]cache_data` -- -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]cache_default` -- CREATE TABLE `[[dbprefix]]cache_default` ( `cid` varchar(255) CHARACTER SET ascii COLLATE ascii_bin NOT NULL DEFAULT '' COMMENT 'Primary Key: Unique cache ID.', `data` longblob COMMENT 'A collection of data to cache.', `expire` bigint NOT NULL DEFAULT '0' COMMENT 'A Unix timestamp indicating when the cache entry should expire, or -1 for never.', `created` decimal(14,3) NOT NULL DEFAULT '0.000' COMMENT 'A timestamp with millisecond precision indicating when the cache entry was created.', `serialized` smallint NOT NULL DEFAULT '0' COMMENT 'A flag to indicate whether content is serialized (1) or not (0).', `tags` longtext COMMENT 'Space-separated list of cache tags for this entry.', `checksum` varchar(255) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL COMMENT 'The tag invalidation checksum when this entry was saved.', PRIMARY KEY (`cid`), KEY `expire` (`expire`), KEY `created` (`created`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Storage for the cache API.'; -- -- Dumping data for table `[[dbprefix]]cache_default` -- -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]cache_discovery` -- CREATE TABLE `[[dbprefix]]cache_discovery` ( `cid` varchar(255) CHARACTER SET ascii COLLATE ascii_bin NOT NULL DEFAULT '' COMMENT 'Primary Key: Unique cache ID.', `data` longblob COMMENT 'A collection of data to cache.', `expire` bigint NOT NULL DEFAULT '0' COMMENT 'A Unix timestamp indicating when the cache entry should expire, or -1 for never.', `created` decimal(14,3) NOT NULL DEFAULT '0.000' COMMENT 'A timestamp with millisecond precision indicating when the cache entry was created.', `serialized` smallint NOT NULL DEFAULT '0' COMMENT 'A flag to indicate whether content is serialized (1) or not (0).', `tags` longtext COMMENT 'Space-separated list of cache tags for this entry.', `checksum` varchar(255) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL COMMENT 'The tag invalidation checksum when this entry was saved.', PRIMARY KEY (`cid`), KEY `expire` (`expire`), KEY `created` (`created`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Storage for the cache API.'; -- -- Dumping data for table `[[dbprefix]]cache_discovery` -- -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]cache_dynamic_page_cache` -- CREATE TABLE `[[dbprefix]]cache_dynamic_page_cache` ( `cid` varchar(255) CHARACTER SET ascii COLLATE ascii_bin NOT NULL DEFAULT '' COMMENT 'Primary Key: Unique cache ID.', `data` longblob COMMENT 'A collection of data to cache.', `expire` bigint NOT NULL DEFAULT '0' COMMENT 'A Unix timestamp indicating when the cache entry should expire, or -1 for never.', `created` decimal(14,3) NOT NULL DEFAULT '0.000' COMMENT 'A timestamp with millisecond precision indicating when the cache entry was created.', `serialized` smallint NOT NULL DEFAULT '0' COMMENT 'A flag to indicate whether content is serialized (1) or not (0).', `tags` longtext COMMENT 'Space-separated list of cache tags for this entry.', `checksum` varchar(255) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL COMMENT 'The tag invalidation checksum when this entry was saved.', PRIMARY KEY (`cid`), KEY `expire` (`expire`), KEY `created` (`created`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Storage for the cache API.'; -- -- Dumping data for table `[[dbprefix]]cache_dynamic_page_cache` -- -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]cache_entity` -- CREATE TABLE `[[dbprefix]]cache_entity` ( `cid` varchar(255) CHARACTER SET ascii COLLATE ascii_bin NOT NULL DEFAULT '' COMMENT 'Primary Key: Unique cache ID.', `data` longblob COMMENT 'A collection of data to cache.', `expire` bigint NOT NULL DEFAULT '0' COMMENT 'A Unix timestamp indicating when the cache entry should expire, or -1 for never.', `created` decimal(14,3) NOT NULL DEFAULT '0.000' COMMENT 'A timestamp with millisecond precision indicating when the cache entry was created.', `serialized` smallint NOT NULL DEFAULT '0' COMMENT 'A flag to indicate whether content is serialized (1) or not (0).', `tags` longtext COMMENT 'Space-separated list of cache tags for this entry.', `checksum` varchar(255) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL COMMENT 'The tag invalidation checksum when this entry was saved.', PRIMARY KEY (`cid`), KEY `expire` (`expire`), KEY `created` (`created`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Storage for the cache API.'; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]cache_file_parsing` -- CREATE TABLE `[[dbprefix]]cache_file_parsing` ( `cid` varchar(255) CHARACTER SET ascii COLLATE ascii_bin NOT NULL DEFAULT '' COMMENT 'Primary Key: Unique cache ID.', `data` longblob COMMENT 'A collection of data to cache.', `expire` bigint NOT NULL DEFAULT '0' COMMENT 'A Unix timestamp indicating when the cache entry should expire, or -1 for never.', `created` decimal(14,3) NOT NULL DEFAULT '0.000' COMMENT 'A timestamp with millisecond precision indicating when the cache entry was created.', `serialized` smallint NOT NULL DEFAULT '0' COMMENT 'A flag to indicate whether content is serialized (1) or not (0).', `tags` longtext COMMENT 'Space-separated list of cache tags for this entry.', `checksum` varchar(255) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL COMMENT 'The tag invalidation checksum when this entry was saved.', PRIMARY KEY (`cid`), KEY `expire` (`expire`), KEY `created` (`created`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Storage for the cache API.'; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]cache_menu` -- CREATE TABLE `[[dbprefix]]cache_menu` ( `cid` varchar(255) CHARACTER SET ascii COLLATE ascii_bin NOT NULL DEFAULT '' COMMENT 'Primary Key: Unique cache ID.', `data` longblob COMMENT 'A collection of data to cache.', `expire` bigint NOT NULL DEFAULT '0' COMMENT 'A Unix timestamp indicating when the cache entry should expire, or -1 for never.', `created` decimal(14,3) NOT NULL DEFAULT '0.000' COMMENT 'A timestamp with millisecond precision indicating when the cache entry was created.', `serialized` smallint NOT NULL DEFAULT '0' COMMENT 'A flag to indicate whether content is serialized (1) or not (0).', `tags` longtext COMMENT 'Space-separated list of cache tags for this entry.', `checksum` varchar(255) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL COMMENT 'The tag invalidation checksum when this entry was saved.', PRIMARY KEY (`cid`), KEY `expire` (`expire`), KEY `created` (`created`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Storage for the cache API.'; -- -- Dumping data for table `[[dbprefix]]cache_menu` -- -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]cache_render` -- CREATE TABLE `[[dbprefix]]cache_render` ( `cid` varchar(255) CHARACTER SET ascii COLLATE ascii_bin NOT NULL DEFAULT '' COMMENT 'Primary Key: Unique cache ID.', `data` longblob COMMENT 'A collection of data to cache.', `expire` bigint NOT NULL DEFAULT '0' COMMENT 'A Unix timestamp indicating when the cache entry should expire, or -1 for never.', `created` decimal(14,3) NOT NULL DEFAULT '0.000' COMMENT 'A timestamp with millisecond precision indicating when the cache entry was created.', `serialized` smallint NOT NULL DEFAULT '0' COMMENT 'A flag to indicate whether content is serialized (1) or not (0).', `tags` longtext COMMENT 'Space-separated list of cache tags for this entry.', `checksum` varchar(255) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL COMMENT 'The tag invalidation checksum when this entry was saved.', PRIMARY KEY (`cid`), KEY `expire` (`expire`), KEY `created` (`created`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Storage for the cache API.'; -- -- Dumping data for table `[[dbprefix]]cache_render` -- -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]cache_routes` -- CREATE TABLE `[[dbprefix]]cache_routes` ( `cid` varchar(255) CHARACTER SET ascii COLLATE ascii_bin NOT NULL DEFAULT '' COMMENT 'Primary Key: Unique cache ID.', `data` longblob COMMENT 'A collection of data to cache.', `expire` bigint NOT NULL DEFAULT '0' COMMENT 'A Unix timestamp indicating when the cache entry should expire, or -1 for never.', `created` decimal(14,3) NOT NULL DEFAULT '0.000' COMMENT 'A timestamp with millisecond precision indicating when the cache entry was created.', `serialized` smallint NOT NULL DEFAULT '0' COMMENT 'A flag to indicate whether content is serialized (1) or not (0).', `tags` longtext COMMENT 'Space-separated list of cache tags for this entry.', `checksum` varchar(255) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL COMMENT 'The tag invalidation checksum when this entry was saved.', PRIMARY KEY (`cid`), KEY `expire` (`expire`), KEY `created` (`created`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Storage for the cache API.'; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]config` -- CREATE TABLE `[[dbprefix]]config` ( `collection` varchar(255) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL DEFAULT '' COMMENT 'Primary Key: Config object collection.', `name` varchar(255) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL DEFAULT '' COMMENT 'Primary Key: Config object name.', `data` longblob COMMENT 'A serialized configuration object data.', PRIMARY KEY (`collection`,`name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='The base table for configuration data.'; -- -- Dumping data for table `[[dbprefix]]config` -- INSERT INTO `[[dbprefix]]config` VALUES ('', 'announcements_feed.settings', 'a:4:{s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"0G5pZBcxbg8ONYzNLd1RJIsvuFFewm9htnS4I-ABKJ8";}s:7:"max_age";i:86400;s:13:"cron_interval";i:21600;s:5:"limit";i:10;}'), ('', 'automated_cron.settings', 'a:2:{s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"fUksROt4FfkAU9BV4hV2XvhTBSS2nTNrZS4U7S-tKrs";}s:8:"interval";i:10800;}'), ('', 'block.block.claro_breadcrumbs', 'a:13:{s:4:"uuid";s:36:"d5ef84c4-a49e-4f02-abdc-312f9877f0c2";s:8:"langcode";s:2:"en";s:6:"status";b:1;s:12:"dependencies";a:2:{s:6:"module";a:1:{i:0;s:6:"system";}s:5:"theme";a:1:{i:0;s:5:"claro";}}s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"NjcxOBrPOiK5-38t56DwFBDVY4yer7YSlbRWXFuHe7A";}s:2:"id";s:17:"claro_breadcrumbs";s:5:"theme";s:5:"claro";s:6:"region";s:10:"breadcrumb";s:6:"weight";i:0;s:8:"provider";N;s:6:"plugin";s:23:"system_breadcrumb_block";s:8:"settings";a:4:{s:2:"id";s:23:"system_breadcrumb_block";s:5:"label";s:11:"Breadcrumbs";s:13:"label_display";s:1:"0";s:8:"provider";s:6:"system";}s:10:"visibility";a:0:{}}'), ('', 'block.block.claro_content', 'a:13:{s:4:"uuid";s:36:"d945cd3a-50d4-4c08-a17b-ab1a62be65df";s:8:"langcode";s:2:"en";s:6:"status";b:1;s:12:"dependencies";a:2:{s:6:"module";a:1:{i:0;s:6:"system";}s:5:"theme";a:1:{i:0;s:5:"claro";}}s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"a0Yyx1GeyKarZ4T_yXQBR_ZFKnXiFLtxAb6gWLd8nr0";}s:2:"id";s:13:"claro_content";s:5:"theme";s:5:"claro";s:6:"region";s:7:"content";s:6:"weight";i:0;s:8:"provider";N;s:6:"plugin";s:17:"system_main_block";s:8:"settings";a:4:{s:2:"id";s:17:"system_main_block";s:5:"label";s:17:"Main page content";s:13:"label_display";s:1:"0";s:8:"provider";s:6:"system";}s:10:"visibility";a:0:{}}'), ('', 'block.block.claro_help', 'a:13:{s:4:"uuid";s:36:"e243a025-3e09-4c83-abc8-256520c1b62e";s:8:"langcode";s:2:"en";s:6:"status";b:1;s:12:"dependencies";a:2:{s:6:"module";a:1:{i:0;s:4:"help";}s:5:"theme";a:1:{i:0;s:5:"claro";}}s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"jccFSSVqV0WCDb6NtML1VWAWTtDbZ-zn5YgTRMgMrIM";}s:2:"id";s:10:"claro_help";s:5:"theme";s:5:"claro";s:6:"region";s:4:"help";s:6:"weight";i:0;s:8:"provider";N;s:6:"plugin";s:10:"help_block";s:8:"settings";a:4:{s:2:"id";s:10:"help_block";s:5:"label";s:4:"Help";s:13:"label_display";s:1:"0";s:8:"provider";s:4:"help";}s:10:"visibility";a:0:{}}'), ('', 'block.block.claro_local_actions', 'a:13:{s:4:"uuid";s:36:"bc3b528f-be1d-4a15-98f9-36cae7a92b6f";s:8:"langcode";s:2:"en";s:6:"status";b:1;s:12:"dependencies";a:1:{s:5:"theme";a:1:{i:0;s:5:"claro";}}s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"CdXfDmRgAvms7EQovxxWPdYi0GitxeRbVtScYK16ZH0";}s:2:"id";s:19:"claro_local_actions";s:5:"theme";s:5:"claro";s:6:"region";s:7:"content";s:6:"weight";i:-10;s:8:"provider";N;s:6:"plugin";s:19:"local_actions_block";s:8:"settings";a:4:{s:2:"id";s:19:"local_actions_block";s:5:"label";s:21:"Primary admin actions";s:13:"label_display";s:1:"0";s:8:"provider";s:4:"core";}s:10:"visibility";a:0:{}}'), ('', 'block.block.claro_messages', 'a:13:{s:4:"uuid";s:36:"6d63a897-466c-4b9d-8ff1-cc2082276fcd";s:8:"langcode";s:2:"en";s:6:"status";b:1;s:12:"dependencies";a:2:{s:6:"module";a:1:{i:0;s:6:"system";}s:5:"theme";a:1:{i:0;s:5:"claro";}}s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"-Ac3ISpIT0PQ-whzD7_dw0SdKi6dAbRFNWdSjOiVDqg";}s:2:"id";s:14:"claro_messages";s:5:"theme";s:5:"claro";s:6:"region";s:11:"highlighted";s:6:"weight";i:0;s:8:"provider";N;s:6:"plugin";s:21:"system_messages_block";s:8:"settings";a:4:{s:2:"id";s:21:"system_messages_block";s:5:"label";s:15:"Status messages";s:13:"label_display";s:1:"0";s:8:"provider";s:6:"system";}s:10:"visibility";a:0:{}}'), ('', 'block.block.claro_page_title', 'a:13:{s:4:"uuid";s:36:"2a1a3a39-9889-4eb8-afed-ba21326ecdbb";s:8:"langcode";s:2:"en";s:6:"status";b:1;s:12:"dependencies";a:1:{s:5:"theme";a:1:{i:0;s:5:"claro";}}s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"fNwDdW063tk_ktzSWzZVeQS9wzvLooVO280BQ9WrsIs";}s:2:"id";s:16:"claro_page_title";s:5:"theme";s:5:"claro";s:6:"region";s:6:"header";s:6:"weight";i:-30;s:8:"provider";N;s:6:"plugin";s:16:"page_title_block";s:8:"settings";a:4:{s:2:"id";s:16:"page_title_block";s:5:"label";s:10:"Page title";s:13:"label_display";s:1:"0";s:8:"provider";s:4:"core";}s:10:"visibility";a:0:{}}'), ('', 'block.block.claro_primary_local_tasks', 'a:13:{s:4:"uuid";s:36:"9135cd77-721d-40d0-9812-5c9607083374";s:8:"langcode";s:2:"en";s:6:"status";b:1;s:12:"dependencies";a:1:{s:5:"theme";a:1:{i:0;s:5:"claro";}}s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"ACjBZI5shAMiiUpsz-inLYVXDqNNXRnSzAWV3kV_8Hw";}s:2:"id";s:25:"claro_primary_local_tasks";s:5:"theme";s:5:"claro";s:6:"region";s:6:"header";s:6:"weight";i:0;s:8:"provider";N;s:6:"plugin";s:17:"local_tasks_block";s:8:"settings";a:6:{s:2:"id";s:17:"local_tasks_block";s:5:"label";s:12:"Primary tabs";s:13:"label_display";s:1:"0";s:8:"provider";s:4:"core";s:7:"primary";b:1;s:9:"secondary";b:0;}s:10:"visibility";a:0:{}}'), ('', 'block.block.claro_secondary_local_tasks', 'a:13:{s:4:"uuid";s:36:"eab9af4d-06b5-4dc2-9d1f-90158076034c";s:8:"langcode";s:2:"en";s:6:"status";b:1;s:12:"dependencies";a:1:{s:5:"theme";a:1:{i:0;s:5:"claro";}}s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"2L0geP-ixCbCkEpW6BVF6H7vDUZN4ea07_Y9CociQm4";}s:2:"id";s:27:"claro_secondary_local_tasks";s:5:"theme";s:5:"claro";s:6:"region";s:11:"pre_content";s:6:"weight";i:0;s:8:"provider";N;s:6:"plugin";s:17:"local_tasks_block";s:8:"settings";a:6:{s:2:"id";s:17:"local_tasks_block";s:5:"label";s:14:"Secondary tabs";s:13:"label_display";s:1:"0";s:8:"provider";s:4:"core";s:7:"primary";b:0;s:9:"secondary";b:1;}s:10:"visibility";a:0:{}}'), ('', 'block.block.olivero_account_menu', 'a:13:{s:4:"uuid";s:36:"64362da4-efc5-46a5-b78d-b92fd79c4371";s:8:"langcode";s:2:"en";s:6:"status";b:1;s:12:"dependencies";a:3:{s:6:"config";a:1:{i:0;s:19:"system.menu.account";}s:6:"module";a:1:{i:0;s:6:"system";}s:5:"theme";a:1:{i:0;s:7:"olivero";}}s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"gmxYWWHmgbe0Pnv8y48ZLSLH5mEHejOjAP6RLxUfdzU";}s:2:"id";s:20:"olivero_account_menu";s:5:"theme";s:7:"olivero";s:6:"region";s:14:"secondary_menu";s:6:"weight";i:-4;s:8:"provider";N;s:6:"plugin";s:25:"system_menu_block:account";s:8:"settings";a:7:{s:2:"id";s:25:"system_menu_block:account";s:5:"label";s:17:"User account menu";s:13:"label_display";s:1:"0";s:8:"provider";s:6:"system";s:5:"level";i:1;s:5:"depth";i:1;s:16:"expand_all_items";b:0;}s:10:"visibility";a:0:{}}'), ('', 'block.block.olivero_breadcrumbs', 'a:13:{s:4:"uuid";s:36:"be744d19-db19-437a-89ab-a997855a27ae";s:8:"langcode";s:2:"en";s:6:"status";b:1;s:12:"dependencies";a:2:{s:6:"module";a:1:{i:0;s:6:"system";}s:5:"theme";a:1:{i:0;s:7:"olivero";}}s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"VhBzWb7lMRtIOg9G7VSw_0uopi-7zXeHq4vXqqV1HFE";}s:2:"id";s:19:"olivero_breadcrumbs";s:5:"theme";s:7:"olivero";s:6:"region";s:10:"breadcrumb";s:6:"weight";i:0;s:8:"provider";N;s:6:"plugin";s:23:"system_breadcrumb_block";s:8:"settings";a:4:{s:2:"id";s:23:"system_breadcrumb_block";s:5:"label";s:11:"Breadcrumbs";s:13:"label_display";s:1:"0";s:8:"provider";s:6:"system";}s:10:"visibility";a:0:{}}'), ('', 'block.block.olivero_content', 'a:13:{s:4:"uuid";s:36:"a8f5f05a-e4b8-4e65-86f5-8034a39a61d5";s:8:"langcode";s:2:"en";s:6:"status";b:1;s:12:"dependencies";a:2:{s:6:"module";a:1:{i:0;s:6:"system";}s:5:"theme";a:1:{i:0;s:7:"olivero";}}s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"erQSEZF2XUjNmgTl0uNRBzmg18ZGXwUcw2FhApoeuHk";}s:2:"id";s:15:"olivero_content";s:5:"theme";s:7:"olivero";s:6:"region";s:7:"content";s:6:"weight";i:0;s:8:"provider";N;s:6:"plugin";s:17:"system_main_block";s:8:"settings";a:4:{s:2:"id";s:17:"system_main_block";s:5:"label";s:17:"Main page content";s:13:"label_display";s:1:"0";s:8:"provider";s:6:"system";}s:10:"visibility";a:0:{}}'), ('', 'block.block.olivero_help', 'a:13:{s:4:"uuid";s:36:"bfb8c17b-6786-4735-a424-05577f7aaab6";s:8:"langcode";s:2:"en";s:6:"status";b:1;s:12:"dependencies";a:2:{s:6:"module";a:1:{i:0;s:4:"help";}s:5:"theme";a:1:{i:0;s:7:"olivero";}}s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"VfPFqqxfkomud5CO8DUijw85QIl9GIxh_nIxLOYESxg";}s:2:"id";s:12:"olivero_help";s:5:"theme";s:7:"olivero";s:6:"region";s:13:"content_above";s:6:"weight";i:0;s:8:"provider";N;s:6:"plugin";s:10:"help_block";s:8:"settings";a:4:{s:2:"id";s:10:"help_block";s:5:"label";s:4:"Help";s:13:"label_display";s:1:"0";s:8:"provider";s:4:"help";}s:10:"visibility";a:0:{}}'), ('', 'block.block.olivero_main_menu', 'a:13:{s:4:"uuid";s:36:"65572b5a-0bb1-4314-bb14-85d6e6884381";s:8:"langcode";s:2:"en";s:6:"status";b:1;s:12:"dependencies";a:3:{s:6:"config";a:1:{i:0;s:16:"system.menu.main";}s:6:"module";a:1:{i:0;s:6:"system";}s:5:"theme";a:1:{i:0;s:7:"olivero";}}s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"KWAiziL39uEzmOJEql_wbUP2RtqGceL3WM2CfxhMelE";}s:2:"id";s:17:"olivero_main_menu";s:5:"theme";s:7:"olivero";s:6:"region";s:12:"primary_menu";s:6:"weight";i:0;s:8:"provider";N;s:6:"plugin";s:22:"system_menu_block:main";s:8:"settings";a:7:{s:2:"id";s:22:"system_menu_block:main";s:5:"label";s:15:"Main navigation";s:13:"label_display";s:1:"0";s:8:"provider";s:6:"system";s:5:"level";i:1;s:5:"depth";i:2;s:16:"expand_all_items";b:1;}s:10:"visibility";a:0:{}}'), ('', 'block.block.olivero_messages', 'a:13:{s:4:"uuid";s:36:"5ecb0571-8666-419d-9c28-e43b916d6807";s:8:"langcode";s:2:"en";s:6:"status";b:1;s:12:"dependencies";a:2:{s:6:"module";a:1:{i:0;s:6:"system";}s:5:"theme";a:1:{i:0;s:7:"olivero";}}s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"BZ5tpW7H8X4PVGRm3MImTIHd2tN0eF7zOtp4SpRYUA0";}s:2:"id";s:16:"olivero_messages";s:5:"theme";s:7:"olivero";s:6:"region";s:11:"highlighted";s:6:"weight";i:-5;s:8:"provider";N;s:6:"plugin";s:21:"system_messages_block";s:8:"settings";a:4:{s:2:"id";s:21:"system_messages_block";s:5:"label";s:15:"Status messages";s:13:"label_display";s:1:"0";s:8:"provider";s:6:"system";}s:10:"visibility";a:0:{}}'), ('', 'block.block.olivero_page_title', 'a:13:{s:4:"uuid";s:36:"033b1646-beb7-4bb0-9759-7a67f396e0e2";s:8:"langcode";s:2:"en";s:6:"status";b:1;s:12:"dependencies";a:1:{s:5:"theme";a:1:{i:0;s:7:"olivero";}}s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"6aOgWsNTXjqrDm98TXSAjP6qd2nCijD1xw45MrnbK-Y";}s:2:"id";s:18:"olivero_page_title";s:5:"theme";s:7:"olivero";s:6:"region";s:13:"content_above";s:6:"weight";i:-5;s:8:"provider";N;s:6:"plugin";s:16:"page_title_block";s:8:"settings";a:4:{s:2:"id";s:16:"page_title_block";s:5:"label";s:10:"Page title";s:13:"label_display";s:1:"0";s:8:"provider";s:4:"core";}s:10:"visibility";a:0:{}}'), ('', 'block.block.olivero_powered', 'a:13:{s:4:"uuid";s:36:"c65c9520-4da2-4c56-b327-99b3022ad46d";s:8:"langcode";s:2:"en";s:6:"status";b:1;s:12:"dependencies";a:2:{s:6:"module";a:1:{i:0;s:6:"system";}s:5:"theme";a:1:{i:0;s:7:"olivero";}}s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"eYL19CLDyinGTWYQfBD1DswWzglEotE_kHnHx3AxTXM";}s:2:"id";s:15:"olivero_powered";s:5:"theme";s:7:"olivero";s:6:"region";s:13:"footer_bottom";s:6:"weight";i:0;s:8:"provider";N;s:6:"plugin";s:23:"system_powered_by_block";s:8:"settings";a:4:{s:2:"id";s:23:"system_powered_by_block";s:5:"label";s:17:"Powered by Drupal";s:13:"label_display";s:1:"0";s:8:"provider";s:6:"system";}s:10:"visibility";a:0:{}}'), ('', 'block.block.olivero_primary_admin_actions', 'a:13:{s:4:"uuid";s:36:"546d3673-110f-452f-827a-c42bccdb83db";s:8:"langcode";s:2:"en";s:6:"status";b:1;s:12:"dependencies";a:1:{s:5:"theme";a:1:{i:0;s:7:"olivero";}}s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"Q9_2whdOj1YIomfvsIfopROW4FT_X5pY0DjdOiOaQ5U";}s:2:"id";s:29:"olivero_primary_admin_actions";s:5:"theme";s:7:"olivero";s:6:"region";s:11:"highlighted";s:6:"weight";i:-5;s:8:"provider";N;s:6:"plugin";s:19:"local_actions_block";s:8:"settings";a:4:{s:2:"id";s:19:"local_actions_block";s:5:"label";s:21:"Primary admin actions";s:13:"label_display";s:1:"0";s:8:"provider";s:4:"core";}s:10:"visibility";a:0:{}}'), ('', 'block.block.olivero_primary_local_tasks', 'a:13:{s:4:"uuid";s:36:"1965f1b7-3b26-495c-916c-265175da2352";s:8:"langcode";s:2:"en";s:6:"status";b:1;s:12:"dependencies";a:1:{s:5:"theme";a:1:{i:0;s:7:"olivero";}}s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"nGE3EoPQQaQCuqTUtZgw0-KIzmrqdKDzdNQf2JyPUt4";}s:2:"id";s:27:"olivero_primary_local_tasks";s:5:"theme";s:7:"olivero";s:6:"region";s:11:"highlighted";s:6:"weight";i:-4;s:8:"provider";N;s:6:"plugin";s:17:"local_tasks_block";s:8:"settings";a:6:{s:2:"id";s:17:"local_tasks_block";s:5:"label";s:12:"Primary tabs";s:13:"label_display";s:1:"0";s:8:"provider";s:4:"core";s:7:"primary";b:1;s:9:"secondary";b:0;}s:10:"visibility";a:0:{}}'), ('', 'block.block.olivero_secondary_local_tasks', 'a:13:{s:4:"uuid";s:36:"95abba5b-e24a-48d6-afaf-75e056db10af";s:8:"langcode";s:2:"en";s:6:"status";b:1;s:12:"dependencies";a:1:{s:5:"theme";a:1:{i:0;s:7:"olivero";}}s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"ydSxdq7R66I8UMC460rOzlfzvlUL4VRbdwc6z9DWaUI";}s:2:"id";s:29:"olivero_secondary_local_tasks";s:5:"theme";s:7:"olivero";s:6:"region";s:11:"highlighted";s:6:"weight";i:-2;s:8:"provider";N;s:6:"plugin";s:17:"local_tasks_block";s:8:"settings";a:6:{s:2:"id";s:17:"local_tasks_block";s:5:"label";s:14:"Secondary tabs";s:13:"label_display";s:1:"0";s:8:"provider";s:4:"core";s:7:"primary";b:0;s:9:"secondary";b:1;}s:10:"visibility";a:0:{}}'), ('', 'block.block.olivero_site_branding', 'a:13:{s:4:"uuid";s:36:"91aa4f06-72d0-4056-b7f6-04a60c2235fd";s:8:"langcode";s:2:"en";s:6:"status";b:1;s:12:"dependencies";a:2:{s:6:"module";a:1:{i:0;s:6:"system";}s:5:"theme";a:1:{i:0;s:7:"olivero";}}s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"-OAAZDw1OR_UyAEPEKX0Hu4LaZD149vW9PmMnIC-v0o";}s:2:"id";s:21:"olivero_site_branding";s:5:"theme";s:7:"olivero";s:6:"region";s:6:"header";s:6:"weight";i:0;s:8:"provider";N;s:6:"plugin";s:21:"system_branding_block";s:8:"settings";a:7:{s:2:"id";s:21:"system_branding_block";s:5:"label";s:13:"Site branding";s:13:"label_display";s:1:"0";s:8:"provider";s:6:"system";s:13:"use_site_logo";b:1;s:13:"use_site_name";b:1;s:15:"use_site_slogan";b:1;}s:10:"visibility";a:0:{}}'), ('', 'block_content.type.basic', 'a:9:{s:4:"uuid";s:36:"b2e07983-6bb5-49a8-832b-1ba88270bf2d";s:8:"langcode";s:2:"en";s:6:"status";b:1;s:12:"dependencies";a:0:{}s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"pQP5iQy4SdhAMVcjDUncCfkJmTofnHVtXrsMzx4k6Yk";}s:2:"id";s:5:"basic";s:5:"label";s:11:"Basic block";s:8:"revision";b:0;s:11:"description";s:42:"A basic block contains a title and a body.";}'), ('', 'core.date_format.fallback', 'a:9:{s:4:"uuid";s:36:"3ed9e5e2-1686-4b40-ad06-c572537a4ba0";s:8:"langcode";s:2:"en";s:6:"status";b:1;s:12:"dependencies";a:0:{}s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"iIBLu1j9n6Oo5PW-wpu5gdyNs9Kvv4LMRqtQUdJjRz8";}s:2:"id";s:8:"fallback";s:5:"label";s:20:"Fallback date format";s:6:"locked";b:1;s:7:"pattern";s:14:"D, j M Y - H:i";}'), ('', 'core.date_format.html_date', 'a:9:{s:4:"uuid";s:36:"34a6f77a-c040-4333-9090-0baa9386b436";s:8:"langcode";s:2:"en";s:6:"status";b:1;s:12:"dependencies";a:0:{}s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"EOQltUQPmgc6UQ2rcJ4Xi_leCEJj5ui0TR-12duS-Tk";}s:2:"id";s:9:"html_date";s:5:"label";s:9:"HTML Date";s:6:"locked";b:1;s:7:"pattern";s:5:"Y-m-d";}'), ('', 'core.date_format.html_datetime', 'a:9:{s:4:"uuid";s:36:"41ae55de-c44d-4597-ac57-b00499506b2d";s:8:"langcode";s:2:"en";s:6:"status";b:1;s:12:"dependencies";a:0:{}s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"jxfClwZIRXIdcvMrE--WkcZxDGUVoOIE3Sm2NRZlFuE";}s:2:"id";s:13:"html_datetime";s:5:"label";s:13:"HTML Datetime";s:6:"locked";b:1;s:7:"pattern";s:13:"Y-m-d\\TH:i:sO";}'), ('', 'core.date_format.html_month', 'a:9:{s:4:"uuid";s:36:"0bb177c0-e601-44c2-b9b6-0f4070dd7d24";s:8:"langcode";s:2:"en";s:6:"status";b:1;s:12:"dependencies";a:0:{}s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"Z7KuCUwM_WdTNvLcoltuX3_8d-s-8FZkTN6KgNwF0eM";}s:2:"id";s:10:"html_month";s:5:"label";s:10:"HTML Month";s:6:"locked";b:1;s:7:"pattern";s:3:"Y-m";}'), ('', 'core.date_format.html_time', 'a:9:{s:4:"uuid";s:36:"16035447-29cb-46f0-b47e-b14216c06e41";s:8:"langcode";s:2:"en";s:6:"status";b:1;s:12:"dependencies";a:0:{}s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"M7yqicYkU36hRy5p9drAaGBBihhUD1OyujFrAaQ93ZE";}s:2:"id";s:9:"html_time";s:5:"label";s:9:"HTML Time";s:6:"locked";b:1;s:7:"pattern";s:5:"H:i:s";}'), ('', 'core.date_format.html_week', 'a:9:{s:4:"uuid";s:36:"efbba6e9-fd43-4db3-9457-5c298e6a6e92";s:8:"langcode";s:2:"en";s:6:"status";b:1;s:12:"dependencies";a:0:{}s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"wKD4WsoV_wFgv2vgI4mcAAFSIzrye17ykzdwrnApkfY";}s:2:"id";s:9:"html_week";s:5:"label";s:9:"HTML Week";s:6:"locked";b:1;s:7:"pattern";s:5:"Y-\\WW";}'), ('', 'core.date_format.html_year', 'a:9:{s:4:"uuid";s:36:"496cd052-bfbb-43ee-a6fa-6880c8d54cb8";s:8:"langcode";s:2:"en";s:6:"status";b:1;s:12:"dependencies";a:0:{}s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"OjekiQuX9RbVQ2_8jOHBL94RgYLePqX7wpfNGgcQzrk";}s:2:"id";s:9:"html_year";s:5:"label";s:9:"HTML Year";s:6:"locked";b:1;s:7:"pattern";s:1:"Y";}'), ('', 'core.date_format.html_yearless_date', 'a:9:{s:4:"uuid";s:36:"8c6d8ff2-8719-4160-be09-9cbceb0fe514";s:8:"langcode";s:2:"en";s:6:"status";b:1;s:12:"dependencies";a:0:{}s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"5VpawMrKPEPCkoO4YpPa0TDFO2dgiIHfTziJtwlmUxc";}s:2:"id";s:18:"html_yearless_date";s:5:"label";s:18:"HTML Yearless date";s:6:"locked";b:1;s:7:"pattern";s:3:"m-d";}'), ('', 'core.date_format.long', 'a:9:{s:4:"uuid";s:36:"2bfec0c7-bee9-41f2-8aec-8985b57ab51b";s:8:"langcode";s:2:"en";s:6:"status";b:1;s:12:"dependencies";a:0:{}s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"5B4_r5Vd0_9UaJwtAC5yFCm9-k8NNvp1xiQNhFFkknU";}s:2:"id";s:4:"long";s:5:"label";s:17:"Default long date";s:6:"locked";b:0;s:7:"pattern";s:14:"l, j F Y - H:i";}'), ('', 'core.date_format.medium', 'a:9:{s:4:"uuid";s:36:"7f8edbed-8e6f-4977-8daf-ac6437d000a7";s:8:"langcode";s:2:"en";s:6:"status";b:1;s:12:"dependencies";a:0:{}s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"q7pDV2d9qFh1IVqvymOxUUYGSziZDeg961wURC0cSLs";}s:2:"id";s:6:"medium";s:5:"label";s:19:"Default medium date";s:6:"locked";b:0;s:7:"pattern";s:14:"D, j M Y - H:i";}'), ('', 'core.date_format.olivero_medium', 'a:9:{s:4:"uuid";s:36:"648e812d-8365-4cf0-9cdc-8d132daebd0c";s:8:"langcode";s:2:"en";s:6:"status";b:1;s:12:"dependencies";a:1:{s:8:"enforced";a:1:{s:5:"theme";a:1:{i:0;s:7:"olivero";}}}s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"z7ynTCss9wwEi8ojENJ08qx44RN6leI-tqoN2o5QzdE";}s:2:"id";s:14:"olivero_medium";s:5:"label";s:14:"Olivero Medium";s:6:"locked";b:0;s:7:"pattern";s:5:"j F Y";}'), ('', 'core.date_format.short', 'a:9:{s:4:"uuid";s:36:"ddd4b7d9-9d00-4b08-9a24-f21fda047765";s:8:"langcode";s:2:"en";s:6:"status";b:1;s:12:"dependencies";a:0:{}s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"SAeixlV7Djy_Ggv_1P95TiqD4KUihA5icvU521tA84Y";}s:2:"id";s:5:"short";s:5:"label";s:18:"Default short date";s:6:"locked";b:0;s:7:"pattern";s:11:"j M Y - H:i";}'), ('', 'core.entity_form_display.block_content.basic.default', 'a:11:{s:4:"uuid";s:36:"cace029d-332c-4ab0-829b-0425fc65a987";s:8:"langcode";s:2:"en";s:6:"status";b:1;s:12:"dependencies";a:2:{s:6:"config";a:2:{i:0;s:24:"block_content.type.basic";i:1;s:36:"field.field.block_content.basic.body";}s:6:"module";a:1:{i:0;s:4:"text";}}s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"LkaGmERlOeiaSxru1nkzcbcKnGvFcT2oy3YeQn0e4bc";}s:2:"id";s:27:"block_content.basic.default";s:16:"targetEntityType";s:13:"block_content";s:6:"bundle";s:5:"basic";s:4:"mode";s:7:"default";s:7:"content";a:2:{s:4:"body";a:5:{s:4:"type";s:13:"text_textarea";s:6:"weight";i:-4;s:6:"region";s:7:"content";s:8:"settings";a:2:{s:4:"rows";i:5;s:11:"placeholder";s:0:"";}s:20:"third_party_settings";a:0:{}}s:4:"info";a:5:{s:4:"type";s:16:"string_textfield";s:6:"weight";i:-5;s:6:"region";s:7:"content";s:8:"settings";a:2:{s:4:"size";i:60;s:11:"placeholder";s:0:"";}s:20:"third_party_settings";a:0:{}}}s:6:"hidden";a:0:{}}'), ('', 'core.entity_form_display.user.user.default', 'a:11:{s:4:"uuid";s:36:"bc255db2-eb65-447a-9dac-d8e9fe2427dc";s:8:"langcode";s:2:"en";s:6:"status";b:1;s:12:"dependencies";a:2:{s:6:"config";a:2:{i:0;s:34:"field.field.user.user.user_picture";i:1;s:21:"image.style.thumbnail";}s:6:"module";a:2:{i:0;s:5:"image";i:1;s:4:"user";}}s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"Yj33guGRXeB-uq182k6bwtAUtKGpO17nkYxn8FnjhBM";}s:2:"id";s:17:"user.user.default";s:16:"targetEntityType";s:4:"user";s:6:"bundle";s:4:"user";s:4:"mode";s:7:"default";s:7:"content";a:4:{s:7:"account";a:2:{s:6:"weight";i:-10;s:6:"region";s:7:"content";}s:8:"language";a:2:{s:6:"weight";i:0;s:6:"region";s:7:"content";}s:8:"timezone";a:2:{s:6:"weight";i:6;s:6:"region";s:7:"content";}s:12:"user_picture";a:5:{s:4:"type";s:11:"image_image";s:6:"weight";i:-1;s:6:"region";s:7:"content";s:8:"settings";a:2:{s:18:"progress_indicator";s:8:"throbber";s:19:"preview_image_style";s:9:"thumbnail";}s:20:"third_party_settings";a:0:{}}}s:6:"hidden";a:0:{}}'), ('', 'core.entity_form_mode.user.register', 'a:10:{s:4:"uuid";s:36:"6aa2126f-eb69-45d6-b101-8f4732afe2cc";s:8:"langcode";s:2:"en";s:6:"status";b:1;s:12:"dependencies";a:1:{s:6:"module";a:1:{i:0;s:4:"user";}}s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"1TFiplNN7Wmj_DtVLLLP-NLPYpZJdAswKY-vTrYgFyo";}s:2:"id";s:13:"user.register";s:5:"label";s:8:"Register";s:11:"description";N;s:16:"targetEntityType";s:4:"user";s:5:"cache";b:1;}'), ('', 'core.entity_view_display.block_content.basic.default', 'a:11:{s:4:"uuid";s:36:"5f79fa52-cab1-4fdf-9849-e2e76c5382ce";s:8:"langcode";s:2:"en";s:6:"status";b:1;s:12:"dependencies";a:2:{s:6:"config";a:2:{i:0;s:24:"block_content.type.basic";i:1;s:36:"field.field.block_content.basic.body";}s:6:"module";a:1:{i:0;s:4:"text";}}s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"hBNNDTFwakREOTa6GGMqN899Iyrii0hInwSJtQ7Kj30";}s:2:"id";s:27:"block_content.basic.default";s:16:"targetEntityType";s:13:"block_content";s:6:"bundle";s:5:"basic";s:4:"mode";s:7:"default";s:7:"content";a:1:{s:4:"body";a:6:{s:4:"type";s:12:"text_default";s:5:"label";s:6:"hidden";s:8:"settings";a:0:{}s:20:"third_party_settings";a:0:{}s:6:"weight";i:0;s:6:"region";s:7:"content";}}s:6:"hidden";a:0:{}}'), ('', 'core.entity_view_display.user.user.compact', 'a:11:{s:4:"uuid";s:36:"85189c40-6322-4d11-a961-b1610a2e6f4c";s:8:"langcode";s:2:"en";s:6:"status";b:1;s:12:"dependencies";a:2:{s:6:"config";a:3:{i:0;s:34:"core.entity_view_mode.user.compact";i:1;s:34:"field.field.user.user.user_picture";i:2;s:21:"image.style.thumbnail";}s:6:"module";a:2:{i:0;s:5:"image";i:1;s:4:"user";}}s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"l0SHKaTcmotRxHn_b46mtoCaIHxqgnhaT3uFH8a3c-I";}s:2:"id";s:17:"user.user.compact";s:16:"targetEntityType";s:4:"user";s:6:"bundle";s:4:"user";s:4:"mode";s:7:"compact";s:7:"content";a:1:{s:12:"user_picture";a:6:{s:4:"type";s:5:"image";s:5:"label";s:6:"hidden";s:8:"settings";a:3:{s:10:"image_link";s:7:"content";s:11:"image_style";s:9:"thumbnail";s:13:"image_loading";a:1:{s:9:"attribute";s:4:"lazy";}}s:20:"third_party_settings";a:0:{}s:6:"weight";i:0;s:6:"region";s:7:"content";}}s:6:"hidden";a:1:{s:10:"member_for";b:1;}}'), ('', 'core.entity_view_display.user.user.default', 'a:11:{s:4:"uuid";s:36:"8952eea7-430f-4482-9be1-6ae263a0dd85";s:8:"langcode";s:2:"en";s:6:"status";b:1;s:12:"dependencies";a:2:{s:6:"config";a:2:{i:0;s:34:"field.field.user.user.user_picture";i:1;s:21:"image.style.thumbnail";}s:6:"module";a:2:{i:0;s:5:"image";i:1;s:4:"user";}}s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"SULWJMy7nHcntPqaIZ7FlQPf_XzIiC5tnUCKattDCEI";}s:2:"id";s:17:"user.user.default";s:16:"targetEntityType";s:4:"user";s:6:"bundle";s:4:"user";s:4:"mode";s:7:"default";s:7:"content";a:2:{s:10:"member_for";a:2:{s:6:"weight";i:5;s:6:"region";s:7:"content";}s:12:"user_picture";a:6:{s:4:"type";s:5:"image";s:5:"label";s:6:"hidden";s:8:"settings";a:3:{s:10:"image_link";s:7:"content";s:11:"image_style";s:9:"thumbnail";s:13:"image_loading";a:1:{s:9:"attribute";s:4:"lazy";}}s:20:"third_party_settings";a:0:{}s:6:"weight";i:0;s:6:"region";s:7:"content";}}s:6:"hidden";a:0:{}}'), ('', 'core.entity_view_mode.block_content.full', 'a:10:{s:4:"uuid";s:36:"624e62b3-8202-4c7b-8190-20f48f368160";s:8:"langcode";s:2:"en";s:6:"status";b:0;s:12:"dependencies";a:1:{s:6:"module";a:1:{i:0;s:13:"block_content";}}s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"Q7yUUYeRLByl-MCGveKKF_KhAtNICLCMJuKWfugCvso";}s:2:"id";s:18:"block_content.full";s:5:"label";s:4:"Full";s:11:"description";s:0:"";s:16:"targetEntityType";s:13:"block_content";s:5:"cache";b:1;}'), ('', 'core.entity_view_mode.node.full', 'a:10:{s:4:"uuid";s:36:"058e5369-a0ff-4eb2-b057-e9af515a8bfa";s:8:"langcode";s:2:"en";s:6:"status";b:0;s:12:"dependencies";a:1:{s:6:"module";a:1:{i:0;s:4:"node";}}s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"QJ2aZ1xfVf59aq6Pz5X7fyUOa2HxuCoTwQ_RQjoulAU";}s:2:"id";s:9:"node.full";s:5:"label";s:12:"Full content";s:11:"description";s:0:"";s:16:"targetEntityType";s:4:"node";s:5:"cache";b:1;}'), ('', 'core.entity_view_mode.node.rss', 'a:10:{s:4:"uuid";s:36:"8110f686-6ab0-4dd6-80cf-7bb7e640c5e1";s:8:"langcode";s:2:"en";s:6:"status";b:0;s:12:"dependencies";a:1:{s:6:"module";a:1:{i:0;s:4:"node";}}s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"l8fiAFE3Kng_6bhLlUDnVTkTDzXWxzYFrCWTrngVXEA";}s:2:"id";s:8:"node.rss";s:5:"label";s:3:"RSS";s:11:"description";s:0:"";s:16:"targetEntityType";s:4:"node";s:5:"cache";b:1;}'), ('', 'core.entity_view_mode.node.teaser', 'a:10:{s:4:"uuid";s:36:"3dc60e48-6235-4d0f-a253-f559bce6b9e1";s:8:"langcode";s:2:"en";s:6:"status";b:1;s:12:"dependencies";a:1:{s:6:"module";a:1:{i:0;s:4:"node";}}s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"KgGJDZFpMaz_8bTv6fN1bXS3Qi5LWmRJI9R53kEGsNQ";}s:2:"id";s:11:"node.teaser";s:5:"label";s:6:"Teaser";s:11:"description";s:0:"";s:16:"targetEntityType";s:4:"node";s:5:"cache";b:1;}'), ('', 'core.entity_view_mode.taxonomy_term.full', 'a:10:{s:4:"uuid";s:36:"32b22328-cb86-4764-aa90-f3a07ac92119";s:8:"langcode";s:2:"en";s:6:"status";b:1;s:12:"dependencies";a:1:{s:6:"module";a:1:{i:0;s:8:"taxonomy";}}s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"iukUENpf8CFvjZbGGacKX_Ges0-lU9z6zvsd32P6kbo";}s:2:"id";s:18:"taxonomy_term.full";s:5:"label";s:18:"Taxonomy term page";s:11:"description";s:0:"";s:16:"targetEntityType";s:13:"taxonomy_term";s:5:"cache";b:1;}'), ('', 'core.entity_view_mode.user.compact', 'a:10:{s:4:"uuid";s:36:"2e494ad2-1845-4b72-b71d-19b0fd89de9a";s:8:"langcode";s:2:"en";s:6:"status";b:1;s:12:"dependencies";a:1:{s:6:"module";a:1:{i:0;s:4:"user";}}s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"TtD7OuGskOsQfoGyxXkrdtllBpR37J19d5BMQDZWJgA";}s:2:"id";s:12:"user.compact";s:5:"label";s:7:"Compact";s:11:"description";s:0:"";s:16:"targetEntityType";s:4:"user";s:5:"cache";b:1;}'), ('', 'core.entity_view_mode.user.full', 'a:10:{s:4:"uuid";s:36:"06009ee8-9199-4bfd-ac62-f72e35d82d74";s:8:"langcode";s:2:"en";s:6:"status";b:0;s:12:"dependencies";a:1:{s:6:"module";a:1:{i:0;s:4:"user";}}s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"ZbXunWS_xAvMZXFfinyvClDAb_RCVLt7gAzE3v16E-Q";}s:2:"id";s:9:"user.full";s:5:"label";s:12:"User account";s:11:"description";s:0:"";s:16:"targetEntityType";s:4:"user";s:5:"cache";b:1;}'), ('', 'core.extension', 'a:4:{s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"4GIX5Esnc_umpXUBj4IIocRX7Mt5fPhm4AgXfE3E56E";}s:6:"module";a:39:{s:18:"announcements_feed";i:0;s:14:"automated_cron";i:0;s:8:"big_pipe";i:0;s:5:"block";i:0;s:13:"block_content";i:0;s:10:"breakpoint";i:0;s:9:"ckeditor5";i:0;s:6:"config";i:0;s:10:"contextual";i:0;s:8:"datetime";i:0;s:5:"dblog";i:0;s:18:"dynamic_page_cache";i:0;s:6:"editor";i:0;s:5:"field";i:0;s:8:"field_ui";i:0;s:4:"file";i:0;s:6:"filter";i:0;s:4:"help";i:0;s:5:"image";i:0;s:14:"layout_builder";i:0;s:16:"layout_discovery";i:0;s:4:"link";i:0;s:17:"menu_link_content";i:0;s:7:"menu_ui";i:0;s:5:"mysql";i:0;s:10:"navigation";i:0;s:4:"node";i:0;s:7:"options";i:0;s:10:"page_cache";i:0;s:4:"path";i:0;s:10:"path_alias";i:0;s:6:"system";i:0;s:8:"taxonomy";i:0;s:4:"text";i:0;s:6:"update";i:0;s:4:"user";i:0;s:8:"views_ui";i:0;s:5:"views";i:10;s:8:"standard";i:1000;}s:5:"theme";a:2:{s:7:"olivero";i:0;s:5:"claro";i:0;}s:7:"profile";s:8:"standard";}'), ('', 'core.menu.static_menu_link_overrides', 'a:2:{s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"jdY7AU0tU-QsjmiOw3W8vwpYMb-By--_MSFgbqKUTYM";}s:11:"definitions";a:0:{}}'), ('', 'dblog.settings', 'a:2:{s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"e883aGsrt1wFrsydlYU584PZONCSfRy0DtkZ9KzHb58";}s:9:"row_limit";i:1000;}'), ('', 'editor.editor.basic_html', 'a:9:{s:4:"uuid";s:36:"37cfe4fc-3554-47a3-b0dc-7973f4f53408";s:8:"langcode";s:2:"en";s:6:"status";b:1;s:12:"dependencies";a:2:{s:6:"config";a:1:{i:0;s:24:"filter.format.basic_html";}s:6:"module";a:1:{i:0;s:9:"ckeditor5";}}s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"JrKgrmvARpUBMILom2cUF4pz3mwrBnCYSlHjGwsKZ64";}s:6:"format";s:10:"basic_html";s:6:"editor";s:9:"ckeditor5";s:8:"settings";a:2:{s:7:"toolbar";a:1:{s:5:"items";a:15:{i:0;s:4:"bold";i:1;s:6:"italic";i:2;s:1:"|";i:3;s:4:"link";i:4;s:1:"|";i:5;s:12:"bulletedList";i:6;s:12:"numberedList";i:7;s:1:"|";i:8;s:10:"blockQuote";i:9;s:17:"drupalInsertImage";i:10;s:1:"|";i:11;s:7:"heading";i:12;s:4:"code";i:13;s:1:"|";i:14;s:13:"sourceEditing";}}s:7:"plugins";a:4:{s:17:"ckeditor5_heading";a:1:{s:16:"enabled_headings";a:5:{i:0;s:8:"heading2";i:1;s:8:"heading3";i:2;s:8:"heading4";i:3;s:8:"heading5";i:4;s:8:"heading6";}}s:21:"ckeditor5_imageResize";a:1:{s:12:"allow_resize";b:1;}s:14:"ckeditor5_list";a:2:{s:10:"properties";a:3:{s:8:"reversed";b:0;s:10:"startIndex";b:1;s:6:"styles";b:1;}s:10:"multiBlock";b:1;}s:23:"ckeditor5_sourceEditing";a:1:{s:12:"allowed_tags";a:11:{i:0;s:6:"";i:1;s:4:"
";i:2;s:4:"
";i:3;s:4:"
";i:4;s:12:"";i:5;s:17:"
";i:6;s:7:"

";i:7;s:7:"

";i:8;s:7:"

";i:9;s:7:"

";i:10;s:7:"
";}}}}s:12:"image_upload";a:5:{s:6:"status";b:1;s:6:"scheme";s:6:"public";s:9:"directory";s:13:"inline-images";s:8:"max_size";N;s:14:"max_dimensions";a:2:{s:5:"width";N;s:6:"height";N;}}}'), ('', 'editor.editor.full_html', 'a:9:{s:4:"uuid";s:36:"4cedd1a9-09f8-4bb0-a53d-950958cecefa";s:8:"langcode";s:2:"en";s:6:"status";b:1;s:12:"dependencies";a:2:{s:6:"config";a:1:{i:0;s:23:"filter.format.full_html";}s:6:"module";a:1:{i:0;s:9:"ckeditor5";}}s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"4mmJmN8kEiUf9aytnx0QPOORBNL5JaF_ijXRwOm2stg";}s:6:"format";s:9:"full_html";s:6:"editor";s:9:"ckeditor5";s:8:"settings";a:2:{s:7:"toolbar";a:1:{s:5:"items";a:21:{i:0;s:4:"bold";i:1;s:6:"italic";i:2;s:13:"strikethrough";i:3;s:11:"superscript";i:4;s:9:"subscript";i:5;s:12:"removeFormat";i:6;s:1:"|";i:7;s:4:"link";i:8;s:1:"|";i:9;s:12:"bulletedList";i:10;s:12:"numberedList";i:11;s:1:"|";i:12;s:10:"blockQuote";i:13;s:17:"drupalInsertImage";i:14;s:11:"insertTable";i:15;s:14:"horizontalLine";i:16;s:1:"|";i:17;s:7:"heading";i:18;s:9:"codeBlock";i:19;s:1:"|";i:20;s:13:"sourceEditing";}}s:7:"plugins";a:5:{s:19:"ckeditor5_codeBlock";a:1:{s:9:"languages";a:14:{i:0;a:2:{s:5:"label";s:10:"Plain text";s:8:"language";s:9:"plaintext";}i:1;a:2:{s:5:"label";s:1:"C";s:8:"language";s:1:"c";}i:2;a:2:{s:5:"label";s:2:"C#";s:8:"language";s:2:"cs";}i:3;a:2:{s:5:"label";s:3:"C++";s:8:"language";s:3:"cpp";}i:4;a:2:{s:5:"label";s:3:"CSS";s:8:"language";s:3:"css";}i:5;a:2:{s:5:"label";s:4:"Diff";s:8:"language";s:4:"diff";}i:6;a:2:{s:5:"label";s:4:"HTML";s:8:"language";s:4:"html";}i:7;a:2:{s:5:"label";s:4:"Java";s:8:"language";s:4:"java";}i:8;a:2:{s:5:"label";s:10:"JavaScript";s:8:"language";s:10:"javascript";}i:9;a:2:{s:5:"label";s:3:"PHP";s:8:"language";s:3:"php";}i:10;a:2:{s:5:"label";s:6:"Python";s:8:"language";s:6:"python";}i:11;a:2:{s:5:"label";s:4:"Ruby";s:8:"language";s:4:"ruby";}i:12;a:2:{s:5:"label";s:10:"TypeScript";s:8:"language";s:10:"typescript";}i:13;a:2:{s:5:"label";s:3:"XML";s:8:"language";s:3:"xml";}}}s:17:"ckeditor5_heading";a:1:{s:16:"enabled_headings";a:5:{i:0;s:8:"heading2";i:1;s:8:"heading3";i:2;s:8:"heading4";i:3;s:8:"heading5";i:4;s:8:"heading6";}}s:21:"ckeditor5_imageResize";a:1:{s:12:"allow_resize";b:1;}s:14:"ckeditor5_list";a:2:{s:10:"properties";a:3:{s:8:"reversed";b:1;s:10:"startIndex";b:1;s:6:"styles";b:1;}s:10:"multiBlock";b:1;}s:23:"ckeditor5_sourceEditing";a:1:{s:12:"allowed_tags";a:0:{}}}}s:12:"image_upload";a:5:{s:6:"status";b:1;s:6:"scheme";s:6:"public";s:9:"directory";s:13:"inline-images";s:8:"max_size";N;s:14:"max_dimensions";a:2:{s:5:"width";N;s:6:"height";N;}}}'), ('', 'field.field.block_content.basic.body', 'a:17:{s:4:"uuid";s:36:"b5184c4d-7b7e-4332-8aa2-35905b734ef4";s:8:"langcode";s:2:"en";s:6:"status";b:1;s:12:"dependencies";a:2:{s:6:"config";a:2:{i:0;s:24:"block_content.type.basic";i:1;s:32:"field.storage.block_content.body";}s:6:"module";a:1:{i:0;s:4:"text";}}s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"EMr_qVrI5RWwhnTUxZkHqQEZhDT3UfcwmFfobpxgkbk";}s:2:"id";s:24:"block_content.basic.body";s:10:"field_name";s:4:"body";s:11:"entity_type";s:13:"block_content";s:6:"bundle";s:5:"basic";s:5:"label";s:4:"Body";s:11:"description";s:0:"";s:8:"required";b:0;s:12:"translatable";b:1;s:13:"default_value";a:0:{}s:22:"default_value_callback";s:0:"";s:8:"settings";a:1:{s:15:"allowed_formats";a:0:{}}s:10:"field_type";s:9:"text_long";}'), ('', 'field.field.user.user.user_picture', 'a:17:{s:4:"uuid";s:36:"eb2ef396-f81d-4cf3-91d8-077c38ff2139";s:8:"langcode";s:2:"en";s:6:"status";b:1;s:12:"dependencies";a:2:{s:6:"config";a:1:{i:0;s:31:"field.storage.user.user_picture";}s:6:"module";a:2:{i:0;s:5:"image";i:1;s:4:"user";}}s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"TE3gYVzd6g0deXqUl8SEu2azHwVG-SdXm3kwbrz0kHw";}s:2:"id";s:22:"user.user.user_picture";s:10:"field_name";s:12:"user_picture";s:11:"entity_type";s:4:"user";s:6:"bundle";s:4:"user";s:5:"label";s:7:"Picture";s:11:"description";s:29:"Your virtual face or picture.";s:8:"required";b:0;s:12:"translatable";b:1;s:13:"default_value";a:0:{}s:22:"default_value_callback";s:0:"";s:8:"settings";a:12:{s:7:"handler";s:12:"default:file";s:16:"handler_settings";a:0:{}s:14:"file_directory";s:40:"pictures/[date:custom:Y]-[date:custom:m]";s:15:"file_extensions";s:21:"png gif jpg jpeg webp";s:12:"max_filesize";s:0:"";s:14:"max_resolution";s:0:"";s:14:"min_resolution";s:0:"";s:9:"alt_field";b:0;s:18:"alt_field_required";b:0;s:11:"title_field";b:0;s:20:"title_field_required";b:0;s:13:"default_image";a:5:{s:4:"uuid";N;s:3:"alt";s:0:"";s:5:"title";s:0:"";s:5:"width";N;s:6:"height";N;}}s:10:"field_type";s:5:"image";}'), ('', 'field.storage.block_content.body', 'a:17:{s:4:"uuid";s:36:"8a5dc572-d900-4e7c-acd0-895a3289098b";s:8:"langcode";s:2:"en";s:6:"status";b:1;s:12:"dependencies";a:1:{s:6:"module";a:2:{i:0;s:13:"block_content";i:1;s:4:"text";}}s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"2WZSsjjllV5cVYJdmJ5ry7mMzjnILAowkJEeUymFslU";}s:2:"id";s:18:"block_content.body";s:10:"field_name";s:4:"body";s:11:"entity_type";s:13:"block_content";s:4:"type";s:9:"text_long";s:8:"settings";a:0:{}s:6:"module";s:4:"text";s:6:"locked";b:0;s:11:"cardinality";i:1;s:12:"translatable";b:1;s:7:"indexes";a:0:{}s:22:"persist_with_no_fields";b:1;s:14:"custom_storage";b:0;}'), ('', 'field.storage.user.user_picture', 'a:17:{s:4:"uuid";s:36:"4d013298-b92c-41ee-a63d-ec2260859af0";s:8:"langcode";s:2:"en";s:6:"status";b:1;s:12:"dependencies";a:1:{s:6:"module";a:3:{i:0;s:4:"file";i:1;s:5:"image";i:2;s:4:"user";}}s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"0q8-mw8y-Ls5I578sIPQFLp4ljpH7WvVYpzY-I9O-8E";}s:2:"id";s:17:"user.user_picture";s:10:"field_name";s:12:"user_picture";s:11:"entity_type";s:4:"user";s:4:"type";s:5:"image";s:8:"settings";a:5:{s:11:"target_type";s:4:"file";s:13:"display_field";b:0;s:15:"display_default";b:0;s:10:"uri_scheme";s:6:"public";s:13:"default_image";a:5:{s:4:"uuid";N;s:3:"alt";s:0:"";s:5:"title";s:0:"";s:5:"width";N;s:6:"height";N;}}s:6:"module";s:5:"image";s:6:"locked";b:0;s:11:"cardinality";i:1;s:12:"translatable";b:1;s:7:"indexes";a:1:{s:9:"target_id";a:1:{i:0;s:9:"target_id";}}s:22:"persist_with_no_fields";b:0;s:14:"custom_storage";b:0;}'), ('', 'field_ui.settings', 'a:2:{s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"Q1nMi90W6YQxKzZAgJQw7Ag9U4JrsEUwkomF0lhvbIM";}s:12:"field_prefix";s:6:"field_";}'), ('', 'file.settings', 'a:5:{s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"2bwjZB1IjEYbppgZT3g7YW_5h_LDZYNa3DaDEfWX82U";}s:11:"description";a:2:{s:4:"type";s:9:"textfield";s:6:"length";i:128;}s:4:"icon";a:1:{s:9:"directory";s:23:"core/modules/file/icons";}s:35:"make_unused_managed_files_temporary";b:0;s:21:"filename_sanitization";a:6:{s:13:"transliterate";b:0;s:18:"replace_whitespace";b:0;s:24:"replace_non_alphanumeric";b:0;s:22:"deduplicate_separators";b:0;s:9:"lowercase";b:0;s:21:"replacement_character";s:1:"-";}}'), ('', 'filter.format.basic_html', 'a:9:{s:4:"uuid";s:36:"1cc76dc9-6581-4dfe-8800-9950a8fe3043";s:8:"langcode";s:2:"en";s:6:"status";b:1;s:12:"dependencies";a:1:{s:6:"module";a:1:{i:0;s:6:"editor";}}s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"mclCbTlJwWJORez4Y1eX2MqA0aGjSMAoJb3TaBABcK8";}s:4:"name";s:10:"Basic HTML";s:6:"format";s:10:"basic_html";s:6:"weight";i:0;s:7:"filters";a:6:{s:21:"editor_file_reference";a:5:{s:2:"id";s:21:"editor_file_reference";s:8:"provider";s:6:"editor";s:6:"status";b:1;s:6:"weight";i:11;s:8:"settings";a:0:{}}s:12:"filter_align";a:5:{s:2:"id";s:12:"filter_align";s:8:"provider";s:6:"filter";s:6:"status";b:1;s:6:"weight";i:7;s:8:"settings";a:0:{}}s:14:"filter_caption";a:5:{s:2:"id";s:14:"filter_caption";s:8:"provider";s:6:"filter";s:6:"status";b:1;s:6:"weight";i:8;s:8:"settings";a:0:{}}s:11:"filter_html";a:5:{s:2:"id";s:11:"filter_html";s:8:"provider";s:6:"filter";s:6:"status";b:1;s:6:"weight";i:-10;s:8:"settings";a:3:{s:12:"allowed_html";s:243:"

    1. ";s:16:"filter_html_help";b:0;s:20:"filter_html_nofollow";b:0;}}s:24:"filter_html_image_secure";a:5:{s:2:"id";s:24:"filter_html_image_secure";s:8:"provider";s:6:"filter";s:6:"status";b:1;s:6:"weight";i:9;s:8:"settings";a:0:{}}s:22:"filter_image_lazy_load";a:5:{s:2:"id";s:22:"filter_image_lazy_load";s:8:"provider";s:6:"filter";s:6:"status";b:1;s:6:"weight";i:15;s:8:"settings";a:0:{}}}}'), ('', 'filter.format.full_html', 'a:9:{s:4:"uuid";s:36:"077d7443-f9ae-4862-8627-44b6fca4cc94";s:8:"langcode";s:2:"en";s:6:"status";b:1;s:12:"dependencies";a:1:{s:6:"module";a:1:{i:0;s:6:"editor";}}s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"vpZysv3RHJjhYzq7O_q5q8mVlHdrSzKELmXyiX6RtV0";}s:4:"name";s:9:"Full HTML";s:6:"format";s:9:"full_html";s:6:"weight";i:2;s:7:"filters";a:5:{s:21:"editor_file_reference";a:5:{s:2:"id";s:21:"editor_file_reference";s:8:"provider";s:6:"editor";s:6:"status";b:1;s:6:"weight";i:11;s:8:"settings";a:0:{}}s:12:"filter_align";a:5:{s:2:"id";s:12:"filter_align";s:8:"provider";s:6:"filter";s:6:"status";b:1;s:6:"weight";i:8;s:8:"settings";a:0:{}}s:14:"filter_caption";a:5:{s:2:"id";s:14:"filter_caption";s:8:"provider";s:6:"filter";s:6:"status";b:1;s:6:"weight";i:9;s:8:"settings";a:0:{}}s:20:"filter_htmlcorrector";a:5:{s:2:"id";s:20:"filter_htmlcorrector";s:8:"provider";s:6:"filter";s:6:"status";b:1;s:6:"weight";i:10;s:8:"settings";a:0:{}}s:22:"filter_image_lazy_load";a:5:{s:2:"id";s:22:"filter_image_lazy_load";s:8:"provider";s:6:"filter";s:6:"status";b:1;s:6:"weight";i:15;s:8:"settings";a:0:{}}}}'), ('', 'filter.format.plain_text', 'a:9:{s:4:"uuid";s:36:"e8b0db9c-ae95-4131-856b-f27c5723fd1d";s:8:"langcode";s:2:"en";s:6:"status";b:1;s:12:"dependencies";a:0:{}s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"JLMwODO0epnA_H-jFlH9ezVfa5YBJniRv3MmLqYNl_Q";}s:4:"name";s:10:"Plain text";s:6:"format";s:10:"plain_text";s:6:"weight";i:10;s:7:"filters";a:3:{s:12:"filter_autop";a:5:{s:2:"id";s:12:"filter_autop";s:8:"provider";s:6:"filter";s:6:"status";b:1;s:6:"weight";i:0;s:8:"settings";a:0:{}}s:18:"filter_html_escape";a:5:{s:2:"id";s:18:"filter_html_escape";s:8:"provider";s:6:"filter";s:6:"status";b:1;s:6:"weight";i:-10;s:8:"settings";a:0:{}}s:10:"filter_url";a:5:{s:2:"id";s:10:"filter_url";s:8:"provider";s:6:"filter";s:6:"status";b:1;s:6:"weight";i:0;s:8:"settings";a:1:{s:17:"filter_url_length";i:72;}}}}'), ('', 'filter.format.restricted_html', 'a:9:{s:4:"uuid";s:36:"44b7583d-32ba-4adf-8ba0-f815dfb3ef9c";s:8:"langcode";s:2:"en";s:6:"status";b:1;s:12:"dependencies";a:0:{}s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"QiKqQS_YGAT3Qr4vaAgZICJknm-MGCzt_xBAMqg-tRM";}s:4:"name";s:15:"Restricted HTML";s:6:"format";s:15:"restricted_html";s:6:"weight";i:1;s:7:"filters";a:3:{s:12:"filter_autop";a:5:{s:2:"id";s:12:"filter_autop";s:8:"provider";s:6:"filter";s:6:"status";b:1;s:6:"weight";i:0;s:8:"settings";a:0:{}}s:11:"filter_html";a:5:{s:2:"id";s:11:"filter_html";s:8:"provider";s:6:"filter";s:6:"status";b:1;s:6:"weight";i:-10;s:8:"settings";a:3:{s:12:"allowed_html";s:149:"
        1. ";s:16:"filter_html_help";b:1;s:20:"filter_html_nofollow";b:0;}}s:10:"filter_url";a:5:{s:2:"id";s:10:"filter_url";s:8:"provider";s:6:"filter";s:6:"status";b:1;s:6:"weight";i:0;s:8:"settings";a:1:{s:17:"filter_url_length";i:72;}}}}'), ('', 'filter.settings', 'a:3:{s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"FiPjM3WdB__ruFA7B6TLwni_UcZbmek5G4b2dxQItxA";}s:15:"fallback_format";s:10:"plain_text";s:27:"always_show_fallback_choice";b:0;}'), ('', 'image.settings', 'a:4:{s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"k-yDFHbqNfpe-Srg4sdCSqaosCl2D8uwyEY5esF8gEw";}s:13:"preview_image";s:29:"core/modules/image/sample.png";s:26:"allow_insecure_derivatives";b:0;s:20:"suppress_itok_output";b:0;}'), ('', 'image.style.large', 'a:8:{s:4:"uuid";s:36:"80ddfeed-ada9-46fc-8671-0e9a8a8370ce";s:8:"langcode";s:2:"en";s:6:"status";b:1;s:12:"dependencies";a:0:{}s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"yrvYt4IlFH9AKX1vx-_N6OfeG_6HgylGP7hhB9AMH3k";}s:4:"name";s:5:"large";s:5:"label";s:16:"Large (480×480)";s:7:"effects";a:2:{s:36:"ddd73aa7-4bd6-4c85-b600-bdf2b1628d1d";a:4:{s:4:"uuid";s:36:"ddd73aa7-4bd6-4c85-b600-bdf2b1628d1d";s:2:"id";s:11:"image_scale";s:6:"weight";i:0;s:4:"data";a:3:{s:5:"width";i:480;s:6:"height";i:480;s:7:"upscale";b:0;}}s:36:"6e8fe467-84c1-4ef0-a73b-7eccf1cc20e8";a:4:{s:4:"uuid";s:36:"6e8fe467-84c1-4ef0-a73b-7eccf1cc20e8";s:2:"id";s:18:"image_convert_avif";s:6:"weight";i:2;s:4:"data";a:1:{s:9:"extension";s:4:"webp";}}}}'), ('', 'image.style.medium', 'a:8:{s:4:"uuid";s:36:"d43f5913-c05b-4e41-9569-48ef53c294cc";s:8:"langcode";s:2:"en";s:6:"status";b:1;s:12:"dependencies";a:0:{}s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"aUG-EM9kKTKhcsdttoYmG5tug7pU2mNOQzcpp91jfFQ";}s:4:"name";s:6:"medium";s:5:"label";s:17:"Medium (220×220)";s:7:"effects";a:2:{s:36:"bddf0d06-42f9-4c75-a700-a33cafa25ea0";a:4:{s:4:"uuid";s:36:"bddf0d06-42f9-4c75-a700-a33cafa25ea0";s:2:"id";s:11:"image_scale";s:6:"weight";i:0;s:4:"data";a:3:{s:5:"width";i:220;s:6:"height";i:220;s:7:"upscale";b:0;}}s:36:"c410ed2f-aa30-4d9c-a224-d2865d9188cd";a:4:{s:4:"uuid";s:36:"c410ed2f-aa30-4d9c-a224-d2865d9188cd";s:2:"id";s:18:"image_convert_avif";s:6:"weight";i:2;s:4:"data";a:1:{s:9:"extension";s:4:"webp";}}}}'), ('', 'image.style.thumbnail', 'a:8:{s:4:"uuid";s:36:"4f9fbace-68d5-4d08-bf7a-db5452ba7def";s:8:"langcode";s:2:"en";s:6:"status";b:1;s:12:"dependencies";a:0:{}s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"JXYDC3SLZUXSwnTjR9rBo6uZF3vDSZd8S7EA5ZOH7kM";}s:4:"name";s:9:"thumbnail";s:5:"label";s:20:"Thumbnail (100×100)";s:7:"effects";a:2:{s:36:"1cfec298-8620-4749-b100-ccb6c4500779";a:4:{s:4:"uuid";s:36:"1cfec298-8620-4749-b100-ccb6c4500779";s:2:"id";s:11:"image_scale";s:6:"weight";i:0;s:4:"data";a:3:{s:5:"width";i:100;s:6:"height";i:100;s:7:"upscale";b:0;}}s:36:"c4eb9942-2c9e-4a81-949f-6161a44b6559";a:4:{s:4:"uuid";s:36:"c4eb9942-2c9e-4a81-949f-6161a44b6559";s:2:"id";s:18:"image_convert_avif";s:6:"weight";i:2;s:4:"data";a:1:{s:9:"extension";s:4:"webp";}}}}'), ('', 'image.style.wide', 'a:8:{s:4:"uuid";s:36:"8f124ae2-668d-4423-b4ff-4a4cc1f8340d";s:8:"langcode";s:2:"en";s:6:"status";b:1;s:12:"dependencies";a:0:{}s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"vbPSqe3wbFSkaEY0zGy3NVpofBxcTZYrT6N2YPQX7nI";}s:4:"name";s:4:"wide";s:5:"label";s:11:"Wide (1090)";s:7:"effects";a:2:{s:36:"09959c15-59ce-4f6d-90df-e2d7cf32bce5";a:4:{s:4:"uuid";s:36:"09959c15-59ce-4f6d-90df-e2d7cf32bce5";s:2:"id";s:11:"image_scale";s:6:"weight";i:1;s:4:"data";a:3:{s:5:"width";i:1090;s:6:"height";N;s:7:"upscale";b:0;}}s:36:"294c5f76-42a4-43ce-82c2-81c2f4723da0";a:4:{s:4:"uuid";s:36:"294c5f76-42a4-43ce-82c2-81c2f4723da0";s:2:"id";s:18:"image_convert_avif";s:6:"weight";i:2;s:4:"data";a:1:{s:9:"extension";s:4:"webp";}}}}'), ('', 'menu_ui.settings', 'a:2:{s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"SqMarzIjxC3F8dZo9FEOxfqDKD_sdW1tbcFTV1BA2zU";}s:24:"override_parent_selector";b:0;}'), ('', 'navigation.block_layout', 'a:3:{s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"P5Y3iMx85NwT445BpYIe9fME9nXDF1AXmOJ_QmTnF34";}s:8:"langcode";s:2:"en";s:8:"sections";a:1:{i:0;a:4:{s:9:"layout_id";s:17:"navigation_layout";s:15:"layout_settings";a:1:{s:5:"label";s:0:"";}s:10:"components";a:5:{s:36:"2622e40b-8786-4b8c-8883-19e49da53023";a:5:{s:4:"uuid";s:36:"2622e40b-8786-4b8c-8883-19e49da53023";s:6:"region";s:7:"content";s:13:"configuration";a:4:{s:2:"id";s:20:"navigation_shortcuts";s:5:"label";s:9:"Shortcuts";s:13:"label_display";s:1:"0";s:8:"provider";s:10:"navigation";}s:6:"weight";i:0;s:10:"additional";a:0:{}}s:36:"3ff7be01-c8b0-4444-88f3-2364d7a8054e";a:5:{s:4:"uuid";s:36:"3ff7be01-c8b0-4444-88f3-2364d7a8054e";s:6:"region";s:7:"content";s:13:"configuration";a:6:{s:2:"id";s:23:"navigation_menu:content";s:5:"label";s:7:"Content";s:13:"label_display";s:1:"0";s:8:"provider";s:10:"navigation";s:5:"level";i:1;s:5:"depth";i:2;}s:6:"weight";i:1;s:10:"additional";a:0:{}}s:36:"3f2f743f-856f-404a-9c28-57ee83af4691";a:5:{s:4:"uuid";s:36:"3f2f743f-856f-404a-9c28-57ee83af4691";s:6:"region";s:7:"content";s:13:"configuration";a:6:{s:2:"id";s:21:"navigation_menu:admin";s:5:"label";s:14:"Administration";s:13:"label_display";s:1:"0";s:8:"provider";s:10:"navigation";s:5:"level";i:2;s:5:"depth";i:2;}s:6:"weight";i:2;s:10:"additional";a:0:{}}s:36:"283da777-e051-4571-8089-47633a9ce706";a:5:{s:4:"uuid";s:36:"283da777-e051-4571-8089-47633a9ce706";s:6:"region";s:6:"footer";s:13:"configuration";a:4:{s:2:"id";s:15:"navigation_user";s:5:"label";s:4:"User";s:13:"label_display";s:1:"0";s:8:"provider";s:10:"navigation";}s:6:"weight";i:0;s:10:"additional";a:0:{}}s:36:"6d7080a7-abab-4bad-b960-2459ca892a54";a:5:{s:4:"uuid";s:36:"6d7080a7-abab-4bad-b960-2459ca892a54";s:6:"region";s:6:"footer";s:13:"configuration";a:8:{s:2:"id";s:15:"navigation_link";s:5:"label";s:4:"Help";s:13:"label_display";s:1:"0";s:8:"provider";s:10:"navigation";s:15:"context_mapping";a:0:{}s:5:"title";s:4:"Help";s:3:"uri";s:20:"internal:/admin/help";s:10:"icon_class";s:4:"help";}s:6:"weight";i:-2;s:10:"additional";a:0:{}}}s:20:"third_party_settings";a:0:{}}}}'), ('', 'navigation.settings', 'a:2:{s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"FeJ38-AShWZUh_NwJprQueefcE06zSnUa3cw1lOdjTY";}s:4:"logo";a:3:{s:8:"provider";s:7:"default";s:4:"path";s:0:"";s:3:"max";a:3:{s:8:"filesize";i:1048576;s:6:"height";i:40;s:5:"width";i:40;}}}'), ('', 'node.settings', 'a:2:{s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"W0cgFPhPJ3gAdqm06-az48BLf5MVcoZVS0HdByoofi0";}s:15:"use_admin_theme";b:1;}'), ('', 'olivero.settings', 'a:7:{s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"JkatGyQH5-1sqy2NXLUZ3rqGFhCAqO9pqLflNusnKZo";}s:7:"favicon";a:1:{s:11:"use_default";b:1;}s:8:"features";a:4:{s:20:"comment_user_picture";b:1;s:25:"comment_user_verification";b:1;s:7:"favicon";b:1;s:17:"node_user_picture";b:0;}s:4:"logo";a:1:{s:11:"use_default";b:0;}s:22:"mobile_menu_all_widths";i:0;s:22:"site_branding_bg_color";s:7:"default";s:18:"base_primary_color";s:7:"#1b9ae4";}'), ('', 'system.action.node_delete_action', 'a:10:{s:4:"uuid";s:36:"f989578f-780a-4bb7-8449-17cace021c58";s:8:"langcode";s:2:"en";s:6:"status";b:1;s:12:"dependencies";a:1:{s:6:"module";a:1:{i:0;s:4:"node";}}s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"t43OqwzP3CTbcAagSsWKNy6KwMm_zShXo3c4-So6rQg";}s:2:"id";s:18:"node_delete_action";s:5:"label";s:14:"Delete content";s:4:"type";s:4:"node";s:6:"plugin";s:25:"entity:delete_action:node";s:13:"configuration";a:0:{}}'), ('', 'system.action.node_make_sticky_action', 'a:10:{s:4:"uuid";s:36:"8555920f-5045-4158-a9f2-7f45c8494c32";s:8:"langcode";s:2:"en";s:6:"status";b:1;s:12:"dependencies";a:1:{s:6:"module";a:1:{i:0;s:4:"node";}}s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"sOb26JSy3fGpWkvR0WYN6_hMqj_6d1rvbvrkzp1yya0";}s:2:"id";s:23:"node_make_sticky_action";s:5:"label";s:19:"Make content sticky";s:4:"type";s:4:"node";s:6:"plugin";s:23:"node_make_sticky_action";s:13:"configuration";a:0:{}}'), ('', 'system.action.node_make_unsticky_action', 'a:10:{s:4:"uuid";s:36:"7975c51b-2432-42c8-9bb2-ecb0b2eca8b2";s:8:"langcode";s:2:"en";s:6:"status";b:1;s:12:"dependencies";a:1:{s:6:"module";a:1:{i:0;s:4:"node";}}s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"lDM9mvIGAu8Sw8rt-uCO4Sr7yX5VPrDPxYcawkbKd6k";}s:2:"id";s:25:"node_make_unsticky_action";s:5:"label";s:21:"Make content unsticky";s:4:"type";s:4:"node";s:6:"plugin";s:25:"node_make_unsticky_action";s:13:"configuration";a:0:{}}'), ('', 'system.action.node_promote_action', 'a:10:{s:4:"uuid";s:36:"0b8212e6-2087-43bc-bab3-9ac8a3df2f20";s:8:"langcode";s:2:"en";s:6:"status";b:1;s:12:"dependencies";a:1:{s:6:"module";a:1:{i:0;s:4:"node";}}s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"N0RDBTqiK4dKoN4p4oW2j0SGWycdHyALUe9M-Ofp89U";}s:2:"id";s:19:"node_promote_action";s:5:"label";s:29:"Promote content to front page";s:4:"type";s:4:"node";s:6:"plugin";s:19:"node_promote_action";s:13:"configuration";a:0:{}}'); INSERT INTO `[[dbprefix]]config` VALUES ('', 'system.action.node_publish_action', 'a:10:{s:4:"uuid";s:36:"5b86f304-a96e-48a1-9d90-588fe7cb7ac5";s:8:"langcode";s:2:"en";s:6:"status";b:1;s:12:"dependencies";a:1:{s:6:"module";a:1:{i:0;s:4:"node";}}s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"2B9uF8NL5gutNKSdPRAhhAsDWFZZG1PJOBmx0aBGd_0";}s:2:"id";s:19:"node_publish_action";s:5:"label";s:15:"Publish content";s:4:"type";s:4:"node";s:6:"plugin";s:26:"entity:publish_action:node";s:13:"configuration";a:0:{}}'), ('', 'system.action.node_save_action', 'a:10:{s:4:"uuid";s:36:"1b3eaf9b-7007-4d35-847c-0e7c2a05bfef";s:8:"langcode";s:2:"en";s:6:"status";b:1;s:12:"dependencies";a:1:{s:6:"module";a:1:{i:0;s:4:"node";}}s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"LhdsoZPL_pFas2fjaAWue4zvrQ_tEVofLYtcNec-JGM";}s:2:"id";s:16:"node_save_action";s:5:"label";s:12:"Save content";s:4:"type";s:4:"node";s:6:"plugin";s:23:"entity:save_action:node";s:13:"configuration";a:0:{}}'), ('', 'system.action.node_unpromote_action', 'a:10:{s:4:"uuid";s:36:"a973e686-32a1-4354-8e5d-a9fb6d6b4d31";s:8:"langcode";s:2:"en";s:6:"status";b:1;s:12:"dependencies";a:1:{s:6:"module";a:1:{i:0;s:4:"node";}}s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"JBptjnfuOMtsdKygklXxoOgeOCTMtQxlkymjnnj-cC0";}s:2:"id";s:21:"node_unpromote_action";s:5:"label";s:30:"Remove content from front page";s:4:"type";s:4:"node";s:6:"plugin";s:21:"node_unpromote_action";s:13:"configuration";a:0:{}}'), ('', 'system.action.node_unpublish_action', 'a:10:{s:4:"uuid";s:36:"153631ff-6ee2-4e3c-98b3-2dbb4194f001";s:8:"langcode";s:2:"en";s:6:"status";b:1;s:12:"dependencies";a:1:{s:6:"module";a:1:{i:0;s:4:"node";}}s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"C7X8h9FWlwkQ9y5mnU2JzgaZICAdc6HFbPVbhvjlAYE";}s:2:"id";s:21:"node_unpublish_action";s:5:"label";s:17:"Unpublish content";s:4:"type";s:4:"node";s:6:"plugin";s:28:"entity:unpublish_action:node";s:13:"configuration";a:0:{}}'), ('', 'system.action.taxonomy_term_publish_action', 'a:10:{s:4:"uuid";s:36:"8e1c36bd-9d73-4dd3-b2e6-a0155952261c";s:8:"langcode";s:2:"en";s:6:"status";b:1;s:12:"dependencies";a:1:{s:6:"module";a:1:{i:0;s:8:"taxonomy";}}s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"DoVt_VGgVLcDD4XmVbSFzr0K17SJy9imFiYusKkJBgY";}s:2:"id";s:28:"taxonomy_term_publish_action";s:5:"label";s:21:"Publish taxonomy term";s:4:"type";s:13:"taxonomy_term";s:6:"plugin";s:35:"entity:publish_action:taxonomy_term";s:13:"configuration";a:0:{}}'), ('', 'system.action.taxonomy_term_unpublish_action', 'a:10:{s:4:"uuid";s:36:"ba90a0f2-5119-4145-b96b-b11335c18aeb";s:8:"langcode";s:2:"en";s:6:"status";b:1;s:12:"dependencies";a:1:{s:6:"module";a:1:{i:0;s:8:"taxonomy";}}s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"z2sNRM3ECa7FPCGnSNje_9SmZJQgwhD_6fG_L4Mr8zI";}s:2:"id";s:30:"taxonomy_term_unpublish_action";s:5:"label";s:23:"Unpublish taxonomy term";s:4:"type";s:13:"taxonomy_term";s:6:"plugin";s:37:"entity:unpublish_action:taxonomy_term";s:13:"configuration";a:0:{}}'), ('', 'system.action.user_add_role_action.administrator', 'a:9:{s:4:"uuid";s:36:"7194afad-b151-42ff-9c2e-709e57ecf31c";s:8:"langcode";s:2:"en";s:6:"status";b:1;s:12:"dependencies";a:2:{s:6:"config";a:1:{i:0;s:23:"user.role.administrator";}s:6:"module";a:1:{i:0;s:4:"user";}}s:2:"id";s:34:"user_add_role_action.administrator";s:5:"label";s:50:"Add the Administrator role to the selected user(s)";s:4:"type";s:4:"user";s:6:"plugin";s:20:"user_add_role_action";s:13:"configuration";a:1:{s:3:"rid";s:13:"administrator";}}'), ('', 'system.action.user_add_role_action.content_editor', 'a:9:{s:4:"uuid";s:36:"bfa048cc-3296-481a-9e7a-abc09c492619";s:8:"langcode";s:2:"en";s:6:"status";b:1;s:12:"dependencies";a:2:{s:6:"config";a:1:{i:0;s:24:"user.role.content_editor";}s:6:"module";a:1:{i:0;s:4:"user";}}s:2:"id";s:35:"user_add_role_action.content_editor";s:5:"label";s:51:"Add the Content editor role to the selected user(s)";s:4:"type";s:4:"user";s:6:"plugin";s:20:"user_add_role_action";s:13:"configuration";a:1:{s:3:"rid";s:14:"content_editor";}}'), ('', 'system.action.user_block_user_action', 'a:10:{s:4:"uuid";s:36:"62c24ea2-84aa-4e15-a262-d3ff85d773d8";s:8:"langcode";s:2:"en";s:6:"status";b:1;s:12:"dependencies";a:1:{s:6:"module";a:1:{i:0;s:4:"user";}}s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"DyypzTfThX10FFQw-399qPfEbLLyrhXgQrKPVsmAoJ4";}s:2:"id";s:22:"user_block_user_action";s:5:"label";s:26:"Block the selected user(s)";s:4:"type";s:4:"user";s:6:"plugin";s:22:"user_block_user_action";s:13:"configuration";a:0:{}}'), ('', 'system.action.user_cancel_user_action', 'a:10:{s:4:"uuid";s:36:"b035040e-77be-4522-bb4a-82fc3ff92aea";s:8:"langcode";s:2:"en";s:6:"status";b:1;s:12:"dependencies";a:1:{s:6:"module";a:1:{i:0;s:4:"user";}}s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"nvrL9bFilzBvm2bjO9rQnFDpBA7dBBUjShSSt6NS-DU";}s:2:"id";s:23:"user_cancel_user_action";s:5:"label";s:35:"Cancel the selected user account(s)";s:4:"type";s:4:"user";s:6:"plugin";s:23:"user_cancel_user_action";s:13:"configuration";a:0:{}}'), ('', 'system.action.user_remove_role_action.administrator', 'a:9:{s:4:"uuid";s:36:"4593d86f-3e1e-4483-bd78-8f11ca8590f4";s:8:"langcode";s:2:"en";s:6:"status";b:1;s:12:"dependencies";a:2:{s:6:"config";a:1:{i:0;s:23:"user.role.administrator";}s:6:"module";a:1:{i:0;s:4:"user";}}s:2:"id";s:37:"user_remove_role_action.administrator";s:5:"label";s:55:"Remove the Administrator role from the selected user(s)";s:4:"type";s:4:"user";s:6:"plugin";s:23:"user_remove_role_action";s:13:"configuration";a:1:{s:3:"rid";s:13:"administrator";}}'), ('', 'system.action.user_remove_role_action.content_editor', 'a:9:{s:4:"uuid";s:36:"1f14ca2a-c116-4de0-8ca8-db9cb381103f";s:8:"langcode";s:2:"en";s:6:"status";b:1;s:12:"dependencies";a:2:{s:6:"config";a:1:{i:0;s:24:"user.role.content_editor";}s:6:"module";a:1:{i:0;s:4:"user";}}s:2:"id";s:38:"user_remove_role_action.content_editor";s:5:"label";s:56:"Remove the Content editor role from the selected user(s)";s:4:"type";s:4:"user";s:6:"plugin";s:23:"user_remove_role_action";s:13:"configuration";a:1:{s:3:"rid";s:14:"content_editor";}}'), ('', 'system.action.user_unblock_user_action', 'a:10:{s:4:"uuid";s:36:"ed3d0b16-3d94-4d5e-999d-2ee9e7079a48";s:8:"langcode";s:2:"en";s:6:"status";b:1;s:12:"dependencies";a:1:{s:6:"module";a:1:{i:0;s:4:"user";}}s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"SPsUXsR3Rc8d1y3gewzaAKWa1ncea_ywXX3f7LTn7k0";}s:2:"id";s:24:"user_unblock_user_action";s:5:"label";s:28:"Unblock the selected user(s)";s:4:"type";s:4:"user";s:6:"plugin";s:24:"user_unblock_user_action";s:13:"configuration";a:0:{}}'), ('', 'system.advisories', 'a:3:{s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"x0FuQ_7Cg81mSDQwG028_Z0CjH3R9ib5IDlHeV2BbAo";}s:7:"enabled";b:1;s:14:"interval_hours";i:6;}'), ('', 'system.cron', 'a:3:{s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"f3yToH8v8EaBZU0NFFw2qR8ogSCuWVmQaN0hpYR1BD8";}s:9:"threshold";a:2:{s:20:"requirements_warning";i:172800;s:18:"requirements_error";i:1209600;}s:7:"logging";b:1;}'), ('', 'system.date', 'a:4:{s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"IVsFTD1mvR2NGBP_1myt9kFIFmGepH4PyaN5aQBYpno";}s:9:"first_day";i:0;s:7:"country";a:1:{s:7:"default";N;}s:8:"timezone";a:2:{s:7:"default";s:3:"UTC";s:4:"user";a:3:{s:12:"configurable";b:1;s:7:"default";i:0;s:4:"warn";b:0;}}}'), ('', 'system.diff', 'a:2:{s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"1WanmaEhxW_vM8_5Ktsdntj8MaO9UBHXg0lN603PsWM";}s:7:"context";a:2:{s:13:"lines_leading";i:2;s:14:"lines_trailing";i:2;}}'), ('', 'system.feature_flags', 'a:2:{s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"ZYyVj1FtPGV40Cf65YDVTUIc7YgLH6trXlotuevfs2I";}s:16:"linkset_endpoint";b:0;}'), ('', 'system.file', 'a:4:{s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"mguGHCYb9Dw5EcpfjwoShGV1Vjkbz3QuPRCLfxiye-g";}s:22:"allow_insecure_uploads";b:0;s:14:"default_scheme";s:6:"public";s:21:"temporary_maximum_age";i:21600;}'), ('', 'system.image', 'a:2:{s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"durWHaKeBaq4d9Wpi4RqwADj1OufDepcnJuhVLmKN24";}s:7:"toolkit";s:2:"gd";}'), ('', 'system.image.gd', 'a:2:{s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"eNXaHfkJJUThHeF0nvkoXyPLRrKYGxgHRjORvT4F5rQ";}s:12:"jpeg_quality";i:75;}'), ('', 'system.logging', 'a:2:{s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"u3-njszl92FaxjrCMiq0yDcjAfcdx72w1zT1O9dx6aA";}s:11:"error_level";s:4:"hide";}'), ('', 'system.mail', 'a:3:{s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"5PvD9swkqWUeHkabdvbJ2SQqdhrzjkCT21wtD4BLfk4";}s:9:"interface";a:1:{s:7:"default";s:8:"php_mail";}s:10:"mailer_dsn";a:6:{s:6:"scheme";s:8:"sendmail";s:4:"host";s:7:"default";s:4:"user";N;s:8:"password";N;s:4:"port";N;s:7:"options";a:0:{}}}'), ('', 'system.maintenance', 'a:3:{s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"1SNdA25INsV5YjlgAJtfC-6AM8VcWe_00xneMLb2yFg";}s:8:"langcode";s:2:"en";s:7:"message";s:93:"@site is currently under maintenance. We should be back shortly. Thank you for your patience.";}'), ('', 'system.menu.account', 'a:9:{s:4:"uuid";s:36:"b0cfbc25-423a-4da7-9ce2-a3172bb1957a";s:8:"langcode";s:2:"en";s:6:"status";b:1;s:12:"dependencies";a:0:{}s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"M_Bh81osDyUQ4wV0GgU_NdBNqkzM87sLxjaCdFj9mnw";}s:2:"id";s:7:"account";s:5:"label";s:17:"User account menu";s:11:"description";s:40:"Links related to the active user account";s:6:"locked";b:1;}'), ('', 'system.menu.admin', 'a:9:{s:4:"uuid";s:36:"d3de3f6d-6f23-4e24-a88c-93180f532311";s:8:"langcode";s:2:"en";s:6:"status";b:1;s:12:"dependencies";a:0:{}s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"sapEi2YDGoI9yQIT_WgIV2vUdQ6DScH0V3fAyTadAL0";}s:2:"id";s:5:"admin";s:5:"label";s:14:"Administration";s:11:"description";s:25:"Administrative task links";s:6:"locked";b:1;}'), ('', 'system.menu.content', 'a:9:{s:4:"uuid";s:36:"84796182-c274-4b3f-bc8d-4a591b3708c0";s:8:"langcode";s:2:"en";s:6:"status";b:1;s:12:"dependencies";a:1:{s:8:"enforced";a:1:{s:6:"module";a:1:{i:0;s:10:"navigation";}}}s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"nqVwm91Uyib_rvFaNPF1MdYqHlmZ38w5rsOVVy4uWDw";}s:2:"id";s:7:"content";s:5:"label";s:7:"Content";s:11:"description";s:18:"Content task links";s:6:"locked";b:1;}'), ('', 'system.menu.footer', 'a:9:{s:4:"uuid";s:36:"034d4e87-a6da-431f-a9b3-fb2c3cc0e152";s:8:"langcode";s:2:"en";s:6:"status";b:1;s:12:"dependencies";a:0:{}s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"7yrlW5z9zdg2eBucB2GPqXKSMQfH9lSRSO4DbWF7AFc";}s:2:"id";s:6:"footer";s:5:"label";s:6:"Footer";s:11:"description";s:22:"Site information links";s:6:"locked";b:1;}'), ('', 'system.menu.main', 'a:9:{s:4:"uuid";s:36:"7e16d4fe-2c26-4a16-af5d-0d4fcafac5c2";s:8:"langcode";s:2:"en";s:6:"status";b:1;s:12:"dependencies";a:0:{}s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"Q2Ra3jfoIVk0f3SjxJX61byRQFVBAbpzYDQOiY-kno8";}s:2:"id";s:4:"main";s:5:"label";s:15:"Main navigation";s:11:"description";s:18:"Site section links";s:6:"locked";b:1;}'), ('', 'system.menu.navigation-user-links', 'a:9:{s:4:"uuid";s:36:"4db7802c-d56d-4e03-9b26-d36df0a34c47";s:8:"langcode";s:2:"en";s:6:"status";b:1;s:12:"dependencies";a:1:{s:8:"enforced";a:1:{s:6:"module";a:1:{i:0;s:10:"navigation";}}}s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"RP5hKQYc151zqBiiWtGfY-3JN7i35Gtxo1f2hhS09hM";}s:2:"id";s:21:"navigation-user-links";s:5:"label";s:21:"Navigation user links";s:11:"description";s:35:"User links to be used in Navigation";s:6:"locked";b:1;}'), ('', 'system.menu.tools', 'a:9:{s:4:"uuid";s:36:"f3e052aa-261e-4683-8205-8d70cd48b34d";s:8:"langcode";s:2:"en";s:6:"status";b:1;s:12:"dependencies";a:0:{}s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"BCM-vV1zzRaLHN18dqAR_CuGOj8AFJvTx7BKl_8Gcxc";}s:2:"id";s:5:"tools";s:5:"label";s:5:"Tools";s:11:"description";s:39:"User tool links, often added by modules";s:6:"locked";b:1;}'), ('', 'system.performance', 'a:5:{s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"wGvJj14l_owd0ghDskKv-kXAVLZpga6dnGsPwBgxYBs";}s:5:"cache";a:1:{s:4:"page";a:1:{s:7:"max_age";i:0;}}s:3:"css";a:2:{s:10:"preprocess";b:1;s:8:"compress";b:1;}s:8:"fast_404";a:4:{s:7:"enabled";b:1;s:5:"paths";s:69:"/\\.(?:txt|png|gif|jpe?g|css|js|ico|swf|flv|cgi|bat|pl|dll|exe|asp)$/i";s:13:"exclude_paths";s:27:"/\\/(?:styles|imagecache)\\//";s:4:"html";s:162:"404 Not Found

          Not Found

          The requested URL "@path" was not found on this server.

          ";}s:2:"js";a:2:{s:10:"preprocess";b:1;s:8:"compress";b:1;}}'), ('', 'system.site', 'a:11:{s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"ijfbzDTN4CbE7Sr-6ubWzy_t1vH4OtU1doNCLssVz-4";}s:8:"langcode";s:2:"en";s:4:"uuid";s:36:"fd214170-ee84-44a5-83e5-7972036a1b8d";s:4:"name";[[ser_site_name]]s:4:"mail";[[site_mail]]s:6:"slogan";s:0:"";s:4:"page";a:3:{i:403;s:0:"";i:404;s:0:"";s:5:"front";s:5:"/node";}s:18:"admin_compact_mode";b:0;s:17:"weight_select_max";i:100;s:16:"default_langcode";s:2:"en";s:17:"mail_notification";N;}'), ('', 'system.theme', 'a:3:{s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"eJ529VM1gSIA_vgTy2PdiDvJuG0xhSxfQjCyl5WKlv4";}s:5:"admin";s:5:"claro";s:7:"default";s:7:"olivero";}'), ('', 'system.theme.global', 'a:4:{s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"KZiV2LB312xgJBphfq5BTjmp16xiR5KM8InBJ-pff7Y";}s:7:"favicon";a:4:{s:8:"mimetype";s:24:"image/vnd.microsoft.icon";s:4:"path";s:0:"";s:3:"url";s:0:"";s:11:"use_default";b:1;}s:8:"features";a:4:{s:20:"comment_user_picture";b:1;s:25:"comment_user_verification";b:1;s:7:"favicon";b:1;s:17:"node_user_picture";b:1;}s:4:"logo";a:3:{s:4:"path";s:0:"";s:3:"url";N;s:11:"use_default";b:1;}}'), ('', 'taxonomy.settings', 'a:4:{s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"zKpaWT6cJc1tVQQaTqatGELaCqU_oyRym6zTl27Yias";}s:20:"maintain_index_table";b:1;s:17:"override_selector";b:0;s:20:"terms_per_page_admin";i:100;}'), ('', 'taxonomy.vocabulary.tags', 'a:10:{s:4:"uuid";s:36:"35dd4091-6747-4f71-8490-e4f6f06df5a0";s:8:"langcode";s:2:"en";s:6:"status";b:1;s:12:"dependencies";a:0:{}s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"PWTsHiwkIfp5TW-iTBc9AhBtvbYY6wrp3MopazQ-95o";}s:4:"name";s:4:"Tags";s:3:"vid";s:4:"tags";s:11:"description";s:60:"Use tags to group content on similar topics into categories.";s:6:"weight";i:0;s:12:"new_revision";b:0;}'), ('', 'text.settings', 'a:2:{s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"Bkewb77RBOK3_aXMPsp8p87gbc03NvmC5gBLzPl7hVA";}s:22:"default_summary_length";i:600;}'), ('', 'update.settings', 'a:4:{s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"cceqUa945af6yMPEeM1pWJQoA-tumoAqhThW2xGoZ04";}s:5:"check";a:2:{s:19:"disabled_extensions";b:1;s:13:"interval_days";i:1;}s:5:"fetch";a:3:{s:3:"url";N;s:12:"max_attempts";i:2;s:7:"timeout";i:30;}s:12:"notification";a:2:{s:6:"emails";a:1:{i:0;[[site_mail]]}s:9:"threshold";s:3:"all";}}'), ('', 'user.flood', 'a:6:{s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"UYfMzeP1S8jKm9PSvxf7nQNe8DsNS-3bc2WSNNXBQWs";}s:8:"uid_only";b:0;s:8:"ip_limit";i:50;s:9:"ip_window";i:3600;s:10:"user_limit";i:5;s:11:"user_window";i:21600;}'), ('', 'user.mail', 'a:11:{s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"6CZIzFifRq3qbdq3n3nDpEOO4hWIQtKOAQNPvGNGKeM";}s:8:"langcode";s:2:"en";s:14:"cancel_confirm";a:2:{s:7:"subject";s:67:"Account cancellation request for [user:display-name] at [site:name]";s:4:"body";s:376:"[user:display-name]\n\nA request to cancel your account has been made at [site:name].\n\nYou may now cancel your account on [site:url-brief] by clicking this link or copying and pasting it into your browser:\n\n[user:cancel-url]\n\nNOTE: The cancellation of your account is not reversible.\n\nThis link expires in one day and nothing will happen if it is not used.\n\n-- [site:name] team";}s:14:"password_reset";a:2:{s:7:"subject";s:68:"Replacement login information for [user:display-name] at [site:name]";s:4:"body";s:407:"[user:display-name],\n\nA request to reset the password for your account has been made at [site:name].\n\nYou may now log in by clicking this link or copying and pasting it into your browser:\n\n[user:one-time-login-url]\n\nThis link can only be used once to log in and will lead you to a page where you can set your password. It expires after one day and nothing will happen if it''s not used.\n\n-- [site:name] team";}s:22:"register_admin_created";a:2:{s:7:"subject";s:58:"An administrator created an account for you at [site:name]";s:4:"body";s:473:"[user:display-name],\n\nA site administrator at [site:name] has created an account for you. You may now log in by clicking this link or copying and pasting it into your browser:\n\n[user:one-time-login-url]\n\nThis link can only be used once to log in and will lead you to a page where you can set your password.\n\nAfter setting your password, you will be able to log in at [site:login-url] in the future using:\n\nusername: [user:name]\npassword: Your password\n\n-- [site:name] team";}s:29:"register_no_approval_required";a:2:{s:7:"subject";s:54:"Account details for [user:display-name] at [site:name]";s:4:"body";s:447:"[user:display-name],\n\nThank you for registering at [site:name]. You may now log in by clicking this link or copying and pasting it into your browser:\n\n[user:one-time-login-url]\n\nThis link can only be used once to log in and will lead you to a page where you can set your password.\n\nAfter setting your password, you will be able to log in at [site:login-url] in the future using:\n\nusername: [user:name]\npassword: Your password\n\n-- [site:name] team";}s:25:"register_pending_approval";a:2:{s:7:"subject";s:79:"Account details for [user:display-name] at [site:name] (pending admin approval)";s:4:"body";s:288:"[user:display-name],\n\nThank you for registering at [site:name]. Your application for an account is currently pending approval. Once it has been approved, you will receive another email containing information about how to log in, set your password, and other details.\n\n-- [site:name] team";}s:31:"register_pending_approval_admin";a:2:{s:7:"subject";s:79:"Account details for [user:display-name] at [site:name] (pending admin approval)";s:4:"body";s:64:"[user:display-name] has applied for an account.\n\n[user:edit-url]";}s:16:"status_activated";a:2:{s:7:"subject";s:65:"Account details for [user:display-name] at [site:name] (approved)";s:4:"body";s:462:"[user:display-name],\n\nYour account at [site:name] has been activated.\n\nYou may now log in by clicking this link or copying and pasting it into your browser:\n\n[user:one-time-login-url]\n\nThis link can only be used once to log in and will lead you to a page where you can set your password.\n\nAfter setting your password, you will be able to log in at [site:login-url] in the future using:\n\nusername: [user:account-name]\npassword: Your password\n\n-- [site:name] team";}s:14:"status_blocked";a:2:{s:7:"subject";s:64:"Account details for [user:display-name] at [site:name] (blocked)";s:4:"body";s:89:"[user:display-name],\n\nYour account on [site:name] has been blocked.\n\n-- [site:name] team";}s:15:"status_canceled";a:2:{s:7:"subject";s:65:"Account details for [user:display-name] at [site:name] (canceled)";s:4:"body";s:90:"[user:display-name],\n\nYour account on [site:name] has been canceled.\n\n-- [site:name] team";}}'), ('', 'user.role.administrator', 'a:10:{s:4:"uuid";s:36:"0495ed88-ef1f-4d8e-b299-0db2cf623595";s:8:"langcode";s:2:"en";s:6:"status";b:1;s:12:"dependencies";a:0:{}s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"OeKGIkmZA_c-t6QLH81WNQx8gDCc1MRmxaTuQgxBByU";}s:2:"id";s:13:"administrator";s:5:"label";s:13:"Administrator";s:6:"weight";i:3;s:8:"is_admin";b:1;s:11:"permissions";a:0:{}}'), ('', 'user.role.anonymous', 'a:10:{s:4:"uuid";s:36:"ae2ef46e-488c-4168-9e26-c94ed7f801e8";s:8:"langcode";s:2:"en";s:6:"status";b:1;s:12:"dependencies";a:2:{s:6:"config";a:1:{i:0;s:29:"filter.format.restricted_html";}s:6:"module";a:2:{i:0;s:6:"filter";i:1;s:6:"system";}}s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"Tus1ZTNXKIOnrennR1hnTbc7wUPBXHTUm5UdCpEhJSk";}s:2:"id";s:9:"anonymous";s:5:"label";s:14:"Anonymous user";s:6:"weight";i:0;s:8:"is_admin";b:0;s:11:"permissions";a:2:{i:0;s:14:"access content";i:1;s:31:"use text format restricted_html";}}'), ('', 'user.role.authenticated', 'a:10:{s:4:"uuid";s:36:"b9e39b46-d02f-4e4b-bfc1-bc7b3c73a35f";s:8:"langcode";s:2:"en";s:6:"status";b:1;s:12:"dependencies";a:2:{s:6:"config";a:1:{i:0;s:24:"filter.format.basic_html";}s:6:"module";a:3:{i:0;s:4:"file";i:1;s:6:"filter";i:2;s:6:"system";}}s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"wkW7P5A53YhGmsgamrmTbfwpZrqdnPYiJdoAZQtdmJg";}s:2:"id";s:13:"authenticated";s:5:"label";s:18:"Authenticated user";s:6:"weight";i:1;s:8:"is_admin";b:0;s:11:"permissions";a:3:{i:0;s:14:"access content";i:1;s:16:"delete own files";i:2;s:26:"use text format basic_html";}}'), ('', 'user.role.content_editor', 'a:10:{s:4:"uuid";s:36:"b5d6bd4e-fe65-45bd-a272-26fd1dd79ef6";s:8:"langcode";s:2:"en";s:6:"status";b:1;s:12:"dependencies";a:2:{s:6:"config";a:1:{i:0;s:24:"taxonomy.vocabulary.tags";}s:6:"module";a:7:{i:0;s:10:"contextual";i:1;s:4:"file";i:2;s:10:"navigation";i:3;s:4:"node";i:4;s:4:"path";i:5;s:6:"system";i:6;s:8:"taxonomy";}}s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"og55Zu0F-q-X8zG0Ohrls49zws6IrmmosZS-30Es8vw";}s:2:"id";s:14:"content_editor";s:5:"label";s:14:"Content editor";s:6:"weight";i:2;s:8:"is_admin";b:0;s:11:"permissions";a:14:{i:0;s:27:"access administration pages";i:1;s:23:"access content overview";i:2;s:23:"access contextual links";i:3;s:21:"access files overview";i:4;s:17:"access navigation";i:5;s:22:"administer url aliases";i:6;s:20:"create terms in tags";i:7;s:18:"create url aliases";i:8;s:16:"delete own files";i:9;s:18:"edit terms in tags";i:10;s:20:"revert all revisions";i:11;s:18:"view all revisions";i:12;s:28:"view own unpublished content";i:13;s:29:"view the administration theme";}}'), ('', 'user.settings', 'a:9:{s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"Y-Xpk050V3opj3WiFb4oUbVT9S7fDA1XLpigO-qVMVQ";}s:8:"langcode";s:2:"en";s:9:"anonymous";s:9:"Anonymous";s:11:"verify_mail";b:1;s:6:"notify";a:8:{s:14:"cancel_confirm";b:1;s:14:"password_reset";b:1;s:16:"status_activated";b:1;s:14:"status_blocked";b:0;s:15:"status_canceled";b:0;s:22:"register_admin_created";b:1;s:29:"register_no_approval_required";b:1;s:25:"register_pending_approval";b:1;}s:8:"register";s:10:"admin_only";s:13:"cancel_method";s:17:"user_cancel_block";s:22:"password_reset_timeout";i:86400;s:17:"password_strength";b:1;}'), ('', 'views.settings', 'a:5:{s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"_XeIJp8HLFXacGTv7BbJQAA0otRUXl0XxnqovpotgYQ";}s:17:"display_extenders";a:0:{}s:13:"sql_signature";b:0;s:2:"ui";a:3:{s:4:"show";a:6:{s:18:"additional_queries";b:0;s:15:"default_display";b:0;s:22:"performance_statistics";b:0;s:19:"preview_information";b:1;s:9:"sql_query";a:2:{s:7:"enabled";b:0;s:5:"where";s:5:"above";}s:13:"display_embed";b:0;}s:19:"always_live_preview";b:1;s:24:"exposed_filter_any_label";s:7:"old_any";}s:22:"field_rewrite_elements";a:29:{s:3:"div";s:3:"DIV";s:4:"span";s:4:"SPAN";s:2:"h1";s:2:"H1";s:2:"h2";s:2:"H2";s:2:"h3";s:2:"H3";s:2:"h4";s:2:"H4";s:2:"h5";s:2:"H5";s:2:"h6";s:2:"H6";s:1:"p";s:1:"P";s:6:"header";s:6:"HEADER";s:6:"footer";s:6:"FOOTER";s:7:"article";s:7:"ARTICLE";s:7:"section";s:7:"SECTION";s:5:"aside";s:5:"ASIDE";s:7:"details";s:7:"DETAILS";s:10:"blockquote";s:10:"BLOCKQUOTE";s:6:"figure";s:6:"FIGURE";s:7:"address";s:7:"ADDRESS";s:4:"code";s:4:"CODE";s:3:"pre";s:3:"PRE";s:3:"var";s:3:"VAR";s:4:"samp";s:4:"SAMP";s:3:"kbd";s:3:"KBD";s:6:"strong";s:6:"STRONG";s:2:"em";s:2:"EM";s:3:"del";s:3:"DEL";s:3:"ins";s:3:"INS";s:1:"q";s:1:"Q";s:1:"s";s:1:"S";}}'), ('', 'views.view.archive', 'a:13:{s:4:"uuid";s:36:"3b7fae91-b505-4d60-939d-c3121d3b5e01";s:8:"langcode";s:2:"en";s:6:"status";b:0;s:12:"dependencies";a:2:{s:6:"config";a:1:{i:0;s:33:"core.entity_view_mode.node.teaser";}s:6:"module";a:2:{i:0;s:4:"node";i:1;s:4:"user";}}s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"exIF08PTvYSK6tJCsAzBqMEKUBKIptPorMn74SVhevc";}s:2:"id";s:7:"archive";s:5:"label";s:7:"Archive";s:6:"module";s:4:"node";s:11:"description";s:22:"All content, by month.";s:3:"tag";s:7:"default";s:10:"base_table";s:15:"node_field_data";s:10:"base_field";s:3:"nid";s:7:"display";a:3:{s:7:"default";a:6:{s:2:"id";s:7:"default";s:13:"display_title";s:7:"Default";s:14:"display_plugin";s:7:"default";s:8:"position";i:0;s:15:"display_options";a:17:{s:5:"title";s:15:"Monthly archive";s:6:"fields";a:0:{}s:5:"pager";a:2:{s:4:"type";s:4:"mini";s:7:"options";a:7:{s:6:"offset";i:0;s:24:"pagination_heading_level";s:2:"h4";s:14:"items_per_page";i:10;s:11:"total_pages";i:0;s:2:"id";i:0;s:4:"tags";a:2:{s:4:"next";s:6:"››";s:8:"previous";s:6:"‹‹";}s:6:"expose";a:7:{s:14:"items_per_page";b:0;s:20:"items_per_page_label";s:14:"Items per page";s:22:"items_per_page_options";s:13:"5, 10, 25, 50";s:26:"items_per_page_options_all";b:0;s:32:"items_per_page_options_all_label";s:7:"- All -";s:6:"offset";b:0;s:12:"offset_label";s:6:"Offset";}}}s:12:"exposed_form";a:2:{s:4:"type";s:5:"basic";s:7:"options";a:7:{s:13:"submit_button";s:5:"Apply";s:12:"reset_button";b:0;s:18:"reset_button_label";s:5:"Reset";s:19:"exposed_sorts_label";s:7:"Sort by";s:17:"expose_sort_order";b:1;s:14:"sort_asc_label";s:3:"Asc";s:15:"sort_desc_label";s:4:"Desc";}}s:6:"access";a:2:{s:4:"type";s:4:"perm";s:7:"options";a:1:{s:4:"perm";s:14:"access content";}}s:5:"cache";a:2:{s:4:"type";s:3:"tag";s:7:"options";a:0:{}}s:5:"empty";a:0:{}s:5:"sorts";a:1:{s:7:"created";a:13:{s:2:"id";s:7:"created";s:5:"table";s:15:"node_field_data";s:5:"field";s:7:"created";s:12:"relationship";s:4:"none";s:10:"group_type";s:5:"group";s:11:"admin_label";s:0:"";s:11:"entity_type";s:4:"node";s:12:"entity_field";s:7:"created";s:9:"plugin_id";s:4:"date";s:5:"order";s:4:"DESC";s:6:"expose";a:2:{s:5:"label";s:0:"";s:16:"field_identifier";s:7:"created";}s:7:"exposed";b:0;s:11:"granularity";s:6:"second";}}s:9:"arguments";a:1:{s:18:"created_year_month";a:13:{s:2:"id";s:18:"created_year_month";s:5:"table";s:15:"node_field_data";s:5:"field";s:18:"created_year_month";s:11:"entity_type";s:4:"node";s:9:"plugin_id";s:15:"date_year_month";s:14:"default_action";s:7:"summary";s:9:"exception";a:1:{s:12:"title_enable";b:1;}s:12:"title_enable";b:1;s:5:"title";s:34:"{{ arguments.created_year_month }}";s:21:"default_argument_type";s:5:"fixed";s:15:"summary_options";a:2:{s:8:"override";b:1;s:14:"items_per_page";i:30;}s:7:"summary";a:2:{s:10:"sort_order";s:4:"desc";s:6:"format";s:15:"default_summary";}s:18:"specify_validation";b:1;}}s:7:"filters";a:2:{s:6:"status";a:9:{s:2:"id";s:6:"status";s:5:"table";s:15:"node_field_data";s:5:"field";s:6:"status";s:11:"entity_type";s:4:"node";s:12:"entity_field";s:6:"status";s:9:"plugin_id";s:7:"boolean";s:5:"value";s:1:"1";s:5:"group";i:0;s:6:"expose";a:3:{s:8:"operator";s:1:"0";s:24:"operator_limit_selection";b:0;s:13:"operator_list";a:0:{}}}s:8:"langcode";a:16:{s:2:"id";s:8:"langcode";s:5:"table";s:15:"node_field_data";s:5:"field";s:8:"langcode";s:12:"relationship";s:4:"none";s:10:"group_type";s:5:"group";s:11:"admin_label";s:0:"";s:11:"entity_type";s:4:"node";s:12:"entity_field";s:8:"langcode";s:9:"plugin_id";s:8:"language";s:8:"operator";s:2:"in";s:5:"value";a:1:{s:31:"***LANGUAGE_language_content***";s:31:"***LANGUAGE_language_content***";}s:5:"group";i:1;s:7:"exposed";b:0;s:6:"expose";a:13:{s:11:"operator_id";s:0:"";s:5:"label";s:0:"";s:11:"description";s:0:"";s:12:"use_operator";b:0;s:8:"operator";s:0:"";s:24:"operator_limit_selection";b:0;s:13:"operator_list";a:0:{}s:10:"identifier";s:0:"";s:8:"required";b:0;s:8:"remember";b:0;s:8:"multiple";b:0;s:14:"remember_roles";a:1:{s:13:"authenticated";s:13:"authenticated";}s:6:"reduce";b:0;}s:10:"is_grouped";b:0;s:10:"group_info";a:10:{s:5:"label";s:0:"";s:11:"description";s:0:"";s:10:"identifier";s:0:"";s:8:"optional";b:1;s:6:"widget";s:6:"select";s:8:"multiple";b:0;s:8:"remember";b:0;s:13:"default_group";s:3:"All";s:22:"default_group_multiple";a:0:{}s:11:"group_items";a:0:{}}}}s:5:"style";a:2:{s:4:"type";s:7:"default";s:7:"options";a:4:{s:8:"grouping";a:0:{}s:9:"row_class";s:0:"";s:17:"default_row_class";b:1;s:11:"uses_fields";b:0;}}s:3:"row";a:2:{s:4:"type";s:11:"entity:node";s:7:"options";a:1:{s:9:"view_mode";s:6:"teaser";}}s:5:"query";a:2:{s:4:"type";s:11:"views_query";s:7:"options";a:5:{s:13:"query_comment";s:0:"";s:19:"disable_sql_rewrite";b:0;s:8:"distinct";b:0;s:7:"replica";b:0;s:10:"query_tags";a:0:{}}}s:13:"relationships";a:0:{}s:6:"header";a:0:{}s:6:"footer";a:0:{}s:17:"display_extenders";a:0:{}}s:14:"cache_metadata";a:3:{s:7:"max-age";i:-1;s:8:"contexts";a:5:{i:0;s:28:"languages:language_interface";i:1;s:3:"url";i:2;s:14:"url.query_args";i:3;s:21:"user.node_grants:view";i:4;s:16:"user.permissions";}s:4:"tags";a:0:{}}}s:7:"block_1";a:6:{s:2:"id";s:7:"block_1";s:13:"display_title";s:5:"Block";s:14:"display_plugin";s:5:"block";s:8:"position";i:1;s:15:"display_options";a:4:{s:9:"arguments";a:1:{s:18:"created_year_month";a:13:{s:2:"id";s:18:"created_year_month";s:5:"table";s:15:"node_field_data";s:5:"field";s:18:"created_year_month";s:11:"entity_type";s:4:"node";s:9:"plugin_id";s:15:"date_year_month";s:14:"default_action";s:7:"summary";s:9:"exception";a:1:{s:12:"title_enable";b:1;}s:12:"title_enable";b:1;s:5:"title";s:34:"{{ arguments.created_year_month }}";s:21:"default_argument_type";s:5:"fixed";s:15:"summary_options";a:1:{s:14:"items_per_page";i:30;}s:7:"summary";a:1:{s:6:"format";s:15:"default_summary";}s:18:"specify_validation";b:1;}}s:5:"query";a:2:{s:4:"type";s:11:"views_query";s:7:"options";a:0:{}}s:8:"defaults";a:1:{s:9:"arguments";b:0;}s:17:"display_extenders";a:0:{}}s:14:"cache_metadata";a:3:{s:7:"max-age";i:-1;s:8:"contexts";a:5:{i:0;s:28:"languages:language_interface";i:1;s:3:"url";i:2;s:14:"url.query_args";i:3;s:21:"user.node_grants:view";i:4;s:16:"user.permissions";}s:4:"tags";a:0:{}}}s:6:"page_1";a:6:{s:2:"id";s:6:"page_1";s:13:"display_title";s:4:"Page";s:14:"display_plugin";s:4:"page";s:8:"position";i:2;s:15:"display_options";a:3:{s:5:"query";a:2:{s:4:"type";s:11:"views_query";s:7:"options";a:0:{}}s:17:"display_extenders";a:0:{}s:4:"path";s:7:"archive";}s:14:"cache_metadata";a:3:{s:7:"max-age";i:-1;s:8:"contexts";a:5:{i:0;s:28:"languages:language_interface";i:1;s:3:"url";i:2;s:14:"url.query_args";i:3;s:21:"user.node_grants:view";i:4;s:16:"user.permissions";}s:4:"tags";a:0:{}}}}}'), ('', 'views.view.block_content', 'a:13:{s:4:"uuid";s:36:"e05ff707-5399-4ec4-a990-272d020e974d";s:8:"langcode";s:2:"en";s:6:"status";b:1;s:12:"dependencies";a:1:{s:6:"module";a:2:{i:0;s:13:"block_content";i:1;s:4:"user";}}s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"04nFIsNzLdUjlangTCvxrNUJ9vRQldlR9gekgNrRsOM";}s:2:"id";s:13:"block_content";s:5:"label";s:14:"Content blocks";s:6:"module";s:5:"views";s:11:"description";s:31:"Find and manage content blocks.";s:3:"tag";s:7:"default";s:10:"base_table";s:24:"block_content_field_data";s:10:"base_field";s:2:"id";s:7:"display";a:2:{s:7:"default";a:6:{s:2:"id";s:7:"default";s:13:"display_title";s:7:"Default";s:14:"display_plugin";s:7:"default";s:8:"position";i:0;s:15:"display_options";a:17:{s:5:"title";s:14:"Content blocks";s:6:"fields";a:4:{s:4:"info";a:37:{s:2:"id";s:4:"info";s:5:"table";s:24:"block_content_field_data";s:5:"field";s:4:"info";s:12:"relationship";s:4:"none";s:10:"group_type";s:5:"group";s:11:"admin_label";s:0:"";s:11:"entity_type";N;s:12:"entity_field";s:4:"info";s:9:"plugin_id";s:5:"field";s:5:"label";s:17:"Block description";s:7:"exclude";b:0;s:5:"alter";a:26:{s:10:"alter_text";b:0;s:4:"text";s:0:"";s:9:"make_link";b:0;s:4:"path";s:0:"";s:8:"absolute";b:0;s:8:"external";b:0;s:14:"replace_spaces";b:0;s:9:"path_case";s:4:"none";s:15:"trim_whitespace";b:0;s:3:"alt";s:0:"";s:3:"rel";s:0:"";s:10:"link_class";s:0:"";s:6:"prefix";s:0:"";s:6:"suffix";s:0:"";s:6:"target";s:0:"";s:5:"nl2br";b:0;s:10:"max_length";i:0;s:13:"word_boundary";b:1;s:8:"ellipsis";b:1;s:9:"more_link";b:0;s:14:"more_link_text";s:0:"";s:14:"more_link_path";s:0:"";s:10:"strip_tags";b:0;s:4:"trim";b:0;s:13:"preserve_tags";s:0:"";s:4:"html";b:0;}s:12:"element_type";s:0:"";s:13:"element_class";s:0:"";s:18:"element_label_type";s:0:"";s:19:"element_label_class";s:0:"";s:19:"element_label_colon";b:1;s:20:"element_wrapper_type";s:0:"";s:21:"element_wrapper_class";s:0:"";s:23:"element_default_classes";b:1;s:5:"empty";s:0:"";s:10:"hide_empty";b:0;s:10:"empty_zero";b:0;s:16:"hide_alter_empty";b:1;s:17:"click_sort_column";s:5:"value";s:4:"type";s:6:"string";s:8:"settings";a:1:{s:14:"link_to_entity";b:1;}s:12:"group_column";s:5:"value";s:13:"group_columns";a:0:{}s:10:"group_rows";b:1;s:11:"delta_limit";i:0;s:12:"delta_offset";i:0;s:14:"delta_reversed";b:0;s:16:"delta_first_last";b:0;s:10:"multi_type";s:9:"separator";s:9:"separator";s:2:", ";s:17:"field_api_classes";b:0;}s:4:"type";a:37:{s:2:"id";s:4:"type";s:5:"table";s:24:"block_content_field_data";s:5:"field";s:4:"type";s:12:"relationship";s:4:"none";s:10:"group_type";s:5:"group";s:11:"admin_label";s:0:"";s:11:"entity_type";s:13:"block_content";s:12:"entity_field";s:4:"type";s:9:"plugin_id";s:5:"field";s:5:"label";s:10:"Block type";s:7:"exclude";b:0;s:5:"alter";a:26:{s:10:"alter_text";b:0;s:4:"text";s:0:"";s:9:"make_link";b:0;s:4:"path";s:0:"";s:8:"absolute";b:0;s:8:"external";b:0;s:14:"replace_spaces";b:0;s:9:"path_case";s:4:"none";s:15:"trim_whitespace";b:0;s:3:"alt";s:0:"";s:3:"rel";s:0:"";s:10:"link_class";s:0:"";s:6:"prefix";s:0:"";s:6:"suffix";s:0:"";s:6:"target";s:0:"";s:5:"nl2br";b:0;s:10:"max_length";i:0;s:13:"word_boundary";b:1;s:8:"ellipsis";b:1;s:9:"more_link";b:0;s:14:"more_link_text";s:0:"";s:14:"more_link_path";s:0:"";s:10:"strip_tags";b:0;s:4:"trim";b:0;s:13:"preserve_tags";s:0:"";s:4:"html";b:0;}s:12:"element_type";s:0:"";s:13:"element_class";s:0:"";s:18:"element_label_type";s:0:"";s:19:"element_label_class";s:0:"";s:19:"element_label_colon";b:1;s:20:"element_wrapper_type";s:0:"";s:21:"element_wrapper_class";s:0:"";s:23:"element_default_classes";b:1;s:5:"empty";s:0:"";s:10:"hide_empty";b:0;s:10:"empty_zero";b:0;s:16:"hide_alter_empty";b:1;s:17:"click_sort_column";s:9:"target_id";s:4:"type";s:22:"entity_reference_label";s:8:"settings";a:1:{s:4:"link";b:0;}s:12:"group_column";s:9:"target_id";s:13:"group_columns";a:0:{}s:10:"group_rows";b:1;s:11:"delta_limit";i:0;s:12:"delta_offset";i:0;s:14:"delta_reversed";b:0;s:16:"delta_first_last";b:0;s:10:"multi_type";s:9:"separator";s:9:"separator";s:2:", ";s:17:"field_api_classes";b:0;}s:7:"changed";a:26:{s:2:"id";s:7:"changed";s:5:"table";s:24:"block_content_field_data";s:5:"field";s:7:"changed";s:12:"relationship";s:4:"none";s:10:"group_type";s:5:"group";s:11:"admin_label";s:0:"";s:11:"entity_type";s:13:"block_content";s:12:"entity_field";s:7:"changed";s:9:"plugin_id";s:5:"field";s:5:"label";s:7:"Updated";s:7:"exclude";b:0;s:5:"alter";a:26:{s:10:"alter_text";b:0;s:4:"text";s:0:"";s:9:"make_link";b:0;s:4:"path";s:0:"";s:8:"absolute";b:0;s:8:"external";b:0;s:14:"replace_spaces";b:0;s:9:"path_case";s:4:"none";s:15:"trim_whitespace";b:0;s:3:"alt";s:0:"";s:3:"rel";s:0:"";s:10:"link_class";s:0:"";s:6:"prefix";s:0:"";s:6:"suffix";s:0:"";s:6:"target";s:0:"";s:5:"nl2br";b:0;s:10:"max_length";i:0;s:13:"word_boundary";b:1;s:8:"ellipsis";b:1;s:9:"more_link";b:0;s:14:"more_link_text";s:0:"";s:14:"more_link_path";s:0:"";s:10:"strip_tags";b:0;s:4:"trim";b:0;s:13:"preserve_tags";s:0:"";s:4:"html";b:0;}s:12:"element_type";s:0:"";s:13:"element_class";s:0:"";s:18:"element_label_type";s:0:"";s:19:"element_label_class";s:0:"";s:19:"element_label_colon";b:1;s:20:"element_wrapper_type";s:0:"";s:21:"element_wrapper_class";s:0:"";s:23:"element_default_classes";b:1;s:5:"empty";s:0:"";s:10:"hide_empty";b:0;s:10:"empty_zero";b:0;s:16:"hide_alter_empty";b:1;s:4:"type";s:9:"timestamp";s:8:"settings";a:5:{s:11:"date_format";s:5:"short";s:18:"custom_date_format";s:0:"";s:8:"timezone";s:0:"";s:7:"tooltip";a:2:{s:11:"date_format";s:4:"long";s:18:"custom_date_format";s:0:"";}s:9:"time_diff";a:5:{s:7:"enabled";b:0;s:13:"future_format";s:15:"@interval hence";s:11:"past_format";s:13:"@interval ago";s:11:"granularity";i:2;s:7:"refresh";i:60;}}}s:10:"operations";a:24:{s:2:"id";s:10:"operations";s:5:"table";s:13:"block_content";s:5:"field";s:10:"operations";s:12:"relationship";s:4:"none";s:10:"group_type";s:5:"group";s:11:"admin_label";s:0:"";s:11:"entity_type";s:13:"block_content";s:9:"plugin_id";s:17:"entity_operations";s:5:"label";s:10:"Operations";s:7:"exclude";b:0;s:5:"alter";a:26:{s:10:"alter_text";b:0;s:4:"text";s:0:"";s:9:"make_link";b:0;s:4:"path";s:0:"";s:8:"absolute";b:0;s:8:"external";b:0;s:14:"replace_spaces";b:0;s:9:"path_case";s:4:"none";s:15:"trim_whitespace";b:0;s:3:"alt";s:0:"";s:3:"rel";s:0:"";s:10:"link_class";s:0:"";s:6:"prefix";s:0:"";s:6:"suffix";s:0:"";s:6:"target";s:0:"";s:5:"nl2br";b:0;s:10:"max_length";i:0;s:13:"word_boundary";b:1;s:8:"ellipsis";b:1;s:9:"more_link";b:0;s:14:"more_link_text";s:0:"";s:14:"more_link_path";s:0:"";s:10:"strip_tags";b:0;s:4:"trim";b:0;s:13:"preserve_tags";s:0:"";s:4:"html";b:0;}s:12:"element_type";s:0:"";s:13:"element_class";s:0:"";s:18:"element_label_type";s:0:"";s:19:"element_label_class";s:0:"";s:19:"element_label_colon";b:1;s:20:"element_wrapper_type";s:0:"";s:21:"element_wrapper_class";s:0:"";s:23:"element_default_classes";b:1;s:5:"empty";s:0:"";s:10:"hide_empty";b:0;s:10:"empty_zero";b:0;s:16:"hide_alter_empty";b:1;s:11:"destination";b:1;}}s:5:"pager";a:2:{s:4:"type";s:4:"mini";s:7:"options";a:7:{s:6:"offset";i:0;s:24:"pagination_heading_level";s:2:"h4";s:14:"items_per_page";i:50;s:11:"total_pages";N;s:2:"id";i:0;s:4:"tags";a:2:{s:4:"next";s:8:"Next ›";s:8:"previous";s:12:"‹ Previous";}s:6:"expose";a:7:{s:14:"items_per_page";b:0;s:20:"items_per_page_label";s:14:"Items per page";s:22:"items_per_page_options";s:13:"5, 10, 25, 50";s:26:"items_per_page_options_all";b:0;s:32:"items_per_page_options_all_label";s:7:"- All -";s:6:"offset";b:0;s:12:"offset_label";s:6:"Offset";}}}s:12:"exposed_form";a:2:{s:4:"type";s:5:"basic";s:7:"options";a:7:{s:13:"submit_button";s:5:"Apply";s:12:"reset_button";b:1;s:18:"reset_button_label";s:5:"Reset";s:19:"exposed_sorts_label";s:7:"Sort by";s:17:"expose_sort_order";b:1;s:14:"sort_asc_label";s:3:"Asc";s:15:"sort_desc_label";s:4:"Desc";}}s:6:"access";a:2:{s:4:"type";s:4:"perm";s:7:"options";a:1:{s:4:"perm";s:20:"access block library";}}s:5:"cache";a:2:{s:4:"type";s:3:"tag";s:7:"options";a:0:{}}s:5:"empty";a:1:{s:16:"area_text_custom";a:10:{s:2:"id";s:16:"area_text_custom";s:5:"table";s:5:"views";s:5:"field";s:16:"area_text_custom";s:12:"relationship";s:4:"none";s:10:"group_type";s:5:"group";s:11:"admin_label";s:0:"";s:9:"plugin_id";s:11:"text_custom";s:5:"empty";b:1;s:7:"content";s:38:"There are no content blocks available.";s:8:"tokenize";b:0;}}s:5:"sorts";a:0:{}s:9:"arguments";a:0:{}s:7:"filters";a:3:{s:4:"info";a:16:{s:2:"id";s:4:"info";s:5:"table";s:24:"block_content_field_data";s:5:"field";s:4:"info";s:12:"relationship";s:4:"none";s:10:"group_type";s:5:"group";s:11:"admin_label";s:0:"";s:11:"entity_type";s:13:"block_content";s:12:"entity_field";s:4:"info";s:9:"plugin_id";s:6:"string";s:8:"operator";s:8:"contains";s:5:"value";s:0:"";s:5:"group";i:1;s:7:"exposed";b:1;s:6:"expose";a:12:{s:11:"operator_id";s:7:"info_op";s:5:"label";s:17:"Block description";s:11:"description";s:0:"";s:12:"use_operator";b:0;s:8:"operator";s:7:"info_op";s:24:"operator_limit_selection";b:0;s:13:"operator_list";a:0:{}s:10:"identifier";s:4:"info";s:8:"required";b:0;s:8:"remember";b:0;s:8:"multiple";b:0;s:14:"remember_roles";a:1:{s:13:"authenticated";s:13:"authenticated";}}s:10:"is_grouped";b:0;s:10:"group_info";a:10:{s:5:"label";s:0:"";s:11:"description";s:0:"";s:10:"identifier";s:0:"";s:8:"optional";b:1;s:6:"widget";s:6:"select";s:8:"multiple";b:0;s:8:"remember";b:0;s:13:"default_group";s:3:"All";s:22:"default_group_multiple";a:0:{}s:11:"group_items";a:0:{}}}s:4:"type";a:16:{s:2:"id";s:4:"type";s:5:"table";s:24:"block_content_field_data";s:5:"field";s:4:"type";s:12:"relationship";s:4:"none";s:10:"group_type";s:5:"group";s:11:"admin_label";s:0:"";s:11:"entity_type";s:13:"block_content";s:12:"entity_field";s:4:"type";s:9:"plugin_id";s:6:"bundle";s:8:"operator";s:2:"in";s:5:"value";a:0:{}s:5:"group";i:1;s:7:"exposed";b:1;s:6:"expose";a:13:{s:11:"operator_id";s:7:"type_op";s:5:"label";s:10:"Block type";s:11:"description";s:0:"";s:12:"use_operator";b:0;s:8:"operator";s:7:"type_op";s:24:"operator_limit_selection";b:0;s:13:"operator_list";a:0:{}s:10:"identifier";s:4:"type";s:8:"required";b:0;s:8:"remember";b:0;s:8:"multiple";b:0;s:14:"remember_roles";a:1:{s:13:"authenticated";s:13:"authenticated";}s:6:"reduce";b:0;}s:10:"is_grouped";b:0;s:10:"group_info";a:10:{s:5:"label";s:0:"";s:11:"description";s:0:"";s:10:"identifier";s:0:"";s:8:"optional";b:1;s:6:"widget";s:6:"select";s:8:"multiple";b:0;s:8:"remember";b:0;s:13:"default_group";s:3:"All";s:22:"default_group_multiple";a:0:{}s:11:"group_items";a:0:{}}}s:8:"reusable";a:16:{s:2:"id";s:8:"reusable";s:5:"table";s:24:"block_content_field_data";s:5:"field";s:8:"reusable";s:12:"relationship";s:4:"none";s:10:"group_type";s:5:"group";s:11:"admin_label";s:0:"";s:11:"entity_type";s:13:"block_content";s:12:"entity_field";s:8:"reusable";s:9:"plugin_id";s:7:"boolean";s:8:"operator";s:1:"=";s:5:"value";s:1:"1";s:5:"group";i:1;s:7:"exposed";b:0;s:6:"expose";a:12:{s:11:"operator_id";s:0:"";s:5:"label";s:0:"";s:11:"description";s:0:"";s:12:"use_operator";b:0;s:8:"operator";s:0:"";s:24:"operator_limit_selection";b:0;s:13:"operator_list";a:0:{}s:10:"identifier";s:0:"";s:8:"required";b:0;s:8:"remember";b:0;s:8:"multiple";b:0;s:14:"remember_roles";a:1:{s:13:"authenticated";s:13:"authenticated";}}s:10:"is_grouped";b:0;s:10:"group_info";a:10:{s:5:"label";s:0:"";s:11:"description";s:0:"";s:10:"identifier";s:0:"";s:8:"optional";b:1;s:6:"widget";s:6:"select";s:8:"multiple";b:0;s:8:"remember";b:0;s:13:"default_group";s:3:"All";s:22:"default_group_multiple";a:0:{}s:11:"group_items";a:0:{}}}}s:5:"style";a:2:{s:4:"type";s:5:"table";s:7:"options";a:13:{s:8:"grouping";a:0:{}s:9:"row_class";s:0:"";s:17:"default_row_class";b:1;s:7:"columns";a:4:{s:4:"info";s:4:"info";s:4:"type";s:4:"type";s:7:"changed";s:7:"changed";s:10:"operations";s:10:"operations";}s:7:"default";s:7:"changed";s:4:"info";a:4:{s:4:"info";a:6:{s:8:"sortable";b:1;s:18:"default_sort_order";s:3:"asc";s:5:"align";s:0:"";s:9:"separator";s:0:"";s:12:"empty_column";b:0;s:10:"responsive";s:0:"";}s:4:"type";a:6:{s:8:"sortable";b:1;s:18:"default_sort_order";s:3:"asc";s:5:"align";s:0:"";s:9:"separator";s:0:"";s:12:"empty_column";b:0;s:10:"responsive";s:0:"";}s:7:"changed";a:6:{s:8:"sortable";b:1;s:18:"default_sort_order";s:4:"desc";s:5:"align";s:0:"";s:9:"separator";s:0:"";s:12:"empty_column";b:0;s:10:"responsive";s:0:"";}s:10:"operations";a:6:{s:8:"sortable";b:0;s:18:"default_sort_order";s:3:"asc";s:5:"align";s:0:"";s:9:"separator";s:0:"";s:12:"empty_column";b:0;s:10:"responsive";s:0:"";}}s:8:"override";b:1;s:6:"sticky";b:0;s:7:"summary";s:0:"";s:11:"empty_table";b:1;s:7:"caption";s:0:"";s:11:"description";s:0:"";s:5:"class";s:0:"";}}s:3:"row";a:1:{s:4:"type";s:6:"fields";}s:5:"query";a:2:{s:4:"type";s:11:"views_query";s:7:"options";a:5:{s:13:"query_comment";s:0:"";s:19:"disable_sql_rewrite";b:0;s:8:"distinct";b:0;s:7:"replica";b:0;s:10:"query_tags";a:0:{}}}s:13:"relationships";a:0:{}s:6:"header";a:0:{}s:6:"footer";a:0:{}s:17:"display_extenders";a:0:{}}s:14:"cache_metadata";a:3:{s:7:"max-age";i:-1;s:8:"contexts";a:5:{i:0;s:26:"languages:language_content";i:1;s:28:"languages:language_interface";i:2;s:3:"url";i:3;s:14:"url.query_args";i:4;s:16:"user.permissions";}s:4:"tags";a:0:{}}}s:6:"page_1";a:6:{s:2:"id";s:6:"page_1";s:13:"display_title";s:4:"Page";s:14:"display_plugin";s:4:"page";s:8:"position";i:1;s:15:"display_options";a:3:{s:17:"display_extenders";a:0:{}s:4:"path";s:19:"admin/content/block";s:4:"menu";a:7:{s:4:"type";s:3:"tab";s:5:"title";s:6:"Blocks";s:11:"description";s:31:"Create and edit content blocks.";s:6:"weight";i:0;s:9:"menu_name";s:5:"admin";s:6:"parent";s:20:"system.admin_content";s:7:"context";s:1:"0";}}s:14:"cache_metadata";a:3:{s:7:"max-age";i:-1;s:8:"contexts";a:5:{i:0;s:26:"languages:language_content";i:1;s:28:"languages:language_interface";i:2;s:3:"url";i:3;s:14:"url.query_args";i:4;s:16:"user.permissions";}s:4:"tags";a:0:{}}}}}'); INSERT INTO `[[dbprefix]]config` VALUES ('', 'views.view.content', 'a:13:{s:4:"uuid";s:36:"0d2f9af7-814f-4e91-aa95-94924dd53d6c";s:8:"langcode";s:2:"en";s:6:"status";b:1;s:12:"dependencies";a:1:{s:6:"module";a:2:{i:0;s:4:"node";i:1;s:4:"user";}}s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"VhgEYFEzezna1qjycmr6NgssQgyiLfUvOv-iB_a_I6o";}s:2:"id";s:7:"content";s:5:"label";s:7:"Content";s:6:"module";s:4:"node";s:11:"description";s:24:"Find and manage content.";s:3:"tag";s:7:"default";s:10:"base_table";s:15:"node_field_data";s:10:"base_field";s:3:"nid";s:7:"display";a:2:{s:7:"default";a:6:{s:2:"id";s:7:"default";s:13:"display_title";s:7:"Default";s:14:"display_plugin";s:7:"default";s:8:"position";i:0;s:15:"display_options";a:17:{s:5:"title";s:7:"Content";s:6:"fields";a:8:{s:14:"node_bulk_form";a:14:{s:2:"id";s:14:"node_bulk_form";s:5:"table";s:4:"node";s:5:"field";s:14:"node_bulk_form";s:11:"entity_type";s:4:"node";s:9:"plugin_id";s:14:"node_bulk_form";s:5:"label";s:0:"";s:7:"exclude";b:0;s:5:"alter";a:1:{s:10:"alter_text";b:0;}s:13:"element_class";s:0:"";s:23:"element_default_classes";b:1;s:5:"empty";s:0:"";s:10:"hide_empty";b:0;s:10:"empty_zero";b:0;s:16:"hide_alter_empty";b:1;}s:5:"title";a:17:{s:2:"id";s:5:"title";s:5:"table";s:15:"node_field_data";s:5:"field";s:5:"title";s:11:"entity_type";s:4:"node";s:12:"entity_field";s:5:"title";s:9:"plugin_id";s:5:"field";s:5:"label";s:5:"Title";s:7:"exclude";b:0;s:5:"alter";a:1:{s:10:"alter_text";b:0;}s:13:"element_class";s:0:"";s:23:"element_default_classes";b:1;s:5:"empty";s:0:"";s:10:"hide_empty";b:0;s:10:"empty_zero";b:0;s:16:"hide_alter_empty";b:1;s:4:"type";s:6:"string";s:8:"settings";a:1:{s:14:"link_to_entity";b:1;}}s:4:"type";a:37:{s:2:"id";s:4:"type";s:5:"table";s:15:"node_field_data";s:5:"field";s:4:"type";s:12:"relationship";s:4:"none";s:10:"group_type";s:5:"group";s:11:"admin_label";s:0:"";s:11:"entity_type";s:4:"node";s:12:"entity_field";s:4:"type";s:9:"plugin_id";s:5:"field";s:5:"label";s:12:"Content type";s:7:"exclude";b:0;s:5:"alter";a:26:{s:10:"alter_text";b:0;s:4:"text";s:0:"";s:9:"make_link";b:0;s:4:"path";s:0:"";s:8:"absolute";b:0;s:8:"external";b:0;s:14:"replace_spaces";b:0;s:9:"path_case";s:4:"none";s:15:"trim_whitespace";b:0;s:3:"alt";s:0:"";s:3:"rel";s:0:"";s:10:"link_class";s:0:"";s:6:"prefix";s:0:"";s:6:"suffix";s:0:"";s:6:"target";s:0:"";s:5:"nl2br";b:0;s:10:"max_length";i:0;s:13:"word_boundary";b:1;s:8:"ellipsis";b:1;s:9:"more_link";b:0;s:14:"more_link_text";s:0:"";s:14:"more_link_path";s:0:"";s:10:"strip_tags";b:0;s:4:"trim";b:0;s:13:"preserve_tags";s:0:"";s:4:"html";b:0;}s:12:"element_type";s:0:"";s:13:"element_class";s:0:"";s:18:"element_label_type";s:0:"";s:19:"element_label_class";s:0:"";s:19:"element_label_colon";b:1;s:20:"element_wrapper_type";s:0:"";s:21:"element_wrapper_class";s:0:"";s:23:"element_default_classes";b:1;s:5:"empty";s:0:"";s:10:"hide_empty";b:0;s:10:"empty_zero";b:0;s:16:"hide_alter_empty";b:1;s:17:"click_sort_column";s:9:"target_id";s:4:"type";s:22:"entity_reference_label";s:8:"settings";a:1:{s:4:"link";b:0;}s:12:"group_column";s:9:"target_id";s:13:"group_columns";a:0:{}s:10:"group_rows";b:1;s:11:"delta_limit";i:0;s:12:"delta_offset";i:0;s:14:"delta_reversed";b:0;s:16:"delta_first_last";b:0;s:10:"multi_type";s:9:"separator";s:9:"separator";s:2:", ";s:17:"field_api_classes";b:0;}s:4:"name";a:17:{s:2:"id";s:4:"name";s:5:"table";s:16:"users_field_data";s:5:"field";s:4:"name";s:12:"relationship";s:3:"uid";s:11:"entity_type";s:4:"user";s:12:"entity_field";s:4:"name";s:9:"plugin_id";s:5:"field";s:5:"label";s:6:"Author";s:7:"exclude";b:0;s:5:"alter";a:1:{s:10:"alter_text";b:0;}s:13:"element_class";s:0:"";s:23:"element_default_classes";b:1;s:5:"empty";s:0:"";s:10:"hide_empty";b:0;s:10:"empty_zero";b:0;s:16:"hide_alter_empty";b:1;s:4:"type";s:9:"user_name";}s:6:"status";a:17:{s:2:"id";s:6:"status";s:5:"table";s:15:"node_field_data";s:5:"field";s:6:"status";s:11:"entity_type";s:4:"node";s:12:"entity_field";s:6:"status";s:9:"plugin_id";s:5:"field";s:5:"label";s:6:"Status";s:7:"exclude";b:0;s:5:"alter";a:1:{s:10:"alter_text";b:0;}s:13:"element_class";s:0:"";s:23:"element_default_classes";b:1;s:5:"empty";s:0:"";s:10:"hide_empty";b:0;s:10:"empty_zero";b:0;s:16:"hide_alter_empty";b:1;s:4:"type";s:7:"boolean";s:8:"settings";a:3:{s:6:"format";s:6:"custom";s:19:"format_custom_false";s:11:"Unpublished";s:18:"format_custom_true";s:9:"Published";}}s:7:"changed";a:17:{s:2:"id";s:7:"changed";s:5:"table";s:15:"node_field_data";s:5:"field";s:7:"changed";s:11:"entity_type";s:4:"node";s:12:"entity_field";s:7:"changed";s:9:"plugin_id";s:5:"field";s:5:"label";s:7:"Updated";s:7:"exclude";b:0;s:5:"alter";a:1:{s:10:"alter_text";b:0;}s:13:"element_class";s:0:"";s:23:"element_default_classes";b:1;s:5:"empty";s:0:"";s:10:"hide_empty";b:0;s:10:"empty_zero";b:0;s:16:"hide_alter_empty";b:1;s:4:"type";s:9:"timestamp";s:8:"settings";a:5:{s:11:"date_format";s:5:"short";s:18:"custom_date_format";s:0:"";s:8:"timezone";s:0:"";s:7:"tooltip";a:2:{s:11:"date_format";s:4:"long";s:18:"custom_date_format";s:0:"";}s:9:"time_diff";a:5:{s:7:"enabled";b:0;s:13:"future_format";s:15:"@interval hence";s:11:"past_format";s:13:"@interval ago";s:11:"granularity";i:2;s:7:"refresh";i:60;}}}s:8:"langcode";a:37:{s:2:"id";s:8:"langcode";s:5:"table";s:15:"node_field_data";s:5:"field";s:8:"langcode";s:12:"relationship";s:4:"none";s:10:"group_type";s:5:"group";s:11:"admin_label";s:0:"";s:11:"entity_type";s:4:"node";s:12:"entity_field";s:8:"langcode";s:9:"plugin_id";s:14:"field_language";s:5:"label";s:8:"Language";s:7:"exclude";b:0;s:5:"alter";a:26:{s:10:"alter_text";b:0;s:4:"text";s:0:"";s:9:"make_link";b:0;s:4:"path";s:0:"";s:8:"absolute";b:0;s:8:"external";b:0;s:14:"replace_spaces";b:0;s:9:"path_case";s:4:"none";s:15:"trim_whitespace";b:0;s:3:"alt";s:0:"";s:3:"rel";s:0:"";s:10:"link_class";s:0:"";s:6:"prefix";s:0:"";s:6:"suffix";s:0:"";s:6:"target";s:0:"";s:5:"nl2br";b:0;s:10:"max_length";i:0;s:13:"word_boundary";b:1;s:8:"ellipsis";b:1;s:9:"more_link";b:0;s:14:"more_link_text";s:0:"";s:14:"more_link_path";s:0:"";s:10:"strip_tags";b:0;s:4:"trim";b:0;s:13:"preserve_tags";s:0:"";s:4:"html";b:0;}s:12:"element_type";s:0:"";s:13:"element_class";s:0:"";s:18:"element_label_type";s:0:"";s:19:"element_label_class";s:0:"";s:19:"element_label_colon";b:1;s:20:"element_wrapper_type";s:0:"";s:21:"element_wrapper_class";s:0:"";s:23:"element_default_classes";b:1;s:5:"empty";s:0:"";s:10:"hide_empty";b:0;s:10:"empty_zero";b:0;s:16:"hide_alter_empty";b:1;s:17:"click_sort_column";s:5:"value";s:4:"type";s:8:"language";s:8:"settings";a:2:{s:14:"link_to_entity";b:0;s:15:"native_language";b:0;}s:12:"group_column";s:5:"value";s:13:"group_columns";a:0:{}s:10:"group_rows";b:1;s:11:"delta_limit";i:0;s:12:"delta_offset";i:0;s:14:"delta_reversed";b:0;s:16:"delta_first_last";b:0;s:10:"multi_type";s:9:"separator";s:9:"separator";s:2:", ";s:17:"field_api_classes";b:0;}s:10:"operations";a:23:{s:2:"id";s:10:"operations";s:5:"table";s:4:"node";s:5:"field";s:10:"operations";s:12:"relationship";s:4:"none";s:10:"group_type";s:5:"group";s:11:"admin_label";s:0:"";s:9:"plugin_id";s:17:"entity_operations";s:5:"label";s:10:"Operations";s:7:"exclude";b:0;s:5:"alter";a:26:{s:10:"alter_text";b:0;s:4:"text";s:0:"";s:9:"make_link";b:0;s:4:"path";s:0:"";s:8:"absolute";b:0;s:8:"external";b:0;s:14:"replace_spaces";b:0;s:9:"path_case";s:4:"none";s:15:"trim_whitespace";b:0;s:3:"alt";s:0:"";s:3:"rel";s:0:"";s:10:"link_class";s:0:"";s:6:"prefix";s:0:"";s:6:"suffix";s:0:"";s:6:"target";s:0:"";s:5:"nl2br";b:0;s:10:"max_length";i:0;s:13:"word_boundary";b:1;s:8:"ellipsis";b:1;s:9:"more_link";b:0;s:14:"more_link_text";s:0:"";s:14:"more_link_path";s:0:"";s:10:"strip_tags";b:0;s:4:"trim";b:0;s:13:"preserve_tags";s:0:"";s:4:"html";b:0;}s:12:"element_type";s:0:"";s:13:"element_class";s:0:"";s:18:"element_label_type";s:0:"";s:19:"element_label_class";s:0:"";s:19:"element_label_colon";b:1;s:20:"element_wrapper_type";s:0:"";s:21:"element_wrapper_class";s:0:"";s:23:"element_default_classes";b:1;s:5:"empty";s:0:"";s:10:"hide_empty";b:0;s:10:"empty_zero";b:0;s:16:"hide_alter_empty";b:1;s:11:"destination";b:1;}}s:5:"pager";a:2:{s:4:"type";s:4:"full";s:7:"options";a:3:{s:24:"pagination_heading_level";s:2:"h4";s:14:"items_per_page";i:50;s:4:"tags";a:4:{s:4:"next";s:8:"Next ›";s:8:"previous";s:12:"‹ Previous";s:5:"first";s:8:"« First";s:4:"last";s:7:"Last »";}}}s:12:"exposed_form";a:2:{s:4:"type";s:5:"basic";s:7:"options";a:7:{s:13:"submit_button";s:6:"Filter";s:12:"reset_button";b:1;s:18:"reset_button_label";s:5:"Reset";s:19:"exposed_sorts_label";s:7:"Sort by";s:17:"expose_sort_order";b:1;s:14:"sort_asc_label";s:3:"Asc";s:15:"sort_desc_label";s:4:"Desc";}}s:6:"access";a:2:{s:4:"type";s:4:"perm";s:7:"options";a:1:{s:4:"perm";s:23:"access content overview";}}s:5:"cache";a:1:{s:4:"type";s:3:"tag";}s:5:"empty";a:1:{s:16:"area_text_custom";a:6:{s:2:"id";s:16:"area_text_custom";s:5:"table";s:5:"views";s:5:"field";s:16:"area_text_custom";s:9:"plugin_id";s:11:"text_custom";s:5:"empty";b:1;s:7:"content";s:21:"No content available.";}}s:5:"sorts";a:0:{}s:9:"arguments";a:0:{}s:7:"filters";a:5:{s:5:"title";a:16:{s:2:"id";s:5:"title";s:5:"table";s:15:"node_field_data";s:5:"field";s:5:"title";s:12:"relationship";s:4:"none";s:10:"group_type";s:5:"group";s:11:"admin_label";s:0:"";s:11:"entity_type";s:4:"node";s:12:"entity_field";s:5:"title";s:9:"plugin_id";s:6:"string";s:8:"operator";s:8:"contains";s:5:"value";s:0:"";s:5:"group";i:1;s:7:"exposed";b:1;s:6:"expose";a:12:{s:11:"operator_id";s:8:"title_op";s:5:"label";s:5:"Title";s:11:"description";s:0:"";s:12:"use_operator";b:0;s:8:"operator";s:8:"title_op";s:24:"operator_limit_selection";b:0;s:13:"operator_list";a:0:{}s:10:"identifier";s:5:"title";s:8:"required";b:0;s:8:"remember";b:0;s:8:"multiple";b:0;s:14:"remember_roles";a:1:{s:13:"authenticated";s:13:"authenticated";}}s:10:"is_grouped";b:0;s:10:"group_info";a:10:{s:5:"label";s:0:"";s:11:"description";s:0:"";s:10:"identifier";s:0:"";s:8:"optional";b:1;s:6:"widget";s:6:"select";s:8:"multiple";b:0;s:8:"remember";b:0;s:13:"default_group";s:3:"All";s:22:"default_group_multiple";a:0:{}s:11:"group_items";a:0:{}}}s:4:"type";a:16:{s:2:"id";s:4:"type";s:5:"table";s:15:"node_field_data";s:5:"field";s:4:"type";s:12:"relationship";s:4:"none";s:10:"group_type";s:5:"group";s:11:"admin_label";s:0:"";s:11:"entity_type";s:4:"node";s:12:"entity_field";s:4:"type";s:9:"plugin_id";s:6:"bundle";s:8:"operator";s:2:"in";s:5:"value";a:0:{}s:5:"group";i:1;s:7:"exposed";b:1;s:6:"expose";a:13:{s:11:"operator_id";s:7:"type_op";s:5:"label";s:12:"Content type";s:11:"description";s:0:"";s:12:"use_operator";b:0;s:8:"operator";s:7:"type_op";s:24:"operator_limit_selection";b:0;s:13:"operator_list";a:0:{}s:10:"identifier";s:4:"type";s:8:"required";b:0;s:8:"remember";b:0;s:8:"multiple";b:0;s:14:"remember_roles";a:1:{s:13:"authenticated";s:13:"authenticated";}s:6:"reduce";b:0;}s:10:"is_grouped";b:0;s:10:"group_info";a:10:{s:5:"label";s:0:"";s:11:"description";s:0:"";s:10:"identifier";s:0:"";s:8:"optional";b:1;s:6:"widget";s:6:"select";s:8:"multiple";b:0;s:8:"remember";b:0;s:13:"default_group";s:3:"All";s:22:"default_group_multiple";a:0:{}s:11:"group_items";a:0:{}}}s:6:"status";a:16:{s:2:"id";s:6:"status";s:5:"table";s:15:"node_field_data";s:5:"field";s:6:"status";s:12:"relationship";s:4:"none";s:10:"group_type";s:5:"group";s:11:"admin_label";s:0:"";s:11:"entity_type";s:4:"node";s:12:"entity_field";s:6:"status";s:9:"plugin_id";s:7:"boolean";s:8:"operator";s:1:"=";s:5:"value";s:1:"1";s:5:"group";i:1;s:7:"exposed";b:1;s:6:"expose";a:12:{s:11:"operator_id";s:0:"";s:5:"label";s:6:"Status";s:11:"description";s:0:"";s:12:"use_operator";b:0;s:8:"operator";s:9:"status_op";s:24:"operator_limit_selection";b:0;s:13:"operator_list";a:0:{}s:10:"identifier";s:6:"status";s:8:"required";b:0;s:8:"remember";b:0;s:8:"multiple";b:0;s:14:"remember_roles";a:1:{s:13:"authenticated";s:13:"authenticated";}}s:10:"is_grouped";b:1;s:10:"group_info";a:10:{s:5:"label";s:16:"Published status";s:11:"description";s:0:"";s:10:"identifier";s:6:"status";s:8:"optional";b:1;s:6:"widget";s:6:"select";s:8:"multiple";b:0;s:8:"remember";b:0;s:13:"default_group";s:3:"All";s:22:"default_group_multiple";a:0:{}s:11:"group_items";a:2:{i:1;a:3:{s:5:"title";s:9:"Published";s:8:"operator";s:1:"=";s:5:"value";s:1:"1";}i:2;a:3:{s:5:"title";s:11:"Unpublished";s:8:"operator";s:1:"=";s:5:"value";s:1:"0";}}}}s:8:"langcode";a:16:{s:2:"id";s:8:"langcode";s:5:"table";s:15:"node_field_data";s:5:"field";s:8:"langcode";s:12:"relationship";s:4:"none";s:10:"group_type";s:5:"group";s:11:"admin_label";s:0:"";s:11:"entity_type";s:4:"node";s:12:"entity_field";s:8:"langcode";s:9:"plugin_id";s:8:"language";s:8:"operator";s:2:"in";s:5:"value";a:0:{}s:5:"group";i:1;s:7:"exposed";b:1;s:6:"expose";a:13:{s:11:"operator_id";s:11:"langcode_op";s:5:"label";s:8:"Language";s:11:"description";s:0:"";s:12:"use_operator";b:0;s:8:"operator";s:11:"langcode_op";s:24:"operator_limit_selection";b:0;s:13:"operator_list";a:0:{}s:10:"identifier";s:8:"langcode";s:8:"required";b:0;s:8:"remember";b:0;s:8:"multiple";b:0;s:14:"remember_roles";a:1:{s:13:"authenticated";s:13:"authenticated";}s:6:"reduce";b:0;}s:10:"is_grouped";b:0;s:10:"group_info";a:10:{s:5:"label";s:0:"";s:11:"description";s:0:"";s:10:"identifier";s:0:"";s:8:"optional";b:1;s:6:"widget";s:6:"select";s:8:"multiple";b:0;s:8:"remember";b:0;s:13:"default_group";s:3:"All";s:22:"default_group_multiple";a:0:{}s:11:"group_items";a:0:{}}}s:12:"status_extra";a:9:{s:2:"id";s:12:"status_extra";s:5:"table";s:15:"node_field_data";s:5:"field";s:12:"status_extra";s:11:"entity_type";s:4:"node";s:9:"plugin_id";s:11:"node_status";s:8:"operator";s:1:"=";s:5:"value";b:0;s:5:"group";i:1;s:6:"expose";a:2:{s:24:"operator_limit_selection";b:0;s:13:"operator_list";a:0:{}}}}s:13:"filter_groups";a:2:{s:8:"operator";s:3:"AND";s:6:"groups";a:1:{i:1;s:3:"AND";}}s:5:"style";a:2:{s:4:"type";s:5:"table";s:7:"options";a:13:{s:8:"grouping";a:0:{}s:9:"row_class";s:0:"";s:17:"default_row_class";b:1;s:7:"columns";a:10:{s:14:"node_bulk_form";s:14:"node_bulk_form";s:5:"title";s:5:"title";s:4:"type";s:4:"type";s:4:"name";s:4:"name";s:6:"status";s:6:"status";s:7:"changed";s:7:"changed";s:9:"edit_node";s:9:"edit_node";s:11:"delete_node";s:11:"delete_node";s:10:"dropbutton";s:10:"dropbutton";s:9:"timestamp";s:5:"title";}s:7:"default";s:7:"changed";s:4:"info";a:10:{s:14:"node_bulk_form";a:4:{s:5:"align";s:0:"";s:9:"separator";s:0:"";s:12:"empty_column";b:0;s:10:"responsive";s:0:"";}s:5:"title";a:6:{s:8:"sortable";b:1;s:18:"default_sort_order";s:3:"asc";s:5:"align";s:0:"";s:9:"separator";s:0:"";s:12:"empty_column";b:0;s:10:"responsive";s:0:"";}s:4:"type";a:6:{s:8:"sortable";b:1;s:18:"default_sort_order";s:3:"asc";s:5:"align";s:0:"";s:9:"separator";s:0:"";s:12:"empty_column";b:0;s:10:"responsive";s:0:"";}s:4:"name";a:6:{s:8:"sortable";b:0;s:18:"default_sort_order";s:3:"asc";s:5:"align";s:0:"";s:9:"separator";s:0:"";s:12:"empty_column";b:0;s:10:"responsive";s:12:"priority-low";}s:6:"status";a:6:{s:8:"sortable";b:1;s:18:"default_sort_order";s:3:"asc";s:5:"align";s:0:"";s:9:"separator";s:0:"";s:12:"empty_column";b:0;s:10:"responsive";s:0:"";}s:7:"changed";a:6:{s:8:"sortable";b:1;s:18:"default_sort_order";s:4:"desc";s:5:"align";s:0:"";s:9:"separator";s:0:"";s:12:"empty_column";b:0;s:10:"responsive";s:12:"priority-low";}s:9:"edit_node";a:6:{s:8:"sortable";b:0;s:18:"default_sort_order";s:3:"asc";s:5:"align";s:0:"";s:9:"separator";s:0:"";s:12:"empty_column";b:0;s:10:"responsive";s:0:"";}s:11:"delete_node";a:6:{s:8:"sortable";b:0;s:18:"default_sort_order";s:3:"asc";s:5:"align";s:0:"";s:9:"separator";s:0:"";s:12:"empty_column";b:0;s:10:"responsive";s:0:"";}s:10:"dropbutton";a:6:{s:8:"sortable";b:0;s:18:"default_sort_order";s:3:"asc";s:5:"align";s:0:"";s:9:"separator";s:0:"";s:12:"empty_column";b:0;s:10:"responsive";s:0:"";}s:9:"timestamp";a:6:{s:8:"sortable";b:0;s:18:"default_sort_order";s:3:"asc";s:5:"align";s:0:"";s:9:"separator";s:0:"";s:12:"empty_column";b:0;s:10:"responsive";s:0:"";}}s:8:"override";b:1;s:6:"sticky";b:1;s:7:"summary";s:0:"";s:11:"empty_table";b:1;s:7:"caption";s:0:"";s:11:"description";s:0:"";s:5:"class";s:0:"";}}s:3:"row";a:1:{s:4:"type";s:6:"fields";}s:5:"query";a:1:{s:4:"type";s:11:"views_query";}s:13:"relationships";a:1:{s:3:"uid";a:6:{s:2:"id";s:3:"uid";s:5:"table";s:15:"node_field_data";s:5:"field";s:3:"uid";s:11:"admin_label";s:6:"author";s:9:"plugin_id";s:8:"standard";s:8:"required";b:1;}}s:16:"show_admin_links";b:0;s:17:"display_extenders";a:0:{}}s:14:"cache_metadata";a:3:{s:7:"max-age";i:0;s:8:"contexts";a:7:{i:0;s:26:"languages:language_content";i:1;s:28:"languages:language_interface";i:2;s:3:"url";i:3;s:14:"url.query_args";i:4;s:4:"user";i:5;s:21:"user.node_grants:view";i:6;s:16:"user.permissions";}s:4:"tags";a:0:{}}}s:6:"page_1";a:6:{s:2:"id";s:6:"page_1";s:13:"display_title";s:4:"Page";s:14:"display_plugin";s:4:"page";s:8:"position";i:1;s:15:"display_options";a:4:{s:17:"display_extenders";a:0:{}s:4:"path";s:18:"admin/content/node";s:4:"menu";a:6:{s:4:"type";s:11:"default tab";s:5:"title";s:7:"Content";s:11:"description";s:0:"";s:6:"weight";i:-10;s:9:"menu_name";s:5:"admin";s:7:"context";s:0:"";}s:11:"tab_options";a:5:{s:4:"type";s:6:"normal";s:5:"title";s:7:"Content";s:11:"description";s:23:"Find and manage content";s:6:"weight";i:-10;s:9:"menu_name";s:5:"admin";}}s:14:"cache_metadata";a:3:{s:7:"max-age";i:0;s:8:"contexts";a:7:{i:0;s:26:"languages:language_content";i:1;s:28:"languages:language_interface";i:2;s:3:"url";i:3;s:14:"url.query_args";i:4;s:4:"user";i:5;s:21:"user.node_grants:view";i:6;s:16:"user.permissions";}s:4:"tags";a:0:{}}}}}'), ('', 'views.view.content_recent', 'a:13:{s:4:"uuid";s:36:"a333b900-d0dd-41c1-986c-be9299d51aa4";s:8:"langcode";s:2:"en";s:6:"status";b:1;s:12:"dependencies";a:1:{s:6:"module";a:2:{i:0;s:4:"node";i:1;s:4:"user";}}s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"YqZN5rc7XDQcFcInc8wkzuaHJmC5YvirhTmDcrarT6M";}s:2:"id";s:14:"content_recent";s:5:"label";s:14:"Recent content";s:6:"module";s:4:"node";s:11:"description";s:15:"Recent content.";s:3:"tag";s:7:"default";s:10:"base_table";s:15:"node_field_data";s:10:"base_field";s:3:"nid";s:7:"display";a:2:{s:7:"default";a:6:{s:2:"id";s:7:"default";s:13:"display_title";s:7:"Default";s:14:"display_plugin";s:7:"default";s:8:"position";i:0;s:15:"display_options";a:22:{s:5:"title";s:14:"Recent content";s:6:"fields";a:2:{s:5:"title";a:26:{s:2:"id";s:5:"title";s:5:"table";s:15:"node_field_data";s:5:"field";s:5:"title";s:12:"relationship";s:4:"none";s:10:"group_type";s:5:"group";s:11:"admin_label";s:0:"";s:11:"entity_type";s:4:"node";s:12:"entity_field";s:5:"title";s:9:"plugin_id";s:5:"field";s:5:"label";s:0:"";s:7:"exclude";b:0;s:5:"alter";a:8:{s:10:"alter_text";b:0;s:9:"make_link";b:0;s:8:"absolute";b:0;s:13:"word_boundary";b:0;s:8:"ellipsis";b:0;s:10:"strip_tags";b:0;s:4:"trim";b:0;s:4:"html";b:0;}s:12:"element_type";s:0:"";s:13:"element_class";s:0:"";s:18:"element_label_type";s:0:"";s:19:"element_label_class";s:0:"";s:19:"element_label_colon";b:0;s:20:"element_wrapper_type";s:0:"";s:21:"element_wrapper_class";s:0:"";s:23:"element_default_classes";b:1;s:5:"empty";s:0:"";s:10:"hide_empty";b:0;s:10:"empty_zero";b:0;s:16:"hide_alter_empty";b:1;s:4:"type";s:6:"string";s:8:"settings";a:1:{s:14:"link_to_entity";b:1;}}s:7:"changed";a:37:{s:2:"id";s:7:"changed";s:5:"table";s:15:"node_field_data";s:5:"field";s:7:"changed";s:12:"relationship";s:4:"none";s:10:"group_type";s:5:"group";s:11:"admin_label";s:0:"";s:11:"entity_type";s:4:"node";s:12:"entity_field";s:7:"changed";s:9:"plugin_id";s:5:"field";s:5:"label";s:0:"";s:7:"exclude";b:0;s:5:"alter";a:26:{s:10:"alter_text";b:0;s:4:"text";s:0:"";s:9:"make_link";b:0;s:4:"path";s:0:"";s:8:"absolute";b:0;s:8:"external";b:0;s:14:"replace_spaces";b:0;s:9:"path_case";s:4:"none";s:15:"trim_whitespace";b:0;s:3:"alt";s:0:"";s:3:"rel";s:0:"";s:10:"link_class";s:0:"";s:6:"prefix";s:0:"";s:6:"suffix";s:0:"";s:6:"target";s:0:"";s:5:"nl2br";b:0;s:10:"max_length";i:0;s:13:"word_boundary";b:1;s:8:"ellipsis";b:1;s:9:"more_link";b:0;s:14:"more_link_text";s:0:"";s:14:"more_link_path";s:0:"";s:10:"strip_tags";b:0;s:4:"trim";b:0;s:13:"preserve_tags";s:0:"";s:4:"html";b:0;}s:12:"element_type";s:0:"";s:13:"element_class";s:0:"";s:18:"element_label_type";s:0:"";s:19:"element_label_class";s:0:"";s:19:"element_label_colon";b:0;s:20:"element_wrapper_type";s:0:"";s:21:"element_wrapper_class";s:0:"";s:23:"element_default_classes";b:1;s:5:"empty";s:0:"";s:10:"hide_empty";b:0;s:10:"empty_zero";b:0;s:16:"hide_alter_empty";b:1;s:17:"click_sort_column";s:5:"value";s:4:"type";s:13:"timestamp_ago";s:8:"settings";a:0:{}s:12:"group_column";s:5:"value";s:13:"group_columns";a:0:{}s:10:"group_rows";b:1;s:11:"delta_limit";i:0;s:12:"delta_offset";i:0;s:14:"delta_reversed";b:0;s:16:"delta_first_last";b:0;s:10:"multi_type";s:9:"separator";s:9:"separator";s:2:", ";s:17:"field_api_classes";b:0;}}s:5:"pager";a:2:{s:4:"type";s:4:"some";s:7:"options";a:2:{s:6:"offset";i:0;s:14:"items_per_page";i:10;}}s:12:"exposed_form";a:2:{s:4:"type";s:5:"basic";s:7:"options";a:7:{s:13:"submit_button";s:5:"Apply";s:12:"reset_button";b:0;s:18:"reset_button_label";s:5:"Reset";s:19:"exposed_sorts_label";s:7:"Sort by";s:17:"expose_sort_order";b:1;s:14:"sort_asc_label";s:3:"Asc";s:15:"sort_desc_label";s:4:"Desc";}}s:6:"access";a:2:{s:4:"type";s:4:"perm";s:7:"options";a:1:{s:4:"perm";s:14:"access content";}}s:5:"cache";a:2:{s:4:"type";s:3:"tag";s:7:"options";a:0:{}}s:5:"empty";a:1:{s:16:"area_text_custom";a:10:{s:2:"id";s:16:"area_text_custom";s:5:"table";s:5:"views";s:5:"field";s:16:"area_text_custom";s:12:"relationship";s:4:"none";s:10:"group_type";s:5:"group";s:11:"admin_label";s:0:"";s:9:"plugin_id";s:11:"text_custom";s:5:"empty";b:1;s:7:"content";s:21:"No content available.";s:8:"tokenize";b:0;}}s:5:"sorts";a:1:{s:7:"changed";a:13:{s:2:"id";s:7:"changed";s:5:"table";s:15:"node_field_data";s:5:"field";s:7:"changed";s:12:"relationship";s:4:"none";s:10:"group_type";s:5:"group";s:11:"admin_label";s:0:"";s:11:"entity_type";s:4:"node";s:12:"entity_field";s:7:"changed";s:9:"plugin_id";s:4:"date";s:5:"order";s:4:"DESC";s:6:"expose";a:2:{s:5:"label";s:0:"";s:16:"field_identifier";s:7:"changed";}s:7:"exposed";b:0;s:11:"granularity";s:6:"second";}}s:9:"arguments";a:0:{}s:7:"filters";a:2:{s:12:"status_extra";a:15:{s:2:"id";s:12:"status_extra";s:5:"table";s:15:"node_field_data";s:5:"field";s:12:"status_extra";s:12:"relationship";s:4:"none";s:10:"group_type";s:5:"group";s:11:"admin_label";s:0:"";s:11:"entity_type";s:4:"node";s:9:"plugin_id";s:11:"node_status";s:8:"operator";s:1:"=";s:5:"value";b:0;s:5:"group";i:1;s:7:"exposed";b:0;s:6:"expose";a:12:{s:11:"operator_id";s:0:"";s:5:"label";s:0:"";s:11:"description";s:0:"";s:12:"use_operator";b:0;s:8:"operator";s:0:"";s:24:"operator_limit_selection";b:0;s:13:"operator_list";a:0:{}s:10:"identifier";s:0:"";s:8:"required";b:0;s:8:"remember";b:0;s:8:"multiple";b:0;s:14:"remember_roles";a:1:{s:13:"authenticated";s:13:"authenticated";}}s:10:"is_grouped";b:0;s:10:"group_info";a:10:{s:5:"label";s:0:"";s:11:"description";s:0:"";s:10:"identifier";s:0:"";s:8:"optional";b:1;s:6:"widget";s:6:"select";s:8:"multiple";b:0;s:8:"remember";b:0;s:13:"default_group";s:3:"All";s:22:"default_group_multiple";a:0:{}s:11:"group_items";a:0:{}}}s:8:"langcode";a:16:{s:2:"id";s:8:"langcode";s:5:"table";s:15:"node_field_data";s:5:"field";s:8:"langcode";s:12:"relationship";s:4:"none";s:10:"group_type";s:5:"group";s:11:"admin_label";s:0:"";s:11:"entity_type";s:4:"node";s:12:"entity_field";s:8:"langcode";s:9:"plugin_id";s:8:"language";s:8:"operator";s:2:"in";s:5:"value";a:1:{s:31:"***LANGUAGE_language_content***";s:31:"***LANGUAGE_language_content***";}s:5:"group";i:1;s:7:"exposed";b:0;s:6:"expose";a:13:{s:11:"operator_id";s:0:"";s:5:"label";s:0:"";s:11:"description";s:0:"";s:12:"use_operator";b:0;s:8:"operator";s:0:"";s:24:"operator_limit_selection";b:0;s:13:"operator_list";a:0:{}s:10:"identifier";s:0:"";s:8:"required";b:0;s:8:"remember";b:0;s:8:"multiple";b:0;s:14:"remember_roles";a:1:{s:13:"authenticated";s:13:"authenticated";}s:6:"reduce";b:0;}s:10:"is_grouped";b:0;s:10:"group_info";a:10:{s:5:"label";s:0:"";s:11:"description";s:0:"";s:10:"identifier";s:0:"";s:8:"optional";b:1;s:6:"widget";s:6:"select";s:8:"multiple";b:0;s:8:"remember";b:0;s:13:"default_group";s:3:"All";s:22:"default_group_multiple";a:0:{}s:11:"group_items";a:0:{}}}}s:5:"style";a:2:{s:4:"type";s:9:"html_list";s:7:"options";a:6:{s:8:"grouping";a:0:{}s:9:"row_class";s:0:"";s:17:"default_row_class";b:1;s:4:"type";s:2:"ul";s:13:"wrapper_class";s:9:"item-list";s:5:"class";s:0:"";}}s:3:"row";a:1:{s:4:"type";s:6:"fields";}s:5:"query";a:2:{s:4:"type";s:11:"views_query";s:7:"options";a:5:{s:13:"query_comment";s:0:"";s:19:"disable_sql_rewrite";b:0;s:8:"distinct";b:0;s:7:"replica";b:0;s:10:"query_tags";a:0:{}}}s:13:"relationships";a:1:{s:3:"uid";a:10:{s:2:"id";s:3:"uid";s:5:"table";s:15:"node_field_data";s:5:"field";s:3:"uid";s:12:"relationship";s:4:"none";s:10:"group_type";s:5:"group";s:11:"admin_label";s:6:"author";s:11:"entity_type";s:4:"node";s:12:"entity_field";s:3:"uid";s:9:"plugin_id";s:8:"standard";s:8:"required";b:1;}}s:8:"use_more";b:0;s:15:"use_more_always";b:0;s:13:"use_more_text";s:4:"More";s:12:"link_display";s:1:"0";s:8:"link_url";s:0:"";s:6:"header";a:0:{}s:6:"footer";a:0:{}s:17:"display_extenders";a:0:{}}s:14:"cache_metadata";a:3:{s:7:"max-age";i:-1;s:8:"contexts";a:5:{i:0;s:26:"languages:language_content";i:1;s:28:"languages:language_interface";i:2;s:4:"user";i:3;s:21:"user.node_grants:view";i:4;s:16:"user.permissions";}s:4:"tags";a:0:{}}}s:7:"block_1";a:6:{s:2:"id";s:7:"block_1";s:13:"display_title";s:5:"Block";s:14:"display_plugin";s:5:"block";s:8:"position";i:1;s:15:"display_options";a:1:{s:17:"display_extenders";a:0:{}}s:14:"cache_metadata";a:3:{s:7:"max-age";i:-1;s:8:"contexts";a:5:{i:0;s:26:"languages:language_content";i:1;s:28:"languages:language_interface";i:2;s:4:"user";i:3;s:21:"user.node_grants:view";i:4;s:16:"user.permissions";}s:4:"tags";a:0:{}}}}}'); INSERT INTO `[[dbprefix]]config` VALUES ('', 'views.view.files', 'a:13:{s:4:"uuid";s:36:"2bdb9763-7742-4ff7-bcd4-cc44ae324902";s:8:"langcode";s:2:"en";s:6:"status";b:1;s:12:"dependencies";a:1:{s:6:"module";a:2:{i:0;s:4:"file";i:1;s:4:"user";}}s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"LTTOi-7sByeB_teJJcm_LiTiEciHUIU-ZdjYcnQS--I";}s:2:"id";s:5:"files";s:5:"label";s:5:"Files";s:6:"module";s:4:"file";s:11:"description";s:22:"Find and manage files.";s:3:"tag";s:7:"default";s:10:"base_table";s:12:"file_managed";s:10:"base_field";s:3:"fid";s:7:"display";a:3:{s:7:"default";a:6:{s:2:"id";s:7:"default";s:13:"display_title";s:7:"Default";s:14:"display_plugin";s:7:"default";s:8:"position";i:0;s:15:"display_options";a:19:{s:5:"title";s:5:"Files";s:6:"fields";a:9:{s:3:"fid";a:24:{s:2:"id";s:3:"fid";s:5:"table";s:12:"file_managed";s:5:"field";s:3:"fid";s:12:"relationship";s:4:"none";s:10:"group_type";s:5:"group";s:11:"admin_label";s:0:"";s:11:"entity_type";s:4:"file";s:12:"entity_field";s:3:"fid";s:9:"plugin_id";s:5:"field";s:5:"label";s:3:"Fid";s:7:"exclude";b:1;s:5:"alter";a:8:{s:10:"alter_text";b:0;s:9:"make_link";b:0;s:8:"absolute";b:0;s:13:"word_boundary";b:0;s:8:"ellipsis";b:0;s:10:"strip_tags";b:0;s:4:"trim";b:0;s:4:"html";b:0;}s:12:"element_type";s:0:"";s:13:"element_class";s:0:"";s:18:"element_label_type";s:0:"";s:19:"element_label_class";s:0:"";s:19:"element_label_colon";b:1;s:20:"element_wrapper_type";s:0:"";s:21:"element_wrapper_class";s:0:"";s:23:"element_default_classes";b:1;s:5:"empty";s:0:"";s:10:"hide_empty";b:0;s:10:"empty_zero";b:0;s:16:"hide_alter_empty";b:1;}s:8:"filename";a:36:{s:2:"id";s:8:"filename";s:5:"table";s:12:"file_managed";s:5:"field";s:8:"filename";s:12:"relationship";s:4:"none";s:10:"group_type";s:5:"group";s:11:"admin_label";s:0:"";s:11:"entity_type";s:4:"file";s:12:"entity_field";s:8:"filename";s:9:"plugin_id";s:5:"field";s:5:"label";s:4:"Name";s:7:"exclude";b:0;s:5:"alter";a:26:{s:10:"alter_text";b:0;s:4:"text";s:0:"";s:9:"make_link";b:0;s:4:"path";s:0:"";s:8:"absolute";b:0;s:8:"external";b:0;s:14:"replace_spaces";b:0;s:9:"path_case";s:4:"none";s:15:"trim_whitespace";b:0;s:3:"alt";s:0:"";s:3:"rel";s:0:"";s:10:"link_class";s:0:"";s:6:"prefix";s:0:"";s:6:"suffix";s:0:"";s:6:"target";s:0:"";s:5:"nl2br";b:0;s:10:"max_length";i:0;s:13:"word_boundary";b:0;s:8:"ellipsis";b:0;s:9:"more_link";b:0;s:14:"more_link_text";s:0:"";s:14:"more_link_path";s:0:"";s:10:"strip_tags";b:0;s:4:"trim";b:0;s:13:"preserve_tags";s:0:"";s:4:"html";b:0;}s:12:"element_type";s:0:"";s:13:"element_class";s:0:"";s:18:"element_label_type";s:0:"";s:19:"element_label_class";s:0:"";s:19:"element_label_colon";b:1;s:20:"element_wrapper_type";s:0:"";s:21:"element_wrapper_class";s:0:"";s:23:"element_default_classes";b:1;s:5:"empty";s:0:"";s:10:"hide_empty";b:0;s:10:"empty_zero";b:0;s:16:"hide_alter_empty";b:1;s:17:"click_sort_column";s:5:"value";s:4:"type";s:9:"file_link";s:12:"group_column";s:5:"value";s:13:"group_columns";a:0:{}s:10:"group_rows";b:1;s:11:"delta_limit";i:0;s:12:"delta_offset";i:0;s:14:"delta_reversed";b:0;s:16:"delta_first_last";b:0;s:10:"multi_type";s:9:"separator";s:9:"separator";s:2:", ";s:17:"field_api_classes";b:0;}s:8:"filemime";a:25:{s:2:"id";s:8:"filemime";s:5:"table";s:12:"file_managed";s:5:"field";s:8:"filemime";s:12:"relationship";s:4:"none";s:10:"group_type";s:5:"group";s:11:"admin_label";s:0:"";s:11:"entity_type";s:4:"file";s:12:"entity_field";s:8:"filemime";s:9:"plugin_id";s:5:"field";s:5:"label";s:9:"MIME type";s:7:"exclude";b:0;s:5:"alter";a:26:{s:10:"alter_text";b:0;s:4:"text";s:0:"";s:9:"make_link";b:0;s:4:"path";s:0:"";s:8:"absolute";b:0;s:8:"external";b:0;s:14:"replace_spaces";b:0;s:9:"path_case";s:4:"none";s:15:"trim_whitespace";b:0;s:3:"alt";s:0:"";s:3:"rel";s:0:"";s:10:"link_class";s:0:"";s:6:"prefix";s:0:"";s:6:"suffix";s:0:"";s:6:"target";s:0:"";s:5:"nl2br";b:0;s:10:"max_length";i:0;s:13:"word_boundary";b:1;s:8:"ellipsis";b:1;s:9:"more_link";b:0;s:14:"more_link_text";s:0:"";s:14:"more_link_path";s:0:"";s:10:"strip_tags";b:0;s:4:"trim";b:0;s:13:"preserve_tags";s:0:"";s:4:"html";b:0;}s:12:"element_type";s:0:"";s:13:"element_class";s:0:"";s:18:"element_label_type";s:0:"";s:19:"element_label_class";s:0:"";s:19:"element_label_colon";b:1;s:20:"element_wrapper_type";s:0:"";s:21:"element_wrapper_class";s:0:"";s:23:"element_default_classes";b:1;s:5:"empty";s:0:"";s:10:"hide_empty";b:0;s:10:"empty_zero";b:0;s:16:"hide_alter_empty";b:1;s:4:"type";s:13:"file_filemime";}s:8:"filesize";a:25:{s:2:"id";s:8:"filesize";s:5:"table";s:12:"file_managed";s:5:"field";s:8:"filesize";s:12:"relationship";s:4:"none";s:10:"group_type";s:5:"group";s:11:"admin_label";s:0:"";s:11:"entity_type";s:4:"file";s:12:"entity_field";s:8:"filesize";s:9:"plugin_id";s:5:"field";s:5:"label";s:4:"Size";s:7:"exclude";b:0;s:5:"alter";a:26:{s:10:"alter_text";b:0;s:4:"text";s:0:"";s:9:"make_link";b:0;s:4:"path";s:0:"";s:8:"absolute";b:0;s:8:"external";b:0;s:14:"replace_spaces";b:0;s:9:"path_case";s:4:"none";s:15:"trim_whitespace";b:0;s:3:"alt";s:0:"";s:3:"rel";s:0:"";s:10:"link_class";s:0:"";s:6:"prefix";s:0:"";s:6:"suffix";s:0:"";s:6:"target";s:0:"";s:5:"nl2br";b:0;s:10:"max_length";i:0;s:13:"word_boundary";b:1;s:8:"ellipsis";b:1;s:9:"more_link";b:0;s:14:"more_link_text";s:0:"";s:14:"more_link_path";s:0:"";s:10:"strip_tags";b:0;s:4:"trim";b:0;s:13:"preserve_tags";s:0:"";s:4:"html";b:0;}s:12:"element_type";s:0:"";s:13:"element_class";s:0:"";s:18:"element_label_type";s:0:"";s:19:"element_label_class";s:0:"";s:19:"element_label_colon";b:1;s:20:"element_wrapper_type";s:0:"";s:21:"element_wrapper_class";s:0:"";s:23:"element_default_classes";b:1;s:5:"empty";s:0:"";s:10:"hide_empty";b:0;s:10:"empty_zero";b:0;s:16:"hide_alter_empty";b:1;s:4:"type";s:9:"file_size";}s:6:"status";a:26:{s:2:"id";s:6:"status";s:5:"table";s:12:"file_managed";s:5:"field";s:6:"status";s:12:"relationship";s:4:"none";s:10:"group_type";s:5:"group";s:11:"admin_label";s:0:"";s:11:"entity_type";s:4:"file";s:12:"entity_field";s:6:"status";s:9:"plugin_id";s:5:"field";s:5:"label";s:6:"Status";s:7:"exclude";b:0;s:5:"alter";a:26:{s:10:"alter_text";b:0;s:4:"text";s:0:"";s:9:"make_link";b:0;s:4:"path";s:0:"";s:8:"absolute";b:0;s:8:"external";b:0;s:14:"replace_spaces";b:0;s:9:"path_case";s:4:"none";s:15:"trim_whitespace";b:0;s:3:"alt";s:0:"";s:3:"rel";s:0:"";s:10:"link_class";s:0:"";s:6:"prefix";s:0:"";s:6:"suffix";s:0:"";s:6:"target";s:0:"";s:5:"nl2br";b:0;s:10:"max_length";i:0;s:13:"word_boundary";b:1;s:8:"ellipsis";b:1;s:9:"more_link";b:0;s:14:"more_link_text";s:0:"";s:14:"more_link_path";s:0:"";s:10:"strip_tags";b:0;s:4:"trim";b:0;s:13:"preserve_tags";s:0:"";s:4:"html";b:0;}s:12:"element_type";s:0:"";s:13:"element_class";s:0:"";s:18:"element_label_type";s:0:"";s:19:"element_label_class";s:0:"";s:19:"element_label_colon";b:1;s:20:"element_wrapper_type";s:0:"";s:21:"element_wrapper_class";s:0:"";s:23:"element_default_classes";b:1;s:5:"empty";s:0:"";s:10:"hide_empty";b:0;s:10:"empty_zero";b:0;s:16:"hide_alter_empty";b:1;s:4:"type";s:7:"boolean";s:8:"settings";a:3:{s:6:"format";s:6:"custom";s:19:"format_custom_false";s:9:"Temporary";s:18:"format_custom_true";s:9:"Permanent";}}s:7:"created";a:26:{s:2:"id";s:7:"created";s:5:"table";s:12:"file_managed";s:5:"field";s:7:"created";s:12:"relationship";s:4:"none";s:10:"group_type";s:5:"group";s:11:"admin_label";s:0:"";s:11:"entity_type";s:4:"file";s:12:"entity_field";s:7:"created";s:9:"plugin_id";s:5:"field";s:5:"label";s:11:"Upload date";s:7:"exclude";b:0;s:5:"alter";a:26:{s:10:"alter_text";b:0;s:4:"text";s:0:"";s:9:"make_link";b:0;s:4:"path";s:0:"";s:8:"absolute";b:0;s:8:"external";b:0;s:14:"replace_spaces";b:0;s:9:"path_case";s:4:"none";s:15:"trim_whitespace";b:0;s:3:"alt";s:0:"";s:3:"rel";s:0:"";s:10:"link_class";s:0:"";s:6:"prefix";s:0:"";s:6:"suffix";s:0:"";s:6:"target";s:0:"";s:5:"nl2br";b:0;s:10:"max_length";i:0;s:13:"word_boundary";b:1;s:8:"ellipsis";b:1;s:9:"more_link";b:0;s:14:"more_link_text";s:0:"";s:14:"more_link_path";s:0:"";s:10:"strip_tags";b:0;s:4:"trim";b:0;s:13:"preserve_tags";s:0:"";s:4:"html";b:0;}s:12:"element_type";s:0:"";s:13:"element_class";s:0:"";s:18:"element_label_type";s:0:"";s:19:"element_label_class";s:0:"";s:19:"element_label_colon";b:1;s:20:"element_wrapper_type";s:0:"";s:21:"element_wrapper_class";s:0:"";s:23:"element_default_classes";b:1;s:5:"empty";s:0:"";s:10:"hide_empty";b:0;s:10:"empty_zero";b:0;s:16:"hide_alter_empty";b:1;s:4:"type";s:9:"timestamp";s:8:"settings";a:5:{s:11:"date_format";s:6:"medium";s:18:"custom_date_format";s:0:"";s:8:"timezone";s:0:"";s:7:"tooltip";a:2:{s:11:"date_format";s:4:"long";s:18:"custom_date_format";s:0:"";}s:9:"time_diff";a:5:{s:7:"enabled";b:0;s:13:"future_format";s:15:"@interval hence";s:11:"past_format";s:13:"@interval ago";s:11:"granularity";i:2;s:7:"refresh";i:60;}}}s:7:"changed";a:26:{s:2:"id";s:7:"changed";s:5:"table";s:12:"file_managed";s:5:"field";s:7:"changed";s:12:"relationship";s:4:"none";s:10:"group_type";s:5:"group";s:11:"admin_label";s:0:"";s:11:"entity_type";s:4:"file";s:12:"entity_field";s:7:"changed";s:9:"plugin_id";s:5:"field";s:5:"label";s:12:"Changed date";s:7:"exclude";b:0;s:5:"alter";a:26:{s:10:"alter_text";b:0;s:4:"text";s:0:"";s:9:"make_link";b:0;s:4:"path";s:0:"";s:8:"absolute";b:0;s:8:"external";b:0;s:14:"replace_spaces";b:0;s:9:"path_case";s:4:"none";s:15:"trim_whitespace";b:0;s:3:"alt";s:0:"";s:3:"rel";s:0:"";s:10:"link_class";s:0:"";s:6:"prefix";s:0:"";s:6:"suffix";s:0:"";s:6:"target";s:0:"";s:5:"nl2br";b:0;s:10:"max_length";i:0;s:13:"word_boundary";b:1;s:8:"ellipsis";b:1;s:9:"more_link";b:0;s:14:"more_link_text";s:0:"";s:14:"more_link_path";s:0:"";s:10:"strip_tags";b:0;s:4:"trim";b:0;s:13:"preserve_tags";s:0:"";s:4:"html";b:0;}s:12:"element_type";s:0:"";s:13:"element_class";s:0:"";s:18:"element_label_type";s:0:"";s:19:"element_label_class";s:0:"";s:19:"element_label_colon";b:1;s:20:"element_wrapper_type";s:0:"";s:21:"element_wrapper_class";s:0:"";s:23:"element_default_classes";b:1;s:5:"empty";s:0:"";s:10:"hide_empty";b:0;s:10:"empty_zero";b:0;s:16:"hide_alter_empty";b:1;s:4:"type";s:9:"timestamp";s:8:"settings";a:5:{s:11:"date_format";s:6:"medium";s:18:"custom_date_format";s:0:"";s:8:"timezone";s:0:"";s:7:"tooltip";a:2:{s:11:"date_format";s:4:"long";s:18:"custom_date_format";s:0:"";}s:9:"time_diff";a:5:{s:7:"enabled";b:0;s:13:"future_format";s:15:"@interval hence";s:11:"past_format";s:13:"@interval ago";s:11:"granularity";i:2;s:7:"refresh";i:60;}}}s:5:"count";a:30:{s:2:"id";s:5:"count";s:5:"table";s:10:"file_usage";s:5:"field";s:5:"count";s:12:"relationship";s:3:"fid";s:10:"group_type";s:3:"sum";s:11:"admin_label";s:0:"";s:9:"plugin_id";s:7:"numeric";s:5:"label";s:7:"Used in";s:7:"exclude";b:0;s:5:"alter";a:26:{s:10:"alter_text";b:0;s:4:"text";s:0:"";s:9:"make_link";b:1;s:4:"path";s:35:"admin/content/files/usage/{{ fid }}";s:8:"absolute";b:0;s:8:"external";b:0;s:14:"replace_spaces";b:0;s:9:"path_case";s:4:"none";s:15:"trim_whitespace";b:0;s:3:"alt";s:0:"";s:3:"rel";s:0:"";s:10:"link_class";s:0:"";s:6:"prefix";s:0:"";s:6:"suffix";s:0:"";s:6:"target";s:0:"";s:5:"nl2br";b:0;s:10:"max_length";i:0;s:13:"word_boundary";b:1;s:8:"ellipsis";b:1;s:9:"more_link";b:0;s:14:"more_link_text";s:0:"";s:14:"more_link_path";s:0:"";s:10:"strip_tags";b:0;s:4:"trim";b:0;s:13:"preserve_tags";s:0:"";s:4:"html";b:0;}s:12:"element_type";s:0:"";s:13:"element_class";s:0:"";s:18:"element_label_type";s:0:"";s:19:"element_label_class";s:0:"";s:19:"element_label_colon";b:1;s:20:"element_wrapper_type";s:0:"";s:21:"element_wrapper_class";s:0:"";s:23:"element_default_classes";b:1;s:5:"empty";s:0:"";s:10:"hide_empty";b:0;s:10:"empty_zero";b:0;s:16:"hide_alter_empty";b:1;s:13:"set_precision";b:0;s:9:"precision";i:0;s:7:"decimal";s:1:".";s:9:"separator";s:1:",";s:13:"format_plural";b:1;s:20:"format_plural_string";s:26:"@count place@count places";s:6:"prefix";s:0:"";s:6:"suffix";s:0:"";}s:10:"operations";a:24:{s:2:"id";s:10:"operations";s:5:"table";s:12:"file_managed";s:5:"field";s:10:"operations";s:12:"relationship";s:4:"none";s:10:"group_type";s:5:"group";s:11:"admin_label";s:0:"";s:11:"entity_type";s:4:"file";s:9:"plugin_id";s:17:"entity_operations";s:5:"label";s:10:"Operations";s:7:"exclude";b:0;s:5:"alter";a:26:{s:10:"alter_text";b:0;s:4:"text";s:0:"";s:9:"make_link";b:0;s:4:"path";s:0:"";s:8:"absolute";b:0;s:8:"external";b:0;s:14:"replace_spaces";b:0;s:9:"path_case";s:4:"none";s:15:"trim_whitespace";b:0;s:3:"alt";s:0:"";s:3:"rel";s:0:"";s:10:"link_class";s:0:"";s:6:"prefix";s:0:"";s:6:"suffix";s:0:"";s:6:"target";s:0:"";s:5:"nl2br";b:0;s:10:"max_length";i:0;s:13:"word_boundary";b:1;s:8:"ellipsis";b:1;s:9:"more_link";b:0;s:14:"more_link_text";s:0:"";s:14:"more_link_path";s:0:"";s:10:"strip_tags";b:0;s:4:"trim";b:0;s:13:"preserve_tags";s:0:"";s:4:"html";b:0;}s:12:"element_type";s:0:"";s:13:"element_class";s:0:"";s:18:"element_label_type";s:0:"";s:19:"element_label_class";s:0:"";s:19:"element_label_colon";b:1;s:20:"element_wrapper_type";s:0:"";s:21:"element_wrapper_class";s:0:"";s:23:"element_default_classes";b:1;s:5:"empty";s:0:"";s:10:"hide_empty";b:0;s:10:"empty_zero";b:0;s:16:"hide_alter_empty";b:1;s:11:"destination";b:0;}}s:5:"pager";a:2:{s:4:"type";s:4:"mini";s:7:"options";a:7:{s:6:"offset";i:0;s:24:"pagination_heading_level";s:2:"h4";s:14:"items_per_page";i:50;s:11:"total_pages";i:0;s:2:"id";i:0;s:4:"tags";a:2:{s:4:"next";s:8:"Next ›";s:8:"previous";s:12:"‹ Previous";}s:6:"expose";a:7:{s:14:"items_per_page";b:0;s:20:"items_per_page_label";s:14:"Items per page";s:22:"items_per_page_options";s:13:"5, 10, 25, 50";s:26:"items_per_page_options_all";b:0;s:32:"items_per_page_options_all_label";s:7:"- All -";s:6:"offset";b:0;s:12:"offset_label";s:6:"Offset";}}}s:12:"exposed_form";a:2:{s:4:"type";s:5:"basic";s:7:"options";a:7:{s:13:"submit_button";s:6:"Filter";s:12:"reset_button";b:0;s:18:"reset_button_label";s:5:"Reset";s:19:"exposed_sorts_label";s:7:"Sort by";s:17:"expose_sort_order";b:1;s:14:"sort_asc_label";s:3:"Asc";s:15:"sort_desc_label";s:4:"Desc";}}s:6:"access";a:2:{s:4:"type";s:4:"perm";s:7:"options";a:1:{s:4:"perm";s:21:"access files overview";}}s:5:"cache";a:2:{s:4:"type";s:3:"tag";s:7:"options";a:0:{}}s:5:"empty";a:1:{s:16:"area_text_custom";a:6:{s:2:"id";s:16:"area_text_custom";s:5:"table";s:5:"views";s:5:"field";s:16:"area_text_custom";s:9:"plugin_id";s:11:"text_custom";s:5:"empty";b:1;s:7:"content";s:19:"No files available.";}}s:5:"sorts";a:0:{}s:9:"arguments";a:0:{}s:7:"filters";a:3:{s:8:"filename";a:16:{s:2:"id";s:8:"filename";s:5:"table";s:12:"file_managed";s:5:"field";s:8:"filename";s:12:"relationship";s:4:"none";s:10:"group_type";s:5:"group";s:11:"admin_label";s:0:"";s:11:"entity_type";s:4:"file";s:12:"entity_field";s:8:"filename";s:9:"plugin_id";s:6:"string";s:8:"operator";s:4:"word";s:5:"value";s:0:"";s:5:"group";i:1;s:7:"exposed";b:1;s:6:"expose";a:12:{s:11:"operator_id";s:11:"filemime_op";s:5:"label";s:8:"Filename";s:11:"description";s:0:"";s:12:"use_operator";b:0;s:8:"operator";s:11:"filename_op";s:24:"operator_limit_selection";b:0;s:13:"operator_list";a:0:{}s:10:"identifier";s:8:"filename";s:8:"required";b:0;s:8:"remember";b:0;s:8:"multiple";b:0;s:14:"remember_roles";a:1:{s:13:"authenticated";s:13:"authenticated";}}s:10:"is_grouped";b:0;s:10:"group_info";a:10:{s:5:"label";s:0:"";s:11:"description";s:0:"";s:10:"identifier";s:0:"";s:8:"optional";b:1;s:6:"widget";s:6:"select";s:8:"multiple";b:0;s:8:"remember";b:0;s:13:"default_group";s:3:"All";s:22:"default_group_multiple";a:0:{}s:11:"group_items";a:0:{}}}s:8:"filemime";a:16:{s:2:"id";s:8:"filemime";s:5:"table";s:12:"file_managed";s:5:"field";s:8:"filemime";s:12:"relationship";s:4:"none";s:10:"group_type";s:5:"group";s:11:"admin_label";s:0:"";s:11:"entity_type";s:4:"file";s:12:"entity_field";s:8:"filemime";s:9:"plugin_id";s:6:"string";s:8:"operator";s:4:"word";s:5:"value";s:0:"";s:5:"group";i:1;s:7:"exposed";b:1;s:6:"expose";a:12:{s:11:"operator_id";s:11:"filemime_op";s:5:"label";s:9:"MIME type";s:11:"description";s:0:"";s:12:"use_operator";b:0;s:8:"operator";s:11:"filemime_op";s:24:"operator_limit_selection";b:0;s:13:"operator_list";a:0:{}s:10:"identifier";s:8:"filemime";s:8:"required";b:0;s:8:"remember";b:0;s:8:"multiple";b:0;s:14:"remember_roles";a:1:{s:13:"authenticated";s:13:"authenticated";}}s:10:"is_grouped";b:0;s:10:"group_info";a:10:{s:5:"label";s:0:"";s:11:"description";s:0:"";s:10:"identifier";s:0:"";s:8:"optional";b:1;s:6:"widget";s:6:"select";s:8:"multiple";b:0;s:8:"remember";b:0;s:13:"default_group";s:3:"All";s:22:"default_group_multiple";a:0:{}s:11:"group_items";a:0:{}}}s:6:"status";a:16:{s:2:"id";s:6:"status";s:5:"table";s:12:"file_managed";s:5:"field";s:6:"status";s:12:"relationship";s:4:"none";s:10:"group_type";s:5:"group";s:11:"admin_label";s:0:"";s:11:"entity_type";s:4:"file";s:12:"entity_field";s:6:"status";s:9:"plugin_id";s:11:"file_status";s:8:"operator";s:2:"in";s:5:"value";a:0:{}s:5:"group";i:1;s:7:"exposed";b:1;s:6:"expose";a:13:{s:11:"operator_id";s:9:"status_op";s:5:"label";s:6:"Status";s:11:"description";s:0:"";s:12:"use_operator";b:0;s:8:"operator";s:9:"status_op";s:24:"operator_limit_selection";b:0;s:13:"operator_list";a:0:{}s:10:"identifier";s:6:"status";s:8:"required";b:0;s:8:"remember";b:0;s:8:"multiple";b:0;s:14:"remember_roles";a:1:{s:13:"authenticated";s:13:"authenticated";}s:6:"reduce";b:0;}s:10:"is_grouped";b:0;s:10:"group_info";a:10:{s:5:"label";s:0:"";s:11:"description";s:0:"";s:10:"identifier";s:0:"";s:8:"optional";b:1;s:6:"widget";s:6:"select";s:8:"multiple";b:0;s:8:"remember";b:0;s:13:"default_group";s:3:"All";s:22:"default_group_multiple";a:0:{}s:11:"group_items";a:0:{}}}}s:5:"style";a:2:{s:4:"type";s:5:"table";s:7:"options";a:13:{s:8:"grouping";a:0:{}s:9:"row_class";s:0:"";s:17:"default_row_class";b:1;s:7:"columns";a:8:{s:3:"fid";s:3:"fid";s:8:"filename";s:8:"filename";s:8:"filemime";s:8:"filemime";s:8:"filesize";s:8:"filesize";s:6:"status";s:6:"status";s:7:"created";s:7:"created";s:7:"changed";s:7:"changed";s:5:"count";s:5:"count";}s:7:"default";s:7:"changed";s:4:"info";a:8:{s:3:"fid";a:6:{s:8:"sortable";b:0;s:18:"default_sort_order";s:3:"asc";s:5:"align";s:0:"";s:9:"separator";s:0:"";s:12:"empty_column";b:0;s:10:"responsive";s:0:"";}s:8:"filename";a:6:{s:8:"sortable";b:1;s:18:"default_sort_order";s:3:"asc";s:5:"align";s:0:"";s:9:"separator";s:0:"";s:12:"empty_column";b:0;s:10:"responsive";s:0:"";}s:8:"filemime";a:6:{s:8:"sortable";b:1;s:18:"default_sort_order";s:3:"asc";s:5:"align";s:0:"";s:9:"separator";s:0:"";s:12:"empty_column";b:0;s:10:"responsive";s:15:"priority-medium";}s:8:"filesize";a:6:{s:8:"sortable";b:1;s:18:"default_sort_order";s:3:"asc";s:5:"align";s:0:"";s:9:"separator";s:0:"";s:12:"empty_column";b:0;s:10:"responsive";s:12:"priority-low";}s:6:"status";a:6:{s:8:"sortable";b:0;s:18:"default_sort_order";s:3:"asc";s:5:"align";s:0:"";s:9:"separator";s:0:"";s:12:"empty_column";b:0;s:10:"responsive";s:12:"priority-low";}s:7:"created";a:6:{s:8:"sortable";b:1;s:18:"default_sort_order";s:4:"desc";s:5:"align";s:0:"";s:9:"separator";s:0:"";s:12:"empty_column";b:0;s:10:"responsive";s:0:"";}s:7:"changed";a:6:{s:8:"sortable";b:1;s:18:"default_sort_order";s:4:"desc";s:5:"align";s:0:"";s:9:"separator";s:0:"";s:12:"empty_column";b:0;s:10:"responsive";s:0:"";}s:5:"count";a:6:{s:8:"sortable";b:0;s:18:"default_sort_order";s:3:"asc";s:5:"align";s:0:"";s:9:"separator";s:0:"";s:12:"empty_column";b:0;s:10:"responsive";s:15:"priority-medium";}}s:8:"override";b:1;s:6:"sticky";b:0;s:7:"summary";s:0:"";s:11:"empty_table";b:1;s:7:"caption";s:0:"";s:11:"description";s:0:"";s:5:"class";s:0:"";}}s:3:"row";a:1:{s:4:"type";s:6:"fields";}s:5:"query";a:2:{s:4:"type";s:11:"views_query";s:7:"options";a:5:{s:13:"query_comment";s:0:"";s:19:"disable_sql_rewrite";b:0;s:8:"distinct";b:0;s:7:"replica";b:0;s:10:"query_tags";a:0:{}}}s:13:"relationships";a:1:{s:3:"fid";a:7:{s:2:"id";s:3:"fid";s:5:"table";s:12:"file_managed";s:5:"field";s:3:"fid";s:12:"relationship";s:4:"none";s:10:"group_type";s:5:"group";s:11:"admin_label";s:10:"File usage";s:8:"required";b:1;}}s:8:"group_by";b:1;s:16:"show_admin_links";b:1;s:6:"header";a:0:{}s:6:"footer";a:0:{}s:17:"display_extenders";a:0:{}}s:14:"cache_metadata";a:3:{s:7:"max-age";i:-1;s:8:"contexts";a:5:{i:0;s:26:"languages:language_content";i:1;s:28:"languages:language_interface";i:2;s:3:"url";i:3;s:14:"url.query_args";i:4;s:16:"user.permissions";}s:4:"tags";a:0:{}}}s:6:"page_1";a:6:{s:2:"id";s:6:"page_1";s:13:"display_title";s:14:"Files overview";s:14:"display_plugin";s:4:"page";s:8:"position";i:1;s:15:"display_options";a:6:{s:8:"defaults";a:2:{s:5:"pager";b:1;s:13:"relationships";b:0;}s:13:"relationships";a:1:{s:3:"fid";a:7:{s:2:"id";s:3:"fid";s:5:"table";s:12:"file_managed";s:5:"field";s:3:"fid";s:12:"relationship";s:4:"none";s:10:"group_type";s:5:"group";s:11:"admin_label";s:10:"File usage";s:8:"required";b:0;}}s:19:"display_description";s:0:"";s:17:"display_extenders";a:0:{}s:4:"path";s:19:"admin/content/files";s:4:"menu";a:6:{s:4:"type";s:3:"tab";s:5:"title";s:5:"Files";s:11:"description";s:0:"";s:6:"weight";i:0;s:9:"menu_name";s:5:"admin";s:7:"context";s:0:"";}}s:14:"cache_metadata";a:3:{s:7:"max-age";i:-1;s:8:"contexts";a:5:{i:0;s:26:"languages:language_content";i:1;s:28:"languages:language_interface";i:2;s:3:"url";i:3;s:14:"url.query_args";i:4;s:16:"user.permissions";}s:4:"tags";a:0:{}}}s:6:"page_2";a:6:{s:2:"id";s:6:"page_2";s:13:"display_title";s:10:"File usage";s:14:"display_plugin";s:4:"page";s:8:"position";i:2;s:15:"display_options";a:15:{s:5:"title";s:10:"File usage";s:6:"fields";a:4:{s:12:"entity_label";a:23:{s:2:"id";s:12:"entity_label";s:5:"table";s:10:"file_usage";s:5:"field";s:12:"entity_label";s:12:"relationship";s:4:"none";s:10:"group_type";s:5:"group";s:11:"admin_label";s:0:"";s:9:"plugin_id";s:12:"entity_label";s:5:"label";s:6:"Entity";s:7:"exclude";b:0;s:5:"alter";a:26:{s:10:"alter_text";b:0;s:4:"text";s:0:"";s:9:"make_link";b:0;s:4:"path";s:0:"";s:8:"absolute";b:0;s:8:"external";b:0;s:14:"replace_spaces";b:0;s:9:"path_case";s:4:"none";s:15:"trim_whitespace";b:0;s:3:"alt";s:0:"";s:3:"rel";s:0:"";s:10:"link_class";s:0:"";s:6:"prefix";s:0:"";s:6:"suffix";s:0:"";s:6:"target";s:0:"";s:5:"nl2br";b:0;s:10:"max_length";i:0;s:13:"word_boundary";b:1;s:8:"ellipsis";b:1;s:9:"more_link";b:0;s:14:"more_link_text";s:0:"";s:14:"more_link_path";s:0:"";s:10:"strip_tags";b:0;s:4:"trim";b:0;s:13:"preserve_tags";s:0:"";s:4:"html";b:0;}s:12:"element_type";s:0:"";s:13:"element_class";s:0:"";s:18:"element_label_type";s:0:"";s:19:"element_label_class";s:0:"";s:19:"element_label_colon";b:1;s:20:"element_wrapper_type";s:0:"";s:21:"element_wrapper_class";s:0:"";s:23:"element_default_classes";b:1;s:5:"empty";s:0:"";s:10:"hide_empty";b:0;s:10:"empty_zero";b:0;s:16:"hide_alter_empty";b:1;s:14:"link_to_entity";b:1;}s:4:"type";a:22:{s:2:"id";s:4:"type";s:5:"table";s:10:"file_usage";s:5:"field";s:4:"type";s:12:"relationship";s:4:"none";s:10:"group_type";s:5:"group";s:11:"admin_label";s:0:"";s:9:"plugin_id";s:8:"standard";s:5:"label";s:11:"Entity type";s:7:"exclude";b:0;s:5:"alter";a:26:{s:10:"alter_text";b:0;s:4:"text";s:0:"";s:9:"make_link";b:0;s:4:"path";s:0:"";s:8:"absolute";b:0;s:8:"external";b:0;s:14:"replace_spaces";b:0;s:9:"path_case";s:4:"none";s:15:"trim_whitespace";b:0;s:3:"alt";s:0:"";s:3:"rel";s:0:"";s:10:"link_class";s:0:"";s:6:"prefix";s:0:"";s:6:"suffix";s:0:"";s:6:"target";s:0:"";s:5:"nl2br";b:0;s:10:"max_length";i:0;s:13:"word_boundary";b:1;s:8:"ellipsis";b:1;s:9:"more_link";b:0;s:14:"more_link_text";s:0:"";s:14:"more_link_path";s:0:"";s:10:"strip_tags";b:0;s:4:"trim";b:0;s:13:"preserve_tags";s:0:"";s:4:"html";b:0;}s:12:"element_type";s:0:"";s:13:"element_class";s:0:"";s:18:"element_label_type";s:0:"";s:19:"element_label_class";s:0:"";s:19:"element_label_colon";b:1;s:20:"element_wrapper_type";s:0:"";s:21:"element_wrapper_class";s:0:"";s:23:"element_default_classes";b:1;s:5:"empty";s:0:"";s:10:"hide_empty";b:0;s:10:"empty_zero";b:0;s:16:"hide_alter_empty";b:1;}s:6:"module";a:22:{s:2:"id";s:6:"module";s:5:"table";s:10:"file_usage";s:5:"field";s:6:"module";s:12:"relationship";s:4:"none";s:10:"group_type";s:5:"group";s:11:"admin_label";s:0:"";s:9:"plugin_id";s:8:"standard";s:5:"label";s:18:"Registering module";s:7:"exclude";b:0;s:5:"alter";a:26:{s:10:"alter_text";b:0;s:4:"text";s:0:"";s:9:"make_link";b:0;s:4:"path";s:0:"";s:8:"absolute";b:0;s:8:"external";b:0;s:14:"replace_spaces";b:0;s:9:"path_case";s:4:"none";s:15:"trim_whitespace";b:0;s:3:"alt";s:0:"";s:3:"rel";s:0:"";s:10:"link_class";s:0:"";s:6:"prefix";s:0:"";s:6:"suffix";s:0:"";s:6:"target";s:0:"";s:5:"nl2br";b:0;s:10:"max_length";i:0;s:13:"word_boundary";b:1;s:8:"ellipsis";b:1;s:9:"more_link";b:0;s:14:"more_link_text";s:0:"";s:14:"more_link_path";s:0:"";s:10:"strip_tags";b:0;s:4:"trim";b:0;s:13:"preserve_tags";s:0:"";s:4:"html";b:0;}s:12:"element_type";s:0:"";s:13:"element_class";s:0:"";s:18:"element_label_type";s:0:"";s:19:"element_label_class";s:0:"";s:19:"element_label_colon";b:1;s:20:"element_wrapper_type";s:0:"";s:21:"element_wrapper_class";s:0:"";s:23:"element_default_classes";b:1;s:5:"empty";s:0:"";s:10:"hide_empty";b:0;s:10:"empty_zero";b:0;s:16:"hide_alter_empty";b:1;}s:5:"count";a:30:{s:2:"id";s:5:"count";s:5:"table";s:10:"file_usage";s:5:"field";s:5:"count";s:12:"relationship";s:4:"none";s:10:"group_type";s:5:"group";s:11:"admin_label";s:0:"";s:9:"plugin_id";s:7:"numeric";s:5:"label";s:9:"Use count";s:7:"exclude";b:0;s:5:"alter";a:26:{s:10:"alter_text";b:0;s:4:"text";s:0:"";s:9:"make_link";b:0;s:4:"path";s:0:"";s:8:"absolute";b:0;s:8:"external";b:0;s:14:"replace_spaces";b:0;s:9:"path_case";s:4:"none";s:15:"trim_whitespace";b:0;s:3:"alt";s:0:"";s:3:"rel";s:0:"";s:10:"link_class";s:0:"";s:6:"prefix";s:0:"";s:6:"suffix";s:0:"";s:6:"target";s:0:"";s:5:"nl2br";b:0;s:10:"max_length";i:0;s:13:"word_boundary";b:1;s:8:"ellipsis";b:1;s:9:"more_link";b:0;s:14:"more_link_text";s:0:"";s:14:"more_link_path";s:0:"";s:10:"strip_tags";b:0;s:4:"trim";b:0;s:13:"preserve_tags";s:0:"";s:4:"html";b:0;}s:12:"element_type";s:0:"";s:13:"element_class";s:0:"";s:18:"element_label_type";s:0:"";s:19:"element_label_class";s:0:"";s:19:"element_label_colon";b:1;s:20:"element_wrapper_type";s:0:"";s:21:"element_wrapper_class";s:0:"";s:23:"element_default_classes";b:1;s:5:"empty";s:0:"";s:10:"hide_empty";b:0;s:10:"empty_zero";b:0;s:16:"hide_alter_empty";b:1;s:13:"set_precision";b:0;s:9:"precision";i:0;s:7:"decimal";s:1:".";s:9:"separator";s:1:",";s:13:"format_plural";b:0;s:20:"format_plural_string";s:8:"1@count";s:6:"prefix";s:0:"";s:6:"suffix";s:0:"";}}s:5:"pager";a:2:{s:4:"type";s:4:"mini";s:7:"options";a:7:{s:6:"offset";i:0;s:24:"pagination_heading_level";s:2:"h4";s:14:"items_per_page";i:10;s:11:"total_pages";i:0;s:2:"id";i:0;s:4:"tags";a:2:{s:4:"next";s:8:"Next ›";s:8:"previous";s:12:"‹ Previous";}s:6:"expose";a:7:{s:14:"items_per_page";b:0;s:20:"items_per_page_label";s:14:"Items per page";s:22:"items_per_page_options";s:13:"5, 10, 25, 50";s:26:"items_per_page_options_all";b:0;s:32:"items_per_page_options_all_label";s:7:"- All -";s:6:"offset";b:0;s:12:"offset_label";s:6:"Offset";}}}s:5:"empty";a:0:{}s:9:"arguments";a:1:{s:3:"fid";a:22:{s:2:"id";s:3:"fid";s:5:"table";s:12:"file_managed";s:5:"field";s:3:"fid";s:12:"relationship";s:4:"none";s:10:"group_type";s:5:"group";s:11:"admin_label";s:0:"";s:11:"entity_type";s:4:"file";s:12:"entity_field";s:3:"fid";s:9:"plugin_id";s:8:"file_fid";s:14:"default_action";s:9:"not found";s:9:"exception";a:3:{s:5:"value";s:3:"all";s:12:"title_enable";b:0;s:5:"title";s:3:"All";}s:12:"title_enable";b:1;s:5:"title";s:46:"File usage information for {{ arguments.fid }}";s:21:"default_argument_type";s:5:"fixed";s:24:"default_argument_options";a:1:{s:8:"argument";s:0:"";}s:15:"summary_options";a:4:{s:9:"base_path";s:0:"";s:5:"count";b:1;s:8:"override";b:0;s:14:"items_per_page";i:25;}s:7:"summary";a:3:{s:10:"sort_order";s:3:"asc";s:17:"number_of_records";i:0;s:6:"format";s:15:"default_summary";}s:18:"specify_validation";b:0;s:8:"validate";a:2:{s:4:"type";s:4:"none";s:4:"fail";s:9:"not found";}s:16:"validate_options";a:0:{}s:12:"break_phrase";b:0;s:3:"not";b:0;}}s:7:"filters";a:0:{}s:13:"filter_groups";a:2:{s:8:"operator";s:3:"AND";s:6:"groups";a:0:{}}s:5:"style";a:2:{s:4:"type";s:5:"table";s:7:"options";a:13:{s:8:"grouping";a:0:{}s:9:"row_class";s:0:"";s:17:"default_row_class";b:1;s:7:"columns";a:4:{s:12:"entity_label";s:12:"entity_label";s:4:"type";s:4:"type";s:6:"module";s:6:"module";s:5:"count";s:5:"count";}s:7:"default";s:12:"entity_label";s:4:"info";a:4:{s:12:"entity_label";a:6:{s:8:"sortable";b:1;s:18:"default_sort_order";s:3:"asc";s:5:"align";s:0:"";s:9:"separator";s:0:"";s:12:"empty_column";b:0;s:10:"responsive";s:0:"";}s:4:"type";a:6:{s:8:"sortable";b:1;s:18:"default_sort_order";s:3:"asc";s:5:"align";s:0:"";s:9:"separator";s:0:"";s:12:"empty_column";b:0;s:10:"responsive";s:15:"priority-medium";}s:6:"module";a:6:{s:8:"sortable";b:0;s:18:"default_sort_order";s:3:"asc";s:5:"align";s:0:"";s:9:"separator";s:0:"";s:12:"empty_column";b:0;s:10:"responsive";s:12:"priority-low";}s:5:"count";a:6:{s:8:"sortable";b:0;s:18:"default_sort_order";s:3:"asc";s:5:"align";s:0:"";s:9:"separator";s:0:"";s:12:"empty_column";b:0;s:10:"responsive";s:0:"";}}s:8:"override";b:1;s:6:"sticky";b:0;s:7:"summary";s:0:"";s:11:"empty_table";b:1;s:7:"caption";s:0:"";s:11:"description";s:0:"";s:5:"class";s:0:"";}}s:3:"row";a:2:{s:4:"type";s:6:"fields";s:7:"options";a:0:{}}s:8:"defaults";a:11:{s:5:"empty";b:0;s:5:"title";b:0;s:5:"pager";b:0;s:8:"group_by";b:0;s:5:"style";b:0;s:3:"row";b:0;s:13:"relationships";b:0;s:6:"fields";b:0;s:9:"arguments";b:0;s:7:"filters";b:0;s:13:"filter_groups";b:0;}s:13:"relationships";a:1:{s:3:"fid";a:7:{s:2:"id";s:3:"fid";s:5:"table";s:12:"file_managed";s:5:"field";s:3:"fid";s:12:"relationship";s:4:"none";s:10:"group_type";s:5:"group";s:11:"admin_label";s:10:"File usage";s:8:"required";b:1;}}s:8:"group_by";b:0;s:19:"display_description";s:0:"";s:17:"display_extenders";a:0:{}s:4:"path";s:27:"admin/content/files/usage/%";}s:14:"cache_metadata";a:3:{s:7:"max-age";i:-1;s:8:"contexts";a:4:{i:0;s:28:"languages:language_interface";i:1;s:3:"url";i:2;s:14:"url.query_args";i:3;s:16:"user.permissions";}s:4:"tags";a:0:{}}}}}'), ('', 'views.view.frontpage', 'a:13:{s:4:"uuid";s:36:"bedc5a12-90bd-4fde-8e77-51ab5f06ac96";s:8:"langcode";s:2:"en";s:6:"status";b:1;s:12:"dependencies";a:2:{s:6:"config";a:2:{i:0;s:30:"core.entity_view_mode.node.rss";i:1;s:33:"core.entity_view_mode.node.teaser";}s:6:"module";a:2:{i:0;s:4:"node";i:1;s:4:"user";}}s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"OEEnRQIjfIaCFRsz8U3VqDrE82ltQKlo8wNbQJRZXu0";}s:2:"id";s:9:"frontpage";s:5:"label";s:9:"Frontpage";s:6:"module";s:4:"node";s:11:"description";s:39:"All content promoted to the front page.";s:3:"tag";s:7:"default";s:10:"base_table";s:15:"node_field_data";s:10:"base_field";s:3:"nid";s:7:"display";a:3:{s:7:"default";a:6:{s:2:"id";s:7:"default";s:13:"display_title";s:7:"Default";s:14:"display_plugin";s:7:"default";s:8:"position";i:0;s:15:"display_options";a:17:{s:5:"title";s:0:"";s:6:"fields";a:0:{}s:5:"pager";a:2:{s:4:"type";s:4:"full";s:7:"options";a:8:{s:6:"offset";i:0;s:24:"pagination_heading_level";s:2:"h4";s:14:"items_per_page";i:10;s:11:"total_pages";i:0;s:2:"id";i:0;s:4:"tags";a:4:{s:4:"next";s:8:"Next ›";s:8:"previous";s:12:"‹ Previous";s:5:"first";s:8:"« First";s:4:"last";s:7:"Last »";}s:6:"expose";a:7:{s:14:"items_per_page";b:0;s:20:"items_per_page_label";s:14:"Items per page";s:22:"items_per_page_options";s:13:"5, 10, 25, 50";s:26:"items_per_page_options_all";b:0;s:32:"items_per_page_options_all_label";s:7:"- All -";s:6:"offset";b:0;s:12:"offset_label";s:6:"Offset";}s:8:"quantity";i:9;}}s:12:"exposed_form";a:2:{s:4:"type";s:5:"basic";s:7:"options";a:7:{s:13:"submit_button";s:5:"Apply";s:12:"reset_button";b:0;s:18:"reset_button_label";s:5:"Reset";s:19:"exposed_sorts_label";s:7:"Sort by";s:17:"expose_sort_order";b:1;s:14:"sort_asc_label";s:3:"Asc";s:15:"sort_desc_label";s:4:"Desc";}}s:6:"access";a:2:{s:4:"type";s:4:"perm";s:7:"options";a:1:{s:4:"perm";s:14:"access content";}}s:5:"cache";a:2:{s:4:"type";s:3:"tag";s:7:"options";a:0:{}}s:5:"empty";a:3:{s:16:"area_text_custom";a:11:{s:2:"id";s:16:"area_text_custom";s:5:"table";s:5:"views";s:5:"field";s:16:"area_text_custom";s:12:"relationship";s:4:"none";s:10:"group_type";s:5:"group";s:11:"admin_label";s:0:"";s:9:"plugin_id";s:11:"text_custom";s:5:"label";s:0:"";s:5:"empty";b:1;s:7:"content";s:181:"No front page content has been created yet.
          Follow the
          User Guide to start building your site.";s:8:"tokenize";b:0;}s:18:"node_listing_empty";a:10:{s:2:"id";s:18:"node_listing_empty";s:5:"table";s:4:"node";s:5:"field";s:18:"node_listing_empty";s:12:"relationship";s:4:"none";s:10:"group_type";s:5:"group";s:11:"admin_label";s:0:"";s:11:"entity_type";s:4:"node";s:9:"plugin_id";s:18:"node_listing_empty";s:5:"label";s:0:"";s:5:"empty";b:1;}s:5:"title";a:10:{s:2:"id";s:5:"title";s:5:"table";s:5:"views";s:5:"field";s:5:"title";s:12:"relationship";s:4:"none";s:10:"group_type";s:5:"group";s:11:"admin_label";s:0:"";s:9:"plugin_id";s:5:"title";s:5:"label";s:0:"";s:5:"empty";b:1;s:5:"title";s:8:"Welcome!";}}s:5:"sorts";a:2:{s:6:"sticky";a:12:{s:2:"id";s:6:"sticky";s:5:"table";s:15:"node_field_data";s:5:"field";s:6:"sticky";s:12:"relationship";s:4:"none";s:10:"group_type";s:5:"group";s:11:"admin_label";s:0:"";s:11:"entity_type";s:4:"node";s:12:"entity_field";s:6:"sticky";s:9:"plugin_id";s:8:"standard";s:5:"order";s:4:"DESC";s:6:"expose";a:2:{s:5:"label";s:0:"";s:16:"field_identifier";s:6:"sticky";}s:7:"exposed";b:0;}s:7:"created";a:13:{s:2:"id";s:7:"created";s:5:"table";s:15:"node_field_data";s:5:"field";s:7:"created";s:12:"relationship";s:4:"none";s:10:"group_type";s:5:"group";s:11:"admin_label";s:0:"";s:11:"entity_type";s:4:"node";s:12:"entity_field";s:7:"created";s:9:"plugin_id";s:4:"date";s:5:"order";s:4:"DESC";s:6:"expose";a:2:{s:5:"label";s:0:"";s:16:"field_identifier";s:7:"created";}s:7:"exposed";b:0;s:11:"granularity";s:6:"second";}}s:9:"arguments";a:0:{}s:7:"filters";a:3:{s:7:"promote";a:16:{s:2:"id";s:7:"promote";s:5:"table";s:15:"node_field_data";s:5:"field";s:7:"promote";s:12:"relationship";s:4:"none";s:10:"group_type";s:5:"group";s:11:"admin_label";s:0:"";s:11:"entity_type";s:4:"node";s:12:"entity_field";s:7:"promote";s:9:"plugin_id";s:7:"boolean";s:8:"operator";s:1:"=";s:5:"value";s:1:"1";s:5:"group";i:1;s:7:"exposed";b:0;s:6:"expose";a:12:{s:11:"operator_id";s:0:"";s:5:"label";s:0:"";s:11:"description";s:0:"";s:12:"use_operator";b:0;s:8:"operator";s:0:"";s:24:"operator_limit_selection";b:0;s:13:"operator_list";a:0:{}s:10:"identifier";s:0:"";s:8:"required";b:0;s:8:"remember";b:0;s:8:"multiple";b:0;s:14:"remember_roles";a:1:{s:13:"authenticated";s:13:"authenticated";}}s:10:"is_grouped";b:0;s:10:"group_info";a:10:{s:5:"label";s:0:"";s:11:"description";s:0:"";s:10:"identifier";s:0:"";s:8:"optional";b:1;s:6:"widget";s:6:"select";s:8:"multiple";b:0;s:8:"remember";b:0;s:13:"default_group";s:3:"All";s:22:"default_group_multiple";a:0:{}s:11:"group_items";a:0:{}}}s:6:"status";a:9:{s:2:"id";s:6:"status";s:5:"table";s:15:"node_field_data";s:5:"field";s:6:"status";s:11:"entity_type";s:4:"node";s:12:"entity_field";s:6:"status";s:9:"plugin_id";s:7:"boolean";s:5:"value";s:1:"1";s:5:"group";i:1;s:6:"expose";a:3:{s:8:"operator";s:0:"";s:24:"operator_limit_selection";b:0;s:13:"operator_list";a:0:{}}}s:8:"langcode";a:16:{s:2:"id";s:8:"langcode";s:5:"table";s:15:"node_field_data";s:5:"field";s:8:"langcode";s:12:"relationship";s:4:"none";s:10:"group_type";s:5:"group";s:11:"admin_label";s:0:"";s:11:"entity_type";s:4:"node";s:12:"entity_field";s:8:"langcode";s:9:"plugin_id";s:8:"language";s:8:"operator";s:2:"in";s:5:"value";a:1:{s:31:"***LANGUAGE_language_content***";s:31:"***LANGUAGE_language_content***";}s:5:"group";i:1;s:7:"exposed";b:0;s:6:"expose";a:13:{s:11:"operator_id";s:0:"";s:5:"label";s:0:"";s:11:"description";s:0:"";s:12:"use_operator";b:0;s:8:"operator";s:0:"";s:24:"operator_limit_selection";b:0;s:13:"operator_list";a:0:{}s:10:"identifier";s:0:"";s:8:"required";b:0;s:8:"remember";b:0;s:8:"multiple";b:0;s:14:"remember_roles";a:1:{s:13:"authenticated";s:13:"authenticated";}s:6:"reduce";b:0;}s:10:"is_grouped";b:0;s:10:"group_info";a:10:{s:5:"label";s:0:"";s:11:"description";s:0:"";s:10:"identifier";s:0:"";s:8:"optional";b:1;s:6:"widget";s:6:"select";s:8:"multiple";b:0;s:8:"remember";b:0;s:13:"default_group";s:3:"All";s:22:"default_group_multiple";a:0:{}s:11:"group_items";a:0:{}}}}s:5:"style";a:2:{s:4:"type";s:7:"default";s:7:"options";a:4:{s:8:"grouping";a:0:{}s:9:"row_class";s:0:"";s:17:"default_row_class";b:1;s:11:"uses_fields";b:0;}}s:3:"row";a:2:{s:4:"type";s:11:"entity:node";s:7:"options";a:1:{s:9:"view_mode";s:6:"teaser";}}s:5:"query";a:2:{s:4:"type";s:11:"views_query";s:7:"options";a:5:{s:13:"query_comment";s:0:"";s:19:"disable_sql_rewrite";b:0;s:8:"distinct";b:0;s:7:"replica";b:0;s:10:"query_tags";a:0:{}}}s:13:"relationships";a:0:{}s:6:"header";a:0:{}s:6:"footer";a:0:{}s:17:"display_extenders";a:0:{}}s:14:"cache_metadata";a:3:{s:7:"max-age";i:-1;s:8:"contexts";a:4:{i:0;s:28:"languages:language_interface";i:1;s:14:"url.query_args";i:2;s:21:"user.node_grants:view";i:3;s:16:"user.permissions";}s:4:"tags";a:0:{}}}s:6:"feed_1";a:6:{s:2:"id";s:6:"feed_1";s:13:"display_title";s:4:"Feed";s:14:"display_plugin";s:4:"feed";s:8:"position";i:2;s:15:"display_options";a:7:{s:5:"pager";a:2:{s:4:"type";s:4:"some";s:7:"options";a:2:{s:6:"offset";i:0;s:14:"items_per_page";i:10;}}s:5:"style";a:2:{s:4:"type";s:3:"rss";s:7:"options";a:3:{s:8:"grouping";a:0:{}s:11:"uses_fields";b:0;s:11:"description";s:0:"";}}s:3:"row";a:2:{s:4:"type";s:8:"node_rss";s:7:"options";a:2:{s:12:"relationship";s:4:"none";s:9:"view_mode";s:3:"rss";}}s:17:"display_extenders";a:0:{}s:4:"path";s:7:"rss.xml";s:14:"sitename_title";b:1;s:8:"displays";a:2:{s:6:"page_1";s:6:"page_1";s:7:"default";s:0:"";}}s:14:"cache_metadata";a:3:{s:7:"max-age";i:-1;s:8:"contexts";a:3:{i:0;s:28:"languages:language_interface";i:1;s:21:"user.node_grants:view";i:2;s:16:"user.permissions";}s:4:"tags";a:0:{}}}s:6:"page_1";a:6:{s:2:"id";s:6:"page_1";s:13:"display_title";s:4:"Page";s:14:"display_plugin";s:4:"page";s:8:"position";i:1;s:15:"display_options";a:2:{s:17:"display_extenders";a:0:{}s:4:"path";s:4:"node";}s:14:"cache_metadata";a:3:{s:7:"max-age";i:-1;s:8:"contexts";a:4:{i:0;s:28:"languages:language_interface";i:1;s:14:"url.query_args";i:2;s:21:"user.node_grants:view";i:3;s:16:"user.permissions";}s:4:"tags";a:0:{}}}}}'); INSERT INTO `[[dbprefix]]config` VALUES ('', 'views.view.glossary', 'a:13:{s:4:"uuid";s:36:"5e5988c8-480a-4ef9-a9dd-47300e215ea0";s:8:"langcode";s:2:"en";s:6:"status";b:0;s:12:"dependencies";a:2:{s:6:"config";a:1:{i:0;s:16:"system.menu.main";}s:6:"module";a:2:{i:0;s:4:"node";i:1;s:4:"user";}}s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"msJ3UFBLYSIFO9zalGlk3_7z1reoZ7EHJ4qeRzO5iAE";}s:2:"id";s:8:"glossary";s:5:"label";s:8:"Glossary";s:6:"module";s:4:"node";s:11:"description";s:23:"All content, by letter.";s:3:"tag";s:7:"default";s:10:"base_table";s:15:"node_field_data";s:10:"base_field";s:3:"nid";s:7:"display";a:3:{s:7:"default";a:6:{s:2:"id";s:7:"default";s:13:"display_title";s:7:"Default";s:14:"display_plugin";s:7:"default";s:8:"position";i:0;s:15:"display_options";a:17:{s:6:"fields";a:3:{s:5:"title";a:24:{s:2:"id";s:5:"title";s:5:"table";s:15:"node_field_data";s:5:"field";s:5:"title";s:12:"relationship";s:4:"none";s:10:"group_type";s:5:"group";s:11:"admin_label";s:0:"";s:11:"entity_type";s:4:"node";s:12:"entity_field";s:5:"title";s:9:"plugin_id";s:5:"field";s:5:"label";s:5:"Title";s:7:"exclude";b:0;s:5:"alter";a:26:{s:10:"alter_text";b:0;s:4:"text";s:0:"";s:9:"make_link";b:0;s:4:"path";s:0:"";s:8:"absolute";b:0;s:8:"external";b:0;s:14:"replace_spaces";b:0;s:9:"path_case";s:4:"none";s:15:"trim_whitespace";b:0;s:3:"alt";s:0:"";s:3:"rel";s:0:"";s:10:"link_class";s:0:"";s:6:"prefix";s:0:"";s:6:"suffix";s:0:"";s:6:"target";s:0:"";s:5:"nl2br";b:0;s:10:"max_length";i:0;s:13:"word_boundary";b:1;s:8:"ellipsis";b:1;s:9:"more_link";b:0;s:14:"more_link_text";s:0:"";s:14:"more_link_path";s:0:"";s:10:"strip_tags";b:0;s:4:"trim";b:0;s:13:"preserve_tags";s:0:"";s:4:"html";b:0;}s:12:"element_type";s:0:"";s:13:"element_class";s:0:"";s:18:"element_label_type";s:0:"";s:19:"element_label_class";s:0:"";s:19:"element_label_colon";b:1;s:20:"element_wrapper_type";s:0:"";s:21:"element_wrapper_class";s:0:"";s:23:"element_default_classes";b:1;s:5:"empty";s:0:"";s:10:"hide_empty";b:0;s:10:"empty_zero";b:0;s:16:"hide_alter_empty";b:1;}s:4:"name";a:25:{s:2:"id";s:4:"name";s:5:"table";s:16:"users_field_data";s:5:"field";s:4:"name";s:12:"relationship";s:3:"uid";s:10:"group_type";s:5:"group";s:11:"admin_label";s:0:"";s:11:"entity_type";s:4:"user";s:12:"entity_field";s:4:"name";s:9:"plugin_id";s:5:"field";s:5:"label";s:6:"Author";s:7:"exclude";b:0;s:5:"alter";a:26:{s:10:"alter_text";b:0;s:4:"text";s:0:"";s:9:"make_link";b:0;s:4:"path";s:0:"";s:8:"absolute";b:0;s:8:"external";b:0;s:14:"replace_spaces";b:0;s:9:"path_case";s:4:"none";s:15:"trim_whitespace";b:0;s:3:"alt";s:0:"";s:3:"rel";s:0:"";s:10:"link_class";s:0:"";s:6:"prefix";s:0:"";s:6:"suffix";s:0:"";s:6:"target";s:0:"";s:5:"nl2br";b:0;s:10:"max_length";i:0;s:13:"word_boundary";b:1;s:8:"ellipsis";b:1;s:9:"more_link";b:0;s:14:"more_link_text";s:0:"";s:14:"more_link_path";s:0:"";s:10:"strip_tags";b:0;s:4:"trim";b:0;s:13:"preserve_tags";s:0:"";s:4:"html";b:0;}s:12:"element_type";s:0:"";s:13:"element_class";s:0:"";s:18:"element_label_type";s:0:"";s:19:"element_label_class";s:0:"";s:19:"element_label_colon";b:1;s:20:"element_wrapper_type";s:0:"";s:21:"element_wrapper_class";s:0:"";s:23:"element_default_classes";b:1;s:5:"empty";s:0:"";s:10:"hide_empty";b:0;s:10:"empty_zero";b:0;s:16:"hide_alter_empty";b:1;s:4:"type";s:9:"user_name";}s:7:"changed";a:26:{s:2:"id";s:7:"changed";s:5:"table";s:15:"node_field_data";s:5:"field";s:7:"changed";s:12:"relationship";s:4:"none";s:10:"group_type";s:5:"group";s:11:"admin_label";s:0:"";s:11:"entity_type";s:4:"node";s:12:"entity_field";s:7:"changed";s:9:"plugin_id";s:5:"field";s:5:"label";s:11:"Last update";s:7:"exclude";b:0;s:5:"alter";a:26:{s:10:"alter_text";b:0;s:4:"text";s:0:"";s:9:"make_link";b:0;s:4:"path";s:0:"";s:8:"absolute";b:0;s:8:"external";b:0;s:14:"replace_spaces";b:0;s:9:"path_case";s:4:"none";s:15:"trim_whitespace";b:0;s:3:"alt";s:0:"";s:3:"rel";s:0:"";s:10:"link_class";s:0:"";s:6:"prefix";s:0:"";s:6:"suffix";s:0:"";s:6:"target";s:0:"";s:5:"nl2br";b:0;s:10:"max_length";i:0;s:13:"word_boundary";b:1;s:8:"ellipsis";b:1;s:9:"more_link";b:0;s:14:"more_link_text";s:0:"";s:14:"more_link_path";s:0:"";s:10:"strip_tags";b:0;s:4:"trim";b:0;s:13:"preserve_tags";s:0:"";s:4:"html";b:0;}s:12:"element_type";s:0:"";s:13:"element_class";s:0:"";s:18:"element_label_type";s:0:"";s:19:"element_label_class";s:0:"";s:19:"element_label_colon";b:1;s:20:"element_wrapper_type";s:0:"";s:21:"element_wrapper_class";s:0:"";s:23:"element_default_classes";b:1;s:5:"empty";s:0:"";s:10:"hide_empty";b:0;s:10:"empty_zero";b:0;s:16:"hide_alter_empty";b:1;s:4:"type";s:9:"timestamp";s:8:"settings";a:5:{s:11:"date_format";s:4:"long";s:18:"custom_date_format";s:0:"";s:8:"timezone";s:0:"";s:7:"tooltip";a:2:{s:11:"date_format";s:4:"long";s:18:"custom_date_format";s:0:"";}s:9:"time_diff";a:5:{s:7:"enabled";b:0;s:13:"future_format";s:15:"@interval hence";s:11:"past_format";s:13:"@interval ago";s:11:"granularity";i:2;s:7:"refresh";i:60;}}}}s:5:"pager";a:2:{s:4:"type";s:4:"mini";s:7:"options";a:7:{s:6:"offset";i:0;s:24:"pagination_heading_level";s:2:"h4";s:14:"items_per_page";i:36;s:11:"total_pages";i:0;s:2:"id";i:0;s:4:"tags";a:2:{s:4:"next";s:6:"››";s:8:"previous";s:6:"‹‹";}s:6:"expose";a:7:{s:14:"items_per_page";b:0;s:20:"items_per_page_label";s:14:"Items per page";s:22:"items_per_page_options";s:13:"5, 10, 25, 50";s:26:"items_per_page_options_all";b:0;s:32:"items_per_page_options_all_label";s:7:"- All -";s:6:"offset";b:0;s:12:"offset_label";s:6:"Offset";}}}s:12:"exposed_form";a:2:{s:4:"type";s:5:"basic";s:7:"options";a:7:{s:13:"submit_button";s:5:"Apply";s:12:"reset_button";b:0;s:18:"reset_button_label";s:5:"Reset";s:19:"exposed_sorts_label";s:7:"Sort by";s:17:"expose_sort_order";b:1;s:14:"sort_asc_label";s:3:"Asc";s:15:"sort_desc_label";s:4:"Desc";}}s:6:"access";a:2:{s:4:"type";s:4:"perm";s:7:"options";a:1:{s:4:"perm";s:14:"access content";}}s:5:"cache";a:2:{s:4:"type";s:3:"tag";s:7:"options";a:0:{}}s:5:"empty";a:0:{}s:5:"sorts";a:0:{}s:9:"arguments";a:1:{s:5:"title";a:26:{s:2:"id";s:5:"title";s:5:"table";s:15:"node_field_data";s:5:"field";s:5:"title";s:12:"relationship";s:4:"none";s:10:"group_type";s:5:"group";s:11:"admin_label";s:0:"";s:11:"entity_type";s:4:"node";s:12:"entity_field";s:5:"title";s:9:"plugin_id";s:6:"string";s:14:"default_action";s:7:"default";s:9:"exception";a:1:{s:12:"title_enable";b:1;}s:12:"title_enable";b:0;s:5:"title";s:0:"";s:21:"default_argument_type";s:5:"fixed";s:24:"default_argument_options";a:1:{s:8:"argument";s:1:"a";}s:15:"summary_options";a:0:{}s:7:"summary";a:1:{s:6:"format";s:15:"default_summary";}s:18:"specify_validation";b:1;s:8:"validate";a:2:{s:4:"type";s:4:"none";s:4:"fail";s:9:"not found";}s:16:"validate_options";a:0:{}s:8:"glossary";b:1;s:5:"limit";i:1;s:4:"case";s:5:"upper";s:9:"path_case";s:5:"lower";s:14:"transform_dash";b:0;s:12:"break_phrase";b:0;}}s:7:"filters";a:2:{s:6:"status";a:9:{s:2:"id";s:6:"status";s:5:"table";s:15:"node_field_data";s:5:"field";s:6:"status";s:11:"entity_type";s:4:"node";s:12:"entity_field";s:6:"status";s:9:"plugin_id";s:7:"boolean";s:5:"value";s:1:"1";s:5:"group";i:1;s:6:"expose";a:3:{s:8:"operator";s:0:"";s:24:"operator_limit_selection";b:0;s:13:"operator_list";a:0:{}}}s:8:"langcode";a:16:{s:2:"id";s:8:"langcode";s:5:"table";s:15:"node_field_data";s:5:"field";s:8:"langcode";s:12:"relationship";s:4:"none";s:10:"group_type";s:5:"group";s:11:"admin_label";s:0:"";s:11:"entity_type";s:4:"node";s:12:"entity_field";s:8:"langcode";s:9:"plugin_id";s:8:"language";s:8:"operator";s:2:"in";s:5:"value";a:1:{s:31:"***LANGUAGE_language_content***";s:31:"***LANGUAGE_language_content***";}s:5:"group";i:1;s:7:"exposed";b:0;s:6:"expose";a:13:{s:11:"operator_id";s:0:"";s:5:"label";s:0:"";s:11:"description";s:0:"";s:12:"use_operator";b:0;s:8:"operator";s:0:"";s:24:"operator_limit_selection";b:0;s:13:"operator_list";a:0:{}s:10:"identifier";s:0:"";s:8:"required";b:0;s:8:"remember";b:0;s:8:"multiple";b:0;s:14:"remember_roles";a:1:{s:13:"authenticated";s:13:"authenticated";}s:6:"reduce";b:0;}s:10:"is_grouped";b:0;s:10:"group_info";a:10:{s:5:"label";s:0:"";s:11:"description";s:0:"";s:10:"identifier";s:0:"";s:8:"optional";b:1;s:6:"widget";s:6:"select";s:8:"multiple";b:0;s:8:"remember";b:0;s:13:"default_group";s:3:"All";s:22:"default_group_multiple";a:0:{}s:11:"group_items";a:0:{}}}}s:5:"style";a:2:{s:4:"type";s:5:"table";s:7:"options";a:13:{s:8:"grouping";a:0:{}s:9:"row_class";s:0:"";s:17:"default_row_class";b:1;s:11:"uses_fields";b:0;s:7:"columns";a:3:{s:5:"title";s:5:"title";s:4:"name";s:4:"name";s:7:"changed";s:7:"changed";}s:7:"default";s:5:"title";s:4:"info";a:3:{s:5:"title";a:2:{s:8:"sortable";b:1;s:9:"separator";s:0:"";}s:4:"name";a:2:{s:8:"sortable";b:1;s:9:"separator";s:0:"";}s:7:"changed";a:2:{s:8:"sortable";b:1;s:9:"separator";s:0:"";}}s:8:"override";b:1;s:6:"sticky";b:0;s:7:"summary";s:0:"";s:5:"order";s:3:"asc";s:11:"empty_table";b:0;s:5:"class";s:0:"";}}s:3:"row";a:2:{s:4:"type";s:6:"fields";s:7:"options";a:4:{s:22:"default_field_elements";b:1;s:6:"inline";a:0:{}s:9:"separator";s:0:"";s:10:"hide_empty";b:0;}}s:5:"query";a:2:{s:4:"type";s:11:"views_query";s:7:"options";a:5:{s:13:"query_comment";s:0:"";s:19:"disable_sql_rewrite";b:0;s:8:"distinct";b:0;s:7:"replica";b:0;s:10:"query_tags";a:0:{}}}s:13:"relationships";a:1:{s:3:"uid";a:8:{s:2:"id";s:3:"uid";s:5:"table";s:15:"node_field_data";s:5:"field";s:3:"uid";s:12:"relationship";s:4:"none";s:10:"group_type";s:5:"group";s:11:"admin_label";s:6:"author";s:9:"plugin_id";s:8:"standard";s:8:"required";b:0;}}s:8:"use_ajax";b:1;s:6:"header";a:0:{}s:6:"footer";a:0:{}s:17:"display_extenders";a:0:{}}s:14:"cache_metadata";a:3:{s:7:"max-age";i:-1;s:8:"contexts";a:6:{i:0;s:26:"languages:language_content";i:1;s:28:"languages:language_interface";i:2;s:3:"url";i:3;s:14:"url.query_args";i:4;s:21:"user.node_grants:view";i:5;s:16:"user.permissions";}s:4:"tags";a:0:{}}}s:12:"attachment_1";a:6:{s:2:"id";s:12:"attachment_1";s:13:"display_title";s:10:"Attachment";s:14:"display_plugin";s:10:"attachment";s:8:"position";i:2;s:15:"display_options";a:7:{s:5:"pager";a:2:{s:4:"type";s:4:"none";s:7:"options";a:2:{s:6:"offset";i:0;s:14:"items_per_page";i:0;}}s:9:"arguments";a:1:{s:5:"title";a:26:{s:2:"id";s:5:"title";s:5:"table";s:15:"node_field_data";s:5:"field";s:5:"title";s:12:"relationship";s:4:"none";s:10:"group_type";s:5:"group";s:11:"admin_label";s:0:"";s:11:"entity_type";s:4:"node";s:12:"entity_field";s:5:"title";s:9:"plugin_id";s:6:"string";s:14:"default_action";s:7:"summary";s:9:"exception";a:1:{s:12:"title_enable";b:1;}s:12:"title_enable";b:0;s:5:"title";s:0:"";s:21:"default_argument_type";s:5:"fixed";s:24:"default_argument_options";a:1:{s:8:"argument";s:1:"a";}s:15:"summary_options";a:3:{s:14:"items_per_page";i:25;s:6:"inline";b:1;s:9:"separator";s:3:" | ";}s:7:"summary";a:1:{s:6:"format";s:19:"unformatted_summary";}s:18:"specify_validation";b:1;s:8:"validate";a:2:{s:4:"type";s:4:"none";s:4:"fail";s:9:"not found";}s:16:"validate_options";a:0:{}s:8:"glossary";b:1;s:5:"limit";i:1;s:4:"case";s:5:"upper";s:9:"path_case";s:5:"lower";s:14:"transform_dash";b:0;s:12:"break_phrase";b:0;}}s:5:"query";a:2:{s:4:"type";s:11:"views_query";s:7:"options";a:0:{}}s:8:"defaults";a:1:{s:9:"arguments";b:0;}s:17:"display_extenders";a:0:{}s:8:"displays";a:2:{s:7:"default";s:7:"default";s:6:"page_1";s:6:"page_1";}s:17:"inherit_arguments";b:0;}s:14:"cache_metadata";a:3:{s:7:"max-age";i:-1;s:8:"contexts";a:6:{i:0;s:26:"languages:language_content";i:1;s:28:"languages:language_interface";i:2;s:3:"url";i:3;s:14:"url.query_args";i:4;s:21:"user.node_grants:view";i:5;s:16:"user.permissions";}s:4:"tags";a:0:{}}}s:6:"page_1";a:6:{s:2:"id";s:6:"page_1";s:13:"display_title";s:4:"Page";s:14:"display_plugin";s:4:"page";s:8:"position";i:1;s:15:"display_options";a:4:{s:5:"query";a:2:{s:4:"type";s:11:"views_query";s:7:"options";a:0:{}}s:17:"display_extenders";a:0:{}s:4:"path";s:8:"glossary";s:4:"menu";a:5:{s:4:"type";s:6:"normal";s:5:"title";s:8:"Glossary";s:6:"weight";i:0;s:9:"menu_name";s:4:"main";s:6:"parent";s:0:"";}}s:14:"cache_metadata";a:3:{s:7:"max-age";i:-1;s:8:"contexts";a:6:{i:0;s:26:"languages:language_content";i:1;s:28:"languages:language_interface";i:2;s:3:"url";i:3;s:14:"url.query_args";i:4;s:21:"user.node_grants:view";i:5;s:16:"user.permissions";}s:4:"tags";a:0:{}}}}}'), ('', 'views.view.taxonomy_term', 'a:13:{s:4:"uuid";s:36:"de3f25a6-d0c6-4c98-9b67-6d2c03bbee0f";s:8:"langcode";s:2:"en";s:6:"status";b:1;s:12:"dependencies";a:2:{s:6:"config";a:2:{i:0;s:30:"core.entity_view_mode.node.rss";i:1;s:33:"core.entity_view_mode.node.teaser";}s:6:"module";a:3:{i:0;s:4:"node";i:1;s:8:"taxonomy";i:2;s:4:"user";}}s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"3o-ZjKjvMBpgaHiS3k8RvejhwJB4yX81fbjQjWc-tC8";}s:2:"id";s:13:"taxonomy_term";s:5:"label";s:13:"Taxonomy term";s:6:"module";s:8:"taxonomy";s:11:"description";s:45:"Content belonging to a certain taxonomy term.";s:3:"tag";s:7:"default";s:10:"base_table";s:15:"node_field_data";s:10:"base_field";s:3:"nid";s:7:"display";a:3:{s:7:"default";a:6:{s:2:"id";s:7:"default";s:13:"display_title";s:7:"Default";s:14:"display_plugin";s:7:"default";s:8:"position";i:0;s:15:"display_options";a:18:{s:6:"fields";a:0:{}s:5:"pager";a:2:{s:4:"type";s:4:"mini";s:7:"options";a:7:{s:6:"offset";i:0;s:24:"pagination_heading_level";s:2:"h4";s:14:"items_per_page";i:10;s:11:"total_pages";i:0;s:2:"id";i:0;s:4:"tags";a:2:{s:4:"next";s:6:"››";s:8:"previous";s:6:"‹‹";}s:6:"expose";a:7:{s:14:"items_per_page";b:0;s:20:"items_per_page_label";s:14:"Items per page";s:22:"items_per_page_options";s:13:"5, 10, 25, 50";s:26:"items_per_page_options_all";b:0;s:32:"items_per_page_options_all_label";s:7:"- All -";s:6:"offset";b:0;s:12:"offset_label";s:6:"Offset";}}}s:12:"exposed_form";a:2:{s:4:"type";s:5:"basic";s:7:"options";a:7:{s:13:"submit_button";s:5:"Apply";s:12:"reset_button";b:0;s:18:"reset_button_label";s:5:"Reset";s:19:"exposed_sorts_label";s:7:"Sort by";s:17:"expose_sort_order";b:1;s:14:"sort_asc_label";s:3:"Asc";s:15:"sort_desc_label";s:4:"Desc";}}s:6:"access";a:2:{s:4:"type";s:4:"perm";s:7:"options";a:1:{s:4:"perm";s:14:"access content";}}s:5:"cache";a:2:{s:4:"type";s:3:"tag";s:7:"options";a:0:{}}s:5:"empty";a:0:{}s:5:"sorts";a:2:{s:6:"sticky";a:10:{s:2:"id";s:6:"sticky";s:5:"table";s:14:"taxonomy_index";s:5:"field";s:6:"sticky";s:12:"relationship";s:4:"none";s:10:"group_type";s:5:"group";s:11:"admin_label";s:0:"";s:9:"plugin_id";s:8:"standard";s:5:"order";s:4:"DESC";s:6:"expose";a:2:{s:5:"label";s:0:"";s:16:"field_identifier";s:6:"sticky";}s:7:"exposed";b:0;}s:7:"created";a:11:{s:2:"id";s:7:"created";s:5:"table";s:14:"taxonomy_index";s:5:"field";s:7:"created";s:12:"relationship";s:4:"none";s:10:"group_type";s:5:"group";s:11:"admin_label";s:0:"";s:9:"plugin_id";s:4:"date";s:5:"order";s:4:"DESC";s:6:"expose";a:2:{s:5:"label";s:0:"";s:16:"field_identifier";s:7:"created";}s:7:"exposed";b:0;s:11:"granularity";s:6:"second";}}s:9:"arguments";a:1:{s:3:"tid";a:22:{s:2:"id";s:3:"tid";s:5:"table";s:14:"taxonomy_index";s:5:"field";s:3:"tid";s:12:"relationship";s:4:"none";s:10:"group_type";s:5:"group";s:11:"admin_label";s:0:"";s:9:"plugin_id";s:18:"taxonomy_index_tid";s:14:"default_action";s:9:"not found";s:9:"exception";a:3:{s:5:"value";s:0:"";s:12:"title_enable";b:0;s:5:"title";s:3:"All";}s:12:"title_enable";b:1;s:5:"title";s:19:"{{ arguments.tid }}";s:21:"default_argument_type";s:5:"fixed";s:24:"default_argument_options";a:1:{s:8:"argument";s:0:"";}s:15:"summary_options";a:4:{s:9:"base_path";s:0:"";s:5:"count";b:1;s:8:"override";b:0;s:14:"items_per_page";i:25;}s:7:"summary";a:3:{s:10:"sort_order";s:3:"asc";s:17:"number_of_records";i:0;s:6:"format";s:15:"default_summary";}s:18:"specify_validation";b:1;s:8:"validate";a:2:{s:4:"type";s:20:"entity:taxonomy_term";s:4:"fail";s:9:"not found";}s:16:"validate_options";a:4:{s:7:"bundles";a:0:{}s:6:"access";b:1;s:9:"operation";s:4:"view";s:8:"multiple";i:0;}s:12:"break_phrase";b:0;s:9:"add_table";b:0;s:13:"require_value";b:0;s:17:"reduce_duplicates";b:0;}}s:7:"filters";a:2:{s:8:"langcode";a:16:{s:2:"id";s:8:"langcode";s:5:"table";s:15:"node_field_data";s:5:"field";s:8:"langcode";s:12:"relationship";s:4:"none";s:10:"group_type";s:5:"group";s:11:"admin_label";s:0:"";s:11:"entity_type";s:4:"node";s:12:"entity_field";s:8:"langcode";s:9:"plugin_id";s:8:"language";s:8:"operator";s:2:"in";s:5:"value";a:1:{s:31:"***LANGUAGE_language_content***";s:31:"***LANGUAGE_language_content***";}s:5:"group";i:1;s:7:"exposed";b:0;s:6:"expose";a:13:{s:11:"operator_id";s:0:"";s:5:"label";s:0:"";s:11:"description";s:0:"";s:12:"use_operator";b:0;s:8:"operator";s:0:"";s:24:"operator_limit_selection";b:0;s:13:"operator_list";a:0:{}s:10:"identifier";s:0:"";s:8:"required";b:0;s:8:"remember";b:0;s:8:"multiple";b:0;s:14:"remember_roles";a:1:{s:13:"authenticated";s:13:"authenticated";}s:6:"reduce";b:0;}s:10:"is_grouped";b:0;s:10:"group_info";a:10:{s:5:"label";s:0:"";s:11:"description";s:0:"";s:10:"identifier";s:0:"";s:8:"optional";b:1;s:6:"widget";s:6:"select";s:8:"multiple";b:0;s:8:"remember";b:0;s:13:"default_group";s:3:"All";s:22:"default_group_multiple";a:0:{}s:11:"group_items";a:0:{}}}s:6:"status";a:14:{s:2:"id";s:6:"status";s:5:"table";s:14:"taxonomy_index";s:5:"field";s:6:"status";s:12:"relationship";s:4:"none";s:10:"group_type";s:5:"group";s:11:"admin_label";s:0:"";s:9:"plugin_id";s:7:"boolean";s:8:"operator";s:1:"=";s:5:"value";s:1:"1";s:5:"group";i:1;s:7:"exposed";b:0;s:6:"expose";a:12:{s:11:"operator_id";s:0:"";s:5:"label";s:0:"";s:11:"description";s:0:"";s:12:"use_operator";b:0;s:8:"operator";s:0:"";s:24:"operator_limit_selection";b:0;s:13:"operator_list";a:0:{}s:10:"identifier";s:0:"";s:8:"required";b:0;s:8:"remember";b:0;s:8:"multiple";b:0;s:14:"remember_roles";a:1:{s:13:"authenticated";s:13:"authenticated";}}s:10:"is_grouped";b:0;s:10:"group_info";a:10:{s:5:"label";s:0:"";s:11:"description";s:0:"";s:10:"identifier";s:0:"";s:8:"optional";b:1;s:6:"widget";s:6:"select";s:8:"multiple";b:0;s:8:"remember";b:0;s:13:"default_group";s:3:"All";s:22:"default_group_multiple";a:0:{}s:11:"group_items";a:0:{}}}}s:5:"style";a:2:{s:4:"type";s:7:"default";s:7:"options";a:4:{s:8:"grouping";a:0:{}s:9:"row_class";s:0:"";s:17:"default_row_class";b:1;s:11:"uses_fields";b:0;}}s:3:"row";a:2:{s:4:"type";s:11:"entity:node";s:7:"options";a:1:{s:9:"view_mode";s:6:"teaser";}}s:5:"query";a:2:{s:4:"type";s:11:"views_query";s:7:"options";a:5:{s:13:"query_comment";s:0:"";s:19:"disable_sql_rewrite";b:0;s:8:"distinct";b:0;s:7:"replica";b:0;s:10:"query_tags";a:0:{}}}s:13:"relationships";a:0:{}s:12:"link_display";s:6:"page_1";s:8:"link_url";s:0:"";s:6:"header";a:1:{s:20:"entity_taxonomy_term";a:12:{s:2:"id";s:20:"entity_taxonomy_term";s:5:"table";s:5:"views";s:5:"field";s:20:"entity_taxonomy_term";s:12:"relationship";s:4:"none";s:10:"group_type";s:5:"group";s:11:"admin_label";s:0:"";s:9:"plugin_id";s:6:"entity";s:5:"empty";b:1;s:6:"target";s:23:"{{ raw_arguments.tid }}";s:9:"view_mode";s:4:"full";s:8:"tokenize";b:1;s:13:"bypass_access";b:0;}}s:6:"footer";a:0:{}s:17:"display_extenders";a:0:{}}s:14:"cache_metadata";a:3:{s:7:"max-age";i:-1;s:8:"contexts";a:5:{i:0;s:28:"languages:language_interface";i:1;s:3:"url";i:2;s:14:"url.query_args";i:3;s:21:"user.node_grants:view";i:4;s:16:"user.permissions";}s:4:"tags";a:0:{}}}s:6:"feed_1";a:6:{s:2:"id";s:6:"feed_1";s:13:"display_title";s:4:"Feed";s:14:"display_plugin";s:4:"feed";s:8:"position";i:2;s:15:"display_options";a:7:{s:5:"pager";a:2:{s:4:"type";s:4:"some";s:7:"options";a:2:{s:6:"offset";i:0;s:14:"items_per_page";i:10;}}s:5:"style";a:2:{s:4:"type";s:3:"rss";s:7:"options";a:3:{s:8:"grouping";a:0:{}s:11:"uses_fields";b:0;s:11:"description";s:0:"";}}s:3:"row";a:2:{s:4:"type";s:8:"node_rss";s:7:"options";a:2:{s:12:"relationship";s:4:"none";s:9:"view_mode";s:3:"rss";}}s:5:"query";a:2:{s:4:"type";s:11:"views_query";s:7:"options";a:0:{}}s:17:"display_extenders";a:0:{}s:4:"path";s:20:"taxonomy/term/%/feed";s:8:"displays";a:2:{s:6:"page_1";s:6:"page_1";s:7:"default";s:1:"0";}}s:14:"cache_metadata";a:3:{s:7:"max-age";i:-1;s:8:"contexts";a:4:{i:0;s:28:"languages:language_interface";i:1;s:3:"url";i:2;s:21:"user.node_grants:view";i:3;s:16:"user.permissions";}s:4:"tags";a:0:{}}}s:6:"page_1";a:6:{s:2:"id";s:6:"page_1";s:13:"display_title";s:4:"Page";s:14:"display_plugin";s:4:"page";s:8:"position";i:1;s:15:"display_options";a:3:{s:5:"query";a:2:{s:4:"type";s:11:"views_query";s:7:"options";a:0:{}}s:17:"display_extenders";a:0:{}s:4:"path";s:15:"taxonomy/term/%";}s:14:"cache_metadata";a:3:{s:7:"max-age";i:-1;s:8:"contexts";a:5:{i:0;s:28:"languages:language_interface";i:1;s:3:"url";i:2;s:14:"url.query_args";i:3;s:21:"user.node_grants:view";i:4;s:16:"user.permissions";}s:4:"tags";a:0:{}}}}}'), ('', 'views.view.user_admin_people', 'a:13:{s:4:"uuid";s:36:"3836073d-c780-44ab-8f28-0705ae62b136";s:8:"langcode";s:2:"en";s:6:"status";b:1;s:12:"dependencies";a:1:{s:6:"module";a:1:{i:0;s:4:"user";}}s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"hZxrM4LiKjRy1g-zZSX1RExTVK8SKQAtMrsRER1420I";}s:2:"id";s:17:"user_admin_people";s:5:"label";s:6:"People";s:6:"module";s:4:"user";s:11:"description";s:50:"Find and manage people interacting with your site.";s:3:"tag";s:7:"default";s:10:"base_table";s:16:"users_field_data";s:10:"base_field";s:3:"uid";s:7:"display";a:2:{s:7:"default";a:6:{s:2:"id";s:7:"default";s:13:"display_title";s:7:"Default";s:14:"display_plugin";s:7:"default";s:8:"position";i:0;s:15:"display_options";a:25:{s:5:"title";s:6:"People";s:6:"fields";a:8:{s:14:"user_bulk_form";a:23:{s:2:"id";s:14:"user_bulk_form";s:5:"table";s:5:"users";s:5:"field";s:14:"user_bulk_form";s:12:"relationship";s:4:"none";s:10:"group_type";s:5:"group";s:11:"admin_label";s:0:"";s:11:"entity_type";s:4:"user";s:9:"plugin_id";s:14:"user_bulk_form";s:5:"label";s:11:"Bulk update";s:7:"exclude";b:0;s:5:"alter";a:26:{s:10:"alter_text";b:0;s:4:"text";s:0:"";s:9:"make_link";b:0;s:4:"path";s:0:"";s:8:"absolute";b:0;s:8:"external";b:0;s:14:"replace_spaces";b:0;s:9:"path_case";s:4:"none";s:15:"trim_whitespace";b:0;s:3:"alt";s:0:"";s:3:"rel";s:0:"";s:10:"link_class";s:0:"";s:6:"prefix";s:0:"";s:6:"suffix";s:0:"";s:6:"target";s:0:"";s:5:"nl2br";b:0;s:10:"max_length";i:0;s:13:"word_boundary";b:1;s:8:"ellipsis";b:1;s:9:"more_link";b:0;s:14:"more_link_text";s:0:"";s:14:"more_link_path";s:0:"";s:10:"strip_tags";b:0;s:4:"trim";b:0;s:13:"preserve_tags";s:0:"";s:4:"html";b:0;}s:12:"element_type";s:0:"";s:13:"element_class";s:0:"";s:18:"element_label_type";s:0:"";s:19:"element_label_class";s:0:"";s:19:"element_label_colon";b:1;s:20:"element_wrapper_type";s:0:"";s:21:"element_wrapper_class";s:0:"";s:23:"element_default_classes";b:1;s:5:"empty";s:0:"";s:10:"hide_empty";b:0;s:10:"empty_zero";b:0;s:16:"hide_alter_empty";b:1;}s:4:"name";a:25:{s:2:"id";s:4:"name";s:5:"table";s:16:"users_field_data";s:5:"field";s:4:"name";s:12:"relationship";s:4:"none";s:10:"group_type";s:5:"group";s:11:"admin_label";s:0:"";s:11:"entity_type";s:4:"user";s:12:"entity_field";s:4:"name";s:9:"plugin_id";s:5:"field";s:5:"label";s:8:"Username";s:7:"exclude";b:0;s:5:"alter";a:26:{s:10:"alter_text";b:0;s:4:"text";s:0:"";s:9:"make_link";b:0;s:4:"path";s:0:"";s:8:"absolute";b:0;s:8:"external";b:0;s:14:"replace_spaces";b:0;s:9:"path_case";s:4:"none";s:15:"trim_whitespace";b:0;s:3:"alt";s:0:"";s:3:"rel";s:0:"";s:10:"link_class";s:0:"";s:6:"prefix";s:0:"";s:6:"suffix";s:0:"";s:6:"target";s:0:"";s:5:"nl2br";b:0;s:10:"max_length";i:0;s:13:"word_boundary";b:1;s:8:"ellipsis";b:1;s:9:"more_link";b:0;s:14:"more_link_text";s:0:"";s:14:"more_link_path";s:0:"";s:10:"strip_tags";b:0;s:4:"trim";b:0;s:13:"preserve_tags";s:0:"";s:4:"html";b:0;}s:12:"element_type";s:0:"";s:13:"element_class";s:0:"";s:18:"element_label_type";s:0:"";s:19:"element_label_class";s:0:"";s:19:"element_label_colon";b:1;s:20:"element_wrapper_type";s:0:"";s:21:"element_wrapper_class";s:0:"";s:23:"element_default_classes";b:1;s:5:"empty";s:0:"";s:10:"hide_empty";b:0;s:10:"empty_zero";b:0;s:16:"hide_alter_empty";b:1;s:4:"type";s:9:"user_name";}s:6:"status";a:26:{s:2:"id";s:6:"status";s:5:"table";s:16:"users_field_data";s:5:"field";s:6:"status";s:12:"relationship";s:4:"none";s:10:"group_type";s:5:"group";s:11:"admin_label";s:0:"";s:11:"entity_type";s:4:"user";s:12:"entity_field";s:6:"status";s:9:"plugin_id";s:5:"field";s:5:"label";s:6:"Status";s:7:"exclude";b:0;s:5:"alter";a:26:{s:10:"alter_text";b:0;s:4:"text";s:0:"";s:9:"make_link";b:0;s:4:"path";s:0:"";s:8:"absolute";b:0;s:8:"external";b:0;s:14:"replace_spaces";b:0;s:9:"path_case";s:4:"none";s:15:"trim_whitespace";b:0;s:3:"alt";s:0:"";s:3:"rel";s:0:"";s:10:"link_class";s:0:"";s:6:"prefix";s:0:"";s:6:"suffix";s:0:"";s:6:"target";s:0:"";s:5:"nl2br";b:0;s:10:"max_length";i:0;s:13:"word_boundary";b:1;s:8:"ellipsis";b:1;s:9:"more_link";b:0;s:14:"more_link_text";s:0:"";s:14:"more_link_path";s:0:"";s:10:"strip_tags";b:0;s:4:"trim";b:0;s:13:"preserve_tags";s:0:"";s:4:"html";b:0;}s:12:"element_type";s:0:"";s:13:"element_class";s:0:"";s:18:"element_label_type";s:0:"";s:19:"element_label_class";s:0:"";s:19:"element_label_colon";b:1;s:20:"element_wrapper_type";s:0:"";s:21:"element_wrapper_class";s:0:"";s:23:"element_default_classes";b:1;s:5:"empty";s:0:"";s:10:"hide_empty";b:0;s:10:"empty_zero";b:0;s:16:"hide_alter_empty";b:1;s:4:"type";s:7:"boolean";s:8:"settings";a:3:{s:6:"format";s:6:"custom";s:19:"format_custom_false";s:7:"Blocked";s:18:"format_custom_true";s:6:"Active";}}s:15:"roles_target_id";a:24:{s:2:"id";s:15:"roles_target_id";s:5:"table";s:11:"user__roles";s:5:"field";s:15:"roles_target_id";s:12:"relationship";s:4:"none";s:10:"group_type";s:5:"group";s:11:"admin_label";s:0:"";s:9:"plugin_id";s:10:"user_roles";s:5:"label";s:5:"Roles";s:7:"exclude";b:0;s:5:"alter";a:26:{s:10:"alter_text";b:0;s:4:"text";s:0:"";s:9:"make_link";b:0;s:4:"path";s:0:"";s:8:"absolute";b:0;s:8:"external";b:0;s:14:"replace_spaces";b:0;s:9:"path_case";s:4:"none";s:15:"trim_whitespace";b:0;s:3:"alt";s:0:"";s:3:"rel";s:0:"";s:10:"link_class";s:0:"";s:6:"prefix";s:0:"";s:6:"suffix";s:0:"";s:6:"target";s:0:"";s:5:"nl2br";b:0;s:10:"max_length";i:0;s:13:"word_boundary";b:1;s:8:"ellipsis";b:1;s:9:"more_link";b:0;s:14:"more_link_text";s:0:"";s:14:"more_link_path";s:0:"";s:10:"strip_tags";b:0;s:4:"trim";b:0;s:13:"preserve_tags";s:0:"";s:4:"html";b:0;}s:12:"element_type";s:0:"";s:13:"element_class";s:0:"";s:18:"element_label_type";s:0:"";s:19:"element_label_class";s:0:"";s:19:"element_label_colon";b:1;s:20:"element_wrapper_type";s:0:"";s:21:"element_wrapper_class";s:0:"";s:23:"element_default_classes";b:1;s:5:"empty";s:0:"";s:10:"hide_empty";b:0;s:10:"empty_zero";b:0;s:16:"hide_alter_empty";b:1;s:4:"type";s:2:"ul";s:9:"separator";s:2:", ";}s:7:"created";a:26:{s:2:"id";s:7:"created";s:5:"table";s:16:"users_field_data";s:5:"field";s:7:"created";s:12:"relationship";s:4:"none";s:10:"group_type";s:5:"group";s:11:"admin_label";s:0:"";s:11:"entity_type";s:4:"user";s:12:"entity_field";s:7:"created";s:9:"plugin_id";s:5:"field";s:5:"label";s:10:"Member for";s:7:"exclude";b:0;s:5:"alter";a:26:{s:10:"alter_text";b:0;s:4:"text";s:0:"";s:9:"make_link";b:0;s:4:"path";s:0:"";s:8:"absolute";b:0;s:8:"external";b:0;s:14:"replace_spaces";b:0;s:9:"path_case";s:4:"none";s:15:"trim_whitespace";b:0;s:3:"alt";s:0:"";s:3:"rel";s:0:"";s:10:"link_class";s:0:"";s:6:"prefix";s:0:"";s:6:"suffix";s:0:"";s:6:"target";s:0:"";s:5:"nl2br";b:0;s:10:"max_length";i:0;s:13:"word_boundary";b:1;s:8:"ellipsis";b:1;s:9:"more_link";b:0;s:14:"more_link_text";s:0:"";s:14:"more_link_path";s:0:"";s:10:"strip_tags";b:0;s:4:"trim";b:0;s:13:"preserve_tags";s:0:"";s:4:"html";b:0;}s:12:"element_type";s:0:"";s:13:"element_class";s:0:"";s:18:"element_label_type";s:0:"";s:19:"element_label_class";s:0:"";s:19:"element_label_colon";b:1;s:20:"element_wrapper_type";s:0:"";s:21:"element_wrapper_class";s:0:"";s:23:"element_default_classes";b:1;s:5:"empty";s:0:"";s:10:"hide_empty";b:0;s:10:"empty_zero";b:0;s:16:"hide_alter_empty";b:1;s:4:"type";s:13:"timestamp_ago";s:8:"settings";a:3:{s:13:"future_format";s:9:"@interval";s:11:"past_format";s:9:"@interval";s:11:"granularity";i:2;}}s:6:"access";a:26:{s:2:"id";s:6:"access";s:5:"table";s:16:"users_field_data";s:5:"field";s:6:"access";s:12:"relationship";s:4:"none";s:10:"group_type";s:5:"group";s:11:"admin_label";s:0:"";s:11:"entity_type";s:4:"user";s:12:"entity_field";s:6:"access";s:9:"plugin_id";s:5:"field";s:5:"label";s:11:"Last access";s:7:"exclude";b:0;s:5:"alter";a:26:{s:10:"alter_text";b:0;s:4:"text";s:0:"";s:9:"make_link";b:0;s:4:"path";s:0:"";s:8:"absolute";b:0;s:8:"external";b:0;s:14:"replace_spaces";b:0;s:9:"path_case";s:4:"none";s:15:"trim_whitespace";b:0;s:3:"alt";s:0:"";s:3:"rel";s:0:"";s:10:"link_class";s:0:"";s:6:"prefix";s:0:"";s:6:"suffix";s:0:"";s:6:"target";s:0:"";s:5:"nl2br";b:0;s:10:"max_length";i:0;s:13:"word_boundary";b:1;s:8:"ellipsis";b:1;s:9:"more_link";b:0;s:14:"more_link_text";s:0:"";s:14:"more_link_path";s:0:"";s:10:"strip_tags";b:0;s:4:"trim";b:0;s:13:"preserve_tags";s:0:"";s:4:"html";b:0;}s:12:"element_type";s:0:"";s:13:"element_class";s:0:"";s:18:"element_label_type";s:0:"";s:19:"element_label_class";s:0:"";s:19:"element_label_colon";b:1;s:20:"element_wrapper_type";s:0:"";s:21:"element_wrapper_class";s:0:"";s:23:"element_default_classes";b:1;s:5:"empty";s:0:"";s:10:"hide_empty";b:0;s:10:"empty_zero";b:0;s:16:"hide_alter_empty";b:1;s:4:"type";s:13:"timestamp_ago";s:8:"settings";a:3:{s:13:"future_format";s:15:"@interval hence";s:11:"past_format";s:13:"@interval ago";s:11:"granularity";i:2;}}s:10:"operations";a:24:{s:2:"id";s:10:"operations";s:5:"table";s:5:"users";s:5:"field";s:10:"operations";s:12:"relationship";s:4:"none";s:10:"group_type";s:5:"group";s:11:"admin_label";s:0:"";s:11:"entity_type";s:4:"user";s:9:"plugin_id";s:17:"entity_operations";s:5:"label";s:10:"Operations";s:7:"exclude";b:0;s:5:"alter";a:26:{s:10:"alter_text";b:0;s:4:"text";s:0:"";s:9:"make_link";b:0;s:4:"path";s:0:"";s:8:"absolute";b:0;s:8:"external";b:0;s:14:"replace_spaces";b:0;s:9:"path_case";s:4:"none";s:15:"trim_whitespace";b:0;s:3:"alt";s:0:"";s:3:"rel";s:0:"";s:10:"link_class";s:0:"";s:6:"prefix";s:0:"";s:6:"suffix";s:0:"";s:6:"target";s:0:"";s:5:"nl2br";b:0;s:10:"max_length";i:0;s:13:"word_boundary";b:1;s:8:"ellipsis";b:1;s:9:"more_link";b:0;s:14:"more_link_text";s:0:"";s:14:"more_link_path";s:0:"";s:10:"strip_tags";b:0;s:4:"trim";b:0;s:13:"preserve_tags";s:0:"";s:4:"html";b:0;}s:12:"element_type";s:0:"";s:13:"element_class";s:0:"";s:18:"element_label_type";s:0:"";s:19:"element_label_class";s:0:"";s:19:"element_label_colon";b:1;s:20:"element_wrapper_type";s:0:"";s:21:"element_wrapper_class";s:0:"";s:23:"element_default_classes";b:1;s:5:"empty";s:0:"";s:10:"hide_empty";b:0;s:10:"empty_zero";b:0;s:16:"hide_alter_empty";b:1;s:11:"destination";b:1;}s:4:"mail";a:37:{s:2:"id";s:4:"mail";s:5:"table";s:16:"users_field_data";s:5:"field";s:4:"mail";s:12:"relationship";s:4:"none";s:10:"group_type";s:5:"group";s:11:"admin_label";s:0:"";s:11:"entity_type";s:4:"user";s:12:"entity_field";s:4:"mail";s:9:"plugin_id";s:5:"field";s:5:"label";s:0:"";s:7:"exclude";b:1;s:5:"alter";a:26:{s:10:"alter_text";b:0;s:4:"text";s:0:"";s:9:"make_link";b:0;s:4:"path";s:0:"";s:8:"absolute";b:0;s:8:"external";b:0;s:14:"replace_spaces";b:0;s:9:"path_case";s:4:"none";s:15:"trim_whitespace";b:0;s:3:"alt";s:0:"";s:3:"rel";s:0:"";s:10:"link_class";s:0:"";s:6:"prefix";s:0:"";s:6:"suffix";s:0:"";s:6:"target";s:0:"";s:5:"nl2br";b:0;s:10:"max_length";i:0;s:13:"word_boundary";b:1;s:8:"ellipsis";b:1;s:9:"more_link";b:0;s:14:"more_link_text";s:0:"";s:14:"more_link_path";s:0:"";s:10:"strip_tags";b:0;s:4:"trim";b:0;s:13:"preserve_tags";s:0:"";s:4:"html";b:0;}s:12:"element_type";s:0:"";s:13:"element_class";s:0:"";s:18:"element_label_type";s:0:"";s:19:"element_label_class";s:0:"";s:19:"element_label_colon";b:0;s:20:"element_wrapper_type";s:0:"";s:21:"element_wrapper_class";s:0:"";s:23:"element_default_classes";b:1;s:5:"empty";s:0:"";s:10:"hide_empty";b:0;s:10:"empty_zero";b:0;s:16:"hide_alter_empty";b:1;s:17:"click_sort_column";s:5:"value";s:4:"type";s:12:"basic_string";s:8:"settings";a:0:{}s:12:"group_column";s:5:"value";s:13:"group_columns";a:0:{}s:10:"group_rows";b:1;s:11:"delta_limit";i:0;s:12:"delta_offset";i:0;s:14:"delta_reversed";b:0;s:16:"delta_first_last";b:0;s:10:"multi_type";s:9:"separator";s:9:"separator";s:2:", ";s:17:"field_api_classes";b:0;}}s:5:"pager";a:2:{s:4:"type";s:4:"full";s:7:"options";a:8:{s:6:"offset";i:0;s:24:"pagination_heading_level";s:2:"h4";s:14:"items_per_page";i:50;s:11:"total_pages";i:0;s:2:"id";i:0;s:4:"tags";a:4:{s:4:"next";s:8:"Next ›";s:8:"previous";s:12:"‹ Previous";s:5:"first";s:8:"« First";s:4:"last";s:7:"Last »";}s:6:"expose";a:7:{s:14:"items_per_page";b:0;s:20:"items_per_page_label";s:14:"Items per page";s:22:"items_per_page_options";s:13:"5, 10, 25, 50";s:26:"items_per_page_options_all";b:0;s:32:"items_per_page_options_all_label";s:7:"- All -";s:6:"offset";b:0;s:12:"offset_label";s:6:"Offset";}s:8:"quantity";i:9;}}s:12:"exposed_form";a:2:{s:4:"type";s:5:"basic";s:7:"options";a:7:{s:13:"submit_button";s:6:"Filter";s:12:"reset_button";b:1;s:18:"reset_button_label";s:5:"Reset";s:19:"exposed_sorts_label";s:7:"Sort by";s:17:"expose_sort_order";b:1;s:14:"sort_asc_label";s:3:"Asc";s:15:"sort_desc_label";s:4:"Desc";}}s:6:"access";a:2:{s:4:"type";s:4:"perm";s:7:"options";a:1:{s:4:"perm";s:16:"administer users";}}s:5:"cache";a:1:{s:4:"type";s:3:"tag";}s:5:"empty";a:1:{s:16:"area_text_custom";a:10:{s:2:"id";s:16:"area_text_custom";s:5:"table";s:5:"views";s:5:"field";s:16:"area_text_custom";s:12:"relationship";s:4:"none";s:10:"group_type";s:5:"group";s:11:"admin_label";s:0:"";s:9:"plugin_id";s:11:"text_custom";s:5:"empty";b:1;s:7:"content";s:20:"No people available.";s:8:"tokenize";b:0;}}s:5:"sorts";a:1:{s:7:"created";a:13:{s:2:"id";s:7:"created";s:5:"table";s:16:"users_field_data";s:5:"field";s:7:"created";s:12:"relationship";s:4:"none";s:10:"group_type";s:5:"group";s:11:"admin_label";s:0:"";s:11:"entity_type";s:4:"user";s:12:"entity_field";s:7:"created";s:9:"plugin_id";s:4:"date";s:5:"order";s:4:"DESC";s:6:"expose";a:2:{s:5:"label";s:0:"";s:16:"field_identifier";s:7:"created";}s:7:"exposed";b:0;s:11:"granularity";s:6:"second";}}s:7:"filters";a:6:{s:7:"combine";a:15:{s:2:"id";s:7:"combine";s:5:"table";s:5:"views";s:5:"field";s:7:"combine";s:12:"relationship";s:4:"none";s:10:"group_type";s:5:"group";s:11:"admin_label";s:0:"";s:9:"plugin_id";s:7:"combine";s:8:"operator";s:8:"contains";s:5:"value";s:0:"";s:5:"group";i:1;s:7:"exposed";b:1;s:6:"expose";a:12:{s:11:"operator_id";s:10:"combine_op";s:5:"label";s:22:"Name or email contains";s:11:"description";s:0:"";s:12:"use_operator";b:0;s:8:"operator";s:10:"combine_op";s:24:"operator_limit_selection";b:0;s:13:"operator_list";a:0:{}s:10:"identifier";s:4:"user";s:8:"required";b:0;s:8:"remember";b:0;s:8:"multiple";b:0;s:14:"remember_roles";a:1:{s:13:"authenticated";s:13:"authenticated";}}s:10:"is_grouped";b:0;s:10:"group_info";a:10:{s:5:"label";s:0:"";s:11:"description";s:0:"";s:10:"identifier";s:0:"";s:8:"optional";b:1;s:6:"widget";s:6:"select";s:8:"multiple";b:0;s:8:"remember";b:0;s:13:"default_group";s:3:"All";s:22:"default_group_multiple";a:0:{}s:11:"group_items";a:0:{}}s:6:"fields";a:2:{s:4:"name";s:4:"name";s:4:"mail";s:4:"mail";}}s:6:"status";a:16:{s:2:"id";s:6:"status";s:5:"table";s:16:"users_field_data";s:5:"field";s:6:"status";s:12:"relationship";s:4:"none";s:10:"group_type";s:5:"group";s:11:"admin_label";s:0:"";s:11:"entity_type";s:4:"user";s:12:"entity_field";s:6:"status";s:9:"plugin_id";s:7:"boolean";s:8:"operator";s:1:"=";s:5:"value";s:1:"1";s:5:"group";i:1;s:7:"exposed";b:1;s:6:"expose";a:12:{s:11:"operator_id";s:0:"";s:5:"label";s:0:"";s:11:"description";s:0:"";s:12:"use_operator";b:0;s:8:"operator";s:9:"status_op";s:24:"operator_limit_selection";b:0;s:13:"operator_list";a:0:{}s:10:"identifier";s:6:"status";s:8:"required";b:0;s:8:"remember";b:0;s:8:"multiple";b:0;s:14:"remember_roles";a:1:{s:13:"authenticated";s:13:"authenticated";}}s:10:"is_grouped";b:1;s:10:"group_info";a:10:{s:5:"label";s:6:"Status";s:11:"description";s:0:"";s:10:"identifier";s:6:"status";s:8:"optional";b:1;s:6:"widget";s:6:"select";s:8:"multiple";b:0;s:8:"remember";b:0;s:13:"default_group";s:3:"All";s:22:"default_group_multiple";a:0:{}s:11:"group_items";a:2:{i:1;a:3:{s:5:"title";s:6:"Active";s:8:"operator";s:1:"=";s:5:"value";s:1:"1";}i:2;a:3:{s:5:"title";s:7:"Blocked";s:8:"operator";s:1:"=";s:5:"value";s:1:"0";}}}}s:15:"roles_target_id";a:15:{s:2:"id";s:15:"roles_target_id";s:5:"table";s:11:"user__roles";s:5:"field";s:15:"roles_target_id";s:12:"relationship";s:4:"none";s:10:"group_type";s:5:"group";s:11:"admin_label";s:0:"";s:9:"plugin_id";s:10:"user_roles";s:8:"operator";s:2:"or";s:5:"value";a:0:{}s:5:"group";i:1;s:7:"exposed";b:1;s:6:"expose";a:13:{s:11:"operator_id";s:18:"roles_target_id_op";s:5:"label";s:4:"Role";s:11:"description";s:0:"";s:12:"use_operator";b:0;s:8:"operator";s:18:"roles_target_id_op";s:24:"operator_limit_selection";b:0;s:13:"operator_list";a:0:{}s:10:"identifier";s:4:"role";s:8:"required";b:0;s:8:"remember";b:0;s:8:"multiple";b:0;s:14:"remember_roles";a:1:{s:13:"authenticated";s:13:"authenticated";}s:6:"reduce";b:0;}s:10:"is_grouped";b:0;s:10:"group_info";a:10:{s:5:"label";s:0:"";s:11:"description";s:0:"";s:10:"identifier";s:0:"";s:8:"optional";b:1;s:6:"widget";s:6:"select";s:8:"multiple";b:0;s:8:"remember";b:0;s:13:"default_group";s:3:"All";s:22:"default_group_multiple";a:0:{}s:11:"group_items";a:0:{}}s:17:"reduce_duplicates";b:0;}s:10:"permission";a:15:{s:2:"id";s:10:"permission";s:5:"table";s:11:"user__roles";s:5:"field";s:10:"permission";s:12:"relationship";s:4:"none";s:10:"group_type";s:5:"group";s:11:"admin_label";s:0:"";s:9:"plugin_id";s:16:"user_permissions";s:8:"operator";s:2:"or";s:5:"value";a:0:{}s:5:"group";i:1;s:7:"exposed";b:1;s:6:"expose";a:13:{s:11:"operator_id";s:13:"permission_op";s:5:"label";s:10:"Permission";s:11:"description";s:0:"";s:12:"use_operator";b:0;s:8:"operator";s:13:"permission_op";s:24:"operator_limit_selection";b:0;s:13:"operator_list";a:0:{}s:10:"identifier";s:10:"permission";s:8:"required";b:0;s:8:"remember";b:0;s:8:"multiple";b:0;s:14:"remember_roles";a:1:{s:13:"authenticated";s:13:"authenticated";}s:6:"reduce";b:0;}s:10:"is_grouped";b:0;s:10:"group_info";a:10:{s:5:"label";s:0:"";s:11:"description";s:0:"";s:10:"identifier";s:0:"";s:8:"optional";b:1;s:6:"widget";s:6:"select";s:8:"multiple";b:0;s:8:"remember";b:0;s:13:"default_group";s:3:"All";s:22:"default_group_multiple";a:0:{}s:11:"group_items";a:0:{}}s:17:"reduce_duplicates";b:0;}s:16:"default_langcode";a:16:{s:2:"id";s:16:"default_langcode";s:5:"table";s:16:"users_field_data";s:5:"field";s:16:"default_langcode";s:12:"relationship";s:4:"none";s:10:"group_type";s:5:"group";s:11:"admin_label";s:0:"";s:11:"entity_type";s:4:"user";s:12:"entity_field";s:16:"default_langcode";s:9:"plugin_id";s:7:"boolean";s:8:"operator";s:1:"=";s:5:"value";s:1:"1";s:5:"group";i:1;s:7:"exposed";b:0;s:6:"expose";a:12:{s:11:"operator_id";s:0:"";s:5:"label";s:0:"";s:11:"description";s:0:"";s:12:"use_operator";b:0;s:8:"operator";s:0:"";s:24:"operator_limit_selection";b:0;s:13:"operator_list";a:0:{}s:10:"identifier";s:0:"";s:8:"required";b:0;s:8:"remember";b:0;s:8:"multiple";b:0;s:14:"remember_roles";a:1:{s:13:"authenticated";s:13:"authenticated";}}s:10:"is_grouped";b:0;s:10:"group_info";a:10:{s:5:"label";s:0:"";s:11:"description";s:0:"";s:10:"identifier";s:0:"";s:8:"optional";b:1;s:6:"widget";s:6:"select";s:8:"multiple";b:0;s:8:"remember";b:0;s:13:"default_group";s:3:"All";s:22:"default_group_multiple";a:0:{}s:11:"group_items";a:0:{}}}s:7:"uid_raw";a:15:{s:2:"id";s:7:"uid_raw";s:5:"table";s:16:"users_field_data";s:5:"field";s:7:"uid_raw";s:12:"relationship";s:4:"none";s:10:"group_type";s:5:"group";s:11:"admin_label";s:0:"";s:11:"entity_type";s:4:"user";s:9:"plugin_id";s:7:"numeric";s:8:"operator";s:2:"!=";s:5:"value";a:3:{s:3:"min";s:0:"";s:3:"max";s:0:"";s:5:"value";s:1:"0";}s:5:"group";i:1;s:7:"exposed";b:0;s:6:"expose";a:12:{s:11:"operator_id";s:1:"0";s:5:"label";s:0:"";s:11:"description";s:0:"";s:12:"use_operator";b:0;s:8:"operator";s:0:"";s:24:"operator_limit_selection";b:0;s:13:"operator_list";a:0:{}s:10:"identifier";s:0:"";s:8:"required";b:0;s:8:"remember";b:0;s:8:"multiple";b:0;s:14:"remember_roles";a:1:{s:13:"authenticated";s:13:"authenticated";}}s:10:"is_grouped";b:0;s:10:"group_info";a:10:{s:5:"label";s:0:"";s:11:"description";s:0:"";s:10:"identifier";s:0:"";s:8:"optional";b:1;s:6:"widget";s:6:"select";s:8:"multiple";b:0;s:8:"remember";b:0;s:13:"default_group";s:3:"All";s:22:"default_group_multiple";a:0:{}s:11:"group_items";a:0:{}}}}s:13:"filter_groups";a:2:{s:8:"operator";s:3:"AND";s:6:"groups";a:1:{i:1;s:3:"AND";}}s:5:"style";a:2:{s:4:"type";s:5:"table";s:7:"options";a:11:{s:8:"grouping";a:0:{}s:9:"row_class";s:0:"";s:17:"default_row_class";b:1;s:7:"columns";a:8:{s:14:"user_bulk_form";s:14:"user_bulk_form";s:4:"name";s:4:"name";s:6:"status";s:6:"status";s:3:"rid";s:3:"rid";s:7:"created";s:7:"created";s:6:"access";s:6:"access";s:9:"edit_node";s:9:"edit_node";s:10:"dropbutton";s:10:"dropbutton";}s:7:"default";s:7:"created";s:4:"info";a:8:{s:14:"user_bulk_form";a:4:{s:5:"align";s:0:"";s:9:"separator";s:0:"";s:12:"empty_column";b:0;s:10:"responsive";s:0:"";}s:4:"name";a:6:{s:8:"sortable";b:1;s:18:"default_sort_order";s:3:"asc";s:5:"align";s:0:"";s:9:"separator";s:0:"";s:12:"empty_column";b:0;s:10:"responsive";s:0:"";}s:6:"status";a:6:{s:8:"sortable";b:1;s:18:"default_sort_order";s:3:"asc";s:5:"align";s:0:"";s:9:"separator";s:0:"";s:12:"empty_column";b:0;s:10:"responsive";s:12:"priority-low";}s:3:"rid";a:6:{s:8:"sortable";b:0;s:18:"default_sort_order";s:3:"asc";s:5:"align";s:0:"";s:9:"separator";s:0:"";s:12:"empty_column";b:0;s:10:"responsive";s:12:"priority-low";}s:7:"created";a:6:{s:8:"sortable";b:1;s:18:"default_sort_order";s:4:"desc";s:5:"align";s:0:"";s:9:"separator";s:0:"";s:12:"empty_column";b:0;s:10:"responsive";s:12:"priority-low";}s:6:"access";a:6:{s:8:"sortable";b:1;s:18:"default_sort_order";s:4:"desc";s:5:"align";s:0:"";s:9:"separator";s:0:"";s:12:"empty_column";b:0;s:10:"responsive";s:12:"priority-low";}s:9:"edit_node";a:4:{s:5:"align";s:0:"";s:9:"separator";s:0:"";s:12:"empty_column";b:0;s:10:"responsive";s:12:"priority-low";}s:10:"dropbutton";a:6:{s:8:"sortable";b:0;s:18:"default_sort_order";s:3:"asc";s:5:"align";s:0:"";s:9:"separator";s:0:"";s:12:"empty_column";b:0;s:10:"responsive";s:0:"";}}s:8:"override";b:1;s:6:"sticky";b:0;s:7:"summary";s:0:"";s:11:"empty_table";b:1;s:5:"class";s:0:"";}}s:3:"row";a:1:{s:4:"type";s:6:"fields";}s:5:"query";a:2:{s:4:"type";s:11:"views_query";s:7:"options";a:5:{s:13:"query_comment";s:0:"";s:19:"disable_sql_rewrite";b:0;s:8:"distinct";b:0;s:7:"replica";b:0;s:10:"query_tags";a:0:{}}}s:9:"css_class";s:0:"";s:8:"use_ajax";b:0;s:8:"group_by";b:0;s:16:"show_admin_links";b:1;s:8:"use_more";b:0;s:15:"use_more_always";b:0;s:13:"use_more_text";s:4:"more";s:12:"link_display";s:6:"page_1";s:8:"link_url";s:0:"";s:15:"display_comment";s:0:"";s:23:"hide_attachment_summary";b:0;s:17:"display_extenders";a:0:{}}s:14:"cache_metadata";a:3:{s:7:"max-age";i:0;s:8:"contexts";a:5:{i:0;s:26:"languages:language_content";i:1;s:28:"languages:language_interface";i:2;s:3:"url";i:3;s:14:"url.query_args";i:4;s:16:"user.permissions";}s:4:"tags";a:0:{}}}s:6:"page_1";a:6:{s:2:"id";s:6:"page_1";s:13:"display_title";s:4:"Page";s:14:"display_plugin";s:4:"page";s:8:"position";i:1;s:15:"display_options";a:6:{s:8:"defaults";a:1:{s:16:"show_admin_links";b:0;}s:16:"show_admin_links";b:0;s:17:"display_extenders";a:0:{}s:4:"path";s:17:"admin/people/list";s:4:"menu";a:6:{s:4:"type";s:11:"default tab";s:5:"title";s:4:"List";s:11:"description";s:50:"Find and manage people interacting with your site.";s:6:"weight";i:-10;s:9:"menu_name";s:5:"admin";s:7:"context";s:0:"";}s:11:"tab_options";a:5:{s:4:"type";s:6:"normal";s:5:"title";s:6:"People";s:11:"description";s:45:"Manage user accounts, roles, and permissions.";s:6:"weight";i:0;s:9:"menu_name";s:5:"admin";}}s:14:"cache_metadata";a:3:{s:7:"max-age";i:0;s:8:"contexts";a:5:{i:0;s:26:"languages:language_content";i:1;s:28:"languages:language_interface";i:2;s:3:"url";i:3;s:14:"url.query_args";i:4;s:16:"user.permissions";}s:4:"tags";a:0:{}}}}}'); INSERT INTO `[[dbprefix]]config` VALUES ('', 'views.view.watchdog', 'a:13:{s:4:"uuid";s:36:"58df58cf-6e0d-470f-9d2f-936a33970950";s:8:"langcode";s:2:"en";s:6:"status";b:1;s:12:"dependencies";a:1:{s:6:"module";a:2:{i:0;s:5:"dblog";i:1;s:4:"user";}}s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"QxV85zTbzQHWnwqOjUQ9k-Hza0YP94TJebVvD1rVucg";}s:2:"id";s:8:"watchdog";s:5:"label";s:8:"Watchdog";s:6:"module";s:5:"views";s:11:"description";s:19:"Recent log messages";s:3:"tag";s:0:"";s:10:"base_table";s:8:"watchdog";s:10:"base_field";s:3:"wid";s:7:"display";a:2:{s:7:"default";a:6:{s:2:"id";s:7:"default";s:13:"display_title";s:7:"Default";s:14:"display_plugin";s:7:"default";s:8:"position";i:0;s:15:"display_options";a:19:{s:5:"title";s:19:"Recent log messages";s:6:"fields";a:8:{s:7:"nothing";a:22:{s:2:"id";s:7:"nothing";s:5:"table";s:5:"views";s:5:"field";s:7:"nothing";s:12:"relationship";s:4:"none";s:10:"group_type";s:5:"group";s:11:"admin_label";s:4:"Icon";s:9:"plugin_id";s:6:"custom";s:5:"label";s:0:"";s:7:"exclude";b:0;s:5:"alter";a:26:{s:10:"alter_text";b:1;s:4:"text";s:0:"";s:9:"make_link";b:0;s:4:"path";s:0:"";s:8:"absolute";b:0;s:8:"external";b:0;s:14:"replace_spaces";b:0;s:9:"path_case";s:4:"none";s:15:"trim_whitespace";b:0;s:3:"alt";s:0:"";s:3:"rel";s:0:"";s:10:"link_class";s:0:"";s:6:"prefix";s:0:"";s:6:"suffix";s:0:"";s:6:"target";s:0:"";s:5:"nl2br";b:0;s:10:"max_length";i:0;s:13:"word_boundary";b:1;s:8:"ellipsis";b:1;s:9:"more_link";b:0;s:14:"more_link_text";s:0:"";s:14:"more_link_path";s:0:"";s:10:"strip_tags";b:0;s:4:"trim";b:0;s:13:"preserve_tags";s:0:"";s:4:"html";b:0;}s:12:"element_type";s:0:"";s:13:"element_class";s:4:"icon";s:18:"element_label_type";s:0:"";s:19:"element_label_class";s:0:"";s:19:"element_label_colon";b:0;s:20:"element_wrapper_type";s:0:"";s:21:"element_wrapper_class";s:0:"";s:23:"element_default_classes";b:0;s:5:"empty";s:0:"";s:10:"hide_empty";b:0;s:10:"empty_zero";b:0;s:16:"hide_alter_empty";b:0;}s:3:"wid";a:22:{s:2:"id";s:3:"wid";s:5:"table";s:8:"watchdog";s:5:"field";s:3:"wid";s:12:"relationship";s:4:"none";s:10:"group_type";s:5:"group";s:11:"admin_label";s:0:"";s:9:"plugin_id";s:8:"standard";s:5:"label";s:3:"WID";s:7:"exclude";b:1;s:5:"alter";a:26:{s:10:"alter_text";b:0;s:4:"text";s:0:"";s:9:"make_link";b:0;s:4:"path";s:0:"";s:8:"absolute";b:0;s:8:"external";b:0;s:14:"replace_spaces";b:0;s:9:"path_case";s:4:"none";s:15:"trim_whitespace";b:0;s:3:"alt";s:0:"";s:3:"rel";s:0:"";s:10:"link_class";s:0:"";s:6:"prefix";s:0:"";s:6:"suffix";s:0:"";s:6:"target";s:0:"";s:5:"nl2br";b:0;s:10:"max_length";i:0;s:13:"word_boundary";b:1;s:8:"ellipsis";b:1;s:9:"more_link";b:0;s:14:"more_link_text";s:0:"";s:14:"more_link_path";s:0:"";s:10:"strip_tags";b:0;s:4:"trim";b:0;s:13:"preserve_tags";s:0:"";s:4:"html";b:0;}s:12:"element_type";s:0:"";s:13:"element_class";s:0:"";s:18:"element_label_type";s:0:"";s:19:"element_label_class";s:0:"";s:19:"element_label_colon";b:1;s:20:"element_wrapper_type";s:0:"";s:21:"element_wrapper_class";s:0:"";s:23:"element_default_classes";b:1;s:5:"empty";s:0:"";s:10:"hide_empty";b:0;s:10:"empty_zero";b:0;s:16:"hide_alter_empty";b:1;}s:8:"severity";a:23:{s:2:"id";s:8:"severity";s:5:"table";s:8:"watchdog";s:5:"field";s:8:"severity";s:12:"relationship";s:4:"none";s:10:"group_type";s:5:"group";s:11:"admin_label";s:0:"";s:9:"plugin_id";s:12:"machine_name";s:5:"label";s:8:"Severity";s:7:"exclude";b:1;s:5:"alter";a:26:{s:10:"alter_text";b:0;s:4:"text";s:0:"";s:9:"make_link";b:0;s:4:"path";s:0:"";s:8:"absolute";b:0;s:8:"external";b:0;s:14:"replace_spaces";b:0;s:9:"path_case";s:4:"none";s:15:"trim_whitespace";b:0;s:3:"alt";s:0:"";s:3:"rel";s:0:"";s:10:"link_class";s:0:"";s:6:"prefix";s:0:"";s:6:"suffix";s:0:"";s:6:"target";s:0:"";s:5:"nl2br";b:0;s:10:"max_length";i:0;s:13:"word_boundary";b:1;s:8:"ellipsis";b:1;s:9:"more_link";b:0;s:14:"more_link_text";s:0:"";s:14:"more_link_path";s:0:"";s:10:"strip_tags";b:0;s:4:"trim";b:0;s:13:"preserve_tags";s:0:"";s:4:"html";b:0;}s:12:"element_type";s:0:"";s:13:"element_class";s:0:"";s:18:"element_label_type";s:0:"";s:19:"element_label_class";s:0:"";s:19:"element_label_colon";b:1;s:20:"element_wrapper_type";s:0:"";s:21:"element_wrapper_class";s:0:"";s:23:"element_default_classes";b:1;s:5:"empty";s:0:"";s:10:"hide_empty";b:0;s:10:"empty_zero";b:0;s:16:"hide_alter_empty";b:1;s:12:"machine_name";b:0;}s:4:"type";a:22:{s:2:"id";s:4:"type";s:5:"table";s:8:"watchdog";s:5:"field";s:4:"type";s:12:"relationship";s:4:"none";s:10:"group_type";s:5:"group";s:11:"admin_label";s:0:"";s:9:"plugin_id";s:8:"standard";s:5:"label";s:4:"Type";s:7:"exclude";b:0;s:5:"alter";a:26:{s:10:"alter_text";b:0;s:4:"text";s:0:"";s:9:"make_link";b:0;s:4:"path";s:0:"";s:8:"absolute";b:0;s:8:"external";b:0;s:14:"replace_spaces";b:0;s:9:"path_case";s:4:"none";s:15:"trim_whitespace";b:0;s:3:"alt";s:0:"";s:3:"rel";s:0:"";s:10:"link_class";s:0:"";s:6:"prefix";s:0:"";s:6:"suffix";s:0:"";s:6:"target";s:0:"";s:5:"nl2br";b:0;s:10:"max_length";i:0;s:13:"word_boundary";b:1;s:8:"ellipsis";b:1;s:9:"more_link";b:0;s:14:"more_link_text";s:0:"";s:14:"more_link_path";s:0:"";s:10:"strip_tags";b:0;s:4:"trim";b:0;s:13:"preserve_tags";s:0:"";s:4:"html";b:0;}s:12:"element_type";s:0:"";s:13:"element_class";s:0:"";s:18:"element_label_type";s:0:"";s:19:"element_label_class";s:0:"";s:19:"element_label_colon";b:1;s:20:"element_wrapper_type";s:0:"";s:21:"element_wrapper_class";s:0:"";s:23:"element_default_classes";b:1;s:5:"empty";s:0:"";s:10:"hide_empty";b:0;s:10:"empty_zero";b:0;s:16:"hide_alter_empty";b:1;}s:9:"timestamp";a:25:{s:2:"id";s:9:"timestamp";s:5:"table";s:8:"watchdog";s:5:"field";s:9:"timestamp";s:12:"relationship";s:4:"none";s:10:"group_type";s:5:"group";s:11:"admin_label";s:0:"";s:9:"plugin_id";s:4:"date";s:5:"label";s:4:"Date";s:7:"exclude";b:0;s:5:"alter";a:26:{s:10:"alter_text";b:0;s:4:"text";s:0:"";s:9:"make_link";b:0;s:4:"path";s:0:"";s:8:"absolute";b:0;s:8:"external";b:0;s:14:"replace_spaces";b:0;s:9:"path_case";s:4:"none";s:15:"trim_whitespace";b:0;s:3:"alt";s:0:"";s:3:"rel";s:0:"";s:10:"link_class";s:0:"";s:6:"prefix";s:0:"";s:6:"suffix";s:0:"";s:6:"target";s:0:"";s:5:"nl2br";b:0;s:10:"max_length";i:0;s:13:"word_boundary";b:1;s:8:"ellipsis";b:1;s:9:"more_link";b:0;s:14:"more_link_text";s:0:"";s:14:"more_link_path";s:0:"";s:10:"strip_tags";b:0;s:4:"trim";b:0;s:13:"preserve_tags";s:0:"";s:4:"html";b:0;}s:12:"element_type";s:0:"";s:13:"element_class";s:0:"";s:18:"element_label_type";s:0:"";s:19:"element_label_class";s:0:"";s:19:"element_label_colon";b:1;s:20:"element_wrapper_type";s:0:"";s:21:"element_wrapper_class";s:0:"";s:23:"element_default_classes";b:1;s:5:"empty";s:0:"";s:10:"hide_empty";b:0;s:10:"empty_zero";b:0;s:16:"hide_alter_empty";b:1;s:11:"date_format";s:5:"short";s:18:"custom_date_format";s:0:"";s:8:"timezone";s:0:"";}s:7:"message";a:23:{s:2:"id";s:7:"message";s:5:"table";s:8:"watchdog";s:5:"field";s:7:"message";s:12:"relationship";s:4:"none";s:10:"group_type";s:5:"group";s:11:"admin_label";s:0:"";s:9:"plugin_id";s:13:"dblog_message";s:5:"label";s:7:"Message";s:7:"exclude";b:0;s:5:"alter";a:26:{s:10:"alter_text";b:0;s:4:"text";s:0:"";s:9:"make_link";b:1;s:4:"path";s:35:"admin/reports/dblog/event/{{ wid }}";s:8:"absolute";b:0;s:8:"external";b:0;s:14:"replace_spaces";b:0;s:9:"path_case";s:4:"none";s:15:"trim_whitespace";b:0;s:3:"alt";s:13:"{{ message }}";s:3:"rel";s:0:"";s:10:"link_class";s:0:"";s:6:"prefix";s:0:"";s:6:"suffix";s:0:"";s:6:"target";s:0:"";s:5:"nl2br";b:0;s:10:"max_length";i:56;s:13:"word_boundary";b:1;s:8:"ellipsis";b:1;s:9:"more_link";b:0;s:14:"more_link_text";s:0:"";s:14:"more_link_path";s:0:"";s:10:"strip_tags";b:1;s:4:"trim";b:1;s:13:"preserve_tags";s:0:"";s:4:"html";b:1;}s:12:"element_type";s:0:"";s:13:"element_class";s:0:"";s:18:"element_label_type";s:0:"";s:19:"element_label_class";s:0:"";s:19:"element_label_colon";b:1;s:20:"element_wrapper_type";s:0:"";s:21:"element_wrapper_class";s:0:"";s:23:"element_default_classes";b:1;s:5:"empty";s:0:"";s:10:"hide_empty";b:0;s:10:"empty_zero";b:0;s:16:"hide_alter_empty";b:1;s:17:"replace_variables";b:1;}s:4:"name";a:37:{s:2:"id";s:4:"name";s:5:"table";s:16:"users_field_data";s:5:"field";s:4:"name";s:12:"relationship";s:3:"uid";s:10:"group_type";s:5:"group";s:11:"admin_label";s:0:"";s:11:"entity_type";s:4:"user";s:12:"entity_field";s:4:"name";s:9:"plugin_id";s:5:"field";s:5:"label";s:4:"User";s:7:"exclude";b:0;s:5:"alter";a:26:{s:10:"alter_text";b:0;s:4:"text";s:0:"";s:9:"make_link";b:0;s:4:"path";s:0:"";s:8:"absolute";b:0;s:8:"external";b:0;s:14:"replace_spaces";b:0;s:9:"path_case";s:4:"none";s:15:"trim_whitespace";b:0;s:3:"alt";s:0:"";s:3:"rel";s:0:"";s:10:"link_class";s:0:"";s:6:"prefix";s:0:"";s:6:"suffix";s:0:"";s:6:"target";s:0:"";s:5:"nl2br";b:0;s:10:"max_length";i:0;s:13:"word_boundary";b:1;s:8:"ellipsis";b:1;s:9:"more_link";b:0;s:14:"more_link_text";s:0:"";s:14:"more_link_path";s:0:"";s:10:"strip_tags";b:0;s:4:"trim";b:0;s:13:"preserve_tags";s:0:"";s:4:"html";b:0;}s:12:"element_type";s:0:"";s:13:"element_class";s:0:"";s:18:"element_label_type";s:0:"";s:19:"element_label_class";s:0:"";s:19:"element_label_colon";b:1;s:20:"element_wrapper_type";s:0:"";s:21:"element_wrapper_class";s:0:"";s:23:"element_default_classes";b:1;s:5:"empty";s:0:"";s:10:"hide_empty";b:0;s:10:"empty_zero";b:0;s:16:"hide_alter_empty";b:1;s:17:"click_sort_column";s:5:"value";s:4:"type";s:9:"user_name";s:8:"settings";a:1:{s:14:"link_to_entity";b:1;}s:12:"group_column";s:5:"value";s:13:"group_columns";a:0:{}s:10:"group_rows";b:1;s:11:"delta_limit";i:0;s:12:"delta_offset";i:0;s:14:"delta_reversed";b:0;s:16:"delta_first_last";b:0;s:10:"multi_type";s:9:"separator";s:9:"separator";s:2:", ";s:17:"field_api_classes";b:0;}s:4:"link";a:22:{s:2:"id";s:4:"link";s:5:"table";s:8:"watchdog";s:5:"field";s:4:"link";s:12:"relationship";s:4:"none";s:10:"group_type";s:5:"group";s:11:"admin_label";s:0:"";s:9:"plugin_id";s:16:"dblog_operations";s:5:"label";s:10:"Operations";s:7:"exclude";b:0;s:5:"alter";a:26:{s:10:"alter_text";b:0;s:4:"text";s:0:"";s:9:"make_link";b:0;s:4:"path";s:0:"";s:8:"absolute";b:0;s:8:"external";b:0;s:14:"replace_spaces";b:0;s:9:"path_case";s:4:"none";s:15:"trim_whitespace";b:0;s:3:"alt";s:0:"";s:3:"rel";s:0:"";s:10:"link_class";s:0:"";s:6:"prefix";s:0:"";s:6:"suffix";s:0:"";s:6:"target";s:0:"";s:5:"nl2br";b:0;s:10:"max_length";i:0;s:13:"word_boundary";b:1;s:8:"ellipsis";b:1;s:9:"more_link";b:0;s:14:"more_link_text";s:0:"";s:14:"more_link_path";s:0:"";s:10:"strip_tags";b:0;s:4:"trim";b:0;s:13:"preserve_tags";s:0:"";s:4:"html";b:0;}s:12:"element_type";s:0:"";s:13:"element_class";s:0:"";s:18:"element_label_type";s:0:"";s:19:"element_label_class";s:0:"";s:19:"element_label_colon";b:1;s:20:"element_wrapper_type";s:0:"";s:21:"element_wrapper_class";s:0:"";s:23:"element_default_classes";b:1;s:5:"empty";s:0:"";s:10:"hide_empty";b:0;s:10:"empty_zero";b:0;s:16:"hide_alter_empty";b:1;}}s:5:"pager";a:2:{s:4:"type";s:4:"mini";s:7:"options";a:7:{s:6:"offset";i:0;s:24:"pagination_heading_level";s:2:"h4";s:14:"items_per_page";i:50;s:11:"total_pages";N;s:2:"id";i:0;s:4:"tags";a:2:{s:4:"next";s:6:"››";s:8:"previous";s:6:"‹‹";}s:6:"expose";a:7:{s:14:"items_per_page";b:0;s:20:"items_per_page_label";s:14:"Items per page";s:22:"items_per_page_options";s:13:"5, 10, 25, 50";s:26:"items_per_page_options_all";b:0;s:32:"items_per_page_options_all_label";s:7:"- All -";s:6:"offset";b:0;s:12:"offset_label";s:6:"Offset";}}}s:12:"exposed_form";a:2:{s:4:"type";s:5:"basic";s:7:"options";a:7:{s:13:"submit_button";s:6:"Filter";s:12:"reset_button";b:1;s:18:"reset_button_label";s:5:"Reset";s:19:"exposed_sorts_label";s:7:"Sort by";s:17:"expose_sort_order";b:0;s:14:"sort_asc_label";s:3:"Asc";s:15:"sort_desc_label";s:4:"Desc";}}s:6:"access";a:2:{s:4:"type";s:4:"perm";s:7:"options";a:1:{s:4:"perm";s:19:"access site reports";}}s:5:"cache";a:2:{s:4:"type";s:4:"none";s:7:"options";a:0:{}}s:5:"empty";a:1:{s:4:"area";a:10:{s:2:"id";s:16:"area_text_custom";s:5:"table";s:5:"views";s:5:"field";s:16:"area_text_custom";s:12:"relationship";s:4:"none";s:10:"group_type";s:5:"group";s:11:"admin_label";s:26:"No log messages available.";s:9:"plugin_id";s:11:"text_custom";s:5:"empty";b:1;s:7:"content";s:26:"No log messages available.";s:8:"tokenize";b:0;}}s:5:"sorts";a:1:{s:3:"wid";a:10:{s:2:"id";s:3:"wid";s:5:"table";s:8:"watchdog";s:5:"field";s:3:"wid";s:12:"relationship";s:4:"none";s:10:"group_type";s:5:"group";s:11:"admin_label";s:0:"";s:9:"plugin_id";s:8:"standard";s:5:"order";s:4:"DESC";s:6:"expose";a:2:{s:5:"label";s:0:"";s:16:"field_identifier";s:3:"wid";}s:7:"exposed";b:0;}}s:9:"arguments";a:0:{}s:7:"filters";a:2:{s:4:"type";a:14:{s:2:"id";s:4:"type";s:5:"table";s:8:"watchdog";s:5:"field";s:4:"type";s:12:"relationship";s:4:"none";s:10:"group_type";s:5:"group";s:11:"admin_label";s:0:"";s:9:"plugin_id";s:11:"dblog_types";s:8:"operator";s:2:"in";s:5:"value";a:0:{}s:5:"group";i:1;s:7:"exposed";b:1;s:6:"expose";a:13:{s:11:"operator_id";s:7:"type_op";s:5:"label";s:4:"Type";s:11:"description";s:0:"";s:12:"use_operator";b:0;s:8:"operator";s:7:"type_op";s:24:"operator_limit_selection";b:0;s:13:"operator_list";a:0:{}s:10:"identifier";s:4:"type";s:8:"required";b:0;s:8:"remember";b:0;s:8:"multiple";b:1;s:14:"remember_roles";a:1:{s:13:"authenticated";s:13:"authenticated";}s:6:"reduce";b:0;}s:10:"is_grouped";b:0;s:10:"group_info";a:10:{s:5:"label";s:0:"";s:11:"description";s:0:"";s:10:"identifier";s:0:"";s:8:"optional";b:1;s:6:"widget";s:6:"select";s:8:"multiple";b:0;s:8:"remember";b:0;s:13:"default_group";s:3:"All";s:22:"default_group_multiple";a:0:{}s:11:"group_items";a:0:{}}}s:8:"severity";a:14:{s:2:"id";s:8:"severity";s:5:"table";s:8:"watchdog";s:5:"field";s:8:"severity";s:12:"relationship";s:4:"none";s:10:"group_type";s:5:"group";s:11:"admin_label";s:0:"";s:9:"plugin_id";s:11:"in_operator";s:8:"operator";s:2:"in";s:5:"value";a:0:{}s:5:"group";i:1;s:7:"exposed";b:1;s:6:"expose";a:13:{s:11:"operator_id";s:11:"severity_op";s:5:"label";s:8:"Severity";s:11:"description";s:0:"";s:12:"use_operator";b:0;s:8:"operator";s:11:"severity_op";s:24:"operator_limit_selection";b:0;s:13:"operator_list";a:0:{}s:10:"identifier";s:8:"severity";s:8:"required";b:0;s:8:"remember";b:0;s:8:"multiple";b:1;s:14:"remember_roles";a:1:{s:13:"authenticated";s:13:"authenticated";}s:6:"reduce";b:0;}s:10:"is_grouped";b:0;s:10:"group_info";a:10:{s:5:"label";s:0:"";s:11:"description";s:0:"";s:10:"identifier";s:0:"";s:8:"optional";b:1;s:6:"widget";s:6:"select";s:8:"multiple";b:0;s:8:"remember";b:0;s:13:"default_group";s:3:"All";s:22:"default_group_multiple";a:0:{}s:11:"group_items";a:0:{}}}}s:13:"filter_groups";a:2:{s:8:"operator";s:3:"AND";s:6:"groups";a:1:{i:1;s:3:"AND";}}s:5:"style";a:2:{s:4:"type";s:5:"table";s:7:"options";a:13:{s:8:"grouping";a:0:{}s:9:"row_class";s:25:"{{ type }} {{ severity }}";s:17:"default_row_class";b:1;s:7:"columns";a:8:{s:7:"nothing";s:7:"nothing";s:3:"wid";s:3:"wid";s:8:"severity";s:8:"severity";s:4:"type";s:4:"type";s:9:"timestamp";s:9:"timestamp";s:7:"message";s:7:"message";s:4:"name";s:4:"name";s:4:"link";s:4:"link";}s:7:"default";s:3:"wid";s:4:"info";a:8:{s:7:"nothing";a:4:{s:5:"align";s:0:"";s:9:"separator";s:0:"";s:12:"empty_column";b:0;s:10:"responsive";s:15:"priority-medium";}s:3:"wid";a:6:{s:8:"sortable";b:0;s:18:"default_sort_order";s:4:"desc";s:5:"align";s:0:"";s:9:"separator";s:0:"";s:12:"empty_column";b:0;s:10:"responsive";s:12:"priority-low";}s:8:"severity";a:6:{s:8:"sortable";b:0;s:18:"default_sort_order";s:3:"asc";s:5:"align";s:0:"";s:9:"separator";s:0:"";s:12:"empty_column";b:0;s:10:"responsive";s:12:"priority-low";}s:4:"type";a:6:{s:8:"sortable";b:1;s:18:"default_sort_order";s:3:"asc";s:5:"align";s:0:"";s:9:"separator";s:0:"";s:12:"empty_column";b:0;s:10:"responsive";s:15:"priority-medium";}s:9:"timestamp";a:6:{s:8:"sortable";b:1;s:18:"default_sort_order";s:4:"desc";s:5:"align";s:0:"";s:9:"separator";s:0:"";s:12:"empty_column";b:0;s:10:"responsive";s:12:"priority-low";}s:7:"message";a:6:{s:8:"sortable";b:0;s:18:"default_sort_order";s:3:"asc";s:5:"align";s:0:"";s:9:"separator";s:0:"";s:12:"empty_column";b:0;s:10:"responsive";s:0:"";}s:4:"name";a:6:{s:8:"sortable";b:1;s:18:"default_sort_order";s:3:"asc";s:5:"align";s:0:"";s:9:"separator";s:0:"";s:12:"empty_column";b:0;s:10:"responsive";s:15:"priority-medium";}s:4:"link";a:4:{s:5:"align";s:0:"";s:9:"separator";s:0:"";s:12:"empty_column";b:0;s:10:"responsive";s:12:"priority-low";}}s:8:"override";b:1;s:6:"sticky";b:0;s:7:"summary";s:0:"";s:11:"empty_table";b:0;s:7:"caption";s:0:"";s:11:"description";s:0:"";s:5:"class";s:0:"";}}s:3:"row";a:1:{s:4:"type";s:6:"fields";}s:5:"query";a:2:{s:4:"type";s:11:"views_query";s:7:"options";a:5:{s:13:"query_comment";s:0:"";s:19:"disable_sql_rewrite";b:0;s:8:"distinct";b:0;s:7:"replica";b:0;s:10:"query_tags";a:0:{}}}s:13:"relationships";a:1:{s:3:"uid";a:8:{s:2:"id";s:3:"uid";s:5:"table";s:8:"watchdog";s:5:"field";s:3:"uid";s:12:"relationship";s:4:"none";s:10:"group_type";s:5:"group";s:11:"admin_label";s:4:"User";s:9:"plugin_id";s:8:"standard";s:8:"required";b:0;}}s:9:"css_class";s:11:"admin-dblog";s:6:"header";a:0:{}s:6:"footer";a:0:{}s:17:"display_extenders";a:0:{}}s:14:"cache_metadata";a:3:{s:7:"max-age";i:-1;s:8:"contexts";a:5:{i:0;s:26:"languages:language_content";i:1;s:28:"languages:language_interface";i:2;s:3:"url";i:3;s:14:"url.query_args";i:4;s:16:"user.permissions";}s:4:"tags";a:0:{}}}s:4:"page";a:6:{s:2:"id";s:4:"page";s:13:"display_title";s:4:"Page";s:14:"display_plugin";s:4:"page";s:8:"position";i:1;s:15:"display_options";a:2:{s:17:"display_extenders";a:0:{}s:4:"path";s:19:"admin/reports/dblog";}s:14:"cache_metadata";a:3:{s:7:"max-age";i:-1;s:8:"contexts";a:5:{i:0;s:26:"languages:language_content";i:1;s:28:"languages:language_interface";i:2;s:3:"url";i:3;s:14:"url.query_args";i:4;s:16:"user.permissions";}s:4:"tags";a:0:{}}}}}'), ('', 'views.view.who_s_new', 'a:13:{s:4:"uuid";s:36:"63f7a26e-0608-4032-9fc7-be0daeda441d";s:8:"langcode";s:2:"en";s:6:"status";b:1;s:12:"dependencies";a:1:{s:6:"module";a:1:{i:0;s:4:"user";}}s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"zji0_13MyVGK7Bn1lUMDeZyyOIZedWvqpYUeM_SioPI";}s:2:"id";s:9:"who_s_new";s:5:"label";s:9:"Who''s new";s:6:"module";s:4:"user";s:11:"description";s:53:"Shows a list of the newest user accounts on the site.";s:3:"tag";s:7:"default";s:10:"base_table";s:16:"users_field_data";s:10:"base_field";s:3:"uid";s:7:"display";a:2:{s:7:"default";a:6:{s:2:"id";s:7:"default";s:13:"display_title";s:7:"Default";s:14:"display_plugin";s:7:"default";s:8:"position";i:0;s:15:"display_options";a:17:{s:5:"title";s:9:"Who''s new";s:6:"fields";a:1:{s:4:"name";a:25:{s:2:"id";s:4:"name";s:5:"table";s:16:"users_field_data";s:5:"field";s:4:"name";s:12:"relationship";s:4:"none";s:10:"group_type";s:5:"group";s:11:"admin_label";s:0:"";s:11:"entity_type";s:4:"user";s:12:"entity_field";s:4:"name";s:9:"plugin_id";s:5:"field";s:5:"label";s:0:"";s:7:"exclude";b:0;s:5:"alter";a:8:{s:10:"alter_text";b:0;s:9:"make_link";b:0;s:8:"absolute";b:0;s:13:"word_boundary";b:0;s:8:"ellipsis";b:0;s:10:"strip_tags";b:0;s:4:"trim";b:0;s:4:"html";b:0;}s:12:"element_type";s:0:"";s:13:"element_class";s:0:"";s:18:"element_label_type";s:0:"";s:19:"element_label_class";s:0:"";s:19:"element_label_colon";b:1;s:20:"element_wrapper_type";s:0:"";s:21:"element_wrapper_class";s:0:"";s:23:"element_default_classes";b:1;s:5:"empty";s:0:"";s:10:"hide_empty";b:0;s:10:"empty_zero";b:0;s:16:"hide_alter_empty";b:1;s:4:"type";s:9:"user_name";}}s:5:"pager";a:2:{s:4:"type";s:4:"some";s:7:"options";a:2:{s:6:"offset";i:0;s:14:"items_per_page";i:5;}}s:12:"exposed_form";a:2:{s:4:"type";s:5:"basic";s:7:"options";a:7:{s:13:"submit_button";s:5:"Apply";s:12:"reset_button";b:0;s:18:"reset_button_label";s:5:"Reset";s:19:"exposed_sorts_label";s:7:"Sort by";s:17:"expose_sort_order";b:1;s:14:"sort_asc_label";s:3:"Asc";s:15:"sort_desc_label";s:4:"Desc";}}s:6:"access";a:2:{s:4:"type";s:4:"perm";s:7:"options";a:1:{s:4:"perm";s:14:"access content";}}s:5:"cache";a:2:{s:4:"type";s:3:"tag";s:7:"options";a:0:{}}s:5:"empty";a:0:{}s:5:"sorts";a:1:{s:7:"created";a:13:{s:2:"id";s:7:"created";s:5:"table";s:16:"users_field_data";s:5:"field";s:7:"created";s:12:"relationship";s:4:"none";s:10:"group_type";s:5:"group";s:11:"admin_label";s:0:"";s:11:"entity_type";s:4:"user";s:12:"entity_field";s:7:"created";s:9:"plugin_id";s:4:"date";s:5:"order";s:4:"DESC";s:6:"expose";a:2:{s:5:"label";s:0:"";s:16:"field_identifier";s:7:"created";}s:7:"exposed";b:0;s:11:"granularity";s:6:"second";}}s:9:"arguments";a:0:{}s:7:"filters";a:2:{s:6:"status";a:9:{s:2:"id";s:6:"status";s:5:"table";s:16:"users_field_data";s:5:"field";s:6:"status";s:11:"entity_type";s:4:"user";s:12:"entity_field";s:6:"status";s:9:"plugin_id";s:7:"boolean";s:5:"value";s:1:"1";s:5:"group";i:1;s:6:"expose";a:3:{s:8:"operator";s:1:"0";s:24:"operator_limit_selection";b:0;s:13:"operator_list";a:0:{}}}s:6:"access";a:16:{s:2:"id";s:6:"access";s:5:"table";s:16:"users_field_data";s:5:"field";s:6:"access";s:12:"relationship";s:4:"none";s:10:"group_type";s:5:"group";s:11:"admin_label";s:0:"";s:11:"entity_type";s:4:"user";s:12:"entity_field";s:6:"access";s:9:"plugin_id";s:4:"date";s:8:"operator";s:1:">";s:5:"value";a:4:{s:3:"min";s:0:"";s:3:"max";s:0:"";s:5:"value";s:10:"1970-01-01";s:4:"type";s:4:"date";}s:5:"group";i:1;s:7:"exposed";b:0;s:6:"expose";a:12:{s:11:"operator_id";s:1:"0";s:5:"label";s:0:"";s:11:"description";s:0:"";s:12:"use_operator";b:0;s:8:"operator";s:0:"";s:24:"operator_limit_selection";b:0;s:13:"operator_list";a:0:{}s:10:"identifier";s:0:"";s:8:"required";b:0;s:8:"remember";b:0;s:8:"multiple";b:0;s:14:"remember_roles";a:1:{s:13:"authenticated";s:13:"authenticated";}}s:10:"is_grouped";b:0;s:10:"group_info";a:10:{s:5:"label";s:0:"";s:11:"description";s:0:"";s:10:"identifier";s:0:"";s:8:"optional";b:1;s:6:"widget";s:6:"select";s:8:"multiple";b:0;s:8:"remember";b:0;s:13:"default_group";s:3:"All";s:22:"default_group_multiple";a:0:{}s:11:"group_items";a:0:{}}}}s:5:"style";a:1:{s:4:"type";s:9:"html_list";}s:3:"row";a:1:{s:4:"type";s:6:"fields";}s:5:"query";a:2:{s:4:"type";s:11:"views_query";s:7:"options";a:5:{s:13:"query_comment";s:0:"";s:19:"disable_sql_rewrite";b:0;s:8:"distinct";b:0;s:7:"replica";b:0;s:10:"query_tags";a:0:{}}}s:13:"relationships";a:0:{}s:6:"header";a:0:{}s:6:"footer";a:0:{}s:17:"display_extenders";a:0:{}}s:14:"cache_metadata";a:3:{s:7:"max-age";i:-1;s:8:"contexts";a:3:{i:0;s:26:"languages:language_content";i:1;s:28:"languages:language_interface";i:2;s:16:"user.permissions";}s:4:"tags";a:0:{}}}s:7:"block_1";a:6:{s:2:"id";s:7:"block_1";s:13:"display_title";s:9:"Who''s new";s:14:"display_plugin";s:5:"block";s:8:"position";i:1;s:15:"display_options";a:4:{s:19:"display_description";s:19:"A list of new users";s:17:"display_extenders";a:0:{}s:17:"block_description";s:9:"Who''s new";s:14:"block_category";s:4:"User";}s:14:"cache_metadata";a:3:{s:7:"max-age";i:-1;s:8:"contexts";a:3:{i:0;s:26:"languages:language_content";i:1;s:28:"languages:language_interface";i:2;s:16:"user.permissions";}s:4:"tags";a:0:{}}}}}'), ('', 'views.view.who_s_online', 'a:13:{s:4:"uuid";s:36:"d988a2f6-0c9b-4325-95f1-1e153f35b775";s:8:"langcode";s:2:"en";s:6:"status";b:1;s:12:"dependencies";a:1:{s:6:"module";a:1:{i:0;s:4:"user";}}s:5:"_core";a:1:{s:19:"default_config_hash";s:43:"ls1UO6IE5YEFa6zde68C6HZeKgnFZYmPj4bJW8L_XuQ";}s:2:"id";s:12:"who_s_online";s:5:"label";s:18:"Who''s online block";s:6:"module";s:4:"user";s:11:"description";s:93:"Shows the user names of the most recently active users, and the total number of active users.";s:3:"tag";s:7:"default";s:10:"base_table";s:16:"users_field_data";s:10:"base_field";s:3:"uid";s:7:"display";a:2:{s:7:"default";a:6:{s:2:"id";s:7:"default";s:13:"display_title";s:7:"Default";s:14:"display_plugin";s:7:"default";s:8:"position";i:0;s:15:"display_options";a:17:{s:5:"title";s:12:"Who''s online";s:6:"fields";a:1:{s:4:"name";a:25:{s:2:"id";s:4:"name";s:5:"table";s:16:"users_field_data";s:5:"field";s:4:"name";s:12:"relationship";s:4:"none";s:10:"group_type";s:5:"group";s:11:"admin_label";s:0:"";s:11:"entity_type";s:4:"user";s:12:"entity_field";s:4:"name";s:9:"plugin_id";s:5:"field";s:5:"label";s:0:"";s:7:"exclude";b:0;s:5:"alter";a:8:{s:10:"alter_text";b:0;s:9:"make_link";b:0;s:8:"absolute";b:0;s:13:"word_boundary";b:0;s:8:"ellipsis";b:0;s:10:"strip_tags";b:0;s:4:"trim";b:0;s:4:"html";b:0;}s:12:"element_type";s:0:"";s:13:"element_class";s:0:"";s:18:"element_label_type";s:0:"";s:19:"element_label_class";s:0:"";s:19:"element_label_colon";b:1;s:20:"element_wrapper_type";s:0:"";s:21:"element_wrapper_class";s:0:"";s:23:"element_default_classes";b:1;s:5:"empty";s:0:"";s:10:"hide_empty";b:0;s:10:"empty_zero";b:0;s:16:"hide_alter_empty";b:1;s:4:"type";s:9:"user_name";}}s:5:"pager";a:2:{s:4:"type";s:4:"some";s:7:"options";a:2:{s:6:"offset";i:0;s:14:"items_per_page";i:10;}}s:12:"exposed_form";a:2:{s:4:"type";s:5:"basic";s:7:"options";a:7:{s:13:"submit_button";s:5:"Apply";s:12:"reset_button";b:0;s:18:"reset_button_label";s:5:"Reset";s:19:"exposed_sorts_label";s:7:"Sort by";s:17:"expose_sort_order";b:1;s:14:"sort_asc_label";s:3:"Asc";s:15:"sort_desc_label";s:4:"Desc";}}s:6:"access";a:2:{s:4:"type";s:4:"perm";s:7:"options";a:1:{s:4:"perm";s:20:"access user profiles";}}s:5:"cache";a:2:{s:4:"type";s:3:"tag";s:7:"options";a:0:{}}s:5:"empty";a:1:{s:16:"area_text_custom";a:10:{s:2:"id";s:16:"area_text_custom";s:5:"table";s:5:"views";s:5:"field";s:16:"area_text_custom";s:12:"relationship";s:4:"none";s:10:"group_type";s:5:"group";s:11:"admin_label";s:0:"";s:9:"plugin_id";s:11:"text_custom";s:5:"empty";b:1;s:7:"content";s:35:"There are currently 0 users online.";s:8:"tokenize";b:0;}}s:5:"sorts";a:1:{s:6:"access";a:13:{s:2:"id";s:6:"access";s:5:"table";s:16:"users_field_data";s:5:"field";s:6:"access";s:12:"relationship";s:4:"none";s:10:"group_type";s:5:"group";s:11:"admin_label";s:0:"";s:11:"entity_type";s:4:"user";s:12:"entity_field";s:6:"access";s:9:"plugin_id";s:4:"date";s:5:"order";s:4:"DESC";s:6:"expose";a:2:{s:5:"label";s:0:"";s:16:"field_identifier";s:6:"access";}s:7:"exposed";b:0;s:11:"granularity";s:6:"second";}}s:9:"arguments";a:0:{}s:7:"filters";a:2:{s:6:"status";a:9:{s:2:"id";s:6:"status";s:5:"table";s:16:"users_field_data";s:5:"field";s:6:"status";s:11:"entity_type";s:4:"user";s:12:"entity_field";s:6:"status";s:9:"plugin_id";s:7:"boolean";s:5:"value";s:1:"1";s:5:"group";i:1;s:6:"expose";a:3:{s:8:"operator";s:1:"0";s:24:"operator_limit_selection";b:0;s:13:"operator_list";a:0:{}}}s:6:"access";a:16:{s:2:"id";s:6:"access";s:5:"table";s:16:"users_field_data";s:5:"field";s:6:"access";s:12:"relationship";s:4:"none";s:10:"group_type";s:5:"group";s:11:"admin_label";s:0:"";s:11:"entity_type";s:4:"user";s:12:"entity_field";s:6:"access";s:9:"plugin_id";s:4:"date";s:8:"operator";s:2:">=";s:5:"value";a:4:{s:3:"min";s:0:"";s:3:"max";s:0:"";s:5:"value";s:11:"-15 minutes";s:4:"type";s:6:"offset";}s:5:"group";i:1;s:7:"exposed";b:0;s:6:"expose";a:12:{s:11:"operator_id";s:9:"access_op";s:5:"label";s:11:"Last access";s:11:"description";s:77:"A user is considered online for this long after they have last viewed a page.";s:12:"use_operator";b:0;s:8:"operator";s:9:"access_op";s:24:"operator_limit_selection";b:0;s:13:"operator_list";a:0:{}s:10:"identifier";s:6:"access";s:8:"required";b:0;s:8:"remember";b:0;s:8:"multiple";b:0;s:14:"remember_roles";a:1:{s:13:"authenticated";s:13:"authenticated";}}s:10:"is_grouped";b:0;s:10:"group_info";a:10:{s:5:"label";s:0:"";s:11:"description";s:0:"";s:10:"identifier";s:0:"";s:8:"optional";b:1;s:6:"widget";s:6:"select";s:8:"multiple";b:0;s:8:"remember";b:0;s:13:"default_group";s:3:"All";s:22:"default_group_multiple";a:0:{}s:11:"group_items";a:0:{}}}}s:5:"style";a:2:{s:4:"type";s:9:"html_list";s:7:"options";a:6:{s:8:"grouping";a:0:{}s:9:"row_class";s:0:"";s:17:"default_row_class";b:1;s:4:"type";s:2:"ul";s:13:"wrapper_class";s:9:"item-list";s:5:"class";s:0:"";}}s:3:"row";a:1:{s:4:"type";s:6:"fields";}s:5:"query";a:2:{s:4:"type";s:11:"views_query";s:7:"options";a:5:{s:13:"query_comment";s:0:"";s:19:"disable_sql_rewrite";b:0;s:8:"distinct";b:0;s:7:"replica";b:0;s:10:"query_tags";a:0:{}}}s:13:"relationships";a:0:{}s:6:"header";a:1:{s:6:"result";a:9:{s:2:"id";s:6:"result";s:5:"table";s:5:"views";s:5:"field";s:6:"result";s:12:"relationship";s:4:"none";s:10:"group_type";s:5:"group";s:11:"admin_label";s:0:"";s:9:"plugin_id";s:6:"result";s:5:"empty";b:0;s:7:"content";s:40:"There are currently @total users online.";}}s:6:"footer";a:0:{}s:17:"display_extenders";a:0:{}}s:14:"cache_metadata";a:3:{s:7:"max-age";i:-1;s:8:"contexts";a:3:{i:0;s:26:"languages:language_content";i:1;s:28:"languages:language_interface";i:2;s:16:"user.permissions";}s:4:"tags";a:0:{}}}s:18:"who_s_online_block";a:6:{s:2:"id";s:18:"who_s_online_block";s:13:"display_title";s:12:"Who''s online";s:14:"display_plugin";s:5:"block";s:8:"position";i:1;s:15:"display_options";a:3:{s:19:"display_description";s:45:"A list of users that are currently logged in.";s:17:"display_extenders";a:0:{}s:17:"block_description";s:12:"Who''s online";}s:14:"cache_metadata";a:3:{s:7:"max-age";i:-1;s:8:"contexts";a:3:{i:0;s:26:"languages:language_content";i:1;s:28:"languages:language_interface";i:2;s:16:"user.permissions";}s:4:"tags";a:0:{}}}}}'); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]file_managed` -- CREATE TABLE `[[dbprefix]]file_managed` ( `fid` int unsigned NOT NULL AUTO_INCREMENT, `uuid` varchar(128) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL, `langcode` varchar(12) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL, `uid` int unsigned DEFAULT NULL COMMENT 'The ID of the target entity.', `filename` varchar(255) DEFAULT NULL, `uri` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL, `filemime` varchar(255) CHARACTER SET ascii COLLATE ascii_general_ci DEFAULT NULL, `filesize` bigint unsigned DEFAULT NULL, `status` tinyint NOT NULL, `created` int DEFAULT NULL, `changed` int NOT NULL, PRIMARY KEY (`fid`), UNIQUE KEY `file_field__uuid__value` (`uuid`), KEY `file_field__uid__target_id` (`uid`), KEY `file_field__uri` (`uri`(191)), KEY `file_field__status` (`status`), KEY `file_field__changed` (`changed`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='The base table for file entities.' AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]file_usage` -- CREATE TABLE `[[dbprefix]]file_usage` ( `fid` int unsigned NOT NULL COMMENT 'File ID.', `module` varchar(50) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL DEFAULT '' COMMENT 'The name of the module that is using the file.', `type` varchar(64) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL DEFAULT '' COMMENT 'The name of the object type in which the file is used.', `id` varchar(64) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL DEFAULT '0' COMMENT 'The primary key of the object using the file.', `count` int unsigned NOT NULL DEFAULT '0' COMMENT 'The number of times this file is used by this object.', PRIMARY KEY (`fid`,`type`,`id`,`module`), KEY `type_id` (`type`,`id`), KEY `fid_count` (`fid`,`count`), KEY `fid_module` (`fid`,`module`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Track where a file is used.'; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]inline_block_usage` -- CREATE TABLE `[[dbprefix]]inline_block_usage` ( `block_content_id` int unsigned NOT NULL COMMENT 'The block_content entity ID.', `layout_entity_type` varchar(32) CHARACTER SET ascii COLLATE ascii_general_ci DEFAULT '' COMMENT 'The entity type of the parent entity.', `layout_entity_id` varchar(128) CHARACTER SET ascii COLLATE ascii_general_ci DEFAULT '0' COMMENT 'The ID of the parent entity.', PRIMARY KEY (`block_content_id`), KEY `type_id` (`layout_entity_type`,`layout_entity_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Track where a block_content entity is used.'; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]key_value` -- CREATE TABLE `[[dbprefix]]key_value` ( `collection` varchar(128) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL DEFAULT '' COMMENT 'A named collection of key and value pairs.', `name` varchar(128) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL DEFAULT '' COMMENT 'The key of the key-value pair. As KEY is a SQL reserved keyword, name was chosen instead.', `value` longblob NOT NULL COMMENT 'The value.', PRIMARY KEY (`collection`,`name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Generic key-value storage table. See the state system for…'; -- -- Dumping data for table `[[dbprefix]]key_value` -- INSERT INTO `[[dbprefix]]key_value` VALUES ('announcements_feed', 'last_fetch', 'i:[[timestamp]];'), ('config.entity.key_store.action', 'uuid:0b8212e6-2087-43bc-bab3-9ac8a3df2f20', 'a:1:{i:0;s:33:"system.action.node_promote_action";}'), ('config.entity.key_store.action', 'uuid:153631ff-6ee2-4e3c-98b3-2dbb4194f001', 'a:1:{i:0;s:35:"system.action.node_unpublish_action";}'), ('config.entity.key_store.action', 'uuid:1b3eaf9b-7007-4d35-847c-0e7c2a05bfef', 'a:1:{i:0;s:30:"system.action.node_save_action";}'), ('config.entity.key_store.action', 'uuid:1f14ca2a-c116-4de0-8ca8-db9cb381103f', 'a:1:{i:0;s:52:"system.action.user_remove_role_action.content_editor";}'), ('config.entity.key_store.action', 'uuid:4593d86f-3e1e-4483-bd78-8f11ca8590f4', 'a:1:{i:0;s:51:"system.action.user_remove_role_action.administrator";}'), ('config.entity.key_store.action', 'uuid:5b86f304-a96e-48a1-9d90-588fe7cb7ac5', 'a:1:{i:0;s:33:"system.action.node_publish_action";}'), ('config.entity.key_store.action', 'uuid:62c24ea2-84aa-4e15-a262-d3ff85d773d8', 'a:1:{i:0;s:36:"system.action.user_block_user_action";}'), ('config.entity.key_store.action', 'uuid:7194afad-b151-42ff-9c2e-709e57ecf31c', 'a:1:{i:0;s:48:"system.action.user_add_role_action.administrator";}'), ('config.entity.key_store.action', 'uuid:7975c51b-2432-42c8-9bb2-ecb0b2eca8b2', 'a:1:{i:0;s:39:"system.action.node_make_unsticky_action";}'), ('config.entity.key_store.action', 'uuid:8555920f-5045-4158-a9f2-7f45c8494c32', 'a:1:{i:0;s:37:"system.action.node_make_sticky_action";}'), ('config.entity.key_store.action', 'uuid:8e1c36bd-9d73-4dd3-b2e6-a0155952261c', 'a:1:{i:0;s:42:"system.action.taxonomy_term_publish_action";}'), ('config.entity.key_store.action', 'uuid:a973e686-32a1-4354-8e5d-a9fb6d6b4d31', 'a:1:{i:0;s:35:"system.action.node_unpromote_action";}'), ('config.entity.key_store.action', 'uuid:b035040e-77be-4522-bb4a-82fc3ff92aea', 'a:1:{i:0;s:37:"system.action.user_cancel_user_action";}'), ('config.entity.key_store.action', 'uuid:ba90a0f2-5119-4145-b96b-b11335c18aeb', 'a:1:{i:0;s:44:"system.action.taxonomy_term_unpublish_action";}'), ('config.entity.key_store.action', 'uuid:bfa048cc-3296-481a-9e7a-abc09c492619', 'a:1:{i:0;s:49:"system.action.user_add_role_action.content_editor";}'), ('config.entity.key_store.action', 'uuid:ed3d0b16-3d94-4d5e-999d-2ee9e7079a48', 'a:1:{i:0;s:38:"system.action.user_unblock_user_action";}'), ('config.entity.key_store.action', 'uuid:f989578f-780a-4bb7-8449-17cace021c58', 'a:1:{i:0;s:32:"system.action.node_delete_action";}'), ('config.entity.key_store.block', 'theme:claro', 'a:8:{i:0;s:31:"block.block.claro_local_actions";i:1;s:28:"block.block.claro_page_title";i:2;s:37:"block.block.claro_primary_local_tasks";i:3;s:39:"block.block.claro_secondary_local_tasks";i:4;s:22:"block.block.claro_help";i:5;s:29:"block.block.claro_breadcrumbs";i:6;s:25:"block.block.claro_content";i:7;s:26:"block.block.claro_messages";}'), ('config.entity.key_store.block', 'theme:olivero', 'a:12:{i:0;s:24:"block.block.olivero_help";i:1;s:30:"block.block.olivero_page_title";i:2;s:41:"block.block.olivero_primary_admin_actions";i:3;s:39:"block.block.olivero_primary_local_tasks";i:4;s:41:"block.block.olivero_secondary_local_tasks";i:5;s:31:"block.block.olivero_breadcrumbs";i:6;s:27:"block.block.olivero_content";i:7;s:28:"block.block.olivero_messages";i:8;s:27:"block.block.olivero_powered";i:9;s:33:"block.block.olivero_site_branding";i:10;s:32:"block.block.olivero_account_menu";i:11;s:29:"block.block.olivero_main_menu";}'), ('config.entity.key_store.block', 'uuid:033b1646-beb7-4bb0-9759-7a67f396e0e2', 'a:1:{i:0;s:30:"block.block.olivero_page_title";}'), ('config.entity.key_store.block', 'uuid:1965f1b7-3b26-495c-916c-265175da2352', 'a:1:{i:0;s:39:"block.block.olivero_primary_local_tasks";}'), ('config.entity.key_store.block', 'uuid:2a1a3a39-9889-4eb8-afed-ba21326ecdbb', 'a:1:{i:0;s:28:"block.block.claro_page_title";}'), ('config.entity.key_store.block', 'uuid:546d3673-110f-452f-827a-c42bccdb83db', 'a:1:{i:0;s:41:"block.block.olivero_primary_admin_actions";}'), ('config.entity.key_store.block', 'uuid:5ecb0571-8666-419d-9c28-e43b916d6807', 'a:1:{i:0;s:28:"block.block.olivero_messages";}'), ('config.entity.key_store.block', 'uuid:64362da4-efc5-46a5-b78d-b92fd79c4371', 'a:1:{i:0;s:32:"block.block.olivero_account_menu";}'), ('config.entity.key_store.block', 'uuid:65572b5a-0bb1-4314-bb14-85d6e6884381', 'a:1:{i:0;s:29:"block.block.olivero_main_menu";}'), ('config.entity.key_store.block', 'uuid:6d63a897-466c-4b9d-8ff1-cc2082276fcd', 'a:1:{i:0;s:26:"block.block.claro_messages";}'), ('config.entity.key_store.block', 'uuid:9135cd77-721d-40d0-9812-5c9607083374', 'a:1:{i:0;s:37:"block.block.claro_primary_local_tasks";}'), ('config.entity.key_store.block', 'uuid:91aa4f06-72d0-4056-b7f6-04a60c2235fd', 'a:1:{i:0;s:33:"block.block.olivero_site_branding";}'), ('config.entity.key_store.block', 'uuid:95abba5b-e24a-48d6-afaf-75e056db10af', 'a:1:{i:0;s:41:"block.block.olivero_secondary_local_tasks";}'), ('config.entity.key_store.block', 'uuid:a8f5f05a-e4b8-4e65-86f5-8034a39a61d5', 'a:1:{i:0;s:27:"block.block.olivero_content";}'), ('config.entity.key_store.block', 'uuid:bc3b528f-be1d-4a15-98f9-36cae7a92b6f', 'a:1:{i:0;s:31:"block.block.claro_local_actions";}'), ('config.entity.key_store.block', 'uuid:be744d19-db19-437a-89ab-a997855a27ae', 'a:1:{i:0;s:31:"block.block.olivero_breadcrumbs";}'), ('config.entity.key_store.block', 'uuid:bfb8c17b-6786-4735-a424-05577f7aaab6', 'a:1:{i:0;s:24:"block.block.olivero_help";}'), ('config.entity.key_store.block', 'uuid:c65c9520-4da2-4c56-b327-99b3022ad46d', 'a:1:{i:0;s:27:"block.block.olivero_powered";}'), ('config.entity.key_store.block', 'uuid:d5ef84c4-a49e-4f02-abdc-312f9877f0c2', 'a:1:{i:0;s:29:"block.block.claro_breadcrumbs";}'), ('config.entity.key_store.block', 'uuid:d945cd3a-50d4-4c08-a17b-ab1a62be65df', 'a:1:{i:0;s:25:"block.block.claro_content";}'), ('config.entity.key_store.block', 'uuid:e243a025-3e09-4c83-abc8-256520c1b62e', 'a:1:{i:0;s:22:"block.block.claro_help";}'), ('config.entity.key_store.block', 'uuid:eab9af4d-06b5-4dc2-9d1f-90158076034c', 'a:1:{i:0;s:39:"block.block.claro_secondary_local_tasks";}'), ('config.entity.key_store.block_content_type', 'uuid:b2e07983-6bb5-49a8-832b-1ba88270bf2d', 'a:1:{i:0;s:24:"block_content.type.basic";}'), ('config.entity.key_store.date_format', 'uuid:0bb177c0-e601-44c2-b9b6-0f4070dd7d24', 'a:1:{i:0;s:27:"core.date_format.html_month";}'), ('config.entity.key_store.date_format', 'uuid:16035447-29cb-46f0-b47e-b14216c06e41', 'a:1:{i:0;s:26:"core.date_format.html_time";}'), ('config.entity.key_store.date_format', 'uuid:2bfec0c7-bee9-41f2-8aec-8985b57ab51b', 'a:1:{i:0;s:21:"core.date_format.long";}'), ('config.entity.key_store.date_format', 'uuid:34a6f77a-c040-4333-9090-0baa9386b436', 'a:1:{i:0;s:26:"core.date_format.html_date";}'), ('config.entity.key_store.date_format', 'uuid:3ed9e5e2-1686-4b40-ad06-c572537a4ba0', 'a:1:{i:0;s:25:"core.date_format.fallback";}'), ('config.entity.key_store.date_format', 'uuid:41ae55de-c44d-4597-ac57-b00499506b2d', 'a:1:{i:0;s:30:"core.date_format.html_datetime";}'), ('config.entity.key_store.date_format', 'uuid:496cd052-bfbb-43ee-a6fa-6880c8d54cb8', 'a:1:{i:0;s:26:"core.date_format.html_year";}'), ('config.entity.key_store.date_format', 'uuid:648e812d-8365-4cf0-9cdc-8d132daebd0c', 'a:1:{i:0;s:31:"core.date_format.olivero_medium";}'), ('config.entity.key_store.date_format', 'uuid:7f8edbed-8e6f-4977-8daf-ac6437d000a7', 'a:1:{i:0;s:23:"core.date_format.medium";}'), ('config.entity.key_store.date_format', 'uuid:8c6d8ff2-8719-4160-be09-9cbceb0fe514', 'a:1:{i:0;s:35:"core.date_format.html_yearless_date";}'), ('config.entity.key_store.date_format', 'uuid:ddd4b7d9-9d00-4b08-9a24-f21fda047765', 'a:1:{i:0;s:22:"core.date_format.short";}'), ('config.entity.key_store.date_format', 'uuid:efbba6e9-fd43-4db3-9457-5c298e6a6e92', 'a:1:{i:0;s:26:"core.date_format.html_week";}'), ('config.entity.key_store.editor', 'uuid:37cfe4fc-3554-47a3-b0dc-7973f4f53408', 'a:1:{i:0;s:24:"editor.editor.basic_html";}'), ('config.entity.key_store.editor', 'uuid:4cedd1a9-09f8-4bb0-a53d-950958cecefa', 'a:1:{i:0;s:23:"editor.editor.full_html";}'), ('config.entity.key_store.entity_form_display', 'uuid:bc255db2-eb65-447a-9dac-d8e9fe2427dc', 'a:1:{i:0;s:42:"core.entity_form_display.user.user.default";}'), ('config.entity.key_store.entity_form_display', 'uuid:cace029d-332c-4ab0-829b-0425fc65a987', 'a:1:{i:0;s:52:"core.entity_form_display.block_content.basic.default";}'), ('config.entity.key_store.entity_form_mode', 'uuid:6aa2126f-eb69-45d6-b101-8f4732afe2cc', 'a:1:{i:0;s:35:"core.entity_form_mode.user.register";}'), ('config.entity.key_store.entity_view_display', 'uuid:5f79fa52-cab1-4fdf-9849-e2e76c5382ce', 'a:1:{i:0;s:52:"core.entity_view_display.block_content.basic.default";}'), ('config.entity.key_store.entity_view_display', 'uuid:85189c40-6322-4d11-a961-b1610a2e6f4c', 'a:1:{i:0;s:42:"core.entity_view_display.user.user.compact";}'), ('config.entity.key_store.entity_view_display', 'uuid:8952eea7-430f-4482-9be1-6ae263a0dd85', 'a:1:{i:0;s:42:"core.entity_view_display.user.user.default";}'), ('config.entity.key_store.entity_view_mode', 'uuid:058e5369-a0ff-4eb2-b057-e9af515a8bfa', 'a:1:{i:0;s:31:"core.entity_view_mode.node.full";}'), ('config.entity.key_store.entity_view_mode', 'uuid:06009ee8-9199-4bfd-ac62-f72e35d82d74', 'a:1:{i:0;s:31:"core.entity_view_mode.user.full";}'), ('config.entity.key_store.entity_view_mode', 'uuid:2e494ad2-1845-4b72-b71d-19b0fd89de9a', 'a:1:{i:0;s:34:"core.entity_view_mode.user.compact";}'), ('config.entity.key_store.entity_view_mode', 'uuid:32b22328-cb86-4764-aa90-f3a07ac92119', 'a:1:{i:0;s:40:"core.entity_view_mode.taxonomy_term.full";}'), ('config.entity.key_store.entity_view_mode', 'uuid:3dc60e48-6235-4d0f-a253-f559bce6b9e1', 'a:1:{i:0;s:33:"core.entity_view_mode.node.teaser";}'), ('config.entity.key_store.entity_view_mode', 'uuid:624e62b3-8202-4c7b-8190-20f48f368160', 'a:1:{i:0;s:40:"core.entity_view_mode.block_content.full";}'), ('config.entity.key_store.entity_view_mode', 'uuid:8110f686-6ab0-4dd6-80cf-7bb7e640c5e1', 'a:1:{i:0;s:30:"core.entity_view_mode.node.rss";}'), ('config.entity.key_store.field_config', 'uuid:b5184c4d-7b7e-4332-8aa2-35905b734ef4', 'a:1:{i:0;s:36:"field.field.block_content.basic.body";}'), ('config.entity.key_store.field_config', 'uuid:eb2ef396-f81d-4cf3-91d8-077c38ff2139', 'a:1:{i:0;s:34:"field.field.user.user.user_picture";}'), ('config.entity.key_store.field_storage_config', 'uuid:4d013298-b92c-41ee-a63d-ec2260859af0', 'a:1:{i:0;s:31:"field.storage.user.user_picture";}'), ('config.entity.key_store.field_storage_config', 'uuid:8a5dc572-d900-4e7c-acd0-895a3289098b', 'a:1:{i:0;s:32:"field.storage.block_content.body";}'), ('config.entity.key_store.filter_format', 'uuid:077d7443-f9ae-4862-8627-44b6fca4cc94', 'a:1:{i:0;s:23:"filter.format.full_html";}'), ('config.entity.key_store.filter_format', 'uuid:1cc76dc9-6581-4dfe-8800-9950a8fe3043', 'a:1:{i:0;s:24:"filter.format.basic_html";}'), ('config.entity.key_store.filter_format', 'uuid:44b7583d-32ba-4adf-8ba0-f815dfb3ef9c', 'a:1:{i:0;s:29:"filter.format.restricted_html";}'), ('config.entity.key_store.filter_format', 'uuid:e8b0db9c-ae95-4131-856b-f27c5723fd1d', 'a:1:{i:0;s:24:"filter.format.plain_text";}'), ('config.entity.key_store.image_style', 'uuid:4f9fbace-68d5-4d08-bf7a-db5452ba7def', 'a:1:{i:0;s:21:"image.style.thumbnail";}'), ('config.entity.key_store.image_style', 'uuid:80ddfeed-ada9-46fc-8671-0e9a8a8370ce', 'a:1:{i:0;s:17:"image.style.large";}'), ('config.entity.key_store.image_style', 'uuid:8f124ae2-668d-4423-b4ff-4a4cc1f8340d', 'a:1:{i:0;s:16:"image.style.wide";}'), ('config.entity.key_store.image_style', 'uuid:d43f5913-c05b-4e41-9569-48ef53c294cc', 'a:1:{i:0;s:18:"image.style.medium";}'), ('config.entity.key_store.menu', 'uuid:034d4e87-a6da-431f-a9b3-fb2c3cc0e152', 'a:1:{i:0;s:18:"system.menu.footer";}'), ('config.entity.key_store.menu', 'uuid:4db7802c-d56d-4e03-9b26-d36df0a34c47', 'a:1:{i:0;s:33:"system.menu.navigation-user-links";}'), ('config.entity.key_store.menu', 'uuid:7e16d4fe-2c26-4a16-af5d-0d4fcafac5c2', 'a:1:{i:0;s:16:"system.menu.main";}'), ('config.entity.key_store.menu', 'uuid:84796182-c274-4b3f-bc8d-4a591b3708c0', 'a:1:{i:0;s:19:"system.menu.content";}'), ('config.entity.key_store.menu', 'uuid:b0cfbc25-423a-4da7-9ce2-a3172bb1957a', 'a:1:{i:0;s:19:"system.menu.account";}'), ('config.entity.key_store.menu', 'uuid:d3de3f6d-6f23-4e24-a88c-93180f532311', 'a:1:{i:0;s:17:"system.menu.admin";}'), ('config.entity.key_store.menu', 'uuid:f3e052aa-261e-4683-8205-8d70cd48b34d', 'a:1:{i:0;s:17:"system.menu.tools";}'), ('config.entity.key_store.taxonomy_vocabulary', 'uuid:35dd4091-6747-4f71-8490-e4f6f06df5a0', 'a:1:{i:0;s:24:"taxonomy.vocabulary.tags";}'), ('config.entity.key_store.user_role', 'uuid:0495ed88-ef1f-4d8e-b299-0db2cf623595', 'a:1:{i:0;s:23:"user.role.administrator";}'), ('config.entity.key_store.user_role', 'uuid:ae2ef46e-488c-4168-9e26-c94ed7f801e8', 'a:1:{i:0;s:19:"user.role.anonymous";}'), ('config.entity.key_store.user_role', 'uuid:b5d6bd4e-fe65-45bd-a272-26fd1dd79ef6', 'a:1:{i:0;s:24:"user.role.content_editor";}'), ('config.entity.key_store.user_role', 'uuid:b9e39b46-d02f-4e4b-bfc1-bc7b3c73a35f', 'a:1:{i:0;s:23:"user.role.authenticated";}'), ('config.entity.key_store.view', 'uuid:0d2f9af7-814f-4e91-aa95-94924dd53d6c', 'a:1:{i:0;s:18:"views.view.content";}'), ('config.entity.key_store.view', 'uuid:2bdb9763-7742-4ff7-bcd4-cc44ae324902', 'a:1:{i:0;s:16:"views.view.files";}'), ('config.entity.key_store.view', 'uuid:3836073d-c780-44ab-8f28-0705ae62b136', 'a:1:{i:0;s:28:"views.view.user_admin_people";}'), ('config.entity.key_store.view', 'uuid:3b7fae91-b505-4d60-939d-c3121d3b5e01', 'a:1:{i:0;s:18:"views.view.archive";}'), ('config.entity.key_store.view', 'uuid:58df58cf-6e0d-470f-9d2f-936a33970950', 'a:1:{i:0;s:19:"views.view.watchdog";}'), ('config.entity.key_store.view', 'uuid:5e5988c8-480a-4ef9-a9dd-47300e215ea0', 'a:1:{i:0;s:19:"views.view.glossary";}'), ('config.entity.key_store.view', 'uuid:63f7a26e-0608-4032-9fc7-be0daeda441d', 'a:1:{i:0;s:20:"views.view.who_s_new";}'), ('config.entity.key_store.view', 'uuid:a333b900-d0dd-41c1-986c-be9299d51aa4', 'a:1:{i:0;s:25:"views.view.content_recent";}'), ('config.entity.key_store.view', 'uuid:bedc5a12-90bd-4fde-8e77-51ab5f06ac96', 'a:1:{i:0;s:20:"views.view.frontpage";}'), ('config.entity.key_store.view', 'uuid:d988a2f6-0c9b-4325-95f1-1e153f35b775', 'a:1:{i:0;s:23:"views.view.who_s_online";}'), ('config.entity.key_store.view', 'uuid:de3f25a6-d0c6-4c98-9b67-6d2c03bbee0f', 'a:1:{i:0;s:24:"views.view.taxonomy_term";}'), ('config.entity.key_store.view', 'uuid:e05ff707-5399-4ec4-a990-272d020e974d', 'a:1:{i:0;s:24:"views.view.block_content";}'), ('entity.definitions.bundle_field_map', 'block_content', 'a:1:{s:4:"body";a:2:{s:4:"type";s:9:"text_long";s:7:"bundles";a:1:{s:5:"basic";s:5:"basic";}}}'), ('entity.definitions.bundle_field_map', 'user', 'a:1:{s:12:"user_picture";a:2:{s:4:"type";s:5:"image";s:7:"bundles";a:1:{s:4:"user";s:4:"user";}}}'), ('entity.definitions.installed', 'action.entity_type', 'O:42:"Drupal\\Core\\Config\\Entity\\ConfigEntityType":45:{s:5:"\0*\0id";s:6:"action";s:8:"\0*\0class";s:27:"Drupal\\system\\Entity\\Action";s:11:"\0*\0provider";s:6:"system";s:15:"\0*\0static_cache";b:0;s:15:"\0*\0render_cache";b:1;s:19:"\0*\0persistent_cache";b:1;s:14:"\0*\0entity_keys";a:8:{s:2:"id";s:2:"id";s:5:"label";s:5:"label";s:8:"revision";s:0:"";s:6:"bundle";s:0:"";s:8:"langcode";s:8:"langcode";s:16:"default_langcode";s:16:"default_langcode";s:29:"revision_translation_affected";s:29:"revision_translation_affected";s:4:"uuid";s:4:"uuid";}s:16:"\0*\0originalClass";s:27:"Drupal\\system\\Entity\\Action";s:19:"\0*\0decoratedClasses";a:1:{i:0;s:27:"Drupal\\system\\Entity\\Action";}s:11:"\0*\0handlers";a:2:{s:6:"access";s:45:"Drupal\\Core\\Entity\\EntityAccessControlHandler";s:7:"storage";s:45:"Drupal\\Core\\Config\\Entity\\ConfigEntityStorage";}s:19:"\0*\0admin_permission";s:18:"administer actions";s:24:"\0*\0collection_permission";N;s:25:"\0*\0permission_granularity";s:11:"entity_type";s:8:"\0*\0links";a:0:{}s:21:"\0*\0bundle_entity_type";N;s:12:"\0*\0bundle_of";N;s:15:"\0*\0bundle_label";N;s:13:"\0*\0base_table";N;s:22:"\0*\0revision_data_table";N;s:17:"\0*\0revision_table";N;s:13:"\0*\0data_table";N;s:11:"\0*\0internal";b:0;s:15:"\0*\0translatable";b:0;s:19:"\0*\0show_revision_ui";b:0;s:8:"\0*\0label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:6:"Action";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:19:"\0*\0label_collection";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:7:"Actions";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:17:"\0*\0label_singular";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:6:"action";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:15:"\0*\0label_plural";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:7:"actions";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:14:"\0*\0label_count";a:2:{s:8:"singular";s:13:"@count action";s:6:"plural";s:14:"@count actions";}s:15:"\0*\0uri_callback";N;s:8:"\0*\0group";s:13:"configuration";s:14:"\0*\0group_label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:13:"Configuration";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:1:{s:7:"context";s:17:"Entity type group";}}s:22:"\0*\0field_ui_base_route";N;s:26:"\0*\0common_reference_target";b:0;s:22:"\0*\0list_cache_contexts";a:0:{}s:18:"\0*\0list_cache_tags";a:1:{i:0;s:18:"config:action_list";}s:14:"\0*\0constraints";a:0:{}s:13:"\0*\0additional";a:0:{}s:14:"\0*\0_serviceIds";a:0:{}s:18:"\0*\0_entityStorages";a:0:{}s:20:"\0*\0stringTranslation";N;s:16:"\0*\0config_prefix";N;s:14:"\0*\0lookup_keys";a:1:{i:0;s:4:"uuid";}s:16:"\0*\0config_export";a:5:{i:0;s:2:"id";i:1;s:5:"label";i:2;s:4:"type";i:3;s:6:"plugin";i:4;s:13:"configuration";}s:21:"\0*\0mergedConfigExport";a:0:{}}'), ('entity.definitions.installed', 'base_field_override.entity_type', 'O:42:"Drupal\\Core\\Config\\Entity\\ConfigEntityType":45:{s:5:"\0*\0id";s:19:"base_field_override";s:8:"\0*\0class";s:42:"Drupal\\Core\\Field\\Entity\\BaseFieldOverride";s:11:"\0*\0provider";s:4:"core";s:15:"\0*\0static_cache";b:0;s:15:"\0*\0render_cache";b:1;s:19:"\0*\0persistent_cache";b:1;s:14:"\0*\0entity_keys";a:8:{s:2:"id";s:2:"id";s:5:"label";s:5:"label";s:8:"revision";s:0:"";s:6:"bundle";s:0:"";s:8:"langcode";s:8:"langcode";s:16:"default_langcode";s:16:"default_langcode";s:29:"revision_translation_affected";s:29:"revision_translation_affected";s:4:"uuid";s:4:"uuid";}s:16:"\0*\0originalClass";s:42:"Drupal\\Core\\Field\\Entity\\BaseFieldOverride";s:19:"\0*\0decoratedClasses";a:1:{i:0;s:42:"Drupal\\Core\\Field\\Entity\\BaseFieldOverride";}s:11:"\0*\0handlers";a:2:{s:7:"storage";s:42:"Drupal\\Core\\Field\\BaseFieldOverrideStorage";s:6:"access";s:55:"Drupal\\Core\\Field\\BaseFieldOverrideAccessControlHandler";}s:19:"\0*\0admin_permission";N;s:24:"\0*\0collection_permission";N;s:25:"\0*\0permission_granularity";s:11:"entity_type";s:8:"\0*\0links";a:0:{}s:21:"\0*\0bundle_entity_type";N;s:12:"\0*\0bundle_of";N;s:15:"\0*\0bundle_label";N;s:13:"\0*\0base_table";N;s:22:"\0*\0revision_data_table";N;s:17:"\0*\0revision_table";N;s:13:"\0*\0data_table";N;s:11:"\0*\0internal";b:0;s:15:"\0*\0translatable";b:0;s:19:"\0*\0show_revision_ui";b:0;s:8:"\0*\0label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:19:"Base field override";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:19:"\0*\0label_collection";N;s:17:"\0*\0label_singular";N;s:15:"\0*\0label_plural";N;s:14:"\0*\0label_count";a:0:{}s:15:"\0*\0uri_callback";N;s:8:"\0*\0group";s:13:"configuration";s:14:"\0*\0group_label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:13:"Configuration";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:1:{s:7:"context";s:17:"Entity type group";}}s:22:"\0*\0field_ui_base_route";N;s:26:"\0*\0common_reference_target";b:0;s:22:"\0*\0list_cache_contexts";a:0:{}s:18:"\0*\0list_cache_tags";a:1:{i:0;s:31:"config:base_field_override_list";}s:14:"\0*\0constraints";a:1:{s:19:"ImmutableProperties";a:1:{s:10:"properties";a:5:{i:0;s:2:"id";i:1;s:11:"entity_type";i:2;s:6:"bundle";i:3;s:10:"field_name";i:4;s:10:"field_type";}}}s:13:"\0*\0additional";a:0:{}s:14:"\0*\0_serviceIds";a:0:{}s:18:"\0*\0_entityStorages";a:0:{}s:20:"\0*\0stringTranslation";N;s:16:"\0*\0config_prefix";s:19:"base_field_override";s:14:"\0*\0lookup_keys";a:1:{i:0;s:4:"uuid";}s:16:"\0*\0config_export";a:12:{i:0;s:2:"id";i:1;s:10:"field_name";i:2;s:11:"entity_type";i:3;s:6:"bundle";i:4;s:5:"label";i:5;s:11:"description";i:6;s:8:"required";i:7;s:12:"translatable";i:8;s:13:"default_value";i:9;s:22:"default_value_callback";i:10;s:8:"settings";i:11;s:10:"field_type";}s:21:"\0*\0mergedConfigExport";a:0:{}}'), ('entity.definitions.installed', 'block.entity_type', 'O:42:"Drupal\\Core\\Config\\Entity\\ConfigEntityType":45:{s:5:"\0*\0id";s:5:"block";s:8:"\0*\0class";s:25:"Drupal\\block\\Entity\\Block";s:11:"\0*\0provider";s:5:"block";s:15:"\0*\0static_cache";b:0;s:15:"\0*\0render_cache";b:1;s:19:"\0*\0persistent_cache";b:1;s:14:"\0*\0entity_keys";a:8:{s:2:"id";s:2:"id";s:6:"status";s:6:"status";s:8:"revision";s:0:"";s:6:"bundle";s:0:"";s:8:"langcode";s:8:"langcode";s:16:"default_langcode";s:16:"default_langcode";s:29:"revision_translation_affected";s:29:"revision_translation_affected";s:4:"uuid";s:4:"uuid";}s:16:"\0*\0originalClass";s:25:"Drupal\\block\\Entity\\Block";s:19:"\0*\0decoratedClasses";a:1:{i:0;s:25:"Drupal\\block\\Entity\\Block";}s:11:"\0*\0handlers";a:5:{s:6:"access";s:38:"Drupal\\block\\BlockAccessControlHandler";s:12:"view_builder";s:29:"Drupal\\block\\BlockViewBuilder";s:12:"list_builder";s:29:"Drupal\\block\\BlockListBuilder";s:4:"form";a:2:{s:7:"default";s:22:"Drupal\\block\\BlockForm";s:6:"delete";s:33:"Drupal\\block\\Form\\BlockDeleteForm";}s:7:"storage";s:45:"Drupal\\Core\\Config\\Entity\\ConfigEntityStorage";}s:19:"\0*\0admin_permission";s:17:"administer blocks";s:24:"\0*\0collection_permission";N;s:25:"\0*\0permission_granularity";s:11:"entity_type";s:8:"\0*\0links";a:4:{s:11:"delete-form";s:44:"/admin/structure/block/manage/{block}/delete";s:9:"edit-form";s:37:"/admin/structure/block/manage/{block}";s:6:"enable";s:44:"/admin/structure/block/manage/{block}/enable";s:7:"disable";s:45:"/admin/structure/block/manage/{block}/disable";}s:21:"\0*\0bundle_entity_type";N;s:12:"\0*\0bundle_of";N;s:15:"\0*\0bundle_label";N;s:13:"\0*\0base_table";N;s:22:"\0*\0revision_data_table";N;s:17:"\0*\0revision_table";N;s:13:"\0*\0data_table";N;s:11:"\0*\0internal";b:0;s:15:"\0*\0translatable";b:0;s:19:"\0*\0show_revision_ui";b:0;s:8:"\0*\0label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:5:"Block";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:19:"\0*\0label_collection";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:6:"Blocks";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:17:"\0*\0label_singular";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:5:"block";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:15:"\0*\0label_plural";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:6:"blocks";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:14:"\0*\0label_count";a:2:{s:8:"singular";s:12:"@count block";s:6:"plural";s:13:"@count blocks";}s:15:"\0*\0uri_callback";N;s:8:"\0*\0group";s:13:"configuration";s:14:"\0*\0group_label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:13:"Configuration";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:1:{s:7:"context";s:17:"Entity type group";}}s:22:"\0*\0field_ui_base_route";N;s:26:"\0*\0common_reference_target";b:0;s:22:"\0*\0list_cache_contexts";a:0:{}s:18:"\0*\0list_cache_tags";a:1:{i:0;s:17:"config:block_list";}s:14:"\0*\0constraints";a:0:{}s:13:"\0*\0additional";a:0:{}s:14:"\0*\0_serviceIds";a:0:{}s:18:"\0*\0_entityStorages";a:0:{}s:20:"\0*\0stringTranslation";N;s:16:"\0*\0config_prefix";N;s:14:"\0*\0lookup_keys";a:2:{i:0;s:5:"theme";i:1;s:4:"uuid";}s:16:"\0*\0config_export";a:8:{i:0;s:2:"id";i:1;s:5:"theme";i:2;s:6:"region";i:3;s:6:"weight";i:4;s:8:"provider";i:5;s:6:"plugin";i:6;s:8:"settings";i:7;s:10:"visibility";}s:21:"\0*\0mergedConfigExport";a:0:{}}'), ('entity.definitions.installed', 'block_content.entity_type', 'O:36:"Drupal\\Core\\Entity\\ContentEntityType":42:{s:5:"\0*\0id";s:13:"block_content";s:8:"\0*\0class";s:40:"Drupal\\block_content\\Entity\\BlockContent";s:11:"\0*\0provider";s:13:"block_content";s:15:"\0*\0static_cache";b:1;s:15:"\0*\0render_cache";b:0;s:19:"\0*\0persistent_cache";b:1;s:14:"\0*\0entity_keys";a:9:{s:2:"id";s:2:"id";s:8:"revision";s:11:"revision_id";s:6:"bundle";s:4:"type";s:5:"label";s:4:"info";s:8:"langcode";s:8:"langcode";s:4:"uuid";s:4:"uuid";s:9:"published";s:6:"status";s:16:"default_langcode";s:16:"default_langcode";s:29:"revision_translation_affected";s:29:"revision_translation_affected";}s:16:"\0*\0originalClass";s:40:"Drupal\\block_content\\Entity\\BlockContent";s:19:"\0*\0decoratedClasses";a:1:{i:0;s:40:"Drupal\\block_content\\Entity\\BlockContent";}s:11:"\0*\0handlers";a:9:{s:7:"storage";s:46:"Drupal\\Core\\Entity\\Sql\\SqlContentEntityStorage";s:14:"storage_schema";s:46:"Drupal\\block_content\\BlockContentStorageSchema";s:6:"access";s:53:"Drupal\\block_content\\BlockContentAccessControlHandler";s:12:"list_builder";s:44:"Drupal\\block_content\\BlockContentListBuilder";s:12:"view_builder";s:44:"Drupal\\block_content\\BlockContentViewBuilder";s:10:"views_data";s:42:"Drupal\\block_content\\BlockContentViewsData";s:4:"form";a:6:{s:3:"add";s:37:"Drupal\\block_content\\BlockContentForm";s:4:"edit";s:37:"Drupal\\block_content\\BlockContentForm";s:6:"delete";s:48:"Drupal\\block_content\\Form\\BlockContentDeleteForm";s:7:"default";s:37:"Drupal\\block_content\\BlockContentForm";s:15:"revision-delete";s:42:"Drupal\\Core\\Entity\\Form\\RevisionDeleteForm";s:15:"revision-revert";s:42:"Drupal\\Core\\Entity\\Form\\RevisionRevertForm";}s:14:"route_provider";a:2:{s:4:"html";s:54:"Drupal\\block_content\\Routing\\BlockContentRouteProvider";s:8:"revision";s:52:"Drupal\\Core\\Entity\\Routing\\RevisionHtmlRouteProvider";}s:11:"translation";s:51:"Drupal\\block_content\\BlockContentTranslationHandler";}s:19:"\0*\0admin_permission";s:24:"administer block content";s:24:"\0*\0collection_permission";s:20:"access block library";s:25:"\0*\0permission_granularity";s:11:"entity_type";s:8:"\0*\0links";a:10:{s:8:"add-page";s:10:"/block/add";s:8:"add-form";s:31:"/block/add/{block_content_type}";s:9:"canonical";s:36:"/admin/content/block/{block_content}";s:11:"delete-form";s:43:"/admin/content/block/{block_content}/delete";s:9:"edit-form";s:36:"/admin/content/block/{block_content}";s:10:"collection";s:20:"/admin/content/block";s:6:"create";s:6:"/block";s:20:"revision-delete-form";s:77:"/admin/content/block/{block_content}/revision/{block_content_revision}/delete";s:20:"revision-revert-form";s:77:"/admin/content/block/{block_content}/revision/{block_content_revision}/revert";s:15:"version-history";s:46:"/admin/content/block/{block_content}/revisions";}s:21:"\0*\0bundle_entity_type";s:18:"block_content_type";s:12:"\0*\0bundle_of";N;s:15:"\0*\0bundle_label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:10:"Block type";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:13:"\0*\0base_table";s:13:"block_content";s:22:"\0*\0revision_data_table";s:28:"block_content_field_revision";s:17:"\0*\0revision_table";s:22:"block_content_revision";s:13:"\0*\0data_table";s:24:"block_content_field_data";s:11:"\0*\0internal";b:0;s:15:"\0*\0translatable";b:1;s:19:"\0*\0show_revision_ui";b:1;s:8:"\0*\0label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:13:"Content block";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:19:"\0*\0label_collection";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:14:"Content blocks";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:17:"\0*\0label_singular";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:13:"content block";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:15:"\0*\0label_plural";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:14:"content blocks";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:14:"\0*\0label_count";a:2:{s:8:"singular";s:20:"@count content block";s:6:"plural";s:21:"@count content blocks";}s:15:"\0*\0uri_callback";N;s:8:"\0*\0group";s:7:"content";s:14:"\0*\0group_label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:7:"Content";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:1:{s:7:"context";s:17:"Entity type group";}}s:22:"\0*\0field_ui_base_route";s:35:"entity.block_content_type.edit_form";s:26:"\0*\0common_reference_target";b:0;s:22:"\0*\0list_cache_contexts";a:0:{}s:18:"\0*\0list_cache_tags";a:1:{i:0;s:18:"block_content_list";}s:14:"\0*\0constraints";a:2:{s:26:"EntityUntranslatableFields";N;s:25:"BlockContentEntityChanged";N;}s:13:"\0*\0additional";a:0:{}s:14:"\0*\0_serviceIds";a:0:{}s:18:"\0*\0_entityStorages";a:0:{}s:20:"\0*\0stringTranslation";N;s:25:"\0*\0revision_metadata_keys";a:4:{s:13:"revision_user";s:13:"revision_user";s:16:"revision_created";s:16:"revision_created";s:20:"revision_log_message";s:12:"revision_log";s:16:"revision_default";s:16:"revision_default";}}'); INSERT INTO `[[dbprefix]]key_value` VALUES ('entity.definitions.installed', 'block_content.field_storage_definitions', 'a:16:{s:2:"id";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:8:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:16:"Content block ID";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:9:"read-only";b:1;s:11:"description";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:21:"The content block ID.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:8:"provider";s:13:"block_content";s:10:"field_name";s:2:"id";s:11:"entity_type";s:13:"block_content";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:2:{s:4:"type";s:18:"field_item:integer";s:8:"settings";a:6:{s:8:"unsigned";b:1;s:4:"size";s:6:"normal";s:3:"min";s:0:"";s:3:"max";s:0:"";s:6:"prefix";s:0:"";s:6:"suffix";s:0:"";}}s:18:"\0*\0fieldDefinition";r:2;}s:7:"\0*\0type";s:7:"integer";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:5:"value";a:3:{s:4:"type";s:3:"int";s:8:"unsigned";b:1;s:4:"size";s:6:"normal";}}s:11:"unique keys";a:0:{}s:7:"indexes";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}s:4:"uuid";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:8:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:4:"UUID";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:9:"read-only";b:1;s:11:"description";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:23:"The content block UUID.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:8:"provider";s:13:"block_content";s:10:"field_name";s:4:"uuid";s:11:"entity_type";s:13:"block_content";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:2:{s:4:"type";s:15:"field_item:uuid";s:8:"settings";a:3:{s:10:"max_length";i:128;s:8:"is_ascii";b:1;s:14:"case_sensitive";b:0;}}s:18:"\0*\0fieldDefinition";r:40;}s:7:"\0*\0type";s:4:"uuid";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:5:"value";a:3:{s:4:"type";s:13:"varchar_ascii";s:6:"length";i:128;s:6:"binary";b:0;}}s:11:"unique keys";a:1:{s:5:"value";a:1:{i:0;s:5:"value";}}s:7:"indexes";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}s:11:"revision_id";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:8:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:11:"Revision ID";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:9:"read-only";b:1;s:11:"description";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:16:"The revision ID.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:8:"provider";s:13:"block_content";s:10:"field_name";s:11:"revision_id";s:11:"entity_type";s:13:"block_content";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:2:{s:4:"type";s:18:"field_item:integer";s:8:"settings";a:6:{s:8:"unsigned";b:1;s:4:"size";s:6:"normal";s:3:"min";s:0:"";s:3:"max";s:0:"";s:6:"prefix";s:0:"";s:6:"suffix";s:0:"";}}s:18:"\0*\0fieldDefinition";r:77;}s:7:"\0*\0type";s:7:"integer";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:5:"value";a:3:{s:4:"type";s:3:"int";s:8:"unsigned";b:1;s:4:"size";s:6:"normal";}}s:11:"unique keys";a:0:{}s:7:"indexes";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}s:8:"langcode";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:10:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:8:"Language";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:7:"display";a:2:{s:4:"view";a:1:{s:7:"options";a:1:{s:6:"region";s:6:"hidden";}}s:4:"form";a:1:{s:7:"options";a:2:{s:4:"type";s:15:"language_select";s:6:"weight";i:2;}}}s:12:"revisionable";b:1;s:12:"translatable";b:1;s:11:"description";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:32:"The content block language code.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:8:"provider";s:13:"block_content";s:10:"field_name";s:8:"langcode";s:11:"entity_type";s:13:"block_content";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:2:{s:4:"type";s:19:"field_item:language";s:8:"settings";a:0:{}}s:18:"\0*\0fieldDefinition";r:115;}s:7:"\0*\0type";s:8:"language";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:5:"value";a:2:{s:4:"type";s:13:"varchar_ascii";s:6:"length";i:12;}}s:11:"unique keys";a:0:{}s:7:"indexes";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}s:4:"type";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:9:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:10:"Block type";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:8:"required";b:1;s:9:"read-only";b:1;s:11:"description";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:15:"The block type.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:8:"provider";s:13:"block_content";s:10:"field_name";s:4:"type";s:11:"entity_type";s:13:"block_content";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:2:{s:4:"type";s:27:"field_item:entity_reference";s:8:"settings";a:3:{s:11:"target_type";s:18:"block_content_type";s:7:"handler";s:7:"default";s:16:"handler_settings";a:0:{}}}s:18:"\0*\0fieldDefinition";r:155;}s:7:"\0*\0type";s:16:"entity_reference";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:9:"target_id";a:3:{s:11:"description";s:28:"The ID of the target entity.";s:4:"type";s:13:"varchar_ascii";s:6:"length";i:32;}}s:7:"indexes";a:1:{s:9:"target_id";a:1:{i:0;s:9:"target_id";}}s:11:"unique keys";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}s:16:"revision_created";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:8:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:20:"Revision create time";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:11:"description";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:47:"The time that the current revision was created.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:12:"revisionable";b:1;s:8:"provider";s:13:"block_content";s:10:"field_name";s:16:"revision_created";s:11:"entity_type";s:13:"block_content";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:2:{s:4:"type";s:18:"field_item:created";s:8:"settings";a:0:{}}s:18:"\0*\0fieldDefinition";r:193;}s:7:"\0*\0type";s:7:"created";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:5:"value";a:1:{s:4:"type";s:3:"int";}}s:11:"unique keys";a:0:{}s:7:"indexes";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}s:13:"revision_user";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:8:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:13:"Revision user";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:11:"description";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:50:"The user ID of the author of the current revision.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:12:"revisionable";b:1;s:8:"provider";s:13:"block_content";s:10:"field_name";s:13:"revision_user";s:11:"entity_type";s:13:"block_content";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:2:{s:4:"type";s:27:"field_item:entity_reference";s:8:"settings";a:3:{s:11:"target_type";s:4:"user";s:7:"handler";s:7:"default";s:16:"handler_settings";a:0:{}}}s:18:"\0*\0fieldDefinition";r:223;}s:7:"\0*\0type";s:16:"entity_reference";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:9:"target_id";a:3:{s:11:"description";s:28:"The ID of the target entity.";s:4:"type";s:3:"int";s:8:"unsigned";b:1;}}s:7:"indexes";a:1:{s:9:"target_id";a:1:{i:0;s:9:"target_id";}}s:11:"unique keys";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}s:12:"revision_log";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:10:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:20:"Revision log message";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:11:"description";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:54:"The log entry explaining the changes in this revision.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:12:"revisionable";b:1;s:13:"default_value";a:1:{i:0;a:1:{s:5:"value";s:0:"";}}s:7:"display";a:1:{s:4:"form";a:1:{s:7:"options";a:3:{s:4:"type";s:15:"string_textarea";s:6:"weight";i:25;s:8:"settings";a:1:{s:4:"rows";i:4;}}}}s:8:"provider";s:13:"block_content";s:10:"field_name";s:12:"revision_log";s:11:"entity_type";s:13:"block_content";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:2:{s:4:"type";s:22:"field_item:string_long";s:8:"settings";a:1:{s:14:"case_sensitive";b:0;}}s:18:"\0*\0fieldDefinition";r:260;}s:7:"\0*\0type";s:11:"string_long";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:5:"value";a:2:{s:4:"type";s:4:"text";s:4:"size";s:3:"big";}}s:11:"unique keys";a:0:{}s:7:"indexes";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}s:6:"status";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:9:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:9:"Published";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:12:"revisionable";b:1;s:12:"translatable";b:1;s:13:"default_value";a:1:{i:0;a:1:{s:5:"value";b:1;}}s:8:"provider";s:13:"block_content";s:10:"field_name";s:6:"status";s:11:"entity_type";s:13:"block_content";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:2:{s:4:"type";s:18:"field_item:boolean";s:8:"settings";a:2:{s:8:"on_label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:2:"On";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:9:"off_label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:3:"Off";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}}}s:18:"\0*\0fieldDefinition";r:302;}s:7:"\0*\0type";s:7:"boolean";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:5:"value";a:2:{s:4:"type";s:3:"int";s:4:"size";s:4:"tiny";}}s:11:"unique keys";a:0:{}s:7:"indexes";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}s:4:"info";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:11:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:17:"Block description";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:11:"description";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:34:"A brief description of your block.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:12:"revisionable";b:1;s:12:"translatable";b:1;s:8:"required";b:1;s:7:"display";a:1:{s:4:"form";a:2:{s:7:"options";a:2:{s:4:"type";s:16:"string_textfield";s:6:"weight";i:-5;}s:12:"configurable";b:1;}}s:8:"provider";s:13:"block_content";s:10:"field_name";s:4:"info";s:11:"entity_type";s:13:"block_content";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:2:{s:4:"type";s:17:"field_item:string";s:8:"settings";a:3:{s:10:"max_length";i:255;s:8:"is_ascii";b:0;s:14:"case_sensitive";b:0;}}s:18:"\0*\0fieldDefinition";r:341;}s:7:"\0*\0type";s:6:"string";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:5:"value";a:3:{s:4:"type";s:7:"varchar";s:6:"length";i:255;s:6:"binary";b:0;}}s:11:"unique keys";a:0:{}s:7:"indexes";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}s:7:"changed";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:9:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:7:"Changed";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:11:"description";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:48:"The time that the content block was last edited.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:12:"translatable";b:1;s:12:"revisionable";b:1;s:8:"provider";s:13:"block_content";s:10:"field_name";s:7:"changed";s:11:"entity_type";s:13:"block_content";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:2:{s:4:"type";s:18:"field_item:changed";s:8:"settings";a:0:{}}s:18:"\0*\0fieldDefinition";r:384;}s:7:"\0*\0type";s:7:"changed";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:5:"value";a:1:{s:4:"type";s:3:"int";}}s:11:"unique keys";a:0:{}s:7:"indexes";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}s:8:"reusable";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:10:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:8:"Reusable";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:11:"description";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:52:"A boolean indicating whether this block is reusable.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:12:"translatable";b:0;s:12:"revisionable";b:0;s:13:"default_value";a:1:{i:0;a:1:{s:5:"value";b:1;}}s:8:"provider";s:13:"block_content";s:10:"field_name";s:8:"reusable";s:11:"entity_type";s:13:"block_content";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:2:{s:4:"type";s:18:"field_item:boolean";s:8:"settings";a:2:{s:8:"on_label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:2:"On";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:9:"off_label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:3:"Off";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}}}s:18:"\0*\0fieldDefinition";r:415;}s:7:"\0*\0type";s:7:"boolean";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:5:"value";a:2:{s:4:"type";s:3:"int";s:4:"size";s:4:"tiny";}}s:11:"unique keys";a:0:{}s:7:"indexes";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}s:16:"default_langcode";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:10:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:19:"Default translation";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:11:"description";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:58:"A flag indicating whether this is the default translation.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:12:"translatable";b:1;s:12:"revisionable";b:1;s:13:"default_value";a:1:{i:0;a:1:{s:5:"value";b:1;}}s:8:"provider";s:13:"block_content";s:10:"field_name";s:16:"default_langcode";s:11:"entity_type";s:13:"block_content";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:2:{s:4:"type";s:18:"field_item:boolean";s:8:"settings";a:2:{s:8:"on_label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:2:"On";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:9:"off_label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:3:"Off";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}}}s:18:"\0*\0fieldDefinition";r:458;}s:7:"\0*\0type";s:7:"boolean";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:5:"value";a:2:{s:4:"type";s:3:"int";s:4:"size";s:4:"tiny";}}s:11:"unique keys";a:0:{}s:7:"indexes";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}s:16:"revision_default";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:11:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:16:"Default revision";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:11:"description";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:72:"A flag indicating whether this was a default revision when it was saved.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:16:"storage_required";b:1;s:8:"internal";b:1;s:12:"translatable";b:0;s:12:"revisionable";b:1;s:8:"provider";s:13:"block_content";s:10:"field_name";s:16:"revision_default";s:11:"entity_type";s:13:"block_content";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:2:{s:4:"type";s:18:"field_item:boolean";s:8:"settings";a:2:{s:8:"on_label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:2:"On";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:9:"off_label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:3:"Off";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}}}s:18:"\0*\0fieldDefinition";r:501;}s:7:"\0*\0type";s:7:"boolean";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:5:"value";a:2:{s:4:"type";s:3:"int";s:4:"size";s:4:"tiny";}}s:11:"unique keys";a:0:{}s:7:"indexes";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}s:29:"revision_translation_affected";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:10:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:29:"Revision translation affected";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:11:"description";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:72:"Indicates if the last edit of a translation belongs to current revision.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:9:"read-only";b:1;s:12:"revisionable";b:1;s:12:"translatable";b:1;s:8:"provider";s:13:"block_content";s:10:"field_name";s:29:"revision_translation_affected";s:11:"entity_type";s:13:"block_content";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:2:{s:4:"type";s:18:"field_item:boolean";s:8:"settings";a:2:{s:8:"on_label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:2:"On";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:9:"off_label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:3:"Off";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}}}s:18:"\0*\0fieldDefinition";r:543;}s:7:"\0*\0type";s:7:"boolean";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:5:"value";a:2:{s:4:"type";s:3:"int";s:4:"size";s:4:"tiny";}}s:11:"unique keys";a:0:{}s:7:"indexes";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}s:4:"body";O:38:"Drupal\\field\\Entity\\FieldStorageConfig":31:{s:15:"\0*\0entityTypeId";s:20:"field_storage_config";s:15:"\0*\0enforceIsNew";b:1;s:12:"\0*\0typedData";N;s:17:"\0*\0originalEntity";O:38:"Drupal\\field\\Entity\\FieldStorageConfig":31:{s:15:"\0*\0entityTypeId";s:20:"field_storage_config";s:15:"\0*\0enforceIsNew";N;s:12:"\0*\0typedData";N;s:17:"\0*\0originalEntity";N;s:16:"\0*\0cacheContexts";a:0:{}s:12:"\0*\0cacheTags";a:0:{}s:14:"\0*\0cacheMaxAge";i:-1;s:14:"\0*\0_serviceIds";a:0:{}s:18:"\0*\0_entityStorages";a:0:{}s:13:"\0*\0originalId";s:18:"block_content.body";s:9:"\0*\0status";b:1;s:7:"\0*\0uuid";s:36:"8a5dc572-d900-4e7c-acd0-895a3289098b";s:11:"\0*\0langcode";s:2:"en";s:23:"\0*\0third_party_settings";a:0:{}s:8:"\0*\0_core";a:1:{s:19:"default_config_hash";s:43:"2WZSsjjllV5cVYJdmJ5ry7mMzjnILAowkJEeUymFslU";}s:14:"\0*\0trustedData";b:0;s:15:"\0*\0dependencies";a:1:{s:6:"module";a:2:{i:0;s:13:"block_content";i:1;s:4:"text";}}s:12:"\0*\0isSyncing";b:0;s:5:"\0*\0id";s:18:"block_content.body";s:13:"\0*\0field_name";s:4:"body";s:14:"\0*\0entity_type";s:13:"block_content";s:7:"\0*\0type";s:9:"text_long";s:9:"\0*\0module";s:4:"text";s:11:"\0*\0settings";a:0:{}s:14:"\0*\0cardinality";i:1;s:15:"\0*\0translatable";b:1;s:9:"\0*\0locked";b:0;s:25:"\0*\0persist_with_no_fields";b:1;s:14:"custom_storage";b:0;s:10:"\0*\0indexes";a:0:{}s:10:"\0*\0deleted";b:0;}s:16:"\0*\0cacheContexts";a:0:{}s:12:"\0*\0cacheTags";a:0:{}s:14:"\0*\0cacheMaxAge";i:-1;s:14:"\0*\0_serviceIds";a:0:{}s:18:"\0*\0_entityStorages";a:0:{}s:13:"\0*\0originalId";s:18:"block_content.body";s:9:"\0*\0status";b:1;s:7:"\0*\0uuid";s:36:"8a5dc572-d900-4e7c-acd0-895a3289098b";s:11:"\0*\0langcode";s:2:"en";s:23:"\0*\0third_party_settings";a:0:{}s:8:"\0*\0_core";a:1:{s:19:"default_config_hash";s:43:"2WZSsjjllV5cVYJdmJ5ry7mMzjnILAowkJEeUymFslU";}s:14:"\0*\0trustedData";b:0;s:15:"\0*\0dependencies";a:1:{s:6:"module";a:2:{i:0;s:13:"block_content";i:1;s:4:"text";}}s:12:"\0*\0isSyncing";b:0;s:5:"\0*\0id";s:18:"block_content.body";s:13:"\0*\0field_name";s:4:"body";s:14:"\0*\0entity_type";s:13:"block_content";s:7:"\0*\0type";s:9:"text_long";s:9:"\0*\0module";s:4:"text";s:11:"\0*\0settings";a:0:{}s:14:"\0*\0cardinality";i:1;s:15:"\0*\0translatable";b:1;s:9:"\0*\0locked";b:0;s:25:"\0*\0persist_with_no_fields";b:1;s:14:"custom_storage";b:0;s:10:"\0*\0indexes";a:0:{}s:10:"\0*\0deleted";b:0;}}'), ('entity.definitions.installed', 'block_content_type.entity_type', 'O:42:"Drupal\\Core\\Config\\Entity\\ConfigEntityType":45:{s:5:"\0*\0id";s:18:"block_content_type";s:8:"\0*\0class";s:44:"Drupal\\block_content\\Entity\\BlockContentType";s:11:"\0*\0provider";s:13:"block_content";s:15:"\0*\0static_cache";b:0;s:15:"\0*\0render_cache";b:1;s:19:"\0*\0persistent_cache";b:1;s:14:"\0*\0entity_keys";a:8:{s:2:"id";s:2:"id";s:5:"label";s:5:"label";s:8:"revision";s:0:"";s:6:"bundle";s:0:"";s:8:"langcode";s:8:"langcode";s:16:"default_langcode";s:16:"default_langcode";s:29:"revision_translation_affected";s:29:"revision_translation_affected";s:4:"uuid";s:4:"uuid";}s:16:"\0*\0originalClass";s:44:"Drupal\\block_content\\Entity\\BlockContentType";s:19:"\0*\0decoratedClasses";a:1:{i:0;s:44:"Drupal\\block_content\\Entity\\BlockContentType";}s:11:"\0*\0handlers";a:5:{s:6:"access";s:50:"Drupal\\block_content\\BlockTypeAccessControlHandler";s:4:"form";a:4:{s:7:"default";s:41:"Drupal\\block_content\\BlockContentTypeForm";s:3:"add";s:41:"Drupal\\block_content\\BlockContentTypeForm";s:4:"edit";s:41:"Drupal\\block_content\\BlockContentTypeForm";s:6:"delete";s:52:"Drupal\\block_content\\Form\\BlockContentTypeDeleteForm";}s:14:"route_provider";a:2:{s:4:"html";s:58:"Drupal\\block_content\\Routing\\BlockContentTypeRouteProvider";s:11:"permissions";s:49:"Drupal\\user\\Entity\\EntityPermissionsRouteProvider";}s:12:"list_builder";s:48:"Drupal\\block_content\\BlockContentTypeListBuilder";s:7:"storage";s:45:"Drupal\\Core\\Config\\Entity\\ConfigEntityStorage";}s:19:"\0*\0admin_permission";s:22:"administer block types";s:24:"\0*\0collection_permission";N;s:25:"\0*\0permission_granularity";s:11:"entity_type";s:8:"\0*\0links";a:5:{s:8:"add-form";s:34:"/admin/structure/block-content/add";s:11:"delete-form";s:65:"/admin/structure/block-content/manage/{block_content_type}/delete";s:9:"edit-form";s:58:"/admin/structure/block-content/manage/{block_content_type}";s:23:"entity-permissions-form";s:70:"/admin/structure/block-content/manage/{block_content_type}/permissions";s:10:"collection";s:30:"/admin/structure/block-content";}s:21:"\0*\0bundle_entity_type";N;s:12:"\0*\0bundle_of";s:13:"block_content";s:15:"\0*\0bundle_label";N;s:13:"\0*\0base_table";N;s:22:"\0*\0revision_data_table";N;s:17:"\0*\0revision_table";N;s:13:"\0*\0data_table";N;s:11:"\0*\0internal";b:0;s:15:"\0*\0translatable";b:0;s:19:"\0*\0show_revision_ui";b:0;s:8:"\0*\0label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:10:"Block type";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:19:"\0*\0label_collection";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:11:"Block types";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:17:"\0*\0label_singular";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:10:"block type";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:15:"\0*\0label_plural";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:11:"block types";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:14:"\0*\0label_count";a:2:{s:8:"singular";s:17:"@count block type";s:6:"plural";s:18:"@count block types";}s:15:"\0*\0uri_callback";N;s:8:"\0*\0group";s:13:"configuration";s:14:"\0*\0group_label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:13:"Configuration";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:1:{s:7:"context";s:17:"Entity type group";}}s:22:"\0*\0field_ui_base_route";N;s:26:"\0*\0common_reference_target";b:0;s:22:"\0*\0list_cache_contexts";a:0:{}s:18:"\0*\0list_cache_tags";a:1:{i:0;s:30:"config:block_content_type_list";}s:14:"\0*\0constraints";a:0:{}s:13:"\0*\0additional";a:0:{}s:14:"\0*\0_serviceIds";a:0:{}s:18:"\0*\0_entityStorages";a:0:{}s:20:"\0*\0stringTranslation";N;s:16:"\0*\0config_prefix";s:4:"type";s:14:"\0*\0lookup_keys";a:1:{i:0;s:4:"uuid";}s:16:"\0*\0config_export";a:4:{i:0;s:2:"id";i:1;s:5:"label";i:2;s:8:"revision";i:3;s:11:"description";}s:21:"\0*\0mergedConfigExport";a:0:{}}'), ('entity.definitions.installed', 'date_format.entity_type', 'O:42:"Drupal\\Core\\Config\\Entity\\ConfigEntityType":45:{s:5:"\0*\0id";s:11:"date_format";s:8:"\0*\0class";s:38:"Drupal\\Core\\Datetime\\Entity\\DateFormat";s:11:"\0*\0provider";s:4:"core";s:15:"\0*\0static_cache";b:0;s:15:"\0*\0render_cache";b:1;s:19:"\0*\0persistent_cache";b:1;s:14:"\0*\0entity_keys";a:8:{s:2:"id";s:2:"id";s:5:"label";s:5:"label";s:8:"revision";s:0:"";s:6:"bundle";s:0:"";s:8:"langcode";s:8:"langcode";s:16:"default_langcode";s:16:"default_langcode";s:29:"revision_translation_affected";s:29:"revision_translation_affected";s:4:"uuid";s:4:"uuid";}s:16:"\0*\0originalClass";s:38:"Drupal\\Core\\Datetime\\Entity\\DateFormat";s:19:"\0*\0decoratedClasses";a:1:{i:0;s:38:"Drupal\\Core\\Datetime\\Entity\\DateFormat";}s:11:"\0*\0handlers";a:4:{s:6:"access";s:44:"Drupal\\system\\DateFormatAccessControlHandler";s:7:"storage";s:45:"Drupal\\Core\\Config\\Entity\\ConfigEntityStorage";s:4:"form";a:3:{s:3:"add";s:36:"Drupal\\system\\Form\\DateFormatAddForm";s:4:"edit";s:37:"Drupal\\system\\Form\\DateFormatEditForm";s:6:"delete";s:39:"Drupal\\system\\Form\\DateFormatDeleteForm";}s:12:"list_builder";s:35:"Drupal\\system\\DateFormatListBuilder";}s:19:"\0*\0admin_permission";s:29:"administer site configuration";s:24:"\0*\0collection_permission";N;s:25:"\0*\0permission_granularity";s:11:"entity_type";s:8:"\0*\0links";a:3:{s:9:"edit-form";s:61:"/admin/config/regional/date-time/formats/manage/{date_format}";s:11:"delete-form";s:68:"/admin/config/regional/date-time/formats/manage/{date_format}/delete";s:10:"collection";s:40:"/admin/config/regional/date-time/formats";}s:21:"\0*\0bundle_entity_type";N;s:12:"\0*\0bundle_of";N;s:15:"\0*\0bundle_label";N;s:13:"\0*\0base_table";N;s:22:"\0*\0revision_data_table";N;s:17:"\0*\0revision_table";N;s:13:"\0*\0data_table";N;s:11:"\0*\0internal";b:0;s:15:"\0*\0translatable";b:0;s:19:"\0*\0show_revision_ui";b:0;s:8:"\0*\0label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:11:"Date format";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:19:"\0*\0label_collection";N;s:17:"\0*\0label_singular";N;s:15:"\0*\0label_plural";N;s:14:"\0*\0label_count";a:0:{}s:15:"\0*\0uri_callback";N;s:8:"\0*\0group";s:13:"configuration";s:14:"\0*\0group_label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:13:"Configuration";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:1:{s:7:"context";s:17:"Entity type group";}}s:22:"\0*\0field_ui_base_route";N;s:26:"\0*\0common_reference_target";b:0;s:22:"\0*\0list_cache_contexts";a:0:{}s:18:"\0*\0list_cache_tags";a:1:{i:0;s:8:"rendered";}s:14:"\0*\0constraints";a:0:{}s:13:"\0*\0additional";a:0:{}s:14:"\0*\0_serviceIds";a:0:{}s:18:"\0*\0_entityStorages";a:0:{}s:20:"\0*\0stringTranslation";N;s:16:"\0*\0config_prefix";N;s:14:"\0*\0lookup_keys";a:1:{i:0;s:4:"uuid";}s:16:"\0*\0config_export";a:4:{i:0;s:2:"id";i:1;s:5:"label";i:2;s:6:"locked";i:3;s:7:"pattern";}s:21:"\0*\0mergedConfigExport";a:10:{s:4:"uuid";s:4:"uuid";s:8:"langcode";s:8:"langcode";s:6:"status";s:6:"status";s:12:"dependencies";s:12:"dependencies";s:20:"third_party_settings";s:20:"third_party_settings";s:5:"_core";s:5:"_core";s:2:"id";s:2:"id";s:5:"label";s:5:"label";s:6:"locked";s:6:"locked";s:7:"pattern";s:7:"pattern";}}'), ('entity.definitions.installed', 'editor.entity_type', 'O:42:"Drupal\\Core\\Config\\Entity\\ConfigEntityType":45:{s:5:"\0*\0id";s:6:"editor";s:8:"\0*\0class";s:27:"Drupal\\editor\\Entity\\Editor";s:11:"\0*\0provider";s:6:"editor";s:15:"\0*\0static_cache";b:0;s:15:"\0*\0render_cache";b:1;s:19:"\0*\0persistent_cache";b:1;s:14:"\0*\0entity_keys";a:7:{s:2:"id";s:6:"format";s:8:"revision";s:0:"";s:6:"bundle";s:0:"";s:8:"langcode";s:8:"langcode";s:16:"default_langcode";s:16:"default_langcode";s:29:"revision_translation_affected";s:29:"revision_translation_affected";s:4:"uuid";s:4:"uuid";}s:16:"\0*\0originalClass";s:27:"Drupal\\editor\\Entity\\Editor";s:19:"\0*\0decoratedClasses";a:1:{i:0;s:27:"Drupal\\editor\\Entity\\Editor";}s:11:"\0*\0handlers";a:2:{s:6:"access";s:40:"Drupal\\editor\\EditorAccessControlHandler";s:7:"storage";s:45:"Drupal\\Core\\Config\\Entity\\ConfigEntityStorage";}s:19:"\0*\0admin_permission";N;s:24:"\0*\0collection_permission";N;s:25:"\0*\0permission_granularity";s:11:"entity_type";s:8:"\0*\0links";a:0:{}s:21:"\0*\0bundle_entity_type";N;s:12:"\0*\0bundle_of";N;s:15:"\0*\0bundle_label";N;s:13:"\0*\0base_table";N;s:22:"\0*\0revision_data_table";N;s:17:"\0*\0revision_table";N;s:13:"\0*\0data_table";N;s:11:"\0*\0internal";b:0;s:15:"\0*\0translatable";b:0;s:19:"\0*\0show_revision_ui";b:0;s:8:"\0*\0label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:11:"Text editor";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:19:"\0*\0label_collection";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:12:"Text editors";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:17:"\0*\0label_singular";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:11:"text editor";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:15:"\0*\0label_plural";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:12:"text editors";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:14:"\0*\0label_count";a:2:{s:8:"singular";s:18:"@count text editor";s:6:"plural";s:19:"@count text editors";}s:15:"\0*\0uri_callback";N;s:8:"\0*\0group";s:13:"configuration";s:14:"\0*\0group_label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:13:"Configuration";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:1:{s:7:"context";s:17:"Entity type group";}}s:22:"\0*\0field_ui_base_route";N;s:26:"\0*\0common_reference_target";b:0;s:22:"\0*\0list_cache_contexts";a:0:{}s:18:"\0*\0list_cache_tags";a:1:{i:0;s:18:"config:editor_list";}s:14:"\0*\0constraints";a:1:{s:26:"RequiredConfigDependencies";a:1:{s:11:"entityTypes";a:1:{i:0;s:13:"filter_format";}}}s:13:"\0*\0additional";a:0:{}s:14:"\0*\0_serviceIds";a:0:{}s:18:"\0*\0_entityStorages";a:0:{}s:20:"\0*\0stringTranslation";N;s:16:"\0*\0config_prefix";N;s:14:"\0*\0lookup_keys";a:1:{i:0;s:4:"uuid";}s:16:"\0*\0config_export";a:4:{i:0;s:6:"format";i:1;s:6:"editor";i:2;s:8:"settings";i:3;s:12:"image_upload";}s:21:"\0*\0mergedConfigExport";a:0:{}}'), ('entity.definitions.installed', 'entity_form_display.entity_type', 'O:42:"Drupal\\Core\\Config\\Entity\\ConfigEntityType":45:{s:5:"\0*\0id";s:19:"entity_form_display";s:8:"\0*\0class";s:43:"Drupal\\Core\\Entity\\Entity\\EntityFormDisplay";s:11:"\0*\0provider";s:4:"core";s:15:"\0*\0static_cache";b:0;s:15:"\0*\0render_cache";b:1;s:19:"\0*\0persistent_cache";b:1;s:14:"\0*\0entity_keys";a:8:{s:2:"id";s:2:"id";s:6:"status";s:6:"status";s:8:"revision";s:0:"";s:6:"bundle";s:0:"";s:8:"langcode";s:8:"langcode";s:16:"default_langcode";s:16:"default_langcode";s:29:"revision_translation_affected";s:29:"revision_translation_affected";s:4:"uuid";s:4:"uuid";}s:16:"\0*\0originalClass";s:43:"Drupal\\Core\\Entity\\Entity\\EntityFormDisplay";s:19:"\0*\0decoratedClasses";a:1:{i:0;s:43:"Drupal\\Core\\Entity\\Entity\\EntityFormDisplay";}s:11:"\0*\0handlers";a:2:{s:6:"access";s:70:"Drupal\\Core\\Entity\\Entity\\Access\\EntityFormDisplayAccessControlHandler";s:7:"storage";s:45:"Drupal\\Core\\Config\\Entity\\ConfigEntityStorage";}s:19:"\0*\0admin_permission";N;s:24:"\0*\0collection_permission";N;s:25:"\0*\0permission_granularity";s:11:"entity_type";s:8:"\0*\0links";a:0:{}s:21:"\0*\0bundle_entity_type";N;s:12:"\0*\0bundle_of";N;s:15:"\0*\0bundle_label";N;s:13:"\0*\0base_table";N;s:22:"\0*\0revision_data_table";N;s:17:"\0*\0revision_table";N;s:13:"\0*\0data_table";N;s:11:"\0*\0internal";b:0;s:15:"\0*\0translatable";b:0;s:19:"\0*\0show_revision_ui";b:0;s:8:"\0*\0label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:19:"Entity form display";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:19:"\0*\0label_collection";N;s:17:"\0*\0label_singular";N;s:15:"\0*\0label_plural";N;s:14:"\0*\0label_count";a:0:{}s:15:"\0*\0uri_callback";N;s:8:"\0*\0group";s:13:"configuration";s:14:"\0*\0group_label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:13:"Configuration";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:1:{s:7:"context";s:17:"Entity type group";}}s:22:"\0*\0field_ui_base_route";N;s:26:"\0*\0common_reference_target";b:0;s:22:"\0*\0list_cache_contexts";a:0:{}s:18:"\0*\0list_cache_tags";a:1:{i:0;s:31:"config:entity_form_display_list";}s:14:"\0*\0constraints";a:1:{s:19:"ImmutableProperties";a:1:{s:10:"properties";a:4:{i:0;s:2:"id";i:1;s:16:"targetEntityType";i:2;s:6:"bundle";i:3;s:4:"mode";}}}s:13:"\0*\0additional";a:0:{}s:14:"\0*\0_serviceIds";a:0:{}s:18:"\0*\0_entityStorages";a:0:{}s:20:"\0*\0stringTranslation";N;s:16:"\0*\0config_prefix";N;s:14:"\0*\0lookup_keys";a:1:{i:0;s:4:"uuid";}s:16:"\0*\0config_export";a:6:{i:0;s:2:"id";i:1;s:16:"targetEntityType";i:2;s:6:"bundle";i:3;s:4:"mode";i:4;s:7:"content";i:5;s:6:"hidden";}s:21:"\0*\0mergedConfigExport";a:0:{}}'), ('entity.definitions.installed', 'entity_form_mode.entity_type', 'O:42:"Drupal\\Core\\Config\\Entity\\ConfigEntityType":45:{s:5:"\0*\0id";s:16:"entity_form_mode";s:8:"\0*\0class";s:40:"Drupal\\Core\\Entity\\Entity\\EntityFormMode";s:11:"\0*\0provider";s:4:"core";s:15:"\0*\0static_cache";b:0;s:15:"\0*\0render_cache";b:1;s:19:"\0*\0persistent_cache";b:1;s:14:"\0*\0entity_keys";a:9:{s:2:"id";s:2:"id";s:5:"label";s:5:"label";s:11:"description";s:11:"description";s:8:"revision";s:0:"";s:6:"bundle";s:0:"";s:8:"langcode";s:8:"langcode";s:16:"default_langcode";s:16:"default_langcode";s:29:"revision_translation_affected";s:29:"revision_translation_affected";s:4:"uuid";s:4:"uuid";}s:16:"\0*\0originalClass";s:40:"Drupal\\Core\\Entity\\Entity\\EntityFormMode";s:19:"\0*\0decoratedClasses";a:1:{i:0;s:40:"Drupal\\Core\\Entity\\Entity\\EntityFormMode";}s:11:"\0*\0handlers";a:2:{s:6:"access";s:45:"Drupal\\Core\\Entity\\EntityAccessControlHandler";s:7:"storage";s:45:"Drupal\\Core\\Config\\Entity\\ConfigEntityStorage";}s:19:"\0*\0admin_permission";N;s:24:"\0*\0collection_permission";N;s:25:"\0*\0permission_granularity";s:11:"entity_type";s:8:"\0*\0links";a:0:{}s:21:"\0*\0bundle_entity_type";N;s:12:"\0*\0bundle_of";N;s:15:"\0*\0bundle_label";N;s:13:"\0*\0base_table";N;s:22:"\0*\0revision_data_table";N;s:17:"\0*\0revision_table";N;s:13:"\0*\0data_table";N;s:11:"\0*\0internal";b:0;s:15:"\0*\0translatable";b:0;s:19:"\0*\0show_revision_ui";b:0;s:8:"\0*\0label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:9:"Form mode";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:19:"\0*\0label_collection";N;s:17:"\0*\0label_singular";N;s:15:"\0*\0label_plural";N;s:14:"\0*\0label_count";a:0:{}s:15:"\0*\0uri_callback";N;s:8:"\0*\0group";s:13:"configuration";s:14:"\0*\0group_label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:13:"Configuration";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:1:{s:7:"context";s:17:"Entity type group";}}s:22:"\0*\0field_ui_base_route";N;s:26:"\0*\0common_reference_target";b:0;s:22:"\0*\0list_cache_contexts";a:0:{}s:18:"\0*\0list_cache_tags";a:1:{i:0;s:28:"config:entity_form_mode_list";}s:14:"\0*\0constraints";a:1:{s:19:"ImmutableProperties";a:1:{s:10:"properties";a:2:{i:0;s:2:"id";i:1;s:16:"targetEntityType";}}}s:13:"\0*\0additional";a:0:{}s:14:"\0*\0_serviceIds";a:0:{}s:18:"\0*\0_entityStorages";a:0:{}s:20:"\0*\0stringTranslation";N;s:16:"\0*\0config_prefix";N;s:14:"\0*\0lookup_keys";a:1:{i:0;s:4:"uuid";}s:16:"\0*\0config_export";a:5:{i:0;s:2:"id";i:1;s:5:"label";i:2;s:11:"description";i:3;s:16:"targetEntityType";i:4;s:5:"cache";}s:21:"\0*\0mergedConfigExport";a:0:{}}'), ('entity.definitions.installed', 'entity_view_display.entity_type', 'O:42:"Drupal\\Core\\Config\\Entity\\ConfigEntityType":45:{s:5:"\0*\0id";s:19:"entity_view_display";s:8:"\0*\0class";s:43:"Drupal\\Core\\Entity\\Entity\\EntityViewDisplay";s:11:"\0*\0provider";s:4:"core";s:15:"\0*\0static_cache";b:0;s:15:"\0*\0render_cache";b:1;s:19:"\0*\0persistent_cache";b:1;s:14:"\0*\0entity_keys";a:8:{s:2:"id";s:2:"id";s:6:"status";s:6:"status";s:8:"revision";s:0:"";s:6:"bundle";s:0:"";s:8:"langcode";s:8:"langcode";s:16:"default_langcode";s:16:"default_langcode";s:29:"revision_translation_affected";s:29:"revision_translation_affected";s:4:"uuid";s:4:"uuid";}s:16:"\0*\0originalClass";s:43:"Drupal\\Core\\Entity\\Entity\\EntityViewDisplay";s:19:"\0*\0decoratedClasses";a:1:{i:0;s:43:"Drupal\\Core\\Entity\\Entity\\EntityViewDisplay";}s:11:"\0*\0handlers";a:2:{s:6:"access";s:70:"Drupal\\Core\\Entity\\Entity\\Access\\EntityViewDisplayAccessControlHandler";s:7:"storage";s:45:"Drupal\\Core\\Config\\Entity\\ConfigEntityStorage";}s:19:"\0*\0admin_permission";N;s:24:"\0*\0collection_permission";N;s:25:"\0*\0permission_granularity";s:11:"entity_type";s:8:"\0*\0links";a:0:{}s:21:"\0*\0bundle_entity_type";N;s:12:"\0*\0bundle_of";N;s:15:"\0*\0bundle_label";N;s:13:"\0*\0base_table";N;s:22:"\0*\0revision_data_table";N;s:17:"\0*\0revision_table";N;s:13:"\0*\0data_table";N;s:11:"\0*\0internal";b:0;s:15:"\0*\0translatable";b:0;s:19:"\0*\0show_revision_ui";b:0;s:8:"\0*\0label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:19:"Entity view display";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:19:"\0*\0label_collection";N;s:17:"\0*\0label_singular";N;s:15:"\0*\0label_plural";N;s:14:"\0*\0label_count";a:0:{}s:15:"\0*\0uri_callback";N;s:8:"\0*\0group";s:13:"configuration";s:14:"\0*\0group_label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:13:"Configuration";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:1:{s:7:"context";s:17:"Entity type group";}}s:22:"\0*\0field_ui_base_route";N;s:26:"\0*\0common_reference_target";b:0;s:22:"\0*\0list_cache_contexts";a:0:{}s:18:"\0*\0list_cache_tags";a:1:{i:0;s:31:"config:entity_view_display_list";}s:14:"\0*\0constraints";a:1:{s:19:"ImmutableProperties";a:1:{s:10:"properties";a:4:{i:0;s:2:"id";i:1;s:16:"targetEntityType";i:2;s:6:"bundle";i:3;s:4:"mode";}}}s:13:"\0*\0additional";a:0:{}s:14:"\0*\0_serviceIds";a:0:{}s:18:"\0*\0_entityStorages";a:0:{}s:20:"\0*\0stringTranslation";N;s:16:"\0*\0config_prefix";N;s:14:"\0*\0lookup_keys";a:1:{i:0;s:4:"uuid";}s:16:"\0*\0config_export";a:6:{i:0;s:2:"id";i:1;s:16:"targetEntityType";i:2;s:6:"bundle";i:3;s:4:"mode";i:4;s:7:"content";i:5;s:6:"hidden";}s:21:"\0*\0mergedConfigExport";a:0:{}}'), ('entity.definitions.installed', 'entity_view_mode.entity_type', 'O:42:"Drupal\\Core\\Config\\Entity\\ConfigEntityType":45:{s:5:"\0*\0id";s:16:"entity_view_mode";s:8:"\0*\0class";s:40:"Drupal\\Core\\Entity\\Entity\\EntityViewMode";s:11:"\0*\0provider";s:4:"core";s:15:"\0*\0static_cache";b:0;s:15:"\0*\0render_cache";b:1;s:19:"\0*\0persistent_cache";b:1;s:14:"\0*\0entity_keys";a:9:{s:2:"id";s:2:"id";s:5:"label";s:5:"label";s:11:"description";s:11:"description";s:8:"revision";s:0:"";s:6:"bundle";s:0:"";s:8:"langcode";s:8:"langcode";s:16:"default_langcode";s:16:"default_langcode";s:29:"revision_translation_affected";s:29:"revision_translation_affected";s:4:"uuid";s:4:"uuid";}s:16:"\0*\0originalClass";s:40:"Drupal\\Core\\Entity\\Entity\\EntityViewMode";s:19:"\0*\0decoratedClasses";a:1:{i:0;s:40:"Drupal\\Core\\Entity\\Entity\\EntityViewMode";}s:11:"\0*\0handlers";a:2:{s:6:"access";s:45:"Drupal\\Core\\Entity\\EntityAccessControlHandler";s:7:"storage";s:45:"Drupal\\Core\\Config\\Entity\\ConfigEntityStorage";}s:19:"\0*\0admin_permission";N;s:24:"\0*\0collection_permission";N;s:25:"\0*\0permission_granularity";s:11:"entity_type";s:8:"\0*\0links";a:0:{}s:21:"\0*\0bundle_entity_type";N;s:12:"\0*\0bundle_of";N;s:15:"\0*\0bundle_label";N;s:13:"\0*\0base_table";N;s:22:"\0*\0revision_data_table";N;s:17:"\0*\0revision_table";N;s:13:"\0*\0data_table";N;s:11:"\0*\0internal";b:0;s:15:"\0*\0translatable";b:0;s:19:"\0*\0show_revision_ui";b:0;s:8:"\0*\0label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:9:"View mode";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:19:"\0*\0label_collection";N;s:17:"\0*\0label_singular";N;s:15:"\0*\0label_plural";N;s:14:"\0*\0label_count";a:0:{}s:15:"\0*\0uri_callback";N;s:8:"\0*\0group";s:13:"configuration";s:14:"\0*\0group_label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:13:"Configuration";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:1:{s:7:"context";s:17:"Entity type group";}}s:22:"\0*\0field_ui_base_route";N;s:26:"\0*\0common_reference_target";b:0;s:22:"\0*\0list_cache_contexts";a:0:{}s:18:"\0*\0list_cache_tags";a:1:{i:0;s:28:"config:entity_view_mode_list";}s:14:"\0*\0constraints";a:1:{s:19:"ImmutableProperties";a:1:{s:10:"properties";a:2:{i:0;s:2:"id";i:1;s:16:"targetEntityType";}}}s:13:"\0*\0additional";a:0:{}s:14:"\0*\0_serviceIds";a:0:{}s:18:"\0*\0_entityStorages";a:0:{}s:20:"\0*\0stringTranslation";N;s:16:"\0*\0config_prefix";N;s:14:"\0*\0lookup_keys";a:1:{i:0;s:4:"uuid";}s:16:"\0*\0config_export";a:5:{i:0;s:2:"id";i:1;s:5:"label";i:2;s:11:"description";i:3;s:16:"targetEntityType";i:4;s:5:"cache";}s:21:"\0*\0mergedConfigExport";a:0:{}}'), ('entity.definitions.installed', 'field_config.entity_type', 'O:42:"Drupal\\Core\\Config\\Entity\\ConfigEntityType":45:{s:5:"\0*\0id";s:12:"field_config";s:8:"\0*\0class";s:31:"Drupal\\field\\Entity\\FieldConfig";s:11:"\0*\0provider";s:5:"field";s:15:"\0*\0static_cache";b:0;s:15:"\0*\0render_cache";b:1;s:19:"\0*\0persistent_cache";b:1;s:14:"\0*\0entity_keys";a:8:{s:2:"id";s:2:"id";s:5:"label";s:5:"label";s:8:"revision";s:0:"";s:6:"bundle";s:0:"";s:8:"langcode";s:8:"langcode";s:16:"default_langcode";s:16:"default_langcode";s:29:"revision_translation_affected";s:29:"revision_translation_affected";s:4:"uuid";s:4:"uuid";}s:16:"\0*\0originalClass";s:31:"Drupal\\field\\Entity\\FieldConfig";s:19:"\0*\0decoratedClasses";a:1:{i:0;s:31:"Drupal\\field\\Entity\\FieldConfig";}s:11:"\0*\0handlers";a:2:{s:6:"access";s:44:"Drupal\\field\\FieldConfigAccessControlHandler";s:7:"storage";s:31:"Drupal\\field\\FieldConfigStorage";}s:19:"\0*\0admin_permission";N;s:24:"\0*\0collection_permission";N;s:25:"\0*\0permission_granularity";s:11:"entity_type";s:8:"\0*\0links";a:0:{}s:21:"\0*\0bundle_entity_type";N;s:12:"\0*\0bundle_of";N;s:15:"\0*\0bundle_label";N;s:13:"\0*\0base_table";N;s:22:"\0*\0revision_data_table";N;s:17:"\0*\0revision_table";N;s:13:"\0*\0data_table";N;s:11:"\0*\0internal";b:0;s:15:"\0*\0translatable";b:0;s:19:"\0*\0show_revision_ui";b:0;s:8:"\0*\0label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:5:"Field";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:19:"\0*\0label_collection";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:6:"Fields";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:17:"\0*\0label_singular";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:5:"field";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:15:"\0*\0label_plural";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:6:"fields";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:14:"\0*\0label_count";a:2:{s:8:"singular";s:12:"@count field";s:6:"plural";s:13:"@count fields";}s:15:"\0*\0uri_callback";N;s:8:"\0*\0group";s:13:"configuration";s:14:"\0*\0group_label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:13:"Configuration";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:1:{s:7:"context";s:17:"Entity type group";}}s:22:"\0*\0field_ui_base_route";N;s:26:"\0*\0common_reference_target";b:0;s:22:"\0*\0list_cache_contexts";a:0:{}s:18:"\0*\0list_cache_tags";a:1:{i:0;s:24:"config:field_config_list";}s:14:"\0*\0constraints";a:2:{s:26:"RequiredConfigDependencies";a:1:{s:11:"entityTypes";a:1:{i:0;s:20:"field_storage_config";}}s:19:"ImmutableProperties";a:1:{s:10:"properties";a:5:{i:0;s:2:"id";i:1;s:11:"entity_type";i:2;s:10:"field_name";i:3;s:6:"bundle";i:4;s:10:"field_type";}}}s:13:"\0*\0additional";a:0:{}s:14:"\0*\0_serviceIds";a:0:{}s:18:"\0*\0_entityStorages";a:0:{}s:20:"\0*\0stringTranslation";N;s:16:"\0*\0config_prefix";s:5:"field";s:14:"\0*\0lookup_keys";a:1:{i:0;s:4:"uuid";}s:16:"\0*\0config_export";a:12:{i:0;s:2:"id";i:1;s:10:"field_name";i:2;s:11:"entity_type";i:3;s:6:"bundle";i:4;s:5:"label";i:5;s:11:"description";i:6;s:8:"required";i:7;s:12:"translatable";i:8;s:13:"default_value";i:9;s:22:"default_value_callback";i:10;s:8:"settings";i:11;s:10:"field_type";}s:21:"\0*\0mergedConfigExport";a:0:{}}'); INSERT INTO `[[dbprefix]]key_value` VALUES ('entity.definitions.installed', 'field_storage_config.entity_type', 'O:42:"Drupal\\Core\\Config\\Entity\\ConfigEntityType":45:{s:5:"\0*\0id";s:20:"field_storage_config";s:8:"\0*\0class";s:38:"Drupal\\field\\Entity\\FieldStorageConfig";s:11:"\0*\0provider";s:5:"field";s:15:"\0*\0static_cache";b:0;s:15:"\0*\0render_cache";b:1;s:19:"\0*\0persistent_cache";b:1;s:14:"\0*\0entity_keys";a:8:{s:2:"id";s:2:"id";s:5:"label";s:2:"id";s:8:"revision";s:0:"";s:6:"bundle";s:0:"";s:8:"langcode";s:8:"langcode";s:16:"default_langcode";s:16:"default_langcode";s:29:"revision_translation_affected";s:29:"revision_translation_affected";s:4:"uuid";s:4:"uuid";}s:16:"\0*\0originalClass";s:38:"Drupal\\field\\Entity\\FieldStorageConfig";s:19:"\0*\0decoratedClasses";a:1:{i:0;s:38:"Drupal\\field\\Entity\\FieldStorageConfig";}s:11:"\0*\0handlers";a:2:{s:6:"access";s:51:"Drupal\\field\\FieldStorageConfigAccessControlHandler";s:7:"storage";s:38:"Drupal\\field\\FieldStorageConfigStorage";}s:19:"\0*\0admin_permission";N;s:24:"\0*\0collection_permission";N;s:25:"\0*\0permission_granularity";s:11:"entity_type";s:8:"\0*\0links";a:0:{}s:21:"\0*\0bundle_entity_type";N;s:12:"\0*\0bundle_of";N;s:15:"\0*\0bundle_label";N;s:13:"\0*\0base_table";N;s:22:"\0*\0revision_data_table";N;s:17:"\0*\0revision_table";N;s:13:"\0*\0data_table";N;s:11:"\0*\0internal";b:0;s:15:"\0*\0translatable";b:0;s:19:"\0*\0show_revision_ui";b:0;s:8:"\0*\0label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:13:"Field storage";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:19:"\0*\0label_collection";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:14:"Field storages";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:17:"\0*\0label_singular";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:13:"field storage";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:15:"\0*\0label_plural";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:14:"field storages";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:14:"\0*\0label_count";a:2:{s:8:"singular";s:20:"@count field storage";s:6:"plural";s:21:"@count field storages";}s:15:"\0*\0uri_callback";N;s:8:"\0*\0group";s:13:"configuration";s:14:"\0*\0group_label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:13:"Configuration";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:1:{s:7:"context";s:17:"Entity type group";}}s:22:"\0*\0field_ui_base_route";N;s:26:"\0*\0common_reference_target";b:0;s:22:"\0*\0list_cache_contexts";a:0:{}s:18:"\0*\0list_cache_tags";a:1:{i:0;s:32:"config:field_storage_config_list";}s:14:"\0*\0constraints";a:1:{s:19:"ImmutableProperties";a:1:{s:10:"properties";a:4:{i:0;s:2:"id";i:1;s:11:"entity_type";i:2;s:10:"field_name";i:3;s:4:"type";}}}s:13:"\0*\0additional";a:0:{}s:14:"\0*\0_serviceIds";a:0:{}s:18:"\0*\0_entityStorages";a:0:{}s:20:"\0*\0stringTranslation";N;s:16:"\0*\0config_prefix";s:7:"storage";s:14:"\0*\0lookup_keys";a:1:{i:0;s:4:"uuid";}s:16:"\0*\0config_export";a:12:{i:0;s:2:"id";i:1;s:10:"field_name";i:2;s:11:"entity_type";i:3;s:4:"type";i:4;s:8:"settings";i:5;s:6:"module";i:6;s:6:"locked";i:7;s:11:"cardinality";i:8;s:12:"translatable";i:9;s:7:"indexes";i:10;s:22:"persist_with_no_fields";i:11;s:14:"custom_storage";}s:21:"\0*\0mergedConfigExport";a:0:{}}'), ('entity.definitions.installed', 'file.entity_type', 'O:36:"Drupal\\Core\\Entity\\ContentEntityType":42:{s:5:"\0*\0id";s:4:"file";s:8:"\0*\0class";s:23:"Drupal\\file\\Entity\\File";s:11:"\0*\0provider";s:4:"file";s:15:"\0*\0static_cache";b:1;s:15:"\0*\0render_cache";b:1;s:19:"\0*\0persistent_cache";b:1;s:14:"\0*\0entity_keys";a:9:{s:2:"id";s:3:"fid";s:5:"label";s:8:"filename";s:8:"langcode";s:8:"langcode";s:4:"uuid";s:4:"uuid";s:5:"owner";s:3:"uid";s:8:"revision";s:0:"";s:6:"bundle";s:0:"";s:16:"default_langcode";s:16:"default_langcode";s:29:"revision_translation_affected";s:29:"revision_translation_affected";}s:16:"\0*\0originalClass";s:23:"Drupal\\file\\Entity\\File";s:19:"\0*\0decoratedClasses";a:1:{i:0;s:23:"Drupal\\file\\Entity\\File";}s:11:"\0*\0handlers";a:9:{s:7:"storage";s:23:"Drupal\\file\\FileStorage";s:14:"storage_schema";s:29:"Drupal\\file\\FileStorageSchema";s:6:"access";s:36:"Drupal\\file\\FileAccessControlHandler";s:10:"views_data";s:25:"Drupal\\file\\FileViewsData";s:12:"list_builder";s:36:"Drupal\\Core\\Entity\\EntityListBuilder";s:4:"form";a:1:{s:6:"delete";s:42:"Drupal\\Core\\Entity\\ContentEntityDeleteForm";}s:14:"route_provider";a:1:{s:4:"html";s:36:"Drupal\\file\\Entity\\FileRouteProvider";}s:11:"link_target";a:2:{s:4:"view";s:33:"Drupal\\file\\Entity\\FileLinkTarget";s:8:"download";s:33:"Drupal\\file\\Entity\\FileLinkTarget";}s:12:"view_builder";s:36:"Drupal\\Core\\Entity\\EntityViewBuilder";}s:19:"\0*\0admin_permission";N;s:24:"\0*\0collection_permission";N;s:25:"\0*\0permission_granularity";s:11:"entity_type";s:8:"\0*\0links";a:1:{s:11:"delete-form";s:19:"/file/{file}/delete";}s:21:"\0*\0bundle_entity_type";N;s:12:"\0*\0bundle_of";N;s:15:"\0*\0bundle_label";N;s:13:"\0*\0base_table";s:12:"file_managed";s:22:"\0*\0revision_data_table";N;s:17:"\0*\0revision_table";N;s:13:"\0*\0data_table";N;s:11:"\0*\0internal";b:0;s:15:"\0*\0translatable";b:0;s:19:"\0*\0show_revision_ui";b:0;s:8:"\0*\0label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:4:"File";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:19:"\0*\0label_collection";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:5:"Files";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:17:"\0*\0label_singular";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:4:"file";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:15:"\0*\0label_plural";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:5:"files";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:14:"\0*\0label_count";a:2:{s:8:"singular";s:11:"@count file";s:6:"plural";s:12:"@count files";}s:15:"\0*\0uri_callback";N;s:8:"\0*\0group";s:7:"content";s:14:"\0*\0group_label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:7:"Content";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:1:{s:7:"context";s:17:"Entity type group";}}s:22:"\0*\0field_ui_base_route";N;s:26:"\0*\0common_reference_target";b:0;s:22:"\0*\0list_cache_contexts";a:0:{}s:18:"\0*\0list_cache_tags";a:1:{i:0;s:9:"file_list";}s:14:"\0*\0constraints";a:2:{s:13:"EntityChanged";N;s:26:"EntityUntranslatableFields";N;}s:13:"\0*\0additional";a:0:{}s:14:"\0*\0_serviceIds";a:0:{}s:18:"\0*\0_entityStorages";a:0:{}s:20:"\0*\0stringTranslation";N;s:25:"\0*\0revision_metadata_keys";a:1:{s:16:"revision_default";s:16:"revision_default";}}'), ('entity.definitions.installed', 'file.field_storage_definitions', 'a:11:{s:3:"fid";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:8:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:7:"File ID";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:9:"read-only";b:1;s:11:"description";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:12:"The file ID.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:8:"provider";s:4:"file";s:10:"field_name";s:3:"fid";s:11:"entity_type";s:4:"file";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:2:{s:4:"type";s:18:"field_item:integer";s:8:"settings";a:6:{s:8:"unsigned";b:1;s:4:"size";s:6:"normal";s:3:"min";s:0:"";s:3:"max";s:0:"";s:6:"prefix";s:0:"";s:6:"suffix";s:0:"";}}s:18:"\0*\0fieldDefinition";r:2;}s:7:"\0*\0type";s:7:"integer";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:5:"value";a:3:{s:4:"type";s:3:"int";s:8:"unsigned";b:1;s:4:"size";s:6:"normal";}}s:11:"unique keys";a:0:{}s:7:"indexes";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}s:4:"uuid";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:8:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:4:"UUID";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:9:"read-only";b:1;s:11:"description";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:14:"The file UUID.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:8:"provider";s:4:"file";s:10:"field_name";s:4:"uuid";s:11:"entity_type";s:4:"file";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:2:{s:4:"type";s:15:"field_item:uuid";s:8:"settings";a:3:{s:10:"max_length";i:128;s:8:"is_ascii";b:1;s:14:"case_sensitive";b:0;}}s:18:"\0*\0fieldDefinition";r:40;}s:7:"\0*\0type";s:4:"uuid";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:5:"value";a:3:{s:4:"type";s:13:"varchar_ascii";s:6:"length";i:128;s:6:"binary";b:0;}}s:11:"unique keys";a:1:{s:5:"value";a:1:{i:0;s:5:"value";}}s:7:"indexes";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}s:8:"langcode";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:8:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:13:"Language code";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:7:"display";a:2:{s:4:"view";a:1:{s:7:"options";a:1:{s:6:"region";s:6:"hidden";}}s:4:"form";a:1:{s:7:"options";a:2:{s:4:"type";s:15:"language_select";s:6:"weight";i:2;}}}s:11:"description";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:23:"The file language code.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:8:"provider";s:4:"file";s:10:"field_name";s:8:"langcode";s:11:"entity_type";s:4:"file";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:2:{s:4:"type";s:19:"field_item:language";s:8:"settings";a:0:{}}s:18:"\0*\0fieldDefinition";r:77;}s:7:"\0*\0type";s:8:"language";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:5:"value";a:2:{s:4:"type";s:13:"varchar_ascii";s:6:"length";i:12;}}s:11:"unique keys";a:0:{}s:7:"indexes";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}s:3:"uid";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:9:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:7:"User ID";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:12:"translatable";b:0;s:22:"default_value_callback";s:46:"Drupal\\file\\Entity\\File::getDefaultEntityOwner";s:11:"description";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:24:"The user ID of the file.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:8:"provider";s:4:"file";s:10:"field_name";s:3:"uid";s:11:"entity_type";s:4:"file";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:2:{s:4:"type";s:27:"field_item:entity_reference";s:8:"settings";a:3:{s:11:"target_type";s:4:"user";s:7:"handler";s:7:"default";s:16:"handler_settings";a:0:{}}}s:18:"\0*\0fieldDefinition";r:115;}s:7:"\0*\0type";s:16:"entity_reference";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:9:"target_id";a:3:{s:11:"description";s:28:"The ID of the target entity.";s:4:"type";s:3:"int";s:8:"unsigned";b:1;}}s:7:"indexes";a:1:{s:9:"target_id";a:1:{i:0;s:9:"target_id";}}s:11:"unique keys";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}s:8:"filename";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:7:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:8:"Filename";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:11:"description";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:41:"Name of the file with no path components.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:8:"provider";s:4:"file";s:10:"field_name";s:8:"filename";s:11:"entity_type";s:4:"file";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:2:{s:4:"type";s:17:"field_item:string";s:8:"settings";a:3:{s:10:"max_length";i:255;s:8:"is_ascii";b:0;s:14:"case_sensitive";b:0;}}s:18:"\0*\0fieldDefinition";r:153;}s:7:"\0*\0type";s:6:"string";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:5:"value";a:3:{s:4:"type";s:7:"varchar";s:6:"length";i:255;s:6:"binary";b:0;}}s:11:"unique keys";a:0:{}s:7:"indexes";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}s:3:"uri";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:8:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:3:"URI";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:11:"description";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:52:"The URI to access the file (either local or remote).";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:11:"constraints";a:1:{s:13:"FileUriUnique";N;}s:8:"provider";s:4:"file";s:10:"field_name";s:3:"uri";s:11:"entity_type";s:4:"file";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:2:{s:4:"type";s:19:"field_item:file_uri";s:8:"settings";a:2:{s:10:"max_length";i:255;s:14:"case_sensitive";b:1;}}s:18:"\0*\0fieldDefinition";r:187;}s:7:"\0*\0type";s:8:"file_uri";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:5:"value";a:3:{s:4:"type";s:7:"varchar";s:6:"length";i:255;s:6:"binary";b:1;}}s:11:"unique keys";a:0:{}s:7:"indexes";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}s:8:"filemime";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:7:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:14:"File MIME type";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:11:"description";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:21:"The file''s MIME type.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:8:"provider";s:4:"file";s:10:"field_name";s:8:"filemime";s:11:"entity_type";s:4:"file";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:2:{s:4:"type";s:17:"field_item:string";s:8:"settings";a:3:{s:10:"max_length";i:255;s:8:"is_ascii";b:1;s:14:"case_sensitive";b:0;}}s:18:"\0*\0fieldDefinition";r:222;}s:7:"\0*\0type";s:6:"string";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:5:"value";a:3:{s:4:"type";s:13:"varchar_ascii";s:6:"length";i:255;s:6:"binary";b:0;}}s:11:"unique keys";a:0:{}s:7:"indexes";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}s:8:"filesize";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:7:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:9:"File size";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:11:"description";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:30:"The size of the file in bytes.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:8:"provider";s:4:"file";s:10:"field_name";s:8:"filesize";s:11:"entity_type";s:4:"file";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:2:{s:4:"type";s:18:"field_item:integer";s:8:"settings";a:6:{s:8:"unsigned";b:1;s:4:"size";s:3:"big";s:3:"min";s:0:"";s:3:"max";s:0:"";s:6:"prefix";s:0:"";s:6:"suffix";s:0:"";}}s:18:"\0*\0fieldDefinition";r:256;}s:7:"\0*\0type";s:7:"integer";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:5:"value";a:3:{s:4:"type";s:3:"int";s:8:"unsigned";b:1;s:4:"size";s:3:"big";}}s:11:"unique keys";a:0:{}s:7:"indexes";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}s:6:"status";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:8:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:6:"Status";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:11:"description";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:63:"The status of the file, temporary (FALSE) and permanent (TRUE).";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:13:"default_value";a:1:{i:0;a:1:{s:5:"value";b:0;}}s:8:"provider";s:4:"file";s:10:"field_name";s:6:"status";s:11:"entity_type";s:4:"file";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:2:{s:4:"type";s:18:"field_item:boolean";s:8:"settings";a:2:{s:8:"on_label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:2:"On";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:9:"off_label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:3:"Off";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}}}s:18:"\0*\0fieldDefinition";r:293;}s:7:"\0*\0type";s:7:"boolean";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:5:"value";a:2:{s:4:"type";s:3:"int";s:4:"size";s:4:"tiny";}}s:11:"unique keys";a:0:{}s:7:"indexes";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}s:7:"created";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:7:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:7:"Created";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:11:"description";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:40:"The timestamp that the file was created.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:8:"provider";s:4:"file";s:10:"field_name";s:7:"created";s:11:"entity_type";s:4:"file";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:2:{s:4:"type";s:18:"field_item:created";s:8:"settings";a:0:{}}s:18:"\0*\0fieldDefinition";r:334;}s:7:"\0*\0type";s:7:"created";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:5:"value";a:1:{s:4:"type";s:3:"int";}}s:11:"unique keys";a:0:{}s:7:"indexes";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}s:7:"changed";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:7:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:7:"Changed";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:11:"description";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:45:"The timestamp that the file was last changed.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:8:"provider";s:4:"file";s:10:"field_name";s:7:"changed";s:11:"entity_type";s:4:"file";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:2:{s:4:"type";s:18:"field_item:changed";s:8:"settings";a:0:{}}s:18:"\0*\0fieldDefinition";r:363;}s:7:"\0*\0type";s:7:"changed";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:5:"value";a:1:{s:4:"type";s:3:"int";}}s:11:"unique keys";a:0:{}s:7:"indexes";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}}'), ('entity.definitions.installed', 'filter_format.entity_type', 'O:42:"Drupal\\Core\\Config\\Entity\\ConfigEntityType":45:{s:5:"\0*\0id";s:13:"filter_format";s:8:"\0*\0class";s:33:"Drupal\\filter\\Entity\\FilterFormat";s:11:"\0*\0provider";s:6:"filter";s:15:"\0*\0static_cache";b:1;s:15:"\0*\0render_cache";b:1;s:19:"\0*\0persistent_cache";b:1;s:14:"\0*\0entity_keys";a:10:{s:2:"id";s:6:"format";s:5:"label";s:4:"name";s:6:"weight";s:6:"weight";s:6:"status";s:6:"status";s:8:"revision";s:0:"";s:6:"bundle";s:0:"";s:8:"langcode";s:8:"langcode";s:16:"default_langcode";s:16:"default_langcode";s:29:"revision_translation_affected";s:29:"revision_translation_affected";s:4:"uuid";s:4:"uuid";}s:16:"\0*\0originalClass";s:33:"Drupal\\filter\\Entity\\FilterFormat";s:19:"\0*\0decoratedClasses";a:1:{i:0;s:33:"Drupal\\filter\\Entity\\FilterFormat";}s:11:"\0*\0handlers";a:4:{s:4:"form";a:4:{s:3:"add";s:33:"Drupal\\filter\\FilterFormatAddForm";s:4:"edit";s:34:"Drupal\\filter\\FilterFormatEditForm";s:7:"disable";s:36:"Drupal\\filter\\Form\\FilterDisableForm";s:6:"enable";s:35:"Drupal\\filter\\Form\\FilterEnableForm";}s:12:"list_builder";s:37:"Drupal\\filter\\FilterFormatListBuilder";s:6:"access";s:46:"Drupal\\filter\\FilterFormatAccessControlHandler";s:7:"storage";s:45:"Drupal\\Core\\Config\\Entity\\ConfigEntityStorage";}s:19:"\0*\0admin_permission";s:18:"administer filters";s:24:"\0*\0collection_permission";N;s:25:"\0*\0permission_granularity";s:11:"entity_type";s:8:"\0*\0links";a:3:{s:9:"edit-form";s:52:"/admin/config/content/formats/manage/{filter_format}";s:7:"disable";s:60:"/admin/config/content/formats/manage/{filter_format}/disable";s:6:"enable";s:59:"/admin/config/content/formats/manage/{filter_format}/enable";}s:21:"\0*\0bundle_entity_type";N;s:12:"\0*\0bundle_of";N;s:15:"\0*\0bundle_label";N;s:13:"\0*\0base_table";N;s:22:"\0*\0revision_data_table";N;s:17:"\0*\0revision_table";N;s:13:"\0*\0data_table";N;s:11:"\0*\0internal";b:0;s:15:"\0*\0translatable";b:0;s:19:"\0*\0show_revision_ui";b:0;s:8:"\0*\0label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:11:"Text format";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:19:"\0*\0label_collection";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:12:"Text formats";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:17:"\0*\0label_singular";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:11:"text format";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:15:"\0*\0label_plural";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:12:"text formats";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:14:"\0*\0label_count";a:2:{s:8:"singular";s:18:"@count text format";s:6:"plural";s:19:"@count text formats";}s:15:"\0*\0uri_callback";N;s:8:"\0*\0group";s:13:"configuration";s:14:"\0*\0group_label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:13:"Configuration";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:1:{s:7:"context";s:17:"Entity type group";}}s:22:"\0*\0field_ui_base_route";N;s:26:"\0*\0common_reference_target";b:0;s:22:"\0*\0list_cache_contexts";a:0:{}s:18:"\0*\0list_cache_tags";a:1:{i:0;s:25:"config:filter_format_list";}s:14:"\0*\0constraints";a:0:{}s:13:"\0*\0additional";a:0:{}s:14:"\0*\0_serviceIds";a:0:{}s:18:"\0*\0_entityStorages";a:0:{}s:20:"\0*\0stringTranslation";N;s:16:"\0*\0config_prefix";s:6:"format";s:14:"\0*\0lookup_keys";a:1:{i:0;s:4:"uuid";}s:16:"\0*\0config_export";a:5:{i:0;s:4:"name";i:1;s:6:"format";i:2;s:6:"weight";i:3;s:5:"roles";i:4;s:7:"filters";}s:21:"\0*\0mergedConfigExport";a:0:{}}'), ('entity.definitions.installed', 'image_style.entity_type', 'O:42:"Drupal\\Core\\Config\\Entity\\ConfigEntityType":45:{s:5:"\0*\0id";s:11:"image_style";s:8:"\0*\0class";s:30:"Drupal\\image\\Entity\\ImageStyle";s:11:"\0*\0provider";s:5:"image";s:15:"\0*\0static_cache";b:1;s:15:"\0*\0render_cache";b:1;s:19:"\0*\0persistent_cache";b:1;s:14:"\0*\0entity_keys";a:8:{s:2:"id";s:4:"name";s:5:"label";s:5:"label";s:8:"revision";s:0:"";s:6:"bundle";s:0:"";s:8:"langcode";s:8:"langcode";s:16:"default_langcode";s:16:"default_langcode";s:29:"revision_translation_affected";s:29:"revision_translation_affected";s:4:"uuid";s:4:"uuid";}s:16:"\0*\0originalClass";s:30:"Drupal\\image\\Entity\\ImageStyle";s:19:"\0*\0decoratedClasses";a:1:{i:0;s:30:"Drupal\\image\\Entity\\ImageStyle";}s:11:"\0*\0handlers";a:4:{s:4:"form";a:4:{s:3:"add";s:35:"Drupal\\image\\Form\\ImageStyleAddForm";s:4:"edit";s:36:"Drupal\\image\\Form\\ImageStyleEditForm";s:6:"delete";s:38:"Drupal\\image\\Form\\ImageStyleDeleteForm";s:5:"flush";s:37:"Drupal\\image\\Form\\ImageStyleFlushForm";}s:12:"list_builder";s:34:"Drupal\\image\\ImageStyleListBuilder";s:7:"storage";s:30:"Drupal\\image\\ImageStyleStorage";s:6:"access";s:45:"Drupal\\Core\\Entity\\EntityAccessControlHandler";}s:19:"\0*\0admin_permission";s:23:"administer image styles";s:24:"\0*\0collection_permission";N;s:25:"\0*\0permission_granularity";s:11:"entity_type";s:8:"\0*\0links";a:4:{s:10:"flush-form";s:59:"/admin/config/media/image-styles/manage/{image_style}/flush";s:9:"edit-form";s:53:"/admin/config/media/image-styles/manage/{image_style}";s:11:"delete-form";s:60:"/admin/config/media/image-styles/manage/{image_style}/delete";s:10:"collection";s:32:"/admin/config/media/image-styles";}s:21:"\0*\0bundle_entity_type";N;s:12:"\0*\0bundle_of";N;s:15:"\0*\0bundle_label";N;s:13:"\0*\0base_table";N;s:22:"\0*\0revision_data_table";N;s:17:"\0*\0revision_table";N;s:13:"\0*\0data_table";N;s:11:"\0*\0internal";b:0;s:15:"\0*\0translatable";b:0;s:19:"\0*\0show_revision_ui";b:0;s:8:"\0*\0label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:11:"Image style";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:19:"\0*\0label_collection";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:12:"Image styles";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:17:"\0*\0label_singular";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:11:"image style";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:15:"\0*\0label_plural";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:12:"image styles";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:14:"\0*\0label_count";a:2:{s:8:"singular";s:18:"@count image style";s:6:"plural";s:19:"@count image styles";}s:15:"\0*\0uri_callback";N;s:8:"\0*\0group";s:13:"configuration";s:14:"\0*\0group_label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:13:"Configuration";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:1:{s:7:"context";s:17:"Entity type group";}}s:22:"\0*\0field_ui_base_route";N;s:26:"\0*\0common_reference_target";b:0;s:22:"\0*\0list_cache_contexts";a:0:{}s:18:"\0*\0list_cache_tags";a:1:{i:0;s:23:"config:image_style_list";}s:14:"\0*\0constraints";a:0:{}s:13:"\0*\0additional";a:0:{}s:14:"\0*\0_serviceIds";a:0:{}s:18:"\0*\0_entityStorages";a:0:{}s:20:"\0*\0stringTranslation";N;s:16:"\0*\0config_prefix";s:5:"style";s:14:"\0*\0lookup_keys";a:1:{i:0;s:4:"uuid";}s:16:"\0*\0config_export";a:3:{i:0;s:4:"name";i:1;s:5:"label";i:2;s:7:"effects";}s:21:"\0*\0mergedConfigExport";a:0:{}}'), ('entity.definitions.installed', 'menu.entity_type', 'O:42:"Drupal\\Core\\Config\\Entity\\ConfigEntityType":45:{s:5:"\0*\0id";s:4:"menu";s:8:"\0*\0class";s:25:"Drupal\\system\\Entity\\Menu";s:11:"\0*\0provider";s:6:"system";s:15:"\0*\0static_cache";b:0;s:15:"\0*\0render_cache";b:1;s:19:"\0*\0persistent_cache";b:1;s:14:"\0*\0entity_keys";a:8:{s:2:"id";s:2:"id";s:5:"label";s:5:"label";s:8:"revision";s:0:"";s:6:"bundle";s:0:"";s:8:"langcode";s:8:"langcode";s:16:"default_langcode";s:16:"default_langcode";s:29:"revision_translation_affected";s:29:"revision_translation_affected";s:4:"uuid";s:4:"uuid";}s:16:"\0*\0originalClass";s:25:"Drupal\\system\\Entity\\Menu";s:19:"\0*\0decoratedClasses";a:1:{i:0;s:25:"Drupal\\system\\Entity\\Menu";}s:11:"\0*\0handlers";a:2:{s:6:"access";s:38:"Drupal\\system\\MenuAccessControlHandler";s:7:"storage";s:25:"Drupal\\system\\MenuStorage";}s:19:"\0*\0admin_permission";s:15:"administer menu";s:24:"\0*\0collection_permission";N;s:25:"\0*\0permission_granularity";s:11:"entity_type";s:8:"\0*\0links";a:0:{}s:21:"\0*\0bundle_entity_type";N;s:12:"\0*\0bundle_of";N;s:15:"\0*\0bundle_label";N;s:13:"\0*\0base_table";N;s:22:"\0*\0revision_data_table";N;s:17:"\0*\0revision_table";N;s:13:"\0*\0data_table";N;s:11:"\0*\0internal";b:0;s:15:"\0*\0translatable";b:0;s:19:"\0*\0show_revision_ui";b:0;s:8:"\0*\0label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:4:"Menu";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:19:"\0*\0label_collection";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:5:"Menus";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:17:"\0*\0label_singular";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:4:"menu";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:15:"\0*\0label_plural";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:5:"menus";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:14:"\0*\0label_count";a:2:{s:8:"singular";s:11:"@count menu";s:6:"plural";s:12:"@count menus";}s:15:"\0*\0uri_callback";N;s:8:"\0*\0group";s:13:"configuration";s:14:"\0*\0group_label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:13:"Configuration";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:1:{s:7:"context";s:17:"Entity type group";}}s:22:"\0*\0field_ui_base_route";N;s:26:"\0*\0common_reference_target";b:0;s:22:"\0*\0list_cache_contexts";a:0:{}s:18:"\0*\0list_cache_tags";a:1:{i:0;s:16:"config:menu_list";}s:14:"\0*\0constraints";a:0:{}s:13:"\0*\0additional";a:0:{}s:14:"\0*\0_serviceIds";a:0:{}s:18:"\0*\0_entityStorages";a:0:{}s:20:"\0*\0stringTranslation";N;s:16:"\0*\0config_prefix";N;s:14:"\0*\0lookup_keys";a:1:{i:0;s:4:"uuid";}s:16:"\0*\0config_export";a:4:{i:0;s:2:"id";i:1;s:5:"label";i:2;s:11:"description";i:3;s:6:"locked";}s:21:"\0*\0mergedConfigExport";a:0:{}}'), ('entity.definitions.installed', 'menu_link_content.entity_type', 'O:36:"Drupal\\Core\\Entity\\ContentEntityType":41:{s:5:"\0*\0id";s:17:"menu_link_content";s:8:"\0*\0class";s:47:"Drupal\\menu_link_content\\Entity\\MenuLinkContent";s:11:"\0*\0provider";s:17:"menu_link_content";s:15:"\0*\0static_cache";b:1;s:15:"\0*\0render_cache";b:1;s:19:"\0*\0persistent_cache";b:1;s:14:"\0*\0entity_keys";a:9:{s:2:"id";s:2:"id";s:8:"revision";s:11:"revision_id";s:5:"label";s:5:"title";s:8:"langcode";s:8:"langcode";s:4:"uuid";s:4:"uuid";s:6:"bundle";s:6:"bundle";s:9:"published";s:7:"enabled";s:16:"default_langcode";s:16:"default_langcode";s:29:"revision_translation_affected";s:29:"revision_translation_affected";}s:16:"\0*\0originalClass";s:47:"Drupal\\menu_link_content\\Entity\\MenuLinkContent";s:19:"\0*\0decoratedClasses";a:1:{i:0;s:47:"Drupal\\menu_link_content\\Entity\\MenuLinkContent";}s:11:"\0*\0handlers";a:8:{s:7:"storage";s:47:"Drupal\\menu_link_content\\MenuLinkContentStorage";s:14:"storage_schema";s:53:"Drupal\\menu_link_content\\MenuLinkContentStorageSchema";s:6:"access";s:60:"Drupal\\menu_link_content\\MenuLinkContentAccessControlHandler";s:4:"form";a:3:{s:7:"default";s:49:"Drupal\\menu_link_content\\Form\\MenuLinkContentForm";s:6:"delete";s:55:"Drupal\\menu_link_content\\Form\\MenuLinkContentDeleteForm";s:14:"layout_builder";s:46:"Drupal\\layout_builder\\Form\\OverridesEntityForm";}s:11:"link_target";a:1:{s:4:"view";s:57:"Drupal\\menu_link_content\\Entity\\MenuLinkContentLinkTarget";}s:12:"list_builder";s:44:"Drupal\\menu_link_content\\MenuLinkListBuilder";s:12:"view_builder";s:36:"Drupal\\Core\\Entity\\EntityViewBuilder";s:10:"moderation";s:0:"";}s:19:"\0*\0admin_permission";s:15:"administer menu";s:24:"\0*\0collection_permission";N;s:25:"\0*\0permission_granularity";s:11:"entity_type";s:8:"\0*\0links";a:3:{s:9:"canonical";s:51:"/admin/structure/menu/item/{menu_link_content}/edit";s:9:"edit-form";s:51:"/admin/structure/menu/item/{menu_link_content}/edit";s:11:"delete-form";s:53:"/admin/structure/menu/item/{menu_link_content}/delete";}s:21:"\0*\0bundle_entity_type";N;s:12:"\0*\0bundle_of";N;s:15:"\0*\0bundle_label";N;s:13:"\0*\0base_table";s:17:"menu_link_content";s:22:"\0*\0revision_data_table";s:32:"menu_link_content_field_revision";s:17:"\0*\0revision_table";s:26:"menu_link_content_revision";s:13:"\0*\0data_table";s:22:"menu_link_content_data";s:11:"\0*\0internal";b:0;s:15:"\0*\0translatable";b:1;s:19:"\0*\0show_revision_ui";b:0;s:8:"\0*\0label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:16:"Custom menu link";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:19:"\0*\0label_collection";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:17:"Custom menu links";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:17:"\0*\0label_singular";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:16:"custom menu link";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:15:"\0*\0label_plural";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:17:"custom menu links";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:14:"\0*\0label_count";a:2:{s:8:"singular";s:23:"@count custom menu link";s:6:"plural";s:24:"@count custom menu links";}s:15:"\0*\0uri_callback";N;s:8:"\0*\0group";s:7:"content";s:14:"\0*\0group_label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:7:"Content";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:1:{s:7:"context";s:17:"Entity type group";}}s:22:"\0*\0field_ui_base_route";N;s:26:"\0*\0common_reference_target";b:0;s:22:"\0*\0list_cache_contexts";a:0:{}s:18:"\0*\0list_cache_tags";a:1:{i:0;s:22:"menu_link_content_list";}s:14:"\0*\0constraints";a:3:{s:17:"MenuTreeHierarchy";a:0:{}s:13:"EntityChanged";N;s:26:"EntityUntranslatableFields";N;}s:13:"\0*\0additional";a:0:{}s:14:"\0*\0_serviceIds";a:1:{s:17:"stringTranslation";s:18:"string_translation";}s:18:"\0*\0_entityStorages";a:0:{}s:25:"\0*\0revision_metadata_keys";a:4:{s:13:"revision_user";s:13:"revision_user";s:16:"revision_created";s:16:"revision_created";s:20:"revision_log_message";s:20:"revision_log_message";s:16:"revision_default";s:16:"revision_default";}}'); INSERT INTO `[[dbprefix]]key_value` VALUES ('entity.definitions.installed', 'menu_link_content.field_storage_definitions', 'a:22:{s:2:"id";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:8:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:9:"Entity ID";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:9:"read-only";b:1;s:11:"description";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:48:"The entity ID for this menu link content entity.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:8:"provider";s:17:"menu_link_content";s:10:"field_name";s:2:"id";s:11:"entity_type";s:17:"menu_link_content";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:2:{s:4:"type";s:18:"field_item:integer";s:8:"settings";a:6:{s:8:"unsigned";b:1;s:4:"size";s:6:"normal";s:3:"min";s:0:"";s:3:"max";s:0:"";s:6:"prefix";s:0:"";s:6:"suffix";s:0:"";}}s:18:"\0*\0fieldDefinition";r:2;}s:7:"\0*\0type";s:7:"integer";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:5:"value";a:3:{s:4:"type";s:3:"int";s:8:"unsigned";b:1;s:4:"size";s:6:"normal";}}s:11:"unique keys";a:0:{}s:7:"indexes";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}s:4:"uuid";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:8:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:4:"UUID";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:9:"read-only";b:1;s:11:"description";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:27:"The content menu link UUID.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:8:"provider";s:17:"menu_link_content";s:10:"field_name";s:4:"uuid";s:11:"entity_type";s:17:"menu_link_content";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:2:{s:4:"type";s:15:"field_item:uuid";s:8:"settings";a:3:{s:10:"max_length";i:128;s:8:"is_ascii";b:1;s:14:"case_sensitive";b:0;}}s:18:"\0*\0fieldDefinition";r:40;}s:7:"\0*\0type";s:4:"uuid";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:5:"value";a:3:{s:4:"type";s:13:"varchar_ascii";s:6:"length";i:128;s:6:"binary";b:0;}}s:11:"unique keys";a:1:{s:5:"value";a:1:{i:0;s:5:"value";}}s:7:"indexes";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}s:11:"revision_id";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:7:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:11:"Revision ID";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:9:"read-only";b:1;s:8:"provider";s:17:"menu_link_content";s:10:"field_name";s:11:"revision_id";s:11:"entity_type";s:17:"menu_link_content";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:2:{s:4:"type";s:18:"field_item:integer";s:8:"settings";a:6:{s:8:"unsigned";b:1;s:4:"size";s:6:"normal";s:3:"min";s:0:"";s:3:"max";s:0:"";s:6:"prefix";s:0:"";s:6:"suffix";s:0:"";}}s:18:"\0*\0fieldDefinition";r:77;}s:7:"\0*\0type";s:7:"integer";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:5:"value";a:3:{s:4:"type";s:3:"int";s:8:"unsigned";b:1;s:4:"size";s:6:"normal";}}s:11:"unique keys";a:0:{}s:7:"indexes";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}s:8:"langcode";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:10:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:8:"Language";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:7:"display";a:2:{s:4:"view";a:1:{s:7:"options";a:1:{s:6:"region";s:6:"hidden";}}s:4:"form";a:1:{s:7:"options";a:2:{s:4:"type";s:15:"language_select";s:6:"weight";i:2;}}}s:12:"revisionable";b:1;s:12:"translatable";b:1;s:11:"description";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:28:"The menu link language code.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:8:"provider";s:17:"menu_link_content";s:10:"field_name";s:8:"langcode";s:11:"entity_type";s:17:"menu_link_content";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:2:{s:4:"type";s:19:"field_item:language";s:8:"settings";a:0:{}}s:18:"\0*\0fieldDefinition";r:111;}s:7:"\0*\0type";s:8:"language";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:5:"value";a:2:{s:4:"type";s:13:"varchar_ascii";s:6:"length";i:12;}}s:11:"unique keys";a:0:{}s:7:"indexes";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}s:6:"bundle";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:9:{s:5:"label";s:23:"Custom menu link bundle";s:8:"required";b:1;s:9:"read-only";b:1;s:11:"description";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:29:"The content menu link bundle.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:8:"provider";s:17:"menu_link_content";s:10:"field_name";s:6:"bundle";s:11:"entity_type";s:17:"menu_link_content";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:2:{s:4:"type";s:17:"field_item:string";s:8:"settings";a:3:{s:10:"max_length";i:32;s:8:"is_ascii";b:1;s:14:"case_sensitive";b:0;}}s:18:"\0*\0fieldDefinition";r:151;}s:7:"\0*\0type";s:6:"string";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:5:"value";a:3:{s:4:"type";s:13:"varchar_ascii";s:6:"length";i:32;s:6:"binary";b:0;}}s:11:"unique keys";a:0:{}s:7:"indexes";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}s:16:"revision_created";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:8:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:20:"Revision create time";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:11:"description";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:47:"The time that the current revision was created.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:12:"revisionable";b:1;s:8:"provider";s:17:"menu_link_content";s:10:"field_name";s:16:"revision_created";s:11:"entity_type";s:17:"menu_link_content";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:2:{s:4:"type";s:18:"field_item:created";s:8:"settings";a:0:{}}s:18:"\0*\0fieldDefinition";r:184;}s:7:"\0*\0type";s:7:"created";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:5:"value";a:1:{s:4:"type";s:3:"int";}}s:11:"unique keys";a:0:{}s:7:"indexes";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}s:13:"revision_user";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:8:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:13:"Revision user";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:11:"description";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:50:"The user ID of the author of the current revision.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:12:"revisionable";b:1;s:8:"provider";s:17:"menu_link_content";s:10:"field_name";s:13:"revision_user";s:11:"entity_type";s:17:"menu_link_content";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:2:{s:4:"type";s:27:"field_item:entity_reference";s:8:"settings";a:3:{s:11:"target_type";s:4:"user";s:7:"handler";s:7:"default";s:16:"handler_settings";a:0:{}}}s:18:"\0*\0fieldDefinition";r:214;}s:7:"\0*\0type";s:16:"entity_reference";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:9:"target_id";a:3:{s:11:"description";s:28:"The ID of the target entity.";s:4:"type";s:3:"int";s:8:"unsigned";b:1;}}s:7:"indexes";a:1:{s:9:"target_id";a:1:{i:0;s:9:"target_id";}}s:11:"unique keys";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}s:20:"revision_log_message";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:10:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:20:"Revision log message";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:11:"description";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:43:"Briefly describe the changes you have made.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:12:"revisionable";b:1;s:13:"default_value";a:1:{i:0;a:1:{s:5:"value";s:0:"";}}s:7:"display";a:1:{s:4:"form";a:1:{s:7:"options";a:1:{s:6:"region";s:6:"hidden";}}}s:8:"provider";s:17:"menu_link_content";s:10:"field_name";s:20:"revision_log_message";s:11:"entity_type";s:17:"menu_link_content";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:2:{s:4:"type";s:22:"field_item:string_long";s:8:"settings";a:1:{s:14:"case_sensitive";b:0;}}s:18:"\0*\0fieldDefinition";r:251;}s:7:"\0*\0type";s:11:"string_long";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:5:"value";a:2:{s:4:"type";s:4:"text";s:4:"size";s:3:"big";}}s:11:"unique keys";a:0:{}s:7:"indexes";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}s:7:"enabled";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:11:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:7:"Enabled";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:12:"revisionable";b:1;s:12:"translatable";b:0;s:13:"default_value";a:1:{i:0;a:1:{s:5:"value";b:1;}}s:11:"description";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:65:"A flag for whether the link should be enabled in menus or hidden.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:7:"display";a:2:{s:4:"view";a:1:{s:7:"options";a:3:{s:5:"label";s:6:"hidden";s:4:"type";s:7:"boolean";s:6:"weight";i:0;}}s:4:"form";a:1:{s:7:"options";a:2:{s:8:"settings";a:1:{s:13:"display_label";b:1;}s:6:"weight";i:-1;}}}s:8:"provider";s:17:"menu_link_content";s:10:"field_name";s:7:"enabled";s:11:"entity_type";s:17:"menu_link_content";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:2:{s:4:"type";s:18:"field_item:boolean";s:8:"settings";a:2:{s:8:"on_label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:2:"On";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:9:"off_label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:3:"Off";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}}}s:18:"\0*\0fieldDefinition";r:290;}s:7:"\0*\0type";s:7:"boolean";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:5:"value";a:2:{s:4:"type";s:3:"int";s:4:"size";s:4:"tiny";}}s:11:"unique keys";a:0:{}s:7:"indexes";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}s:5:"title";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:10:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:15:"Menu link title";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:8:"required";b:1;s:12:"translatable";b:1;s:12:"revisionable";b:1;s:7:"display";a:2:{s:4:"view";a:1:{s:7:"options";a:3:{s:5:"label";s:6:"hidden";s:4:"type";s:6:"string";s:6:"weight";i:-5;}}s:4:"form";a:2:{s:7:"options";a:2:{s:4:"type";s:16:"string_textfield";s:6:"weight";i:-5;}s:12:"configurable";b:1;}}s:8:"provider";s:17:"menu_link_content";s:10:"field_name";s:5:"title";s:11:"entity_type";s:17:"menu_link_content";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:2:{s:4:"type";s:17:"field_item:string";s:8:"settings";a:3:{s:10:"max_length";i:255;s:8:"is_ascii";b:0;s:14:"case_sensitive";b:0;}}s:18:"\0*\0fieldDefinition";r:344;}s:7:"\0*\0type";s:6:"string";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:5:"value";a:3:{s:4:"type";s:7:"varchar";s:6:"length";i:255;s:6:"binary";b:0;}}s:11:"unique keys";a:0:{}s:7:"indexes";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}s:11:"description";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:10:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:11:"Description";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:11:"description";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:39:"Shown when hovering over the menu link.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:12:"translatable";b:1;s:12:"revisionable";b:1;s:7:"display";a:2:{s:4:"view";a:1:{s:7:"options";a:3:{s:5:"label";s:6:"hidden";s:4:"type";s:6:"string";s:6:"weight";i:0;}}s:4:"form";a:1:{s:7:"options";a:2:{s:4:"type";s:16:"string_textfield";s:6:"weight";i:0;}}}s:8:"provider";s:17:"menu_link_content";s:10:"field_name";s:11:"description";s:11:"entity_type";s:17:"menu_link_content";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:2:{s:4:"type";s:17:"field_item:string";s:8:"settings";a:3:{s:10:"max_length";i:255;s:8:"is_ascii";b:0;s:14:"case_sensitive";b:0;}}s:18:"\0*\0fieldDefinition";r:388;}s:7:"\0*\0type";s:6:"string";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:5:"value";a:3:{s:4:"type";s:7:"varchar";s:6:"length";i:255;s:6:"binary";b:0;}}s:11:"unique keys";a:0:{}s:7:"indexes";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}s:9:"menu_name";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:8:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:9:"Menu name";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:11:"description";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:93:"The menu name. All links with the same menu name (such as "tools") are part of the same menu.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:13:"default_value";a:1:{i:0;a:1:{s:5:"value";s:5:"tools";}}s:8:"provider";s:17:"menu_link_content";s:10:"field_name";s:9:"menu_name";s:11:"entity_type";s:17:"menu_link_content";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:2:{s:4:"type";s:17:"field_item:string";s:8:"settings";a:3:{s:10:"max_length";i:255;s:8:"is_ascii";b:1;s:14:"case_sensitive";b:0;}}s:18:"\0*\0fieldDefinition";r:434;}s:7:"\0*\0type";s:6:"string";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:5:"value";a:3:{s:4:"type";s:13:"varchar_ascii";s:6:"length";i:255;s:6:"binary";b:0;}}s:11:"unique keys";a:0:{}s:7:"indexes";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}s:4:"link";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:9:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:4:"Link";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:12:"revisionable";b:1;s:8:"required";b:1;s:7:"display";a:1:{s:4:"form";a:1:{s:7:"options";a:2:{s:4:"type";s:12:"link_default";s:6:"weight";i:-2;}}}s:8:"provider";s:17:"menu_link_content";s:10:"field_name";s:4:"link";s:11:"entity_type";s:17:"menu_link_content";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:2:{s:4:"type";s:15:"field_item:link";s:8:"settings";a:2:{s:5:"title";i:0;s:9:"link_type";i:17;}}s:18:"\0*\0fieldDefinition";r:471;}s:7:"\0*\0type";s:4:"link";s:9:"\0*\0schema";a:4:{s:7:"columns";a:3:{s:3:"uri";a:3:{s:11:"description";s:20:"The URI of the link.";s:4:"type";s:7:"varchar";s:6:"length";i:2048;}s:5:"title";a:3:{s:11:"description";s:14:"The link text.";s:4:"type";s:7:"varchar";s:6:"length";i:255;}s:7:"options";a:4:{s:11:"description";s:41:"Serialized array of options for the link.";s:4:"type";s:4:"blob";s:4:"size";s:3:"big";s:9:"serialize";b:1;}}s:7:"indexes";a:1:{s:3:"uri";a:1:{i:0;a:2:{i:0;s:3:"uri";i:1;i:30;}}}s:11:"unique keys";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}s:8:"external";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:9:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:8:"External";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:11:"description";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:120:"A flag to indicate if the link points to a full URL starting with a protocol, like http:// (1 = external, 0 = internal).";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:13:"default_value";a:1:{i:0;a:1:{s:5:"value";b:0;}}s:12:"revisionable";b:1;s:8:"provider";s:17:"menu_link_content";s:10:"field_name";s:8:"external";s:11:"entity_type";s:17:"menu_link_content";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:2:{s:4:"type";s:18:"field_item:boolean";s:8:"settings";a:2:{s:8:"on_label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:2:"On";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:9:"off_label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:3:"Off";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}}}s:18:"\0*\0fieldDefinition";r:520;}s:7:"\0*\0type";s:7:"boolean";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:5:"value";a:2:{s:4:"type";s:3:"int";s:4:"size";s:4:"tiny";}}s:11:"unique keys";a:0:{}s:7:"indexes";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}s:10:"rediscover";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:7:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:54:"Indicates whether the menu link should be rediscovered";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:13:"default_value";a:1:{i:0;a:1:{s:5:"value";b:0;}}s:8:"provider";s:17:"menu_link_content";s:10:"field_name";s:10:"rediscover";s:11:"entity_type";s:17:"menu_link_content";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:2:{s:4:"type";s:18:"field_item:boolean";s:8:"settings";a:2:{s:8:"on_label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:2:"On";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:9:"off_label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:3:"Off";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}}}s:18:"\0*\0fieldDefinition";r:562;}s:7:"\0*\0type";s:7:"boolean";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:5:"value";a:2:{s:4:"type";s:3:"int";s:4:"size";s:4:"tiny";}}s:11:"unique keys";a:0:{}s:7:"indexes";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}s:6:"weight";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:9:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:6:"Weight";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:11:"description";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:172:"Link weight among links in the same menu at the same depth. In the menu, the links with high weight will sink and links with a low weight will be positioned nearer the top.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:13:"default_value";a:1:{i:0;a:1:{s:5:"value";i:0;}}s:7:"display";a:2:{s:4:"view";a:1:{s:7:"options";a:3:{s:5:"label";s:6:"hidden";s:4:"type";s:14:"number_integer";s:6:"weight";i:0;}}s:4:"form";a:1:{s:7:"options";a:2:{s:4:"type";s:6:"number";s:6:"weight";i:20;}}}s:8:"provider";s:17:"menu_link_content";s:10:"field_name";s:6:"weight";s:11:"entity_type";s:17:"menu_link_content";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:2:{s:4:"type";s:18:"field_item:integer";s:8:"settings";a:6:{s:8:"unsigned";b:0;s:4:"size";s:6:"normal";s:3:"min";s:0:"";s:3:"max";s:0:"";s:6:"prefix";s:0:"";s:6:"suffix";s:0:"";}}s:18:"\0*\0fieldDefinition";r:599;}s:7:"\0*\0type";s:7:"integer";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:5:"value";a:3:{s:4:"type";s:3:"int";s:8:"unsigned";b:0;s:4:"size";s:6:"normal";}}s:11:"unique keys";a:0:{}s:7:"indexes";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}s:8:"expanded";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:9:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:16:"Show as expanded";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:11:"description";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:164:"If selected and this menu link has children, the menu will always appear expanded. This option may be overridden for the entire menu tree when placing a menu block.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:13:"default_value";a:1:{i:0;a:1:{s:5:"value";b:0;}}s:7:"display";a:2:{s:4:"view";a:1:{s:7:"options";a:3:{s:5:"label";s:6:"hidden";s:4:"type";s:7:"boolean";s:6:"weight";i:0;}}s:4:"form";a:1:{s:7:"options";a:2:{s:8:"settings";a:1:{s:13:"display_label";b:1;}s:6:"weight";i:0;}}}s:8:"provider";s:17:"menu_link_content";s:10:"field_name";s:8:"expanded";s:11:"entity_type";s:17:"menu_link_content";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:2:{s:4:"type";s:18:"field_item:boolean";s:8:"settings";a:2:{s:8:"on_label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:2:"On";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:9:"off_label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:3:"Off";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}}}s:18:"\0*\0fieldDefinition";r:649;}s:7:"\0*\0type";s:7:"boolean";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:5:"value";a:2:{s:4:"type";s:3:"int";s:4:"size";s:4:"tiny";}}s:11:"unique keys";a:0:{}s:7:"indexes";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}s:6:"parent";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:7:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:16:"Parent plugin ID";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:11:"description";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:94:"The ID of the parent menu link plugin, or empty string when at the top level of the hierarchy.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:8:"provider";s:17:"menu_link_content";s:10:"field_name";s:6:"parent";s:11:"entity_type";s:17:"menu_link_content";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:2:{s:4:"type";s:17:"field_item:string";s:8:"settings";a:3:{s:10:"max_length";i:255;s:8:"is_ascii";b:0;s:14:"case_sensitive";b:0;}}s:18:"\0*\0fieldDefinition";r:701;}s:7:"\0*\0type";s:6:"string";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:5:"value";a:3:{s:4:"type";s:7:"varchar";s:6:"length";i:255;s:6:"binary";b:0;}}s:11:"unique keys";a:0:{}s:7:"indexes";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}s:7:"changed";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:9:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:7:"Changed";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:11:"description";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:44:"The time that the menu link was last edited.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:12:"translatable";b:1;s:12:"revisionable";b:1;s:8:"provider";s:17:"menu_link_content";s:10:"field_name";s:7:"changed";s:11:"entity_type";s:17:"menu_link_content";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:2:{s:4:"type";s:18:"field_item:changed";s:8:"settings";a:0:{}}s:18:"\0*\0fieldDefinition";r:735;}s:7:"\0*\0type";s:7:"changed";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:5:"value";a:1:{s:4:"type";s:3:"int";}}s:11:"unique keys";a:0:{}s:7:"indexes";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}s:16:"default_langcode";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:10:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:19:"Default translation";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:11:"description";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:58:"A flag indicating whether this is the default translation.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:12:"translatable";b:1;s:12:"revisionable";b:1;s:13:"default_value";a:1:{i:0;a:1:{s:5:"value";b:1;}}s:8:"provider";s:17:"menu_link_content";s:10:"field_name";s:16:"default_langcode";s:11:"entity_type";s:17:"menu_link_content";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:2:{s:4:"type";s:18:"field_item:boolean";s:8:"settings";a:2:{s:8:"on_label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:2:"On";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:9:"off_label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:3:"Off";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}}}s:18:"\0*\0fieldDefinition";r:766;}s:7:"\0*\0type";s:7:"boolean";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:5:"value";a:2:{s:4:"type";s:3:"int";s:4:"size";s:4:"tiny";}}s:11:"unique keys";a:0:{}s:7:"indexes";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}s:16:"revision_default";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:11:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:16:"Default revision";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:11:"description";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:72:"A flag indicating whether this was a default revision when it was saved.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:16:"storage_required";b:1;s:8:"internal";b:1;s:12:"translatable";b:0;s:12:"revisionable";b:1;s:8:"provider";s:17:"menu_link_content";s:10:"field_name";s:16:"revision_default";s:11:"entity_type";s:17:"menu_link_content";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:2:{s:4:"type";s:18:"field_item:boolean";s:8:"settings";a:2:{s:8:"on_label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:2:"On";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:9:"off_label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:3:"Off";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}}}s:18:"\0*\0fieldDefinition";r:809;}s:7:"\0*\0type";s:7:"boolean";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:5:"value";a:2:{s:4:"type";s:3:"int";s:4:"size";s:4:"tiny";}}s:11:"unique keys";a:0:{}s:7:"indexes";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}s:29:"revision_translation_affected";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:10:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:29:"Revision translation affected";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:11:"description";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:72:"Indicates if the last edit of a translation belongs to current revision.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:9:"read-only";b:1;s:12:"revisionable";b:1;s:12:"translatable";b:1;s:8:"provider";s:17:"menu_link_content";s:10:"field_name";s:29:"revision_translation_affected";s:11:"entity_type";s:17:"menu_link_content";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:2:{s:4:"type";s:18:"field_item:boolean";s:8:"settings";a:2:{s:8:"on_label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:2:"On";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:9:"off_label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:3:"Off";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}}}s:18:"\0*\0fieldDefinition";r:851;}s:7:"\0*\0type";s:7:"boolean";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:5:"value";a:2:{s:4:"type";s:3:"int";s:4:"size";s:4:"tiny";}}s:11:"unique keys";a:0:{}s:7:"indexes";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}}'), ('entity.definitions.installed', 'node.entity_type', 'O:36:"Drupal\\Core\\Entity\\ContentEntityType":42:{s:5:"\0*\0id";s:4:"node";s:8:"\0*\0class";s:23:"Drupal\\node\\Entity\\Node";s:11:"\0*\0provider";s:4:"node";s:15:"\0*\0static_cache";b:1;s:15:"\0*\0render_cache";b:1;s:19:"\0*\0persistent_cache";b:1;s:14:"\0*\0entity_keys";a:12:{s:2:"id";s:3:"nid";s:8:"revision";s:3:"vid";s:6:"bundle";s:4:"type";s:5:"label";s:5:"title";s:8:"langcode";s:8:"langcode";s:4:"uuid";s:4:"uuid";s:6:"status";s:6:"status";s:9:"published";s:6:"status";s:3:"uid";s:3:"uid";s:5:"owner";s:3:"uid";s:16:"default_langcode";s:16:"default_langcode";s:29:"revision_translation_affected";s:29:"revision_translation_affected";}s:16:"\0*\0originalClass";s:23:"Drupal\\node\\Entity\\Node";s:19:"\0*\0decoratedClasses";a:1:{i:0;s:23:"Drupal\\node\\Entity\\Node";}s:11:"\0*\0handlers";a:9:{s:7:"storage";s:23:"Drupal\\node\\NodeStorage";s:14:"storage_schema";s:29:"Drupal\\node\\NodeStorageSchema";s:12:"view_builder";s:27:"Drupal\\node\\NodeViewBuilder";s:6:"access";s:36:"Drupal\\node\\NodeAccessControlHandler";s:10:"views_data";s:25:"Drupal\\node\\NodeViewsData";s:4:"form";a:5:{s:7:"default";s:25:"Drupal\\node\\Form\\NodeForm";s:6:"delete";s:31:"Drupal\\node\\Form\\NodeDeleteForm";s:4:"edit";s:25:"Drupal\\node\\Form\\NodeForm";s:23:"delete-multiple-confirm";s:31:"Drupal\\node\\Form\\DeleteMultiple";s:14:"layout_builder";s:46:"Drupal\\layout_builder\\Form\\OverridesEntityForm";}s:14:"route_provider";a:1:{s:4:"html";s:36:"Drupal\\node\\Entity\\NodeRouteProvider";}s:12:"list_builder";s:27:"Drupal\\node\\NodeListBuilder";s:11:"translation";s:34:"Drupal\\node\\NodeTranslationHandler";}s:19:"\0*\0admin_permission";N;s:24:"\0*\0collection_permission";s:23:"access content overview";s:25:"\0*\0permission_granularity";s:6:"bundle";s:8:"\0*\0links";a:9:{s:9:"canonical";s:12:"/node/{node}";s:8:"add-page";s:9:"/node/add";s:8:"add-form";s:21:"/node/add/{node_type}";s:9:"edit-form";s:17:"/node/{node}/edit";s:11:"delete-form";s:19:"/node/{node}/delete";s:20:"delete-multiple-form";s:26:"/admin/content/node/delete";s:15:"version-history";s:22:"/node/{node}/revisions";s:8:"revision";s:43:"/node/{node}/revisions/{node_revision}/view";s:6:"create";s:5:"/node";}s:21:"\0*\0bundle_entity_type";s:9:"node_type";s:12:"\0*\0bundle_of";N;s:15:"\0*\0bundle_label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:12:"Content type";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:13:"\0*\0base_table";s:4:"node";s:22:"\0*\0revision_data_table";s:19:"node_field_revision";s:17:"\0*\0revision_table";s:13:"node_revision";s:13:"\0*\0data_table";s:15:"node_field_data";s:11:"\0*\0internal";b:0;s:15:"\0*\0translatable";b:1;s:19:"\0*\0show_revision_ui";b:1;s:8:"\0*\0label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:7:"Content";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:19:"\0*\0label_collection";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:7:"Content";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:17:"\0*\0label_singular";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:12:"content item";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:15:"\0*\0label_plural";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:13:"content items";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:14:"\0*\0label_count";a:2:{s:8:"singular";s:19:"@count content item";s:6:"plural";s:20:"@count content items";}s:15:"\0*\0uri_callback";N;s:8:"\0*\0group";s:7:"content";s:14:"\0*\0group_label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:7:"Content";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:1:{s:7:"context";s:17:"Entity type group";}}s:22:"\0*\0field_ui_base_route";s:26:"entity.node_type.edit_form";s:26:"\0*\0common_reference_target";b:1;s:22:"\0*\0list_cache_contexts";a:1:{i:0;s:21:"user.node_grants:view";}s:18:"\0*\0list_cache_tags";a:1:{i:0;s:9:"node_list";}s:14:"\0*\0constraints";a:3:{s:13:"EntityChanged";N;s:26:"EntityUntranslatableFields";N;s:12:"MenuSettings";a:0:{}}s:13:"\0*\0additional";a:0:{}s:14:"\0*\0_serviceIds";a:0:{}s:18:"\0*\0_entityStorages";a:0:{}s:20:"\0*\0stringTranslation";N;s:25:"\0*\0revision_metadata_keys";a:4:{s:13:"revision_user";s:12:"revision_uid";s:16:"revision_created";s:18:"revision_timestamp";s:20:"revision_log_message";s:12:"revision_log";s:16:"revision_default";s:16:"revision_default";}}'); INSERT INTO `[[dbprefix]]key_value` VALUES ('entity.definitions.installed', 'node.field_storage_definitions', 'a:18:{s:3:"nid";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:7:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:2:"ID";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:9:"read-only";b:1;s:8:"provider";s:4:"node";s:10:"field_name";s:3:"nid";s:11:"entity_type";s:4:"node";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:2:{s:4:"type";s:18:"field_item:integer";s:8:"settings";a:6:{s:8:"unsigned";b:1;s:4:"size";s:6:"normal";s:3:"min";s:0:"";s:3:"max";s:0:"";s:6:"prefix";s:0:"";s:6:"suffix";s:0:"";}}s:18:"\0*\0fieldDefinition";r:2;}s:7:"\0*\0type";s:7:"integer";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:5:"value";a:3:{s:4:"type";s:3:"int";s:8:"unsigned";b:1;s:4:"size";s:6:"normal";}}s:11:"unique keys";a:0:{}s:7:"indexes";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}s:4:"uuid";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:7:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:4:"UUID";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:9:"read-only";b:1;s:8:"provider";s:4:"node";s:10:"field_name";s:4:"uuid";s:11:"entity_type";s:4:"node";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:2:{s:4:"type";s:15:"field_item:uuid";s:8:"settings";a:3:{s:10:"max_length";i:128;s:8:"is_ascii";b:1;s:14:"case_sensitive";b:0;}}s:18:"\0*\0fieldDefinition";r:36;}s:7:"\0*\0type";s:4:"uuid";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:5:"value";a:3:{s:4:"type";s:13:"varchar_ascii";s:6:"length";i:128;s:6:"binary";b:0;}}s:11:"unique keys";a:1:{s:5:"value";a:1:{i:0;s:5:"value";}}s:7:"indexes";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}s:3:"vid";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:7:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:11:"Revision ID";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:9:"read-only";b:1;s:8:"provider";s:4:"node";s:10:"field_name";s:3:"vid";s:11:"entity_type";s:4:"node";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:2:{s:4:"type";s:18:"field_item:integer";s:8:"settings";a:6:{s:8:"unsigned";b:1;s:4:"size";s:6:"normal";s:3:"min";s:0:"";s:3:"max";s:0:"";s:6:"prefix";s:0:"";s:6:"suffix";s:0:"";}}s:18:"\0*\0fieldDefinition";r:69;}s:7:"\0*\0type";s:7:"integer";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:5:"value";a:3:{s:4:"type";s:3:"int";s:8:"unsigned";b:1;s:4:"size";s:6:"normal";}}s:11:"unique keys";a:0:{}s:7:"indexes";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}s:8:"langcode";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:9:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:8:"Language";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:7:"display";a:2:{s:4:"view";a:1:{s:7:"options";a:1:{s:6:"region";s:6:"hidden";}}s:4:"form";a:1:{s:7:"options";a:2:{s:4:"type";s:15:"language_select";s:6:"weight";i:2;}}}s:12:"revisionable";b:1;s:12:"translatable";b:1;s:8:"provider";s:4:"node";s:10:"field_name";s:8:"langcode";s:11:"entity_type";s:4:"node";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:2:{s:4:"type";s:19:"field_item:language";s:8:"settings";a:0:{}}s:18:"\0*\0fieldDefinition";r:103;}s:7:"\0*\0type";s:8:"language";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:5:"value";a:2:{s:4:"type";s:13:"varchar_ascii";s:6:"length";i:12;}}s:11:"unique keys";a:0:{}s:7:"indexes";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}s:4:"type";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:8:{s:5:"label";s:12:"Content type";s:8:"required";b:1;s:9:"read-only";b:1;s:8:"provider";s:4:"node";s:10:"field_name";s:4:"type";s:11:"entity_type";s:4:"node";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:2:{s:4:"type";s:27:"field_item:entity_reference";s:8:"settings";a:3:{s:11:"target_type";s:9:"node_type";s:7:"handler";s:7:"default";s:16:"handler_settings";a:0:{}}}s:18:"\0*\0fieldDefinition";r:139;}s:7:"\0*\0type";s:16:"entity_reference";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:9:"target_id";a:3:{s:11:"description";s:28:"The ID of the target entity.";s:4:"type";s:13:"varchar_ascii";s:6:"length";i:32;}}s:7:"indexes";a:1:{s:9:"target_id";a:1:{i:0;s:9:"target_id";}}s:11:"unique keys";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}s:18:"revision_timestamp";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:8:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:20:"Revision create time";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:11:"description";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:47:"The time that the current revision was created.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:12:"revisionable";b:1;s:8:"provider";s:4:"node";s:10:"field_name";s:18:"revision_timestamp";s:11:"entity_type";s:4:"node";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:2:{s:4:"type";s:18:"field_item:created";s:8:"settings";a:0:{}}s:18:"\0*\0fieldDefinition";r:170;}s:7:"\0*\0type";s:7:"created";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:5:"value";a:1:{s:4:"type";s:3:"int";}}s:11:"unique keys";a:0:{}s:7:"indexes";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}s:12:"revision_uid";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:8:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:13:"Revision user";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:11:"description";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:50:"The user ID of the author of the current revision.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:12:"revisionable";b:1;s:8:"provider";s:4:"node";s:10:"field_name";s:12:"revision_uid";s:11:"entity_type";s:4:"node";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:2:{s:4:"type";s:27:"field_item:entity_reference";s:8:"settings";a:3:{s:11:"target_type";s:4:"user";s:7:"handler";s:7:"default";s:16:"handler_settings";a:0:{}}}s:18:"\0*\0fieldDefinition";r:200;}s:7:"\0*\0type";s:16:"entity_reference";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:9:"target_id";a:3:{s:11:"description";s:28:"The ID of the target entity.";s:4:"type";s:3:"int";s:8:"unsigned";b:1;}}s:7:"indexes";a:1:{s:9:"target_id";a:1:{i:0;s:9:"target_id";}}s:11:"unique keys";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}s:12:"revision_log";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:10:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:20:"Revision log message";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:11:"description";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:43:"Briefly describe the changes you have made.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:12:"revisionable";b:1;s:13:"default_value";a:1:{i:0;a:1:{s:5:"value";s:0:"";}}s:7:"display";a:1:{s:4:"form";a:1:{s:7:"options";a:3:{s:4:"type";s:15:"string_textarea";s:6:"weight";i:25;s:8:"settings";a:1:{s:4:"rows";i:4;}}}}s:8:"provider";s:4:"node";s:10:"field_name";s:12:"revision_log";s:11:"entity_type";s:4:"node";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:2:{s:4:"type";s:22:"field_item:string_long";s:8:"settings";a:1:{s:14:"case_sensitive";b:0;}}s:18:"\0*\0fieldDefinition";r:237;}s:7:"\0*\0type";s:11:"string_long";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:5:"value";a:2:{s:4:"type";s:4:"text";s:4:"size";s:3:"big";}}s:11:"unique keys";a:0:{}s:7:"indexes";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}s:6:"status";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:10:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:9:"Published";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:12:"revisionable";b:1;s:12:"translatable";b:1;s:13:"default_value";a:1:{i:0;a:1:{s:5:"value";b:1;}}s:7:"display";a:1:{s:4:"form";a:2:{s:7:"options";a:3:{s:4:"type";s:16:"boolean_checkbox";s:8:"settings";a:1:{s:13:"display_label";b:1;}s:6:"weight";i:120;}s:12:"configurable";b:1;}}s:8:"provider";s:4:"node";s:10:"field_name";s:6:"status";s:11:"entity_type";s:4:"node";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:2:{s:4:"type";s:18:"field_item:boolean";s:8:"settings";a:2:{s:8:"on_label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:2:"On";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:9:"off_label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:3:"Off";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}}}s:18:"\0*\0fieldDefinition";r:279;}s:7:"\0*\0type";s:7:"boolean";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:5:"value";a:2:{s:4:"type";s:3:"int";s:4:"size";s:4:"tiny";}}s:11:"unique keys";a:0:{}s:7:"indexes";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}s:3:"uid";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:11:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:11:"Authored by";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:12:"translatable";b:1;s:22:"default_value_callback";s:46:"Drupal\\node\\Entity\\Node::getDefaultEntityOwner";s:11:"description";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:35:"The username of the content author.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:12:"revisionable";b:1;s:7:"display";a:2:{s:4:"view";a:1:{s:7:"options";a:3:{s:5:"label";s:6:"hidden";s:4:"type";s:6:"author";s:6:"weight";i:0;}}s:4:"form";a:2:{s:7:"options";a:3:{s:4:"type";s:29:"entity_reference_autocomplete";s:6:"weight";i:5;s:8:"settings";a:3:{s:14:"match_operator";s:8:"CONTAINS";s:4:"size";s:2:"60";s:11:"placeholder";s:0:"";}}s:12:"configurable";b:1;}}s:8:"provider";s:4:"node";s:10:"field_name";s:3:"uid";s:11:"entity_type";s:4:"node";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:2:{s:4:"type";s:27:"field_item:entity_reference";s:8:"settings";a:3:{s:11:"target_type";s:4:"user";s:7:"handler";s:7:"default";s:16:"handler_settings";a:0:{}}}s:18:"\0*\0fieldDefinition";r:326;}s:7:"\0*\0type";s:16:"entity_reference";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:9:"target_id";a:3:{s:11:"description";s:28:"The ID of the target entity.";s:4:"type";s:3:"int";s:8:"unsigned";b:1;}}s:7:"indexes";a:1:{s:9:"target_id";a:1:{i:0;s:9:"target_id";}}s:11:"unique keys";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}s:5:"title";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:10:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:5:"Title";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:8:"required";b:1;s:12:"translatable";b:1;s:12:"revisionable";b:1;s:7:"display";a:2:{s:4:"view";a:1:{s:7:"options";a:3:{s:5:"label";s:6:"hidden";s:4:"type";s:6:"string";s:6:"weight";i:-5;}}s:4:"form";a:2:{s:7:"options";a:2:{s:4:"type";s:16:"string_textfield";s:6:"weight";i:-5;}s:12:"configurable";b:1;}}s:8:"provider";s:4:"node";s:10:"field_name";s:5:"title";s:11:"entity_type";s:4:"node";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:2:{s:4:"type";s:17:"field_item:string";s:8:"settings";a:3:{s:10:"max_length";i:255;s:8:"is_ascii";b:0;s:14:"case_sensitive";b:0;}}s:18:"\0*\0fieldDefinition";r:380;}s:7:"\0*\0type";s:6:"string";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:5:"value";a:3:{s:4:"type";s:7:"varchar";s:6:"length";i:255;s:6:"binary";b:0;}}s:11:"unique keys";a:0:{}s:7:"indexes";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}s:7:"created";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:10:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:11:"Authored on";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:11:"description";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:47:"The date and time that the content was created.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:12:"revisionable";b:1;s:12:"translatable";b:1;s:7:"display";a:2:{s:4:"view";a:1:{s:7:"options";a:3:{s:5:"label";s:6:"hidden";s:4:"type";s:9:"timestamp";s:6:"weight";i:0;}}s:4:"form";a:2:{s:7:"options";a:2:{s:4:"type";s:18:"datetime_timestamp";s:6:"weight";i:10;}s:12:"configurable";b:1;}}s:8:"provider";s:4:"node";s:10:"field_name";s:7:"created";s:11:"entity_type";s:4:"node";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:2:{s:4:"type";s:18:"field_item:created";s:8:"settings";a:0:{}}s:18:"\0*\0fieldDefinition";r:424;}s:7:"\0*\0type";s:7:"created";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:5:"value";a:1:{s:4:"type";s:3:"int";}}s:11:"unique keys";a:0:{}s:7:"indexes";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}s:7:"changed";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:9:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:7:"Changed";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:11:"description";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:39:"The time that the node was last edited.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:12:"revisionable";b:1;s:12:"translatable";b:1;s:8:"provider";s:4:"node";s:10:"field_name";s:7:"changed";s:11:"entity_type";s:4:"node";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:2:{s:4:"type";s:18:"field_item:changed";s:8:"settings";a:0:{}}s:18:"\0*\0fieldDefinition";r:466;}s:7:"\0*\0type";s:7:"changed";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:5:"value";a:1:{s:4:"type";s:3:"int";}}s:11:"unique keys";a:0:{}s:7:"indexes";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}s:7:"promote";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:10:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:22:"Promoted to front page";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:12:"revisionable";b:1;s:12:"translatable";b:1;s:13:"default_value";a:1:{i:0;a:1:{s:5:"value";b:0;}}s:7:"display";a:1:{s:4:"form";a:2:{s:7:"options";a:1:{s:6:"region";s:6:"hidden";}s:12:"configurable";b:1;}}s:8:"provider";s:4:"node";s:10:"field_name";s:7:"promote";s:11:"entity_type";s:4:"node";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:2:{s:4:"type";s:18:"field_item:boolean";s:8:"settings";a:2:{s:8:"on_label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:2:"On";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:9:"off_label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:3:"Off";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}}}s:18:"\0*\0fieldDefinition";r:497;}s:7:"\0*\0type";s:7:"boolean";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:5:"value";a:2:{s:4:"type";s:3:"int";s:4:"size";s:4:"tiny";}}s:11:"unique keys";a:0:{}s:7:"indexes";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}s:6:"sticky";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:10:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:22:"Sticky at top of lists";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:12:"revisionable";b:1;s:12:"translatable";b:1;s:13:"default_value";a:1:{i:0;a:1:{s:5:"value";b:0;}}s:7:"display";a:1:{s:4:"form";a:2:{s:7:"options";a:1:{s:6:"region";s:6:"hidden";}s:12:"configurable";b:1;}}s:8:"provider";s:4:"node";s:10:"field_name";s:6:"sticky";s:11:"entity_type";s:4:"node";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:2:{s:4:"type";s:18:"field_item:boolean";s:8:"settings";a:2:{s:8:"on_label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:2:"On";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:9:"off_label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:3:"Off";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}}}s:18:"\0*\0fieldDefinition";r:541;}s:7:"\0*\0type";s:7:"boolean";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:5:"value";a:2:{s:4:"type";s:3:"int";s:4:"size";s:4:"tiny";}}s:11:"unique keys";a:0:{}s:7:"indexes";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}s:16:"default_langcode";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:10:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:19:"Default translation";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:11:"description";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:58:"A flag indicating whether this is the default translation.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:12:"translatable";b:1;s:12:"revisionable";b:1;s:13:"default_value";a:1:{i:0;a:1:{s:5:"value";b:1;}}s:8:"provider";s:4:"node";s:10:"field_name";s:16:"default_langcode";s:11:"entity_type";s:4:"node";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:2:{s:4:"type";s:18:"field_item:boolean";s:8:"settings";a:2:{s:8:"on_label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:2:"On";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:9:"off_label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:3:"Off";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}}}s:18:"\0*\0fieldDefinition";r:585;}s:7:"\0*\0type";s:7:"boolean";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:5:"value";a:2:{s:4:"type";s:3:"int";s:4:"size";s:4:"tiny";}}s:11:"unique keys";a:0:{}s:7:"indexes";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}s:16:"revision_default";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:11:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:16:"Default revision";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:11:"description";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:72:"A flag indicating whether this was a default revision when it was saved.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:16:"storage_required";b:1;s:8:"internal";b:1;s:12:"translatable";b:0;s:12:"revisionable";b:1;s:8:"provider";s:4:"node";s:10:"field_name";s:16:"revision_default";s:11:"entity_type";s:4:"node";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:2:{s:4:"type";s:18:"field_item:boolean";s:8:"settings";a:2:{s:8:"on_label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:2:"On";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:9:"off_label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:3:"Off";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}}}s:18:"\0*\0fieldDefinition";r:628;}s:7:"\0*\0type";s:7:"boolean";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:5:"value";a:2:{s:4:"type";s:3:"int";s:4:"size";s:4:"tiny";}}s:11:"unique keys";a:0:{}s:7:"indexes";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}s:29:"revision_translation_affected";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:10:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:29:"Revision translation affected";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:11:"description";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:72:"Indicates if the last edit of a translation belongs to current revision.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:9:"read-only";b:1;s:12:"revisionable";b:1;s:12:"translatable";b:1;s:8:"provider";s:4:"node";s:10:"field_name";s:29:"revision_translation_affected";s:11:"entity_type";s:4:"node";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:2:{s:4:"type";s:18:"field_item:boolean";s:8:"settings";a:2:{s:8:"on_label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:2:"On";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:9:"off_label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:3:"Off";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}}}s:18:"\0*\0fieldDefinition";r:670;}s:7:"\0*\0type";s:7:"boolean";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:5:"value";a:2:{s:4:"type";s:3:"int";s:4:"size";s:4:"tiny";}}s:11:"unique keys";a:0:{}s:7:"indexes";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}}'), ('entity.definitions.installed', 'node_type.entity_type', 'O:42:"Drupal\\Core\\Config\\Entity\\ConfigEntityType":45:{s:5:"\0*\0id";s:9:"node_type";s:8:"\0*\0class";s:27:"Drupal\\node\\Entity\\NodeType";s:11:"\0*\0provider";s:4:"node";s:15:"\0*\0static_cache";b:0;s:15:"\0*\0render_cache";b:1;s:19:"\0*\0persistent_cache";b:1;s:14:"\0*\0entity_keys";a:8:{s:2:"id";s:4:"type";s:5:"label";s:4:"name";s:8:"revision";s:0:"";s:6:"bundle";s:0:"";s:8:"langcode";s:8:"langcode";s:16:"default_langcode";s:16:"default_langcode";s:29:"revision_translation_affected";s:29:"revision_translation_affected";s:4:"uuid";s:4:"uuid";}s:16:"\0*\0originalClass";s:27:"Drupal\\node\\Entity\\NodeType";s:19:"\0*\0decoratedClasses";a:1:{i:0;s:27:"Drupal\\node\\Entity\\NodeType";}s:11:"\0*\0handlers";a:5:{s:6:"access";s:40:"Drupal\\node\\NodeTypeAccessControlHandler";s:4:"form";a:3:{s:3:"add";s:29:"Drupal\\node\\Form\\NodeTypeForm";s:4:"edit";s:29:"Drupal\\node\\Form\\NodeTypeForm";s:6:"delete";s:38:"Drupal\\node\\Form\\NodeTypeDeleteConfirm";}s:14:"route_provider";a:1:{s:11:"permissions";s:49:"Drupal\\user\\Entity\\EntityPermissionsRouteProvider";}s:12:"list_builder";s:31:"Drupal\\node\\NodeTypeListBuilder";s:7:"storage";s:45:"Drupal\\Core\\Config\\Entity\\ConfigEntityStorage";}s:19:"\0*\0admin_permission";s:24:"administer content types";s:24:"\0*\0collection_permission";N;s:25:"\0*\0permission_granularity";s:11:"entity_type";s:8:"\0*\0links";a:4:{s:9:"edit-form";s:41:"/admin/structure/types/manage/{node_type}";s:11:"delete-form";s:48:"/admin/structure/types/manage/{node_type}/delete";s:23:"entity-permissions-form";s:53:"/admin/structure/types/manage/{node_type}/permissions";s:10:"collection";s:22:"/admin/structure/types";}s:21:"\0*\0bundle_entity_type";N;s:12:"\0*\0bundle_of";s:4:"node";s:15:"\0*\0bundle_label";N;s:13:"\0*\0base_table";N;s:22:"\0*\0revision_data_table";N;s:17:"\0*\0revision_table";N;s:13:"\0*\0data_table";N;s:11:"\0*\0internal";b:0;s:15:"\0*\0translatable";b:0;s:19:"\0*\0show_revision_ui";b:0;s:8:"\0*\0label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:12:"Content type";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:19:"\0*\0label_collection";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:13:"Content types";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:17:"\0*\0label_singular";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:12:"content type";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:15:"\0*\0label_plural";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:13:"content types";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:14:"\0*\0label_count";a:2:{s:8:"singular";s:19:"@count content type";s:6:"plural";s:20:"@count content types";}s:15:"\0*\0uri_callback";N;s:8:"\0*\0group";s:13:"configuration";s:14:"\0*\0group_label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:13:"Configuration";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:1:{s:7:"context";s:17:"Entity type group";}}s:22:"\0*\0field_ui_base_route";N;s:26:"\0*\0common_reference_target";b:0;s:22:"\0*\0list_cache_contexts";a:0:{}s:18:"\0*\0list_cache_tags";a:1:{i:0;s:21:"config:node_type_list";}s:14:"\0*\0constraints";a:0:{}s:13:"\0*\0additional";a:0:{}s:14:"\0*\0_serviceIds";a:0:{}s:18:"\0*\0_entityStorages";a:0:{}s:20:"\0*\0stringTranslation";N;s:16:"\0*\0config_prefix";s:4:"type";s:14:"\0*\0lookup_keys";a:1:{i:0;s:4:"uuid";}s:16:"\0*\0config_export";a:7:{i:0;s:4:"name";i:1;s:4:"type";i:2;s:11:"description";i:3;s:4:"help";i:4;s:12:"new_revision";i:5;s:12:"preview_mode";i:6;s:17:"display_submitted";}s:21:"\0*\0mergedConfigExport";a:0:{}}'), ('entity.definitions.installed', 'path_alias.entity_type', 'O:36:"Drupal\\Core\\Entity\\ContentEntityType":42:{s:5:"\0*\0id";s:10:"path_alias";s:8:"\0*\0class";s:34:"Drupal\\path_alias\\Entity\\PathAlias";s:11:"\0*\0provider";s:10:"path_alias";s:15:"\0*\0static_cache";b:1;s:15:"\0*\0render_cache";b:1;s:19:"\0*\0persistent_cache";b:1;s:14:"\0*\0entity_keys";a:8:{s:2:"id";s:2:"id";s:8:"revision";s:11:"revision_id";s:8:"langcode";s:8:"langcode";s:4:"uuid";s:4:"uuid";s:9:"published";s:6:"status";s:6:"bundle";s:0:"";s:16:"default_langcode";s:16:"default_langcode";s:29:"revision_translation_affected";s:29:"revision_translation_affected";}s:16:"\0*\0originalClass";s:34:"Drupal\\path_alias\\Entity\\PathAlias";s:19:"\0*\0decoratedClasses";a:1:{i:0;s:34:"Drupal\\path_alias\\Entity\\PathAlias";}s:11:"\0*\0handlers";a:4:{s:7:"storage";s:34:"Drupal\\path_alias\\PathAliasStorage";s:14:"storage_schema";s:40:"Drupal\\path_alias\\PathAliasStorageSchema";s:6:"access";s:45:"Drupal\\Core\\Entity\\EntityAccessControlHandler";s:12:"view_builder";s:36:"Drupal\\Core\\Entity\\EntityViewBuilder";}s:19:"\0*\0admin_permission";s:22:"administer url aliases";s:24:"\0*\0collection_permission";N;s:25:"\0*\0permission_granularity";s:11:"entity_type";s:8:"\0*\0links";a:0:{}s:21:"\0*\0bundle_entity_type";N;s:12:"\0*\0bundle_of";N;s:15:"\0*\0bundle_label";N;s:13:"\0*\0base_table";s:10:"path_alias";s:22:"\0*\0revision_data_table";N;s:17:"\0*\0revision_table";s:19:"path_alias_revision";s:13:"\0*\0data_table";N;s:11:"\0*\0internal";b:0;s:15:"\0*\0translatable";b:0;s:19:"\0*\0show_revision_ui";b:0;s:8:"\0*\0label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:9:"URL alias";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:19:"\0*\0label_collection";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:11:"URL aliases";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:17:"\0*\0label_singular";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:9:"URL alias";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:15:"\0*\0label_plural";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:11:"URL aliases";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:14:"\0*\0label_count";a:2:{s:8:"singular";s:16:"@count URL alias";s:6:"plural";s:18:"@count URL aliases";}s:15:"\0*\0uri_callback";N;s:8:"\0*\0group";s:7:"content";s:14:"\0*\0group_label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:7:"Content";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:1:{s:7:"context";s:17:"Entity type group";}}s:22:"\0*\0field_ui_base_route";N;s:26:"\0*\0common_reference_target";b:0;s:22:"\0*\0list_cache_contexts";a:0:{}s:18:"\0*\0list_cache_tags";a:1:{i:0;s:11:"route_match";}s:14:"\0*\0constraints";a:2:{s:15:"UniquePathAlias";a:0:{}s:26:"EntityUntranslatableFields";N;}s:13:"\0*\0additional";a:0:{}s:14:"\0*\0_serviceIds";a:0:{}s:18:"\0*\0_entityStorages";a:0:{}s:20:"\0*\0stringTranslation";N;s:25:"\0*\0revision_metadata_keys";a:1:{s:16:"revision_default";s:16:"revision_default";}}'), ('entity.definitions.installed', 'path_alias.field_storage_definitions', 'a:8:{s:2:"id";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:7:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:2:"ID";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:9:"read-only";b:1;s:8:"provider";s:10:"path_alias";s:10:"field_name";s:2:"id";s:11:"entity_type";s:10:"path_alias";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:2:{s:4:"type";s:18:"field_item:integer";s:8:"settings";a:6:{s:8:"unsigned";b:1;s:4:"size";s:6:"normal";s:3:"min";s:0:"";s:3:"max";s:0:"";s:6:"prefix";s:0:"";s:6:"suffix";s:0:"";}}s:18:"\0*\0fieldDefinition";r:2;}s:7:"\0*\0type";s:7:"integer";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:5:"value";a:3:{s:4:"type";s:3:"int";s:8:"unsigned";b:1;s:4:"size";s:6:"normal";}}s:11:"unique keys";a:0:{}s:7:"indexes";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}s:4:"uuid";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:7:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:4:"UUID";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:9:"read-only";b:1;s:8:"provider";s:10:"path_alias";s:10:"field_name";s:4:"uuid";s:11:"entity_type";s:10:"path_alias";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:2:{s:4:"type";s:15:"field_item:uuid";s:8:"settings";a:3:{s:10:"max_length";i:128;s:8:"is_ascii";b:1;s:14:"case_sensitive";b:0;}}s:18:"\0*\0fieldDefinition";r:36;}s:7:"\0*\0type";s:4:"uuid";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:5:"value";a:3:{s:4:"type";s:13:"varchar_ascii";s:6:"length";i:128;s:6:"binary";b:0;}}s:11:"unique keys";a:1:{s:5:"value";a:1:{i:0;s:5:"value";}}s:7:"indexes";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}s:11:"revision_id";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:7:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:11:"Revision ID";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:9:"read-only";b:1;s:8:"provider";s:10:"path_alias";s:10:"field_name";s:11:"revision_id";s:11:"entity_type";s:10:"path_alias";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:2:{s:4:"type";s:18:"field_item:integer";s:8:"settings";a:6:{s:8:"unsigned";b:1;s:4:"size";s:6:"normal";s:3:"min";s:0:"";s:3:"max";s:0:"";s:6:"prefix";s:0:"";s:6:"suffix";s:0:"";}}s:18:"\0*\0fieldDefinition";r:69;}s:7:"\0*\0type";s:7:"integer";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:5:"value";a:3:{s:4:"type";s:3:"int";s:8:"unsigned";b:1;s:4:"size";s:6:"normal";}}s:11:"unique keys";a:0:{}s:7:"indexes";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}s:8:"langcode";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:9:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:8:"Language";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:7:"display";a:2:{s:4:"view";a:1:{s:7:"options";a:1:{s:6:"region";s:6:"hidden";}}s:4:"form";a:1:{s:7:"options";a:2:{s:4:"type";s:15:"language_select";s:6:"weight";i:2;}}}s:12:"revisionable";b:1;s:13:"default_value";a:1:{i:0;a:1:{s:5:"value";s:3:"und";}}s:8:"provider";s:10:"path_alias";s:10:"field_name";s:8:"langcode";s:11:"entity_type";s:10:"path_alias";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:2:{s:4:"type";s:19:"field_item:language";s:8:"settings";a:0:{}}s:18:"\0*\0fieldDefinition";r:103;}s:7:"\0*\0type";s:8:"language";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:5:"value";a:2:{s:4:"type";s:13:"varchar_ascii";s:6:"length";i:12;}}s:11:"unique keys";a:0:{}s:7:"indexes";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}s:4:"path";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:9:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:11:"System path";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:11:"description";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:36:"The path that this alias belongs to.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:8:"required";b:1;s:12:"revisionable";b:1;s:8:"provider";s:10:"path_alias";s:10:"field_name";s:4:"path";s:11:"entity_type";s:10:"path_alias";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:3:{s:4:"type";s:17:"field_item:string";s:8:"settings";a:3:{s:10:"max_length";i:255;s:8:"is_ascii";b:0;s:14:"case_sensitive";b:0;}s:11:"constraints";a:1:{s:11:"ComplexData";a:1:{s:10:"properties";a:1:{s:5:"value";a:2:{s:9:"ValidPath";a:0:{}s:5:"Regex";a:2:{s:7:"pattern";s:6:"/^\\//i";s:7:"message";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:42:"The source path has to start with a slash.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}}}}}}}s:18:"\0*\0fieldDefinition";r:141;}s:7:"\0*\0type";s:6:"string";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:5:"value";a:3:{s:4:"type";s:7:"varchar";s:6:"length";i:255;s:6:"binary";b:0;}}s:11:"unique keys";a:0:{}s:7:"indexes";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}s:5:"alias";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:9:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:9:"URL alias";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:11:"description";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:29:"An alias used with this path.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:8:"required";b:1;s:12:"revisionable";b:1;s:8:"provider";s:10:"path_alias";s:10:"field_name";s:5:"alias";s:11:"entity_type";s:10:"path_alias";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:3:{s:4:"type";s:17:"field_item:string";s:8:"settings";a:3:{s:10:"max_length";i:255;s:8:"is_ascii";b:0;s:14:"case_sensitive";b:0;}s:11:"constraints";a:1:{s:11:"ComplexData";a:1:{s:10:"properties";a:1:{s:5:"value";a:1:{s:5:"Regex";a:2:{s:7:"pattern";s:6:"/^\\//i";s:7:"message";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:41:"The alias path has to start with a slash.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}}}}}}}s:18:"\0*\0fieldDefinition";r:188;}s:7:"\0*\0type";s:6:"string";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:5:"value";a:3:{s:4:"type";s:7:"varchar";s:6:"length";i:255;s:6:"binary";b:0;}}s:11:"unique keys";a:0:{}s:7:"indexes";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}s:6:"status";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:9:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:9:"Published";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:12:"revisionable";b:1;s:12:"translatable";b:0;s:13:"default_value";a:1:{i:0;a:1:{s:5:"value";b:1;}}s:8:"provider";s:10:"path_alias";s:10:"field_name";s:6:"status";s:11:"entity_type";s:10:"path_alias";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:2:{s:4:"type";s:18:"field_item:boolean";s:8:"settings";a:2:{s:8:"on_label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:2:"On";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:9:"off_label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:3:"Off";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}}}s:18:"\0*\0fieldDefinition";r:234;}s:7:"\0*\0type";s:7:"boolean";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:5:"value";a:2:{s:4:"type";s:3:"int";s:4:"size";s:4:"tiny";}}s:11:"unique keys";a:0:{}s:7:"indexes";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}s:16:"revision_default";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:11:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:16:"Default revision";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:11:"description";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:72:"A flag indicating whether this was a default revision when it was saved.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:16:"storage_required";b:1;s:8:"internal";b:1;s:12:"translatable";b:0;s:12:"revisionable";b:1;s:8:"provider";s:10:"path_alias";s:10:"field_name";s:16:"revision_default";s:11:"entity_type";s:10:"path_alias";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:2:{s:4:"type";s:18:"field_item:boolean";s:8:"settings";a:2:{s:8:"on_label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:2:"On";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:9:"off_label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:3:"Off";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}}}s:18:"\0*\0fieldDefinition";r:273;}s:7:"\0*\0type";s:7:"boolean";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:5:"value";a:2:{s:4:"type";s:3:"int";s:4:"size";s:4:"tiny";}}s:11:"unique keys";a:0:{}s:7:"indexes";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}}'), ('entity.definitions.installed', 'taxonomy_term.entity_type', 'O:36:"Drupal\\Core\\Entity\\ContentEntityType":42:{s:5:"\0*\0id";s:13:"taxonomy_term";s:8:"\0*\0class";s:27:"Drupal\\taxonomy\\Entity\\Term";s:11:"\0*\0provider";s:8:"taxonomy";s:15:"\0*\0static_cache";b:1;s:15:"\0*\0render_cache";b:1;s:19:"\0*\0persistent_cache";b:1;s:14:"\0*\0entity_keys";a:9:{s:2:"id";s:3:"tid";s:8:"revision";s:11:"revision_id";s:6:"bundle";s:3:"vid";s:5:"label";s:4:"name";s:8:"langcode";s:8:"langcode";s:4:"uuid";s:4:"uuid";s:9:"published";s:6:"status";s:16:"default_langcode";s:16:"default_langcode";s:29:"revision_translation_affected";s:29:"revision_translation_affected";}s:16:"\0*\0originalClass";s:27:"Drupal\\taxonomy\\Entity\\Term";s:19:"\0*\0decoratedClasses";a:1:{i:0;s:27:"Drupal\\taxonomy\\Entity\\Term";}s:11:"\0*\0handlers";a:9:{s:7:"storage";s:27:"Drupal\\taxonomy\\TermStorage";s:14:"storage_schema";s:33:"Drupal\\taxonomy\\TermStorageSchema";s:12:"view_builder";s:36:"Drupal\\Core\\Entity\\EntityViewBuilder";s:12:"list_builder";s:36:"Drupal\\Core\\Entity\\EntityListBuilder";s:6:"access";s:40:"Drupal\\taxonomy\\TermAccessControlHandler";s:10:"views_data";s:29:"Drupal\\taxonomy\\TermViewsData";s:4:"form";a:5:{s:7:"default";s:24:"Drupal\\taxonomy\\TermForm";s:6:"delete";s:35:"Drupal\\taxonomy\\Form\\TermDeleteForm";s:15:"revision-delete";s:42:"Drupal\\Core\\Entity\\Form\\RevisionDeleteForm";s:15:"revision-revert";s:42:"Drupal\\Core\\Entity\\Form\\RevisionRevertForm";s:14:"layout_builder";s:46:"Drupal\\layout_builder\\Form\\OverridesEntityForm";}s:14:"route_provider";a:1:{s:8:"revision";s:52:"Drupal\\Core\\Entity\\Routing\\RevisionHtmlRouteProvider";}s:11:"translation";s:38:"Drupal\\taxonomy\\TermTranslationHandler";}s:19:"\0*\0admin_permission";N;s:24:"\0*\0collection_permission";s:24:"access taxonomy overview";s:25:"\0*\0permission_granularity";s:6:"bundle";s:8:"\0*\0links";a:8:{s:9:"canonical";s:30:"/taxonomy/term/{taxonomy_term}";s:11:"delete-form";s:37:"/taxonomy/term/{taxonomy_term}/delete";s:9:"edit-form";s:35:"/taxonomy/term/{taxonomy_term}/edit";s:6:"create";s:14:"/taxonomy/term";s:8:"revision";s:69:"/taxonomy/term/{taxonomy_term}/revision/{taxonomy_term_revision}/view";s:20:"revision-delete-form";s:71:"/taxonomy/term/{taxonomy_term}/revision/{taxonomy_term_revision}/delete";s:20:"revision-revert-form";s:71:"/taxonomy/term/{taxonomy_term}/revision/{taxonomy_term_revision}/revert";s:15:"version-history";s:40:"/taxonomy/term/{taxonomy_term}/revisions";}s:21:"\0*\0bundle_entity_type";s:19:"taxonomy_vocabulary";s:12:"\0*\0bundle_of";N;s:15:"\0*\0bundle_label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:10:"Vocabulary";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:13:"\0*\0base_table";s:18:"taxonomy_term_data";s:22:"\0*\0revision_data_table";s:28:"taxonomy_term_field_revision";s:17:"\0*\0revision_table";s:22:"taxonomy_term_revision";s:13:"\0*\0data_table";s:24:"taxonomy_term_field_data";s:11:"\0*\0internal";b:0;s:15:"\0*\0translatable";b:1;s:19:"\0*\0show_revision_ui";b:1;s:8:"\0*\0label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:13:"Taxonomy term";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:19:"\0*\0label_collection";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:14:"Taxonomy terms";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:17:"\0*\0label_singular";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:13:"taxonomy term";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:15:"\0*\0label_plural";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:14:"taxonomy terms";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:14:"\0*\0label_count";a:2:{s:8:"singular";s:20:"@count taxonomy term";s:6:"plural";s:21:"@count taxonomy terms";}s:15:"\0*\0uri_callback";N;s:8:"\0*\0group";s:7:"content";s:14:"\0*\0group_label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:7:"Content";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:1:{s:7:"context";s:17:"Entity type group";}}s:22:"\0*\0field_ui_base_route";s:40:"entity.taxonomy_vocabulary.overview_form";s:26:"\0*\0common_reference_target";b:1;s:22:"\0*\0list_cache_contexts";a:0:{}s:18:"\0*\0list_cache_tags";a:1:{i:0;s:18:"taxonomy_term_list";}s:14:"\0*\0constraints";a:3:{s:17:"TaxonomyHierarchy";a:0:{}s:13:"EntityChanged";N;s:26:"EntityUntranslatableFields";N;}s:13:"\0*\0additional";a:0:{}s:14:"\0*\0_serviceIds";a:0:{}s:18:"\0*\0_entityStorages";a:0:{}s:20:"\0*\0stringTranslation";N;s:25:"\0*\0revision_metadata_keys";a:4:{s:13:"revision_user";s:13:"revision_user";s:16:"revision_created";s:16:"revision_created";s:20:"revision_log_message";s:20:"revision_log_message";s:16:"revision_default";s:16:"revision_default";}}'); INSERT INTO `[[dbprefix]]key_value` VALUES ('entity.definitions.installed', 'taxonomy_term.field_storage_definitions', 'a:17:{s:3:"tid";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:8:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:7:"Term ID";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:9:"read-only";b:1;s:11:"description";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:12:"The term ID.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:8:"provider";s:8:"taxonomy";s:10:"field_name";s:3:"tid";s:11:"entity_type";s:13:"taxonomy_term";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:2:{s:4:"type";s:18:"field_item:integer";s:8:"settings";a:6:{s:8:"unsigned";b:1;s:4:"size";s:6:"normal";s:3:"min";s:0:"";s:3:"max";s:0:"";s:6:"prefix";s:0:"";s:6:"suffix";s:0:"";}}s:18:"\0*\0fieldDefinition";r:2;}s:7:"\0*\0type";s:7:"integer";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:5:"value";a:3:{s:4:"type";s:3:"int";s:8:"unsigned";b:1;s:4:"size";s:6:"normal";}}s:11:"unique keys";a:0:{}s:7:"indexes";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}s:4:"uuid";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:8:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:4:"UUID";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:9:"read-only";b:1;s:11:"description";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:14:"The term UUID.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:8:"provider";s:8:"taxonomy";s:10:"field_name";s:4:"uuid";s:11:"entity_type";s:13:"taxonomy_term";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:2:{s:4:"type";s:15:"field_item:uuid";s:8:"settings";a:3:{s:10:"max_length";i:128;s:8:"is_ascii";b:1;s:14:"case_sensitive";b:0;}}s:18:"\0*\0fieldDefinition";r:40;}s:7:"\0*\0type";s:4:"uuid";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:5:"value";a:3:{s:4:"type";s:13:"varchar_ascii";s:6:"length";i:128;s:6:"binary";b:0;}}s:11:"unique keys";a:1:{s:5:"value";a:1:{i:0;s:5:"value";}}s:7:"indexes";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}s:11:"revision_id";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:7:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:11:"Revision ID";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:9:"read-only";b:1;s:8:"provider";s:8:"taxonomy";s:10:"field_name";s:11:"revision_id";s:11:"entity_type";s:13:"taxonomy_term";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:2:{s:4:"type";s:18:"field_item:integer";s:8:"settings";a:6:{s:8:"unsigned";b:1;s:4:"size";s:6:"normal";s:3:"min";s:0:"";s:3:"max";s:0:"";s:6:"prefix";s:0:"";s:6:"suffix";s:0:"";}}s:18:"\0*\0fieldDefinition";r:77;}s:7:"\0*\0type";s:7:"integer";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:5:"value";a:3:{s:4:"type";s:3:"int";s:8:"unsigned";b:1;s:4:"size";s:6:"normal";}}s:11:"unique keys";a:0:{}s:7:"indexes";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}s:8:"langcode";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:10:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:8:"Language";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:7:"display";a:2:{s:4:"view";a:1:{s:7:"options";a:1:{s:6:"region";s:6:"hidden";}}s:4:"form";a:1:{s:7:"options";a:2:{s:4:"type";s:15:"language_select";s:6:"weight";i:2;}}}s:12:"revisionable";b:1;s:12:"translatable";b:1;s:11:"description";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:23:"The term language code.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:8:"provider";s:8:"taxonomy";s:10:"field_name";s:8:"langcode";s:11:"entity_type";s:13:"taxonomy_term";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:2:{s:4:"type";s:19:"field_item:language";s:8:"settings";a:0:{}}s:18:"\0*\0fieldDefinition";r:111;}s:7:"\0*\0type";s:8:"language";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:5:"value";a:2:{s:4:"type";s:13:"varchar_ascii";s:6:"length";i:12;}}s:11:"unique keys";a:0:{}s:7:"indexes";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}s:3:"vid";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:9:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:10:"Vocabulary";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:8:"required";b:1;s:9:"read-only";b:1;s:11:"description";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:45:"The vocabulary to which the term is assigned.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:8:"provider";s:8:"taxonomy";s:10:"field_name";s:3:"vid";s:11:"entity_type";s:13:"taxonomy_term";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:2:{s:4:"type";s:27:"field_item:entity_reference";s:8:"settings";a:3:{s:11:"target_type";s:19:"taxonomy_vocabulary";s:7:"handler";s:7:"default";s:16:"handler_settings";a:0:{}}}s:18:"\0*\0fieldDefinition";r:151;}s:7:"\0*\0type";s:16:"entity_reference";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:9:"target_id";a:3:{s:11:"description";s:28:"The ID of the target entity.";s:4:"type";s:13:"varchar_ascii";s:6:"length";i:32;}}s:7:"indexes";a:1:{s:9:"target_id";a:1:{i:0;s:9:"target_id";}}s:11:"unique keys";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}s:16:"revision_created";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:8:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:20:"Revision create time";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:11:"description";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:47:"The time that the current revision was created.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:12:"revisionable";b:1;s:8:"provider";s:8:"taxonomy";s:10:"field_name";s:16:"revision_created";s:11:"entity_type";s:13:"taxonomy_term";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:2:{s:4:"type";s:18:"field_item:created";s:8:"settings";a:0:{}}s:18:"\0*\0fieldDefinition";r:189;}s:7:"\0*\0type";s:7:"created";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:5:"value";a:1:{s:4:"type";s:3:"int";}}s:11:"unique keys";a:0:{}s:7:"indexes";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}s:13:"revision_user";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:8:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:13:"Revision user";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:11:"description";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:50:"The user ID of the author of the current revision.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:12:"revisionable";b:1;s:8:"provider";s:8:"taxonomy";s:10:"field_name";s:13:"revision_user";s:11:"entity_type";s:13:"taxonomy_term";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:2:{s:4:"type";s:27:"field_item:entity_reference";s:8:"settings";a:3:{s:11:"target_type";s:4:"user";s:7:"handler";s:7:"default";s:16:"handler_settings";a:0:{}}}s:18:"\0*\0fieldDefinition";r:219;}s:7:"\0*\0type";s:16:"entity_reference";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:9:"target_id";a:3:{s:11:"description";s:28:"The ID of the target entity.";s:4:"type";s:3:"int";s:8:"unsigned";b:1;}}s:7:"indexes";a:1:{s:9:"target_id";a:1:{i:0;s:9:"target_id";}}s:11:"unique keys";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}s:20:"revision_log_message";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:10:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:20:"Revision log message";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:11:"description";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:43:"Briefly describe the changes you have made.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:12:"revisionable";b:1;s:13:"default_value";a:1:{i:0;a:1:{s:5:"value";s:0:"";}}s:7:"display";a:1:{s:4:"form";a:1:{s:7:"options";a:3:{s:4:"type";s:15:"string_textarea";s:6:"weight";i:25;s:8:"settings";a:1:{s:4:"rows";i:4;}}}}s:8:"provider";s:8:"taxonomy";s:10:"field_name";s:20:"revision_log_message";s:11:"entity_type";s:13:"taxonomy_term";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:2:{s:4:"type";s:22:"field_item:string_long";s:8:"settings";a:1:{s:14:"case_sensitive";b:0;}}s:18:"\0*\0fieldDefinition";r:256;}s:7:"\0*\0type";s:11:"string_long";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:5:"value";a:2:{s:4:"type";s:4:"text";s:4:"size";s:3:"big";}}s:11:"unique keys";a:0:{}s:7:"indexes";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}s:6:"status";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:10:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:9:"Published";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:12:"revisionable";b:1;s:12:"translatable";b:1;s:13:"default_value";a:1:{i:0;a:1:{s:5:"value";b:1;}}s:7:"display";a:1:{s:4:"form";a:2:{s:7:"options";a:3:{s:4:"type";s:16:"boolean_checkbox";s:8:"settings";a:1:{s:13:"display_label";b:1;}s:6:"weight";i:100;}s:12:"configurable";b:1;}}s:8:"provider";s:8:"taxonomy";s:10:"field_name";s:6:"status";s:11:"entity_type";s:13:"taxonomy_term";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:3:{s:4:"type";s:18:"field_item:boolean";s:8:"settings";a:2:{s:8:"on_label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:2:"On";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:9:"off_label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:3:"Off";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}}s:5:"class";s:22:"Drupal\\user\\StatusItem";}s:18:"\0*\0fieldDefinition";r:298;}s:7:"\0*\0type";s:7:"boolean";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:5:"value";a:2:{s:4:"type";s:3:"int";s:4:"size";s:4:"tiny";}}s:11:"unique keys";a:0:{}s:7:"indexes";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}s:4:"name";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:10:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:4:"Name";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:12:"translatable";b:1;s:12:"revisionable";b:1;s:8:"required";b:1;s:7:"display";a:2:{s:4:"view";a:1:{s:7:"options";a:3:{s:5:"label";s:6:"hidden";s:4:"type";s:6:"string";s:6:"weight";i:-5;}}s:4:"form";a:2:{s:7:"options";a:2:{s:4:"type";s:16:"string_textfield";s:6:"weight";i:-5;}s:12:"configurable";b:1;}}s:8:"provider";s:8:"taxonomy";s:10:"field_name";s:4:"name";s:11:"entity_type";s:13:"taxonomy_term";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:2:{s:4:"type";s:17:"field_item:string";s:8:"settings";a:3:{s:10:"max_length";i:255;s:8:"is_ascii";b:0;s:14:"case_sensitive";b:0;}}s:18:"\0*\0fieldDefinition";r:346;}s:7:"\0*\0type";s:6:"string";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:5:"value";a:3:{s:4:"type";s:7:"varchar";s:6:"length";i:255;s:6:"binary";b:0;}}s:11:"unique keys";a:0:{}s:7:"indexes";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}s:11:"description";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:9:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:11:"Description";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:12:"translatable";b:1;s:12:"revisionable";b:1;s:7:"display";a:2:{s:4:"view";a:2:{s:7:"options";a:3:{s:5:"label";s:6:"hidden";s:4:"type";s:12:"text_default";s:6:"weight";i:0;}s:12:"configurable";b:1;}s:4:"form";a:2:{s:7:"options";a:2:{s:4:"type";s:14:"text_textfield";s:6:"weight";i:0;}s:12:"configurable";b:1;}}s:8:"provider";s:8:"taxonomy";s:10:"field_name";s:11:"description";s:11:"entity_type";s:13:"taxonomy_term";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:2:{s:4:"type";s:20:"field_item:text_long";s:8:"settings";a:1:{s:15:"allowed_formats";a:0:{}}}s:18:"\0*\0fieldDefinition";r:390;}s:7:"\0*\0type";s:9:"text_long";s:9:"\0*\0schema";a:4:{s:7:"columns";a:2:{s:5:"value";a:2:{s:4:"type";s:4:"text";s:4:"size";s:3:"big";}s:6:"format";a:2:{s:4:"type";s:13:"varchar_ascii";s:6:"length";i:255;}}s:7:"indexes";a:1:{s:6:"format";a:1:{i:0;s:6:"format";}}s:11:"unique keys";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}s:6:"weight";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:8:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:6:"Weight";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:11:"description";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:51:"The weight of this term in relation to other terms.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:13:"default_value";a:1:{i:0;a:1:{s:5:"value";i:0;}}s:8:"provider";s:8:"taxonomy";s:10:"field_name";s:6:"weight";s:11:"entity_type";s:13:"taxonomy_term";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:2:{s:4:"type";s:18:"field_item:integer";s:8:"settings";a:6:{s:8:"unsigned";b:0;s:4:"size";s:6:"normal";s:3:"min";s:0:"";s:3:"max";s:0:"";s:6:"prefix";s:0:"";s:6:"suffix";s:0:"";}}s:18:"\0*\0fieldDefinition";r:436;}s:7:"\0*\0type";s:7:"integer";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:5:"value";a:3:{s:4:"type";s:3:"int";s:8:"unsigned";b:0;s:4:"size";s:6:"normal";}}s:11:"unique keys";a:0:{}s:7:"indexes";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}s:6:"parent";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:7:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:12:"Term Parents";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:11:"description";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:25:"The parents of this term.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:11:"cardinality";i:-1;s:8:"provider";s:8:"taxonomy";s:10:"field_name";s:6:"parent";s:11:"entity_type";s:13:"taxonomy_term";s:6:"bundle";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:2:{s:4:"type";s:27:"field_item:entity_reference";s:8:"settings";a:3:{s:11:"target_type";s:13:"taxonomy_term";s:7:"handler";s:7:"default";s:16:"handler_settings";a:0:{}}}s:18:"\0*\0fieldDefinition";r:476;}s:7:"\0*\0type";s:16:"entity_reference";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:9:"target_id";a:3:{s:11:"description";s:28:"The ID of the target entity.";s:4:"type";s:3:"int";s:8:"unsigned";b:1;}}s:7:"indexes";a:1:{s:9:"target_id";a:1:{i:0;s:9:"target_id";}}s:11:"unique keys";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}s:7:"changed";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:9:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:7:"Changed";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:11:"description";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:39:"The time that the term was last edited.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:12:"translatable";b:1;s:12:"revisionable";b:1;s:8:"provider";s:8:"taxonomy";s:10:"field_name";s:7:"changed";s:11:"entity_type";s:13:"taxonomy_term";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:2:{s:4:"type";s:18:"field_item:changed";s:8:"settings";a:0:{}}s:18:"\0*\0fieldDefinition";r:512;}s:7:"\0*\0type";s:7:"changed";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:5:"value";a:1:{s:4:"type";s:3:"int";}}s:11:"unique keys";a:0:{}s:7:"indexes";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}s:16:"default_langcode";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:10:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:19:"Default translation";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:11:"description";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:58:"A flag indicating whether this is the default translation.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:12:"translatable";b:1;s:12:"revisionable";b:1;s:13:"default_value";a:1:{i:0;a:1:{s:5:"value";b:1;}}s:8:"provider";s:8:"taxonomy";s:10:"field_name";s:16:"default_langcode";s:11:"entity_type";s:13:"taxonomy_term";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:2:{s:4:"type";s:18:"field_item:boolean";s:8:"settings";a:2:{s:8:"on_label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:2:"On";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:9:"off_label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:3:"Off";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}}}s:18:"\0*\0fieldDefinition";r:543;}s:7:"\0*\0type";s:7:"boolean";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:5:"value";a:2:{s:4:"type";s:3:"int";s:4:"size";s:4:"tiny";}}s:11:"unique keys";a:0:{}s:7:"indexes";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}s:16:"revision_default";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:11:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:16:"Default revision";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:11:"description";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:72:"A flag indicating whether this was a default revision when it was saved.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:16:"storage_required";b:1;s:8:"internal";b:1;s:12:"translatable";b:0;s:12:"revisionable";b:1;s:8:"provider";s:8:"taxonomy";s:10:"field_name";s:16:"revision_default";s:11:"entity_type";s:13:"taxonomy_term";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:2:{s:4:"type";s:18:"field_item:boolean";s:8:"settings";a:2:{s:8:"on_label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:2:"On";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:9:"off_label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:3:"Off";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}}}s:18:"\0*\0fieldDefinition";r:586;}s:7:"\0*\0type";s:7:"boolean";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:5:"value";a:2:{s:4:"type";s:3:"int";s:4:"size";s:4:"tiny";}}s:11:"unique keys";a:0:{}s:7:"indexes";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}s:29:"revision_translation_affected";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:10:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:29:"Revision translation affected";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:11:"description";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:72:"Indicates if the last edit of a translation belongs to current revision.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:9:"read-only";b:1;s:12:"revisionable";b:1;s:12:"translatable";b:1;s:8:"provider";s:8:"taxonomy";s:10:"field_name";s:29:"revision_translation_affected";s:11:"entity_type";s:13:"taxonomy_term";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:2:{s:4:"type";s:18:"field_item:boolean";s:8:"settings";a:2:{s:8:"on_label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:2:"On";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:9:"off_label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:3:"Off";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}}}s:18:"\0*\0fieldDefinition";r:628;}s:7:"\0*\0type";s:7:"boolean";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:5:"value";a:2:{s:4:"type";s:3:"int";s:4:"size";s:4:"tiny";}}s:11:"unique keys";a:0:{}s:7:"indexes";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}}'), ('entity.definitions.installed', 'taxonomy_vocabulary.entity_type', 'O:42:"Drupal\\Core\\Config\\Entity\\ConfigEntityType":45:{s:5:"\0*\0id";s:19:"taxonomy_vocabulary";s:8:"\0*\0class";s:33:"Drupal\\taxonomy\\Entity\\Vocabulary";s:11:"\0*\0provider";s:8:"taxonomy";s:15:"\0*\0static_cache";b:0;s:15:"\0*\0render_cache";b:1;s:19:"\0*\0persistent_cache";b:1;s:14:"\0*\0entity_keys";a:9:{s:2:"id";s:3:"vid";s:5:"label";s:4:"name";s:6:"weight";s:6:"weight";s:8:"revision";s:0:"";s:6:"bundle";s:0:"";s:8:"langcode";s:8:"langcode";s:16:"default_langcode";s:16:"default_langcode";s:29:"revision_translation_affected";s:29:"revision_translation_affected";s:4:"uuid";s:4:"uuid";}s:16:"\0*\0originalClass";s:33:"Drupal\\taxonomy\\Entity\\Vocabulary";s:19:"\0*\0decoratedClasses";a:1:{i:0;s:33:"Drupal\\taxonomy\\Entity\\Vocabulary";}s:11:"\0*\0handlers";a:5:{s:7:"storage";s:33:"Drupal\\taxonomy\\VocabularyStorage";s:12:"list_builder";s:37:"Drupal\\taxonomy\\VocabularyListBuilder";s:6:"access";s:46:"Drupal\\taxonomy\\VocabularyAccessControlHandler";s:4:"form";a:4:{s:7:"default";s:30:"Drupal\\taxonomy\\VocabularyForm";s:5:"reset";s:40:"Drupal\\taxonomy\\Form\\VocabularyResetForm";s:6:"delete";s:41:"Drupal\\taxonomy\\Form\\VocabularyDeleteForm";s:8:"overview";s:34:"Drupal\\taxonomy\\Form\\OverviewTerms";}s:14:"route_provider";a:2:{s:4:"html";s:54:"Drupal\\taxonomy\\Entity\\Routing\\VocabularyRouteProvider";s:11:"permissions";s:49:"Drupal\\user\\Entity\\EntityPermissionsRouteProvider";}}s:19:"\0*\0admin_permission";s:19:"administer taxonomy";s:24:"\0*\0collection_permission";s:24:"access taxonomy overview";s:25:"\0*\0permission_granularity";s:11:"entity_type";s:8:"\0*\0links";a:7:{s:8:"add-form";s:29:"/admin/structure/taxonomy/add";s:11:"delete-form";s:61:"/admin/structure/taxonomy/manage/{taxonomy_vocabulary}/delete";s:10:"reset-form";s:60:"/admin/structure/taxonomy/manage/{taxonomy_vocabulary}/reset";s:13:"overview-form";s:63:"/admin/structure/taxonomy/manage/{taxonomy_vocabulary}/overview";s:9:"edit-form";s:54:"/admin/structure/taxonomy/manage/{taxonomy_vocabulary}";s:23:"entity-permissions-form";s:75:"/admin/structure/taxonomy/manage/{taxonomy_vocabulary}/overview/permissions";s:10:"collection";s:25:"/admin/structure/taxonomy";}s:21:"\0*\0bundle_entity_type";N;s:12:"\0*\0bundle_of";s:13:"taxonomy_term";s:15:"\0*\0bundle_label";N;s:13:"\0*\0base_table";N;s:22:"\0*\0revision_data_table";N;s:17:"\0*\0revision_table";N;s:13:"\0*\0data_table";N;s:11:"\0*\0internal";b:0;s:15:"\0*\0translatable";b:0;s:19:"\0*\0show_revision_ui";b:0;s:8:"\0*\0label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:19:"Taxonomy vocabulary";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:19:"\0*\0label_collection";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:8:"Taxonomy";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:17:"\0*\0label_singular";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:10:"vocabulary";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:15:"\0*\0label_plural";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:12:"vocabularies";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:14:"\0*\0label_count";a:2:{s:8:"singular";s:17:"@count vocabulary";s:6:"plural";s:19:"@count vocabularies";}s:15:"\0*\0uri_callback";N;s:8:"\0*\0group";s:13:"configuration";s:14:"\0*\0group_label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:13:"Configuration";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:1:{s:7:"context";s:17:"Entity type group";}}s:22:"\0*\0field_ui_base_route";N;s:26:"\0*\0common_reference_target";b:0;s:22:"\0*\0list_cache_contexts";a:0:{}s:18:"\0*\0list_cache_tags";a:1:{i:0;s:31:"config:taxonomy_vocabulary_list";}s:14:"\0*\0constraints";a:0:{}s:13:"\0*\0additional";a:0:{}s:14:"\0*\0_serviceIds";a:0:{}s:18:"\0*\0_entityStorages";a:0:{}s:20:"\0*\0stringTranslation";N;s:16:"\0*\0config_prefix";s:10:"vocabulary";s:14:"\0*\0lookup_keys";a:1:{i:0;s:4:"uuid";}s:16:"\0*\0config_export";a:5:{i:0;s:4:"name";i:1;s:3:"vid";i:2;s:11:"description";i:3;s:6:"weight";i:4;s:12:"new_revision";}s:21:"\0*\0mergedConfigExport";a:0:{}}'), ('entity.definitions.installed', 'user.entity_type', 'O:36:"Drupal\\Core\\Entity\\ContentEntityType":42:{s:5:"\0*\0id";s:4:"user";s:8:"\0*\0class";s:23:"Drupal\\user\\Entity\\User";s:11:"\0*\0provider";s:4:"user";s:15:"\0*\0static_cache";b:1;s:15:"\0*\0render_cache";b:1;s:19:"\0*\0persistent_cache";b:1;s:14:"\0*\0entity_keys";a:7:{s:2:"id";s:3:"uid";s:8:"langcode";s:8:"langcode";s:4:"uuid";s:4:"uuid";s:8:"revision";s:0:"";s:6:"bundle";s:0:"";s:16:"default_langcode";s:16:"default_langcode";s:29:"revision_translation_affected";s:29:"revision_translation_affected";}s:16:"\0*\0originalClass";s:23:"Drupal\\user\\Entity\\User";s:19:"\0*\0decoratedClasses";a:1:{i:0;s:23:"Drupal\\user\\Entity\\User";}s:11:"\0*\0handlers";a:9:{s:7:"storage";s:23:"Drupal\\user\\UserStorage";s:14:"storage_schema";s:29:"Drupal\\user\\UserStorageSchema";s:6:"access";s:36:"Drupal\\user\\UserAccessControlHandler";s:12:"list_builder";s:27:"Drupal\\user\\UserListBuilder";s:10:"views_data";s:25:"Drupal\\user\\UserViewsData";s:14:"route_provider";a:1:{s:4:"html";s:36:"Drupal\\user\\Entity\\UserRouteProvider";}s:4:"form";a:3:{s:7:"default";s:23:"Drupal\\user\\ProfileForm";s:6:"cancel";s:31:"Drupal\\user\\Form\\UserCancelForm";s:8:"register";s:24:"Drupal\\user\\RegisterForm";}s:11:"translation";s:37:"Drupal\\user\\ProfileTranslationHandler";s:12:"view_builder";s:36:"Drupal\\Core\\Entity\\EntityViewBuilder";}s:19:"\0*\0admin_permission";s:16:"administer users";s:24:"\0*\0collection_permission";N;s:25:"\0*\0permission_granularity";s:11:"entity_type";s:8:"\0*\0links";a:4:{s:9:"canonical";s:12:"/user/{user}";s:9:"edit-form";s:17:"/user/{user}/edit";s:11:"cancel-form";s:19:"/user/{user}/cancel";s:10:"collection";s:13:"/admin/people";}s:21:"\0*\0bundle_entity_type";N;s:12:"\0*\0bundle_of";N;s:15:"\0*\0bundle_label";N;s:13:"\0*\0base_table";s:5:"users";s:22:"\0*\0revision_data_table";N;s:17:"\0*\0revision_table";N;s:13:"\0*\0data_table";s:16:"users_field_data";s:11:"\0*\0internal";b:0;s:15:"\0*\0translatable";b:1;s:19:"\0*\0show_revision_ui";b:0;s:8:"\0*\0label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:4:"User";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:19:"\0*\0label_collection";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:5:"Users";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:17:"\0*\0label_singular";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:4:"user";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:15:"\0*\0label_plural";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:5:"users";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:14:"\0*\0label_count";a:2:{s:8:"singular";s:11:"@count user";s:6:"plural";s:12:"@count users";}s:15:"\0*\0uri_callback";N;s:8:"\0*\0group";s:7:"content";s:14:"\0*\0group_label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:7:"Content";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:1:{s:7:"context";s:17:"Entity type group";}}s:22:"\0*\0field_ui_base_route";s:22:"entity.user.admin_form";s:26:"\0*\0common_reference_target";b:1;s:22:"\0*\0list_cache_contexts";a:0:{}s:18:"\0*\0list_cache_tags";a:1:{i:0;s:9:"user_list";}s:14:"\0*\0constraints";a:2:{s:13:"EntityChanged";N;s:26:"EntityUntranslatableFields";N;}s:13:"\0*\0additional";a:0:{}s:14:"\0*\0_serviceIds";a:0:{}s:18:"\0*\0_entityStorages";a:0:{}s:20:"\0*\0stringTranslation";N;s:25:"\0*\0revision_metadata_keys";a:1:{s:16:"revision_default";s:16:"revision_default";}}'); INSERT INTO `[[dbprefix]]key_value` VALUES ('entity.definitions.installed', 'user.field_storage_definitions', 'a:18:{s:3:"uid";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:8:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:7:"User ID";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:9:"read-only";b:1;s:11:"description";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:12:"The user ID.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:8:"provider";s:4:"user";s:10:"field_name";s:3:"uid";s:11:"entity_type";s:4:"user";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:2:{s:4:"type";s:18:"field_item:integer";s:8:"settings";a:6:{s:8:"unsigned";b:1;s:4:"size";s:6:"normal";s:3:"min";s:0:"";s:3:"max";s:0:"";s:6:"prefix";s:0:"";s:6:"suffix";s:0:"";}}s:18:"\0*\0fieldDefinition";r:2;}s:7:"\0*\0type";s:7:"integer";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:5:"value";a:3:{s:4:"type";s:3:"int";s:8:"unsigned";b:1;s:4:"size";s:6:"normal";}}s:11:"unique keys";a:0:{}s:7:"indexes";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}s:4:"uuid";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:8:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:4:"UUID";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:9:"read-only";b:1;s:11:"description";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:14:"The user UUID.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:8:"provider";s:4:"user";s:10:"field_name";s:4:"uuid";s:11:"entity_type";s:4:"user";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:2:{s:4:"type";s:15:"field_item:uuid";s:8:"settings";a:3:{s:10:"max_length";i:128;s:8:"is_ascii";b:1;s:14:"case_sensitive";b:0;}}s:18:"\0*\0fieldDefinition";r:40;}s:7:"\0*\0type";s:4:"uuid";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:5:"value";a:3:{s:4:"type";s:13:"varchar_ascii";s:6:"length";i:128;s:6:"binary";b:0;}}s:11:"unique keys";a:1:{s:5:"value";a:1:{i:0;s:5:"value";}}s:7:"indexes";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}s:8:"langcode";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:9:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:13:"Language code";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:7:"display";a:2:{s:4:"view";a:1:{s:7:"options";a:1:{s:6:"region";s:6:"hidden";}}s:4:"form";a:1:{s:7:"options";a:1:{s:6:"region";s:6:"hidden";}}}s:12:"translatable";b:1;s:11:"description";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:23:"The user language code.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:8:"provider";s:4:"user";s:10:"field_name";s:8:"langcode";s:11:"entity_type";s:4:"user";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:2:{s:4:"type";s:19:"field_item:language";s:8:"settings";a:0:{}}s:18:"\0*\0fieldDefinition";r:77;}s:7:"\0*\0type";s:8:"language";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:5:"value";a:2:{s:4:"type";s:13:"varchar_ascii";s:6:"length";i:12;}}s:11:"unique keys";a:0:{}s:7:"indexes";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}s:18:"preferred_langcode";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:7:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:23:"Preferred language code";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:11:"description";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:77:"The user''s preferred language code for receiving emails and viewing the site.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:8:"provider";s:4:"user";s:10:"field_name";s:18:"preferred_langcode";s:11:"entity_type";s:4:"user";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:3:{s:4:"type";s:19:"field_item:language";s:8:"settings";a:0:{}s:11:"constraints";a:1:{s:11:"ComplexData";a:1:{s:10:"properties";a:1:{s:5:"value";a:2:{s:13:"AllowedValues";a:1:{s:8:"callback";s:60:"Drupal\\user\\Entity\\User::getAllowedConfigurableLanguageCodes";}s:6:"Length";a:1:{s:3:"max";i:12;}}}}}}s:18:"\0*\0fieldDefinition";r:115;}s:7:"\0*\0type";s:8:"language";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:5:"value";a:2:{s:4:"type";s:13:"varchar_ascii";s:6:"length";i:12;}}s:11:"unique keys";a:0:{}s:7:"indexes";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}s:24:"preferred_admin_langcode";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:8:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:29:"Preferred admin language code";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:11:"description";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:68:"The user''s preferred language code for viewing administration pages.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:13:"default_value";a:1:{i:0;a:1:{s:5:"value";N;}}s:8:"provider";s:4:"user";s:10:"field_name";s:24:"preferred_admin_langcode";s:11:"entity_type";s:4:"user";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:3:{s:4:"type";s:19:"field_item:language";s:8:"settings";a:0:{}s:11:"constraints";a:1:{s:11:"ComplexData";a:1:{s:10:"properties";a:1:{s:5:"value";a:2:{s:13:"AllowedValues";a:1:{s:8:"callback";s:60:"Drupal\\user\\Entity\\User::getAllowedConfigurableLanguageCodes";}s:6:"Length";a:1:{s:3:"max";i:12;}}}}}}s:18:"\0*\0fieldDefinition";r:153;}s:7:"\0*\0type";s:8:"language";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:5:"value";a:2:{s:4:"type";s:13:"varchar_ascii";s:6:"length";i:12;}}s:11:"unique keys";a:0:{}s:7:"indexes";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}s:4:"name";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:9:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:4:"Name";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:11:"description";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:22:"The name of this user.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:8:"required";b:1;s:11:"constraints";a:2:{s:8:"UserName";a:0:{}s:14:"UserNameUnique";a:0:{}}s:8:"provider";s:4:"user";s:10:"field_name";s:4:"name";s:11:"entity_type";s:4:"user";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:3:{s:4:"type";s:17:"field_item:string";s:8:"settings";a:3:{s:10:"max_length";i:255;s:8:"is_ascii";b:0;s:14:"case_sensitive";b:0;}s:5:"class";s:25:"\\Drupal\\user\\UserNameItem";}s:18:"\0*\0fieldDefinition";r:194;}s:7:"\0*\0type";s:6:"string";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:5:"value";a:3:{s:4:"type";s:7:"varchar";s:6:"length";i:255;s:6:"binary";b:0;}}s:11:"unique keys";a:0:{}s:7:"indexes";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}s:4:"pass";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:8:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:8:"Password";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:11:"description";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:35:"The password of this user (hashed).";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:11:"constraints";a:1:{s:18:"ProtectedUserField";N;}s:8:"provider";s:4:"user";s:10:"field_name";s:4:"pass";s:11:"entity_type";s:4:"user";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:2:{s:4:"type";s:19:"field_item:password";s:8:"settings";a:3:{s:10:"max_length";i:255;s:8:"is_ascii";b:0;s:14:"case_sensitive";b:0;}}s:18:"\0*\0fieldDefinition";r:233;}s:7:"\0*\0type";s:8:"password";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:5:"value";a:3:{s:4:"type";s:7:"varchar";s:6:"length";i:255;s:6:"binary";b:0;}}s:11:"unique keys";a:0:{}s:7:"indexes";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}s:4:"mail";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:9:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:5:"Email";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:11:"description";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:23:"The email of this user.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:13:"default_value";a:1:{i:0;a:1:{s:5:"value";s:0:"";}}s:11:"constraints";a:3:{s:14:"UserMailUnique";N;s:16:"UserMailRequired";N;s:18:"ProtectedUserField";N;}s:8:"provider";s:4:"user";s:10:"field_name";s:4:"mail";s:11:"entity_type";s:4:"user";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:2:{s:4:"type";s:16:"field_item:email";s:8:"settings";a:0:{}}s:18:"\0*\0fieldDefinition";r:269;}s:7:"\0*\0type";s:5:"email";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:5:"value";a:2:{s:4:"type";s:7:"varchar";s:6:"length";i:254;}}s:11:"unique keys";a:0:{}s:7:"indexes";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}s:8:"timezone";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:7:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:8:"Timezone";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:11:"description";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:26:"The timezone of this user.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:8:"provider";s:4:"user";s:10:"field_name";s:8:"timezone";s:11:"entity_type";s:4:"user";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:4:{s:4:"type";s:17:"field_item:string";s:8:"settings";a:3:{s:10:"max_length";i:32;s:8:"is_ascii";b:0;s:14:"case_sensitive";b:0;}s:11:"constraints";a:1:{s:11:"ComplexData";a:1:{s:10:"properties";a:1:{s:5:"value";a:1:{s:13:"AllowedValues";a:1:{s:8:"callback";s:44:"Drupal\\user\\Entity\\User::getAllowedTimezones";}}}}}s:5:"class";s:24:"Drupal\\user\\TimeZoneItem";}s:18:"\0*\0fieldDefinition";r:306;}s:7:"\0*\0type";s:6:"string";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:5:"value";a:3:{s:4:"type";s:7:"varchar";s:6:"length";i:32;s:6:"binary";b:0;}}s:11:"unique keys";a:0:{}s:7:"indexes";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}s:6:"status";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:8:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:11:"User status";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:11:"description";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:38:"Whether the user is active or blocked.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:13:"default_value";a:1:{i:0;a:1:{s:5:"value";b:0;}}s:8:"provider";s:4:"user";s:10:"field_name";s:6:"status";s:11:"entity_type";s:4:"user";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:3:{s:4:"type";s:18:"field_item:boolean";s:8:"settings";a:2:{s:8:"on_label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:2:"On";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:9:"off_label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:3:"Off";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}}s:5:"class";s:22:"Drupal\\user\\StatusItem";}s:18:"\0*\0fieldDefinition";r:347;}s:7:"\0*\0type";s:7:"boolean";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:5:"value";a:2:{s:4:"type";s:3:"int";s:4:"size";s:4:"tiny";}}s:11:"unique keys";a:0:{}s:7:"indexes";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}s:7:"created";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:7:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:7:"Created";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:11:"description";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:35:"The time that the user was created.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:8:"provider";s:4:"user";s:10:"field_name";s:7:"created";s:11:"entity_type";s:4:"user";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:2:{s:4:"type";s:18:"field_item:created";s:8:"settings";a:0:{}}s:18:"\0*\0fieldDefinition";r:389;}s:7:"\0*\0type";s:7:"created";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:5:"value";a:1:{s:4:"type";s:3:"int";}}s:11:"unique keys";a:0:{}s:7:"indexes";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}s:7:"changed";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:8:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:7:"Changed";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:11:"description";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:39:"The time that the user was last edited.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:12:"translatable";b:1;s:8:"provider";s:4:"user";s:10:"field_name";s:7:"changed";s:11:"entity_type";s:4:"user";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:2:{s:4:"type";s:18:"field_item:changed";s:8:"settings";a:0:{}}s:18:"\0*\0fieldDefinition";r:418;}s:7:"\0*\0type";s:7:"changed";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:5:"value";a:1:{s:4:"type";s:3:"int";}}s:11:"unique keys";a:0:{}s:7:"indexes";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}s:6:"access";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:8:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:11:"Last access";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:11:"description";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:46:"The time that the user last accessed the site.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:13:"default_value";a:1:{i:0;a:1:{s:5:"value";i:0;}}s:8:"provider";s:4:"user";s:10:"field_name";s:6:"access";s:11:"entity_type";s:4:"user";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:2:{s:4:"type";s:20:"field_item:timestamp";s:8:"settings";a:0:{}}s:18:"\0*\0fieldDefinition";r:448;}s:7:"\0*\0type";s:9:"timestamp";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:5:"value";a:1:{s:4:"type";s:3:"int";}}s:11:"unique keys";a:0:{}s:7:"indexes";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}s:5:"login";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:8:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:10:"Last login";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:11:"description";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:38:"The time that the user last logged in.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:13:"default_value";a:1:{i:0;a:1:{s:5:"value";i:0;}}s:8:"provider";s:4:"user";s:10:"field_name";s:5:"login";s:11:"entity_type";s:4:"user";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:2:{s:4:"type";s:20:"field_item:timestamp";s:8:"settings";a:0:{}}s:18:"\0*\0fieldDefinition";r:480;}s:7:"\0*\0type";s:9:"timestamp";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:5:"value";a:1:{s:4:"type";s:3:"int";}}s:11:"unique keys";a:0:{}s:7:"indexes";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}s:4:"init";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:8:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:13:"Initial email";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:11:"description";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:52:"The email address used for initial account creation.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:13:"default_value";a:1:{i:0;a:1:{s:5:"value";s:0:"";}}s:8:"provider";s:4:"user";s:10:"field_name";s:4:"init";s:11:"entity_type";s:4:"user";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:2:{s:4:"type";s:16:"field_item:email";s:8:"settings";a:0:{}}s:18:"\0*\0fieldDefinition";r:512;}s:7:"\0*\0type";s:5:"email";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:5:"value";a:2:{s:4:"type";s:7:"varchar";s:6:"length";i:254;}}s:11:"unique keys";a:0:{}s:7:"indexes";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}s:5:"roles";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:7:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:5:"Roles";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:11:"cardinality";i:-1;s:11:"description";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:23:"The roles the user has.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:8:"provider";s:4:"user";s:10:"field_name";s:5:"roles";s:11:"entity_type";s:4:"user";s:6:"bundle";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:2:{s:4:"type";s:27:"field_item:entity_reference";s:8:"settings";a:3:{s:11:"target_type";s:9:"user_role";s:7:"handler";s:7:"default";s:16:"handler_settings";a:0:{}}}s:18:"\0*\0fieldDefinition";r:545;}s:7:"\0*\0type";s:16:"entity_reference";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:9:"target_id";a:3:{s:11:"description";s:28:"The ID of the target entity.";s:4:"type";s:13:"varchar_ascii";s:6:"length";i:255;}}s:7:"indexes";a:1:{s:9:"target_id";a:1:{i:0;s:9:"target_id";}}s:11:"unique keys";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}s:16:"default_langcode";O:37:"Drupal\\Core\\Field\\BaseFieldDefinition":5:{s:13:"\0*\0definition";a:10:{s:5:"label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:19:"Default translation";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:11:"description";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:58:"A flag indicating whether this is the default translation.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:12:"translatable";b:1;s:12:"revisionable";b:1;s:13:"default_value";a:1:{i:0;a:1:{s:5:"value";b:1;}}s:8:"provider";s:4:"user";s:10:"field_name";s:16:"default_langcode";s:11:"entity_type";s:4:"user";s:6:"bundle";N;s:13:"initial_value";N;}s:17:"\0*\0itemDefinition";O:51:"Drupal\\Core\\Field\\TypedData\\FieldItemDataDefinition":2:{s:13:"\0*\0definition";a:2:{s:4:"type";s:18:"field_item:boolean";s:8:"settings";a:2:{s:8:"on_label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:2:"On";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:9:"off_label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:3:"Off";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}}}s:18:"\0*\0fieldDefinition";r:581;}s:7:"\0*\0type";s:7:"boolean";s:9:"\0*\0schema";a:4:{s:7:"columns";a:1:{s:5:"value";a:2:{s:4:"type";s:3:"int";s:4:"size";s:4:"tiny";}}s:11:"unique keys";a:0:{}s:7:"indexes";a:0:{}s:12:"foreign keys";a:0:{}}s:10:"\0*\0indexes";a:0:{}}s:12:"user_picture";O:38:"Drupal\\field\\Entity\\FieldStorageConfig":31:{s:15:"\0*\0entityTypeId";s:20:"field_storage_config";s:15:"\0*\0enforceIsNew";b:1;s:12:"\0*\0typedData";N;s:17:"\0*\0originalEntity";O:38:"Drupal\\field\\Entity\\FieldStorageConfig":31:{s:15:"\0*\0entityTypeId";s:20:"field_storage_config";s:15:"\0*\0enforceIsNew";N;s:12:"\0*\0typedData";N;s:17:"\0*\0originalEntity";N;s:16:"\0*\0cacheContexts";a:0:{}s:12:"\0*\0cacheTags";a:0:{}s:14:"\0*\0cacheMaxAge";i:-1;s:14:"\0*\0_serviceIds";a:0:{}s:18:"\0*\0_entityStorages";a:0:{}s:13:"\0*\0originalId";s:17:"user.user_picture";s:9:"\0*\0status";b:1;s:7:"\0*\0uuid";s:36:"4d013298-b92c-41ee-a63d-ec2260859af0";s:11:"\0*\0langcode";s:2:"en";s:23:"\0*\0third_party_settings";a:0:{}s:8:"\0*\0_core";a:1:{s:19:"default_config_hash";s:43:"0q8-mw8y-Ls5I578sIPQFLp4ljpH7WvVYpzY-I9O-8E";}s:14:"\0*\0trustedData";b:0;s:15:"\0*\0dependencies";a:1:{s:6:"module";a:3:{i:0;s:4:"file";i:1;s:5:"image";i:2;s:4:"user";}}s:12:"\0*\0isSyncing";b:0;s:5:"\0*\0id";s:17:"user.user_picture";s:13:"\0*\0field_name";s:12:"user_picture";s:14:"\0*\0entity_type";s:4:"user";s:7:"\0*\0type";s:5:"image";s:9:"\0*\0module";s:5:"image";s:11:"\0*\0settings";a:5:{s:11:"target_type";s:4:"file";s:13:"display_field";b:0;s:15:"display_default";b:0;s:10:"uri_scheme";s:6:"public";s:13:"default_image";a:5:{s:4:"uuid";N;s:3:"alt";s:0:"";s:5:"title";s:0:"";s:5:"width";N;s:6:"height";N;}}s:14:"\0*\0cardinality";i:1;s:15:"\0*\0translatable";b:1;s:9:"\0*\0locked";b:0;s:25:"\0*\0persist_with_no_fields";b:0;s:14:"custom_storage";b:0;s:10:"\0*\0indexes";a:1:{s:9:"target_id";a:1:{i:0;s:9:"target_id";}}s:10:"\0*\0deleted";b:0;}s:16:"\0*\0cacheContexts";a:0:{}s:12:"\0*\0cacheTags";a:0:{}s:14:"\0*\0cacheMaxAge";i:-1;s:14:"\0*\0_serviceIds";a:0:{}s:18:"\0*\0_entityStorages";a:0:{}s:13:"\0*\0originalId";s:17:"user.user_picture";s:9:"\0*\0status";b:1;s:7:"\0*\0uuid";s:36:"4d013298-b92c-41ee-a63d-ec2260859af0";s:11:"\0*\0langcode";s:2:"en";s:23:"\0*\0third_party_settings";a:0:{}s:8:"\0*\0_core";a:1:{s:19:"default_config_hash";s:43:"0q8-mw8y-Ls5I578sIPQFLp4ljpH7WvVYpzY-I9O-8E";}s:14:"\0*\0trustedData";b:0;s:15:"\0*\0dependencies";a:1:{s:6:"module";a:3:{i:0;s:4:"file";i:1;s:5:"image";i:2;s:4:"user";}}s:12:"\0*\0isSyncing";b:0;s:5:"\0*\0id";s:17:"user.user_picture";s:13:"\0*\0field_name";s:12:"user_picture";s:14:"\0*\0entity_type";s:4:"user";s:7:"\0*\0type";s:5:"image";s:9:"\0*\0module";s:5:"image";s:11:"\0*\0settings";a:5:{s:11:"target_type";s:4:"file";s:13:"display_field";b:0;s:15:"display_default";b:0;s:10:"uri_scheme";s:6:"public";s:13:"default_image";a:5:{s:4:"uuid";N;s:3:"alt";s:0:"";s:5:"title";s:0:"";s:5:"width";N;s:6:"height";N;}}s:14:"\0*\0cardinality";i:1;s:15:"\0*\0translatable";b:1;s:9:"\0*\0locked";b:0;s:25:"\0*\0persist_with_no_fields";b:0;s:14:"custom_storage";b:0;s:10:"\0*\0indexes";a:1:{s:9:"target_id";a:1:{i:0;s:9:"target_id";}}s:10:"\0*\0deleted";b:0;}}'), ('entity.definitions.installed', 'user_role.entity_type', 'O:42:"Drupal\\Core\\Config\\Entity\\ConfigEntityType":45:{s:5:"\0*\0id";s:9:"user_role";s:8:"\0*\0class";s:23:"Drupal\\user\\Entity\\Role";s:11:"\0*\0provider";s:4:"user";s:15:"\0*\0static_cache";b:1;s:15:"\0*\0render_cache";b:1;s:19:"\0*\0persistent_cache";b:1;s:14:"\0*\0entity_keys";a:9:{s:2:"id";s:2:"id";s:6:"weight";s:6:"weight";s:5:"label";s:5:"label";s:8:"revision";s:0:"";s:6:"bundle";s:0:"";s:8:"langcode";s:8:"langcode";s:16:"default_langcode";s:16:"default_langcode";s:29:"revision_translation_affected";s:29:"revision_translation_affected";s:4:"uuid";s:4:"uuid";}s:16:"\0*\0originalClass";s:23:"Drupal\\user\\Entity\\Role";s:19:"\0*\0decoratedClasses";a:1:{i:0;s:23:"Drupal\\user\\Entity\\Role";}s:11:"\0*\0handlers";a:4:{s:7:"storage";s:23:"Drupal\\user\\RoleStorage";s:6:"access";s:36:"Drupal\\user\\RoleAccessControlHandler";s:12:"list_builder";s:27:"Drupal\\user\\RoleListBuilder";s:4:"form";a:2:{s:7:"default";s:20:"Drupal\\user\\RoleForm";s:6:"delete";s:35:"Drupal\\Core\\Entity\\EntityDeleteForm";}}s:19:"\0*\0admin_permission";s:22:"administer permissions";s:24:"\0*\0collection_permission";N;s:25:"\0*\0permission_granularity";s:11:"entity_type";s:8:"\0*\0links";a:4:{s:11:"delete-form";s:45:"/admin/people/roles/manage/{user_role}/delete";s:9:"edit-form";s:38:"/admin/people/roles/manage/{user_role}";s:21:"edit-permissions-form";s:37:"/admin/people/permissions/{user_role}";s:10:"collection";s:19:"/admin/people/roles";}s:21:"\0*\0bundle_entity_type";N;s:12:"\0*\0bundle_of";N;s:15:"\0*\0bundle_label";N;s:13:"\0*\0base_table";N;s:22:"\0*\0revision_data_table";N;s:17:"\0*\0revision_table";N;s:13:"\0*\0data_table";N;s:11:"\0*\0internal";b:0;s:15:"\0*\0translatable";b:0;s:19:"\0*\0show_revision_ui";b:0;s:8:"\0*\0label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:4:"Role";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:19:"\0*\0label_collection";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:5:"Roles";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:17:"\0*\0label_singular";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:4:"role";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:15:"\0*\0label_plural";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:5:"roles";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}s:14:"\0*\0label_count";a:2:{s:8:"singular";s:11:"@count role";s:6:"plural";s:12:"@count roles";}s:15:"\0*\0uri_callback";N;s:8:"\0*\0group";s:13:"configuration";s:14:"\0*\0group_label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:13:"Configuration";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:1:{s:7:"context";s:17:"Entity type group";}}s:22:"\0*\0field_ui_base_route";N;s:26:"\0*\0common_reference_target";b:0;s:22:"\0*\0list_cache_contexts";a:0:{}s:18:"\0*\0list_cache_tags";a:1:{i:0;s:21:"config:user_role_list";}s:14:"\0*\0constraints";a:0:{}s:13:"\0*\0additional";a:0:{}s:14:"\0*\0_serviceIds";a:0:{}s:18:"\0*\0_entityStorages";a:0:{}s:20:"\0*\0stringTranslation";N;s:16:"\0*\0config_prefix";s:4:"role";s:14:"\0*\0lookup_keys";a:1:{i:0;s:4:"uuid";}s:16:"\0*\0config_export";a:5:{i:0;s:2:"id";i:1;s:5:"label";i:2;s:6:"weight";i:3;s:8:"is_admin";i:4;s:11:"permissions";}s:21:"\0*\0mergedConfigExport";a:0:{}}'), ('entity.definitions.installed', 'view.entity_type', 'O:42:"Drupal\\Core\\Config\\Entity\\ConfigEntityType":45:{s:5:"\0*\0id";s:4:"view";s:8:"\0*\0class";s:24:"Drupal\\views\\Entity\\View";s:11:"\0*\0provider";s:5:"views";s:15:"\0*\0static_cache";b:0;s:15:"\0*\0render_cache";b:1;s:19:"\0*\0persistent_cache";b:1;s:14:"\0*\0entity_keys";a:9:{s:2:"id";s:2:"id";s:5:"label";s:5:"label";s:6:"status";s:6:"status";s:8:"revision";s:0:"";s:6:"bundle";s:0:"";s:8:"langcode";s:8:"langcode";s:16:"default_langcode";s:16:"default_langcode";s:29:"revision_translation_affected";s:29:"revision_translation_affected";s:4:"uuid";s:4:"uuid";}s:16:"\0*\0originalClass";s:24:"Drupal\\views\\Entity\\View";s:19:"\0*\0decoratedClasses";a:1:{i:0;s:24:"Drupal\\views\\Entity\\View";}s:11:"\0*\0handlers";a:4:{s:6:"access";s:45:"Drupal\\Core\\Entity\\EntityAccessControlHandler";s:7:"storage";s:45:"Drupal\\Core\\Config\\Entity\\ConfigEntityStorage";s:4:"form";a:6:{s:4:"edit";s:28:"Drupal\\views_ui\\ViewEditForm";s:3:"add";s:27:"Drupal\\views_ui\\ViewAddForm";s:7:"preview";s:31:"Drupal\\views_ui\\ViewPreviewForm";s:9:"duplicate";s:33:"Drupal\\views_ui\\ViewDuplicateForm";s:6:"delete";s:35:"Drupal\\Core\\Entity\\EntityDeleteForm";s:10:"break_lock";s:34:"Drupal\\views_ui\\Form\\BreakLockForm";}s:12:"list_builder";s:31:"Drupal\\views_ui\\ViewListBuilder";}s:19:"\0*\0admin_permission";s:16:"administer views";s:24:"\0*\0collection_permission";N;s:25:"\0*\0permission_granularity";s:11:"entity_type";s:8:"\0*\0links";a:9:{s:9:"edit-form";s:34:"/admin/structure/views/view/{view}";s:17:"edit-display-form";s:52:"/admin/structure/views/view/{view}/edit/{display_id}";s:12:"preview-form";s:55:"/admin/structure/views/view/{view}/preview/{display_id}";s:14:"duplicate-form";s:44:"/admin/structure/views/view/{view}/duplicate";s:11:"delete-form";s:41:"/admin/structure/views/view/{view}/delete";s:6:"enable";s:41:"/admin/structure/views/view/{view}/enable";s:7:"disable";s:42:"/admin/structure/views/view/{view}/disable";s:15:"break-lock-form";s:45:"/admin/structure/views/view/{view}/break-lock";s:10:"collection";s:22:"/admin/structure/views";}s:21:"\0*\0bundle_entity_type";N;s:12:"\0*\0bundle_of";N;s:15:"\0*\0bundle_label";N;s:13:"\0*\0base_table";N;s:22:"\0*\0revision_data_table";N;s:17:"\0*\0revision_table";N;s:13:"\0*\0data_table";N;s:11:"\0*\0internal";b:0;s:15:"\0*\0translatable";b:0;s:19:"\0*\0show_revision_ui";b:0;s:8:"\0*\0label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:4:"View";s:12:"\0*\0arguments";a:1:{s:7:"context";s:16:"View entity type";}s:10:"\0*\0options";a:0:{}}s:19:"\0*\0label_collection";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:5:"Views";s:12:"\0*\0arguments";a:1:{s:7:"context";s:16:"View entity type";}s:10:"\0*\0options";a:0:{}}s:17:"\0*\0label_singular";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:4:"view";s:12:"\0*\0arguments";a:1:{s:7:"context";s:16:"View entity type";}s:10:"\0*\0options";a:0:{}}s:15:"\0*\0label_plural";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:5:"views";s:12:"\0*\0arguments";a:1:{s:7:"context";s:16:"View entity type";}s:10:"\0*\0options";a:0:{}}s:14:"\0*\0label_count";a:2:{s:8:"singular";s:11:"@count view";s:6:"plural";s:12:"@count views";}s:15:"\0*\0uri_callback";N;s:8:"\0*\0group";s:13:"configuration";s:14:"\0*\0group_label";O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:13:"Configuration";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:1:{s:7:"context";s:17:"Entity type group";}}s:22:"\0*\0field_ui_base_route";N;s:26:"\0*\0common_reference_target";b:0;s:22:"\0*\0list_cache_contexts";a:0:{}s:18:"\0*\0list_cache_tags";a:1:{i:0;s:16:"config:view_list";}s:14:"\0*\0constraints";a:0:{}s:13:"\0*\0additional";a:0:{}s:14:"\0*\0_serviceIds";a:0:{}s:18:"\0*\0_entityStorages";a:0:{}s:20:"\0*\0stringTranslation";N;s:16:"\0*\0config_prefix";N;s:14:"\0*\0lookup_keys";a:1:{i:0;s:4:"uuid";}s:16:"\0*\0config_export";a:8:{i:0;s:2:"id";i:1;s:5:"label";i:2;s:6:"module";i:3;s:11:"description";i:4;s:3:"tag";i:5;s:10:"base_table";i:6;s:10:"base_field";i:7;s:7:"display";}s:21:"\0*\0mergedConfigExport";a:0:{}}'), ('entity.storage_schema.sql', 'block_content.entity_schema_data', 'a:4:{s:13:"block_content";a:2:{s:11:"primary key";a:1:{i:0;s:2:"id";}s:11:"unique keys";a:1:{s:26:"block_content__revision_id";a:1:{i:0;s:11:"revision_id";}}}s:22:"block_content_revision";a:2:{s:11:"primary key";a:1:{i:0;s:11:"revision_id";}s:7:"indexes";a:1:{s:17:"block_content__id";a:1:{i:0;s:2:"id";}}}s:24:"block_content_field_data";a:2:{s:11:"primary key";a:2:{i:0;s:2:"id";i:1;s:8:"langcode";}s:7:"indexes";a:3:{s:45:"block_content__id__default_langcode__langcode";a:3:{i:0;s:2:"id";i:1;s:16:"default_langcode";i:2;s:8:"langcode";}s:26:"block_content__revision_id";a:1:{i:0;s:11:"revision_id";}s:26:"block_content__status_type";a:3:{i:0;s:6:"status";i:1;s:4:"type";i:2;s:2:"id";}}}s:28:"block_content_field_revision";a:2:{s:11:"primary key";a:2:{i:0;s:11:"revision_id";i:1;s:8:"langcode";}s:7:"indexes";a:1:{s:45:"block_content__id__default_langcode__langcode";a:3:{i:0;s:2:"id";i:1;s:16:"default_langcode";i:2;s:8:"langcode";}}}}'), ('entity.storage_schema.sql', 'block_content.field_schema_data.body', 'a:2:{s:19:"block_content__body";a:4:{s:11:"description";s:42:"Data storage for block_content field body.";s:6:"fields";a:8:{s:6:"bundle";a:5:{s:4:"type";s:13:"varchar_ascii";s:6:"length";i:128;s:8:"not null";b:1;s:7:"default";s:0:"";s:11:"description";s:88:"The field instance bundle to which this row belongs, used when deleting a field instance";}s:7:"deleted";a:5:{s:4:"type";s:3:"int";s:4:"size";s:4:"tiny";s:8:"not null";b:1;s:7:"default";i:0;s:11:"description";s:60:"A boolean indicating whether this data item has been deleted";}s:9:"entity_id";a:4:{s:4:"type";s:3:"int";s:8:"unsigned";b:1;s:8:"not null";b:1;s:11:"description";s:38:"The entity id this data is attached to";}s:11:"revision_id";a:4:{s:4:"type";s:3:"int";s:8:"unsigned";b:1;s:8:"not null";b:1;s:11:"description";s:47:"The entity revision id this data is attached to";}s:8:"langcode";a:5:{s:4:"type";s:13:"varchar_ascii";s:6:"length";i:32;s:8:"not null";b:1;s:7:"default";s:0:"";s:11:"description";s:37:"The language code for this data item.";}s:5:"delta";a:4:{s:4:"type";s:3:"int";s:8:"unsigned";b:1;s:8:"not null";b:1;s:11:"description";s:67:"The sequence number for this data item, used for multi-value fields";}s:10:"body_value";a:3:{s:4:"type";s:4:"text";s:4:"size";s:3:"big";s:8:"not null";b:1;}s:11:"body_format";a:3:{s:4:"type";s:13:"varchar_ascii";s:6:"length";i:255;s:8:"not null";b:0;}}s:11:"primary key";a:4:{i:0;s:9:"entity_id";i:1;s:7:"deleted";i:2;s:5:"delta";i:3;s:8:"langcode";}s:7:"indexes";a:3:{s:6:"bundle";a:1:{i:0;s:6:"bundle";}s:11:"revision_id";a:1:{i:0;s:11:"revision_id";}s:11:"body_format";a:1:{i:0;s:11:"body_format";}}}s:28:"block_content_revision__body";a:4:{s:11:"description";s:54:"Revision archive storage for block_content field body.";s:6:"fields";a:8:{s:6:"bundle";a:5:{s:4:"type";s:13:"varchar_ascii";s:6:"length";i:128;s:8:"not null";b:1;s:7:"default";s:0:"";s:11:"description";s:88:"The field instance bundle to which this row belongs, used when deleting a field instance";}s:7:"deleted";a:5:{s:4:"type";s:3:"int";s:4:"size";s:4:"tiny";s:8:"not null";b:1;s:7:"default";i:0;s:11:"description";s:60:"A boolean indicating whether this data item has been deleted";}s:9:"entity_id";a:4:{s:4:"type";s:3:"int";s:8:"unsigned";b:1;s:8:"not null";b:1;s:11:"description";s:38:"The entity id this data is attached to";}s:11:"revision_id";a:4:{s:4:"type";s:3:"int";s:8:"unsigned";b:1;s:8:"not null";b:1;s:11:"description";s:47:"The entity revision id this data is attached to";}s:8:"langcode";a:5:{s:4:"type";s:13:"varchar_ascii";s:6:"length";i:32;s:8:"not null";b:1;s:7:"default";s:0:"";s:11:"description";s:37:"The language code for this data item.";}s:5:"delta";a:4:{s:4:"type";s:3:"int";s:8:"unsigned";b:1;s:8:"not null";b:1;s:11:"description";s:67:"The sequence number for this data item, used for multi-value fields";}s:10:"body_value";a:3:{s:4:"type";s:4:"text";s:4:"size";s:3:"big";s:8:"not null";b:1;}s:11:"body_format";a:3:{s:4:"type";s:13:"varchar_ascii";s:6:"length";i:255;s:8:"not null";b:0;}}s:11:"primary key";a:5:{i:0;s:9:"entity_id";i:1;s:11:"revision_id";i:2;s:7:"deleted";i:3;s:5:"delta";i:4;s:8:"langcode";}s:7:"indexes";a:3:{s:6:"bundle";a:1:{i:0;s:6:"bundle";}s:11:"revision_id";a:1:{i:0;s:11:"revision_id";}s:11:"body_format";a:1:{i:0;s:11:"body_format";}}}}'), ('entity.storage_schema.sql', 'block_content.field_schema_data.changed', 'a:2:{s:24:"block_content_field_data";a:1:{s:6:"fields";a:1:{s:7:"changed";a:2:{s:4:"type";s:3:"int";s:8:"not null";b:0;}}}s:28:"block_content_field_revision";a:1:{s:6:"fields";a:1:{s:7:"changed";a:2:{s:4:"type";s:3:"int";s:8:"not null";b:0;}}}}'), ('entity.storage_schema.sql', 'block_content.field_schema_data.default_langcode', 'a:2:{s:24:"block_content_field_data";a:1:{s:6:"fields";a:1:{s:16:"default_langcode";a:3:{s:4:"type";s:3:"int";s:4:"size";s:4:"tiny";s:8:"not null";b:1;}}}s:28:"block_content_field_revision";a:1:{s:6:"fields";a:1:{s:16:"default_langcode";a:3:{s:4:"type";s:3:"int";s:4:"size";s:4:"tiny";s:8:"not null";b:1;}}}}'), ('entity.storage_schema.sql', 'block_content.field_schema_data.id', 'a:4:{s:13:"block_content";a:1:{s:6:"fields";a:1:{s:2:"id";a:4:{s:4:"type";s:6:"serial";s:8:"unsigned";b:1;s:4:"size";s:6:"normal";s:8:"not null";b:1;}}}s:24:"block_content_field_data";a:1:{s:6:"fields";a:1:{s:2:"id";a:4:{s:4:"type";s:3:"int";s:8:"unsigned";b:1;s:4:"size";s:6:"normal";s:8:"not null";b:1;}}}s:22:"block_content_revision";a:1:{s:6:"fields";a:1:{s:2:"id";a:4:{s:4:"type";s:3:"int";s:8:"unsigned";b:1;s:4:"size";s:6:"normal";s:8:"not null";b:1;}}}s:28:"block_content_field_revision";a:1:{s:6:"fields";a:1:{s:2:"id";a:4:{s:4:"type";s:3:"int";s:8:"unsigned";b:1;s:4:"size";s:6:"normal";s:8:"not null";b:1;}}}}'), ('entity.storage_schema.sql', 'block_content.field_schema_data.info', 'a:2:{s:24:"block_content_field_data";a:1:{s:6:"fields";a:1:{s:4:"info";a:4:{s:4:"type";s:7:"varchar";s:6:"length";i:255;s:6:"binary";b:0;s:8:"not null";b:0;}}}s:28:"block_content_field_revision";a:1:{s:6:"fields";a:1:{s:4:"info";a:4:{s:4:"type";s:7:"varchar";s:6:"length";i:255;s:6:"binary";b:0;s:8:"not null";b:0;}}}}'), ('entity.storage_schema.sql', 'block_content.field_schema_data.langcode', 'a:4:{s:13:"block_content";a:1:{s:6:"fields";a:1:{s:8:"langcode";a:3:{s:4:"type";s:13:"varchar_ascii";s:6:"length";i:12;s:8:"not null";b:1;}}}s:24:"block_content_field_data";a:1:{s:6:"fields";a:1:{s:8:"langcode";a:3:{s:4:"type";s:13:"varchar_ascii";s:6:"length";i:12;s:8:"not null";b:1;}}}s:22:"block_content_revision";a:1:{s:6:"fields";a:1:{s:8:"langcode";a:3:{s:4:"type";s:13:"varchar_ascii";s:6:"length";i:12;s:8:"not null";b:1;}}}s:28:"block_content_field_revision";a:1:{s:6:"fields";a:1:{s:8:"langcode";a:3:{s:4:"type";s:13:"varchar_ascii";s:6:"length";i:12;s:8:"not null";b:1;}}}}'), ('entity.storage_schema.sql', 'block_content.field_schema_data.reusable', 'a:1:{s:24:"block_content_field_data";a:2:{s:6:"fields";a:1:{s:8:"reusable";a:3:{s:4:"type";s:3:"int";s:4:"size";s:4:"tiny";s:8:"not null";b:0;}}s:7:"indexes";a:1:{s:29:"block_content_field__reusable";a:1:{i:0;s:8:"reusable";}}}}'), ('entity.storage_schema.sql', 'block_content.field_schema_data.revision_created', 'a:1:{s:22:"block_content_revision";a:1:{s:6:"fields";a:1:{s:16:"revision_created";a:2:{s:4:"type";s:3:"int";s:8:"not null";b:0;}}}}'), ('entity.storage_schema.sql', 'block_content.field_schema_data.revision_default', 'a:1:{s:22:"block_content_revision";a:1:{s:6:"fields";a:1:{s:16:"revision_default";a:3:{s:4:"type";s:3:"int";s:4:"size";s:4:"tiny";s:8:"not null";b:0;}}}}'), ('entity.storage_schema.sql', 'block_content.field_schema_data.revision_id', 'a:4:{s:13:"block_content";a:1:{s:6:"fields";a:1:{s:11:"revision_id";a:4:{s:4:"type";s:3:"int";s:8:"unsigned";b:1;s:4:"size";s:6:"normal";s:8:"not null";b:0;}}}s:24:"block_content_field_data";a:1:{s:6:"fields";a:1:{s:11:"revision_id";a:4:{s:4:"type";s:3:"int";s:8:"unsigned";b:1;s:4:"size";s:6:"normal";s:8:"not null";b:1;}}}s:22:"block_content_revision";a:1:{s:6:"fields";a:1:{s:11:"revision_id";a:4:{s:4:"type";s:6:"serial";s:8:"unsigned";b:1;s:4:"size";s:6:"normal";s:8:"not null";b:1;}}}s:28:"block_content_field_revision";a:1:{s:6:"fields";a:1:{s:11:"revision_id";a:4:{s:4:"type";s:3:"int";s:8:"unsigned";b:1;s:4:"size";s:6:"normal";s:8:"not null";b:1;}}}}'), ('entity.storage_schema.sql', 'block_content.field_schema_data.revision_log', 'a:1:{s:22:"block_content_revision";a:1:{s:6:"fields";a:1:{s:12:"revision_log";a:3:{s:4:"type";s:4:"text";s:4:"size";s:3:"big";s:8:"not null";b:0;}}}}'), ('entity.storage_schema.sql', 'block_content.field_schema_data.revision_translation_affected', 'a:2:{s:24:"block_content_field_data";a:1:{s:6:"fields";a:1:{s:29:"revision_translation_affected";a:3:{s:4:"type";s:3:"int";s:4:"size";s:4:"tiny";s:8:"not null";b:0;}}}s:28:"block_content_field_revision";a:1:{s:6:"fields";a:1:{s:29:"revision_translation_affected";a:3:{s:4:"type";s:3:"int";s:4:"size";s:4:"tiny";s:8:"not null";b:0;}}}}'), ('entity.storage_schema.sql', 'block_content.field_schema_data.revision_user', 'a:1:{s:22:"block_content_revision";a:2:{s:6:"fields";a:1:{s:13:"revision_user";a:4:{s:11:"description";s:28:"The ID of the target entity.";s:4:"type";s:3:"int";s:8:"unsigned";b:1;s:8:"not null";b:0;}}s:7:"indexes";a:1:{s:45:"block_content_field__revision_user__target_id";a:1:{i:0;s:13:"revision_user";}}}}'), ('entity.storage_schema.sql', 'block_content.field_schema_data.status', 'a:2:{s:24:"block_content_field_data";a:1:{s:6:"fields";a:1:{s:6:"status";a:3:{s:4:"type";s:3:"int";s:4:"size";s:4:"tiny";s:8:"not null";b:1;}}}s:28:"block_content_field_revision";a:1:{s:6:"fields";a:1:{s:6:"status";a:3:{s:4:"type";s:3:"int";s:4:"size";s:4:"tiny";s:8:"not null";b:1;}}}}'), ('entity.storage_schema.sql', 'block_content.field_schema_data.type', 'a:2:{s:13:"block_content";a:2:{s:6:"fields";a:1:{s:4:"type";a:4:{s:11:"description";s:28:"The ID of the target entity.";s:4:"type";s:13:"varchar_ascii";s:6:"length";i:32;s:8:"not null";b:1;}}s:7:"indexes";a:1:{s:36:"block_content_field__type__target_id";a:1:{i:0;s:4:"type";}}}s:24:"block_content_field_data";a:2:{s:6:"fields";a:1:{s:4:"type";a:4:{s:11:"description";s:28:"The ID of the target entity.";s:4:"type";s:13:"varchar_ascii";s:6:"length";i:32;s:8:"not null";b:1;}}s:7:"indexes";a:1:{s:36:"block_content_field__type__target_id";a:1:{i:0;s:4:"type";}}}}'), ('entity.storage_schema.sql', 'block_content.field_schema_data.uuid', 'a:1:{s:13:"block_content";a:2:{s:6:"fields";a:1:{s:4:"uuid";a:4:{s:4:"type";s:13:"varchar_ascii";s:6:"length";i:128;s:6:"binary";b:0;s:8:"not null";b:1;}}s:11:"unique keys";a:1:{s:32:"block_content_field__uuid__value";a:1:{i:0;s:4:"uuid";}}}}'), ('entity.storage_schema.sql', 'file.entity_schema_data', 'a:1:{s:12:"file_managed";a:1:{s:11:"primary key";a:1:{i:0;s:3:"fid";}}}'), ('entity.storage_schema.sql', 'file.field_schema_data.changed', 'a:1:{s:12:"file_managed";a:2:{s:6:"fields";a:1:{s:7:"changed";a:2:{s:4:"type";s:3:"int";s:8:"not null";b:1;}}s:7:"indexes";a:1:{s:19:"file_field__changed";a:1:{i:0;s:7:"changed";}}}}'), ('entity.storage_schema.sql', 'file.field_schema_data.created', 'a:1:{s:12:"file_managed";a:1:{s:6:"fields";a:1:{s:7:"created";a:2:{s:4:"type";s:3:"int";s:8:"not null";b:0;}}}}'), ('entity.storage_schema.sql', 'file.field_schema_data.fid', 'a:1:{s:12:"file_managed";a:1:{s:6:"fields";a:1:{s:3:"fid";a:4:{s:4:"type";s:6:"serial";s:8:"unsigned";b:1;s:4:"size";s:6:"normal";s:8:"not null";b:1;}}}}'), ('entity.storage_schema.sql', 'file.field_schema_data.filemime', 'a:1:{s:12:"file_managed";a:1:{s:6:"fields";a:1:{s:8:"filemime";a:4:{s:4:"type";s:13:"varchar_ascii";s:6:"length";i:255;s:6:"binary";b:0;s:8:"not null";b:0;}}}}'), ('entity.storage_schema.sql', 'file.field_schema_data.filename', 'a:1:{s:12:"file_managed";a:1:{s:6:"fields";a:1:{s:8:"filename";a:4:{s:4:"type";s:7:"varchar";s:6:"length";i:255;s:6:"binary";b:0;s:8:"not null";b:0;}}}}'), ('entity.storage_schema.sql', 'file.field_schema_data.filesize', 'a:1:{s:12:"file_managed";a:1:{s:6:"fields";a:1:{s:8:"filesize";a:4:{s:4:"type";s:3:"int";s:8:"unsigned";b:1;s:4:"size";s:3:"big";s:8:"not null";b:0;}}}}'), ('entity.storage_schema.sql', 'file.field_schema_data.langcode', 'a:1:{s:12:"file_managed";a:1:{s:6:"fields";a:1:{s:8:"langcode";a:3:{s:4:"type";s:13:"varchar_ascii";s:6:"length";i:12;s:8:"not null";b:1;}}}}'), ('entity.storage_schema.sql', 'file.field_schema_data.status', 'a:1:{s:12:"file_managed";a:2:{s:6:"fields";a:1:{s:6:"status";a:3:{s:4:"type";s:3:"int";s:4:"size";s:4:"tiny";s:8:"not null";b:1;}}s:7:"indexes";a:1:{s:18:"file_field__status";a:1:{i:0;s:6:"status";}}}}'), ('entity.storage_schema.sql', 'file.field_schema_data.uid', 'a:1:{s:12:"file_managed";a:2:{s:6:"fields";a:1:{s:3:"uid";a:4:{s:11:"description";s:28:"The ID of the target entity.";s:4:"type";s:3:"int";s:8:"unsigned";b:1;s:8:"not null";b:0;}}s:7:"indexes";a:1:{s:26:"file_field__uid__target_id";a:1:{i:0;s:3:"uid";}}}}'), ('entity.storage_schema.sql', 'file.field_schema_data.uri', 'a:1:{s:12:"file_managed";a:2:{s:6:"fields";a:1:{s:3:"uri";a:4:{s:4:"type";s:7:"varchar";s:6:"length";i:255;s:6:"binary";b:1;s:8:"not null";b:1;}}s:7:"indexes";a:1:{s:15:"file_field__uri";a:1:{i:0;s:3:"uri";}}}}'), ('entity.storage_schema.sql', 'file.field_schema_data.uuid', 'a:1:{s:12:"file_managed";a:2:{s:6:"fields";a:1:{s:4:"uuid";a:4:{s:4:"type";s:13:"varchar_ascii";s:6:"length";i:128;s:6:"binary";b:0;s:8:"not null";b:1;}}s:11:"unique keys";a:1:{s:23:"file_field__uuid__value";a:1:{i:0;s:4:"uuid";}}}}'), ('entity.storage_schema.sql', 'menu_link_content.entity_schema_data', 'a:4:{s:17:"menu_link_content";a:2:{s:11:"primary key";a:1:{i:0;s:2:"id";}s:11:"unique keys";a:1:{s:30:"menu_link_content__revision_id";a:1:{i:0;s:11:"revision_id";}}}s:26:"menu_link_content_revision";a:2:{s:11:"primary key";a:1:{i:0;s:11:"revision_id";}s:7:"indexes";a:1:{s:21:"menu_link_content__id";a:1:{i:0;s:2:"id";}}}s:22:"menu_link_content_data";a:2:{s:11:"primary key";a:2:{i:0;s:2:"id";i:1;s:8:"langcode";}s:7:"indexes";a:3:{s:49:"menu_link_content__id__default_langcode__langcode";a:3:{i:0;s:2:"id";i:1;s:16:"default_langcode";i:2;s:8:"langcode";}s:30:"menu_link_content__revision_id";a:1:{i:0;s:11:"revision_id";}s:33:"menu_link_content__enabled_bundle";a:3:{i:0;s:7:"enabled";i:1;s:6:"bundle";i:2;s:2:"id";}}}s:32:"menu_link_content_field_revision";a:2:{s:11:"primary key";a:2:{i:0;s:11:"revision_id";i:1;s:8:"langcode";}s:7:"indexes";a:1:{s:49:"menu_link_content__id__default_langcode__langcode";a:3:{i:0;s:2:"id";i:1;s:16:"default_langcode";i:2;s:8:"langcode";}}}}'), ('entity.storage_schema.sql', 'menu_link_content.field_schema_data.bundle', 'a:2:{s:17:"menu_link_content";a:1:{s:6:"fields";a:1:{s:6:"bundle";a:4:{s:4:"type";s:13:"varchar_ascii";s:6:"length";i:32;s:6:"binary";b:0;s:8:"not null";b:1;}}}s:22:"menu_link_content_data";a:1:{s:6:"fields";a:1:{s:6:"bundle";a:4:{s:4:"type";s:13:"varchar_ascii";s:6:"length";i:32;s:6:"binary";b:0;s:8:"not null";b:1;}}}}'), ('entity.storage_schema.sql', 'menu_link_content.field_schema_data.changed', 'a:2:{s:22:"menu_link_content_data";a:1:{s:6:"fields";a:1:{s:7:"changed";a:2:{s:4:"type";s:3:"int";s:8:"not null";b:0;}}}s:32:"menu_link_content_field_revision";a:1:{s:6:"fields";a:1:{s:7:"changed";a:2:{s:4:"type";s:3:"int";s:8:"not null";b:0;}}}}'), ('entity.storage_schema.sql', 'menu_link_content.field_schema_data.default_langcode', 'a:2:{s:22:"menu_link_content_data";a:1:{s:6:"fields";a:1:{s:16:"default_langcode";a:3:{s:4:"type";s:3:"int";s:4:"size";s:4:"tiny";s:8:"not null";b:1;}}}s:32:"menu_link_content_field_revision";a:1:{s:6:"fields";a:1:{s:16:"default_langcode";a:3:{s:4:"type";s:3:"int";s:4:"size";s:4:"tiny";s:8:"not null";b:1;}}}}'), ('entity.storage_schema.sql', 'menu_link_content.field_schema_data.description', 'a:2:{s:22:"menu_link_content_data";a:1:{s:6:"fields";a:1:{s:11:"description";a:4:{s:4:"type";s:7:"varchar";s:6:"length";i:255;s:6:"binary";b:0;s:8:"not null";b:0;}}}s:32:"menu_link_content_field_revision";a:1:{s:6:"fields";a:1:{s:11:"description";a:4:{s:4:"type";s:7:"varchar";s:6:"length";i:255;s:6:"binary";b:0;s:8:"not null";b:0;}}}}'), ('entity.storage_schema.sql', 'menu_link_content.field_schema_data.enabled', 'a:2:{s:22:"menu_link_content_data";a:1:{s:6:"fields";a:1:{s:7:"enabled";a:3:{s:4:"type";s:3:"int";s:4:"size";s:4:"tiny";s:8:"not null";b:1;}}}s:32:"menu_link_content_field_revision";a:1:{s:6:"fields";a:1:{s:7:"enabled";a:3:{s:4:"type";s:3:"int";s:4:"size";s:4:"tiny";s:8:"not null";b:1;}}}}'), ('entity.storage_schema.sql', 'menu_link_content.field_schema_data.expanded', 'a:1:{s:22:"menu_link_content_data";a:1:{s:6:"fields";a:1:{s:8:"expanded";a:3:{s:4:"type";s:3:"int";s:4:"size";s:4:"tiny";s:8:"not null";b:0;}}}}'), ('entity.storage_schema.sql', 'menu_link_content.field_schema_data.external', 'a:2:{s:22:"menu_link_content_data";a:1:{s:6:"fields";a:1:{s:8:"external";a:3:{s:4:"type";s:3:"int";s:4:"size";s:4:"tiny";s:8:"not null";b:0;}}}s:32:"menu_link_content_field_revision";a:1:{s:6:"fields";a:1:{s:8:"external";a:3:{s:4:"type";s:3:"int";s:4:"size";s:4:"tiny";s:8:"not null";b:0;}}}}'), ('entity.storage_schema.sql', 'menu_link_content.field_schema_data.id', 'a:4:{s:17:"menu_link_content";a:1:{s:6:"fields";a:1:{s:2:"id";a:4:{s:4:"type";s:6:"serial";s:8:"unsigned";b:1;s:4:"size";s:6:"normal";s:8:"not null";b:1;}}}s:22:"menu_link_content_data";a:1:{s:6:"fields";a:1:{s:2:"id";a:4:{s:4:"type";s:3:"int";s:8:"unsigned";b:1;s:4:"size";s:6:"normal";s:8:"not null";b:1;}}}s:26:"menu_link_content_revision";a:1:{s:6:"fields";a:1:{s:2:"id";a:4:{s:4:"type";s:3:"int";s:8:"unsigned";b:1;s:4:"size";s:6:"normal";s:8:"not null";b:1;}}}s:32:"menu_link_content_field_revision";a:1:{s:6:"fields";a:1:{s:2:"id";a:4:{s:4:"type";s:3:"int";s:8:"unsigned";b:1;s:4:"size";s:6:"normal";s:8:"not null";b:1;}}}}'), ('entity.storage_schema.sql', 'menu_link_content.field_schema_data.langcode', 'a:4:{s:17:"menu_link_content";a:1:{s:6:"fields";a:1:{s:8:"langcode";a:3:{s:4:"type";s:13:"varchar_ascii";s:6:"length";i:12;s:8:"not null";b:1;}}}s:22:"menu_link_content_data";a:1:{s:6:"fields";a:1:{s:8:"langcode";a:3:{s:4:"type";s:13:"varchar_ascii";s:6:"length";i:12;s:8:"not null";b:1;}}}s:26:"menu_link_content_revision";a:1:{s:6:"fields";a:1:{s:8:"langcode";a:3:{s:4:"type";s:13:"varchar_ascii";s:6:"length";i:12;s:8:"not null";b:1;}}}s:32:"menu_link_content_field_revision";a:1:{s:6:"fields";a:1:{s:8:"langcode";a:3:{s:4:"type";s:13:"varchar_ascii";s:6:"length";i:12;s:8:"not null";b:1;}}}}'); INSERT INTO `[[dbprefix]]key_value` VALUES ('entity.storage_schema.sql', 'menu_link_content.field_schema_data.link', 'a:2:{s:22:"menu_link_content_data";a:2:{s:6:"fields";a:3:{s:9:"link__uri";a:4:{s:11:"description";s:20:"The URI of the link.";s:4:"type";s:7:"varchar";s:6:"length";i:2048;s:8:"not null";b:0;}s:11:"link__title";a:4:{s:11:"description";s:14:"The link text.";s:4:"type";s:7:"varchar";s:6:"length";i:255;s:8:"not null";b:0;}s:13:"link__options";a:5:{s:11:"description";s:41:"Serialized array of options for the link.";s:4:"type";s:4:"blob";s:4:"size";s:3:"big";s:9:"serialize";b:1;s:8:"not null";b:0;}}s:7:"indexes";a:1:{s:34:"menu_link_content_field__link__uri";a:1:{i:0;a:2:{i:0;s:9:"link__uri";i:1;i:30;}}}}s:32:"menu_link_content_field_revision";a:2:{s:6:"fields";a:3:{s:9:"link__uri";a:4:{s:11:"description";s:20:"The URI of the link.";s:4:"type";s:7:"varchar";s:6:"length";i:2048;s:8:"not null";b:0;}s:11:"link__title";a:4:{s:11:"description";s:14:"The link text.";s:4:"type";s:7:"varchar";s:6:"length";i:255;s:8:"not null";b:0;}s:13:"link__options";a:5:{s:11:"description";s:41:"Serialized array of options for the link.";s:4:"type";s:4:"blob";s:4:"size";s:3:"big";s:9:"serialize";b:1;s:8:"not null";b:0;}}s:7:"indexes";a:1:{s:34:"menu_link_content_field__link__uri";a:1:{i:0;a:2:{i:0;s:9:"link__uri";i:1;i:30;}}}}}'), ('entity.storage_schema.sql', 'menu_link_content.field_schema_data.menu_name', 'a:1:{s:22:"menu_link_content_data";a:1:{s:6:"fields";a:1:{s:9:"menu_name";a:4:{s:4:"type";s:13:"varchar_ascii";s:6:"length";i:255;s:6:"binary";b:0;s:8:"not null";b:0;}}}}'), ('entity.storage_schema.sql', 'menu_link_content.field_schema_data.parent', 'a:1:{s:22:"menu_link_content_data";a:1:{s:6:"fields";a:1:{s:6:"parent";a:4:{s:4:"type";s:7:"varchar";s:6:"length";i:255;s:6:"binary";b:0;s:8:"not null";b:0;}}}}'), ('entity.storage_schema.sql', 'menu_link_content.field_schema_data.rediscover', 'a:1:{s:22:"menu_link_content_data";a:1:{s:6:"fields";a:1:{s:10:"rediscover";a:3:{s:4:"type";s:3:"int";s:4:"size";s:4:"tiny";s:8:"not null";b:0;}}}}'), ('entity.storage_schema.sql', 'menu_link_content.field_schema_data.revision_created', 'a:1:{s:26:"menu_link_content_revision";a:1:{s:6:"fields";a:1:{s:16:"revision_created";a:2:{s:4:"type";s:3:"int";s:8:"not null";b:0;}}}}'), ('entity.storage_schema.sql', 'menu_link_content.field_schema_data.revision_default', 'a:1:{s:26:"menu_link_content_revision";a:1:{s:6:"fields";a:1:{s:16:"revision_default";a:3:{s:4:"type";s:3:"int";s:4:"size";s:4:"tiny";s:8:"not null";b:0;}}}}'), ('entity.storage_schema.sql', 'menu_link_content.field_schema_data.revision_id', 'a:4:{s:17:"menu_link_content";a:1:{s:6:"fields";a:1:{s:11:"revision_id";a:4:{s:4:"type";s:3:"int";s:8:"unsigned";b:1;s:4:"size";s:6:"normal";s:8:"not null";b:0;}}}s:22:"menu_link_content_data";a:1:{s:6:"fields";a:1:{s:11:"revision_id";a:4:{s:4:"type";s:3:"int";s:8:"unsigned";b:1;s:4:"size";s:6:"normal";s:8:"not null";b:1;}}}s:26:"menu_link_content_revision";a:1:{s:6:"fields";a:1:{s:11:"revision_id";a:4:{s:4:"type";s:6:"serial";s:8:"unsigned";b:1;s:4:"size";s:6:"normal";s:8:"not null";b:1;}}}s:32:"menu_link_content_field_revision";a:1:{s:6:"fields";a:1:{s:11:"revision_id";a:4:{s:4:"type";s:3:"int";s:8:"unsigned";b:1;s:4:"size";s:6:"normal";s:8:"not null";b:1;}}}}'), ('entity.storage_schema.sql', 'menu_link_content.field_schema_data.revision_log_message', 'a:1:{s:26:"menu_link_content_revision";a:1:{s:6:"fields";a:1:{s:20:"revision_log_message";a:3:{s:4:"type";s:4:"text";s:4:"size";s:3:"big";s:8:"not null";b:0;}}}}'), ('entity.storage_schema.sql', 'menu_link_content.field_schema_data.revision_translation_affected', 'a:2:{s:22:"menu_link_content_data";a:1:{s:6:"fields";a:1:{s:29:"revision_translation_affected";a:3:{s:4:"type";s:3:"int";s:4:"size";s:4:"tiny";s:8:"not null";b:0;}}}s:32:"menu_link_content_field_revision";a:1:{s:6:"fields";a:1:{s:29:"revision_translation_affected";a:3:{s:4:"type";s:3:"int";s:4:"size";s:4:"tiny";s:8:"not null";b:0;}}}}'), ('entity.storage_schema.sql', 'menu_link_content.field_schema_data.revision_user', 'a:1:{s:26:"menu_link_content_revision";a:2:{s:6:"fields";a:1:{s:13:"revision_user";a:4:{s:11:"description";s:28:"The ID of the target entity.";s:4:"type";s:3:"int";s:8:"unsigned";b:1;s:8:"not null";b:0;}}s:7:"indexes";a:1:{s:29:"menu_link_content__ef029a1897";a:1:{i:0;s:13:"revision_user";}}}}'), ('entity.storage_schema.sql', 'menu_link_content.field_schema_data.title', 'a:2:{s:22:"menu_link_content_data";a:1:{s:6:"fields";a:1:{s:5:"title";a:4:{s:4:"type";s:7:"varchar";s:6:"length";i:255;s:6:"binary";b:0;s:8:"not null";b:0;}}}s:32:"menu_link_content_field_revision";a:1:{s:6:"fields";a:1:{s:5:"title";a:4:{s:4:"type";s:7:"varchar";s:6:"length";i:255;s:6:"binary";b:0;s:8:"not null";b:0;}}}}'), ('entity.storage_schema.sql', 'menu_link_content.field_schema_data.uuid', 'a:1:{s:17:"menu_link_content";a:2:{s:6:"fields";a:1:{s:4:"uuid";a:4:{s:4:"type";s:13:"varchar_ascii";s:6:"length";i:128;s:6:"binary";b:0;s:8:"not null";b:1;}}s:11:"unique keys";a:1:{s:36:"menu_link_content_field__uuid__value";a:1:{i:0;s:4:"uuid";}}}}'), ('entity.storage_schema.sql', 'menu_link_content.field_schema_data.weight', 'a:1:{s:22:"menu_link_content_data";a:1:{s:6:"fields";a:1:{s:6:"weight";a:4:{s:4:"type";s:3:"int";s:8:"unsigned";b:0;s:4:"size";s:6:"normal";s:8:"not null";b:0;}}}}'), ('entity.storage_schema.sql', 'node.entity_schema_data', 'a:4:{s:4:"node";a:2:{s:11:"primary key";a:1:{i:0;s:3:"nid";}s:11:"unique keys";a:1:{s:9:"node__vid";a:1:{i:0;s:3:"vid";}}}s:13:"node_revision";a:2:{s:11:"primary key";a:1:{i:0;s:3:"vid";}s:7:"indexes";a:1:{s:9:"node__nid";a:1:{i:0;s:3:"nid";}}}s:15:"node_field_data";a:2:{s:11:"primary key";a:2:{i:0;s:3:"nid";i:1;s:8:"langcode";}s:7:"indexes";a:5:{s:36:"node__id__default_langcode__langcode";a:3:{i:0;s:3:"nid";i:1;s:16:"default_langcode";i:2;s:8:"langcode";}s:9:"node__vid";a:1:{i:0;s:3:"vid";}s:17:"node__status_type";a:3:{i:0;s:6:"status";i:1;s:4:"type";i:2;s:3:"nid";}s:15:"node__frontpage";a:4:{i:0;s:7:"promote";i:1;s:6:"status";i:2;s:6:"sticky";i:3;s:7:"created";}s:16:"node__title_type";a:2:{i:0;s:5:"title";i:1;a:2:{i:0;s:4:"type";i:1;i:4;}}}}s:19:"node_field_revision";a:2:{s:11:"primary key";a:2:{i:0;s:3:"vid";i:1;s:8:"langcode";}s:7:"indexes";a:1:{s:36:"node__id__default_langcode__langcode";a:3:{i:0;s:3:"nid";i:1;s:16:"default_langcode";i:2;s:8:"langcode";}}}}'), ('entity.storage_schema.sql', 'node.field_schema_data.changed', 'a:2:{s:15:"node_field_data";a:2:{s:6:"fields";a:1:{s:7:"changed";a:2:{s:4:"type";s:3:"int";s:8:"not null";b:1;}}s:7:"indexes";a:1:{s:19:"node_field__changed";a:1:{i:0;s:7:"changed";}}}s:19:"node_field_revision";a:1:{s:6:"fields";a:1:{s:7:"changed";a:2:{s:4:"type";s:3:"int";s:8:"not null";b:0;}}}}'), ('entity.storage_schema.sql', 'node.field_schema_data.created', 'a:2:{s:15:"node_field_data";a:2:{s:6:"fields";a:1:{s:7:"created";a:2:{s:4:"type";s:3:"int";s:8:"not null";b:1;}}s:7:"indexes";a:1:{s:19:"node_field__created";a:1:{i:0;s:7:"created";}}}s:19:"node_field_revision";a:1:{s:6:"fields";a:1:{s:7:"created";a:2:{s:4:"type";s:3:"int";s:8:"not null";b:0;}}}}'), ('entity.storage_schema.sql', 'node.field_schema_data.default_langcode', 'a:2:{s:15:"node_field_data";a:1:{s:6:"fields";a:1:{s:16:"default_langcode";a:3:{s:4:"type";s:3:"int";s:4:"size";s:4:"tiny";s:8:"not null";b:1;}}}s:19:"node_field_revision";a:1:{s:6:"fields";a:1:{s:16:"default_langcode";a:3:{s:4:"type";s:3:"int";s:4:"size";s:4:"tiny";s:8:"not null";b:1;}}}}'), ('entity.storage_schema.sql', 'node.field_schema_data.langcode', 'a:4:{s:4:"node";a:1:{s:6:"fields";a:1:{s:8:"langcode";a:3:{s:4:"type";s:13:"varchar_ascii";s:6:"length";i:12;s:8:"not null";b:1;}}}s:15:"node_field_data";a:1:{s:6:"fields";a:1:{s:8:"langcode";a:3:{s:4:"type";s:13:"varchar_ascii";s:6:"length";i:12;s:8:"not null";b:1;}}}s:13:"node_revision";a:2:{s:6:"fields";a:1:{s:8:"langcode";a:3:{s:4:"type";s:13:"varchar_ascii";s:6:"length";i:12;s:8:"not null";b:1;}}s:7:"indexes";a:1:{s:20:"node_field__langcode";a:1:{i:0;s:8:"langcode";}}}s:19:"node_field_revision";a:1:{s:6:"fields";a:1:{s:8:"langcode";a:3:{s:4:"type";s:13:"varchar_ascii";s:6:"length";i:12;s:8:"not null";b:1;}}}}'), ('entity.storage_schema.sql', 'node.field_schema_data.nid', 'a:4:{s:4:"node";a:1:{s:6:"fields";a:1:{s:3:"nid";a:4:{s:4:"type";s:6:"serial";s:8:"unsigned";b:1;s:4:"size";s:6:"normal";s:8:"not null";b:1;}}}s:15:"node_field_data";a:1:{s:6:"fields";a:1:{s:3:"nid";a:4:{s:4:"type";s:3:"int";s:8:"unsigned";b:1;s:4:"size";s:6:"normal";s:8:"not null";b:1;}}}s:13:"node_revision";a:1:{s:6:"fields";a:1:{s:3:"nid";a:4:{s:4:"type";s:3:"int";s:8:"unsigned";b:1;s:4:"size";s:6:"normal";s:8:"not null";b:1;}}}s:19:"node_field_revision";a:1:{s:6:"fields";a:1:{s:3:"nid";a:4:{s:4:"type";s:3:"int";s:8:"unsigned";b:1;s:4:"size";s:6:"normal";s:8:"not null";b:1;}}}}'), ('entity.storage_schema.sql', 'node.field_schema_data.promote', 'a:2:{s:15:"node_field_data";a:1:{s:6:"fields";a:1:{s:7:"promote";a:3:{s:4:"type";s:3:"int";s:4:"size";s:4:"tiny";s:8:"not null";b:1;}}}s:19:"node_field_revision";a:1:{s:6:"fields";a:1:{s:7:"promote";a:3:{s:4:"type";s:3:"int";s:4:"size";s:4:"tiny";s:8:"not null";b:0;}}}}'), ('entity.storage_schema.sql', 'node.field_schema_data.revision_default', 'a:1:{s:13:"node_revision";a:1:{s:6:"fields";a:1:{s:16:"revision_default";a:3:{s:4:"type";s:3:"int";s:4:"size";s:4:"tiny";s:8:"not null";b:0;}}}}'), ('entity.storage_schema.sql', 'node.field_schema_data.revision_log', 'a:1:{s:13:"node_revision";a:1:{s:6:"fields";a:1:{s:12:"revision_log";a:3:{s:4:"type";s:4:"text";s:4:"size";s:3:"big";s:8:"not null";b:0;}}}}'), ('entity.storage_schema.sql', 'node.field_schema_data.revision_timestamp', 'a:1:{s:13:"node_revision";a:1:{s:6:"fields";a:1:{s:18:"revision_timestamp";a:2:{s:4:"type";s:3:"int";s:8:"not null";b:0;}}}}'), ('entity.storage_schema.sql', 'node.field_schema_data.revision_translation_affected', 'a:2:{s:15:"node_field_data";a:1:{s:6:"fields";a:1:{s:29:"revision_translation_affected";a:3:{s:4:"type";s:3:"int";s:4:"size";s:4:"tiny";s:8:"not null";b:0;}}}s:19:"node_field_revision";a:1:{s:6:"fields";a:1:{s:29:"revision_translation_affected";a:3:{s:4:"type";s:3:"int";s:4:"size";s:4:"tiny";s:8:"not null";b:0;}}}}'), ('entity.storage_schema.sql', 'node.field_schema_data.revision_uid', 'a:1:{s:13:"node_revision";a:3:{s:6:"fields";a:1:{s:12:"revision_uid";a:4:{s:11:"description";s:28:"The ID of the target entity.";s:4:"type";s:3:"int";s:8:"unsigned";b:1;s:8:"not null";b:0;}}s:7:"indexes";a:1:{s:35:"node_field__revision_uid__target_id";a:1:{i:0;s:12:"revision_uid";}}s:12:"foreign keys";a:1:{s:24:"node_field__revision_uid";a:2:{s:5:"table";s:5:"users";s:7:"columns";a:1:{s:12:"revision_uid";s:3:"uid";}}}}}'), ('entity.storage_schema.sql', 'node.field_schema_data.status', 'a:2:{s:15:"node_field_data";a:1:{s:6:"fields";a:1:{s:6:"status";a:3:{s:4:"type";s:3:"int";s:4:"size";s:4:"tiny";s:8:"not null";b:1;}}}s:19:"node_field_revision";a:1:{s:6:"fields";a:1:{s:6:"status";a:3:{s:4:"type";s:3:"int";s:4:"size";s:4:"tiny";s:8:"not null";b:1;}}}}'), ('entity.storage_schema.sql', 'node.field_schema_data.sticky', 'a:2:{s:15:"node_field_data";a:1:{s:6:"fields";a:1:{s:6:"sticky";a:3:{s:4:"type";s:3:"int";s:4:"size";s:4:"tiny";s:8:"not null";b:1;}}}s:19:"node_field_revision";a:1:{s:6:"fields";a:1:{s:6:"sticky";a:3:{s:4:"type";s:3:"int";s:4:"size";s:4:"tiny";s:8:"not null";b:0;}}}}'), ('entity.storage_schema.sql', 'node.field_schema_data.title', 'a:2:{s:15:"node_field_data";a:1:{s:6:"fields";a:1:{s:5:"title";a:4:{s:4:"type";s:7:"varchar";s:6:"length";i:255;s:6:"binary";b:0;s:8:"not null";b:1;}}}s:19:"node_field_revision";a:1:{s:6:"fields";a:1:{s:5:"title";a:4:{s:4:"type";s:7:"varchar";s:6:"length";i:255;s:6:"binary";b:0;s:8:"not null";b:0;}}}}'), ('entity.storage_schema.sql', 'node.field_schema_data.type', 'a:2:{s:4:"node";a:2:{s:6:"fields";a:1:{s:4:"type";a:4:{s:11:"description";s:28:"The ID of the target entity.";s:4:"type";s:13:"varchar_ascii";s:6:"length";i:32;s:8:"not null";b:1;}}s:7:"indexes";a:1:{s:27:"node_field__type__target_id";a:1:{i:0;s:4:"type";}}}s:15:"node_field_data";a:2:{s:6:"fields";a:1:{s:4:"type";a:4:{s:11:"description";s:28:"The ID of the target entity.";s:4:"type";s:13:"varchar_ascii";s:6:"length";i:32;s:8:"not null";b:1;}}s:7:"indexes";a:1:{s:27:"node_field__type__target_id";a:1:{i:0;s:4:"type";}}}}'), ('entity.storage_schema.sql', 'node.field_schema_data.uid', 'a:2:{s:15:"node_field_data";a:2:{s:6:"fields";a:1:{s:3:"uid";a:4:{s:11:"description";s:28:"The ID of the target entity.";s:4:"type";s:3:"int";s:8:"unsigned";b:1;s:8:"not null";b:1;}}s:7:"indexes";a:1:{s:26:"node_field__uid__target_id";a:1:{i:0;s:3:"uid";}}}s:19:"node_field_revision";a:2:{s:6:"fields";a:1:{s:3:"uid";a:4:{s:11:"description";s:28:"The ID of the target entity.";s:4:"type";s:3:"int";s:8:"unsigned";b:1;s:8:"not null";b:1;}}s:7:"indexes";a:1:{s:26:"node_field__uid__target_id";a:1:{i:0;s:3:"uid";}}}}'), ('entity.storage_schema.sql', 'node.field_schema_data.uuid', 'a:1:{s:4:"node";a:2:{s:6:"fields";a:1:{s:4:"uuid";a:4:{s:4:"type";s:13:"varchar_ascii";s:6:"length";i:128;s:6:"binary";b:0;s:8:"not null";b:1;}}s:11:"unique keys";a:1:{s:23:"node_field__uuid__value";a:1:{i:0;s:4:"uuid";}}}}'), ('entity.storage_schema.sql', 'node.field_schema_data.vid', 'a:4:{s:4:"node";a:1:{s:6:"fields";a:1:{s:3:"vid";a:4:{s:4:"type";s:3:"int";s:8:"unsigned";b:1;s:4:"size";s:6:"normal";s:8:"not null";b:0;}}}s:15:"node_field_data";a:1:{s:6:"fields";a:1:{s:3:"vid";a:4:{s:4:"type";s:3:"int";s:8:"unsigned";b:1;s:4:"size";s:6:"normal";s:8:"not null";b:1;}}}s:13:"node_revision";a:1:{s:6:"fields";a:1:{s:3:"vid";a:4:{s:4:"type";s:6:"serial";s:8:"unsigned";b:1;s:4:"size";s:6:"normal";s:8:"not null";b:1;}}}s:19:"node_field_revision";a:1:{s:6:"fields";a:1:{s:3:"vid";a:4:{s:4:"type";s:3:"int";s:8:"unsigned";b:1;s:4:"size";s:6:"normal";s:8:"not null";b:1;}}}}'), ('entity.storage_schema.sql', 'path_alias.entity_schema_data', 'a:2:{s:10:"path_alias";a:3:{s:11:"primary key";a:1:{i:0;s:2:"id";}s:7:"indexes";a:2:{s:36:"path_alias__alias_langcode_id_status";a:4:{i:0;s:5:"alias";i:1;s:8:"langcode";i:2;s:2:"id";i:3;s:6:"status";}s:35:"path_alias__path_langcode_id_status";a:4:{i:0;s:4:"path";i:1;s:8:"langcode";i:2;s:2:"id";i:3;s:6:"status";}}s:11:"unique keys";a:1:{s:23:"path_alias__revision_id";a:1:{i:0;s:11:"revision_id";}}}s:19:"path_alias_revision";a:2:{s:11:"primary key";a:1:{i:0;s:11:"revision_id";}s:7:"indexes";a:3:{s:14:"path_alias__id";a:1:{i:0;s:2:"id";}s:45:"path_alias_revision__alias_langcode_id_status";a:4:{i:0;s:5:"alias";i:1;s:8:"langcode";i:2;s:2:"id";i:3;s:6:"status";}s:44:"path_alias_revision__path_langcode_id_status";a:4:{i:0;s:4:"path";i:1;s:8:"langcode";i:2;s:2:"id";i:3;s:6:"status";}}}}'), ('entity.storage_schema.sql', 'path_alias.field_schema_data.alias', 'a:2:{s:10:"path_alias";a:1:{s:6:"fields";a:1:{s:5:"alias";a:4:{s:4:"type";s:7:"varchar";s:6:"length";i:255;s:6:"binary";b:0;s:8:"not null";b:0;}}}s:19:"path_alias_revision";a:1:{s:6:"fields";a:1:{s:5:"alias";a:4:{s:4:"type";s:7:"varchar";s:6:"length";i:255;s:6:"binary";b:0;s:8:"not null";b:0;}}}}'), ('entity.storage_schema.sql', 'path_alias.field_schema_data.id', 'a:2:{s:10:"path_alias";a:1:{s:6:"fields";a:1:{s:2:"id";a:4:{s:4:"type";s:6:"serial";s:8:"unsigned";b:1;s:4:"size";s:6:"normal";s:8:"not null";b:1;}}}s:19:"path_alias_revision";a:1:{s:6:"fields";a:1:{s:2:"id";a:4:{s:4:"type";s:3:"int";s:8:"unsigned";b:1;s:4:"size";s:6:"normal";s:8:"not null";b:1;}}}}'), ('entity.storage_schema.sql', 'path_alias.field_schema_data.langcode', 'a:2:{s:10:"path_alias";a:1:{s:6:"fields";a:1:{s:8:"langcode";a:3:{s:4:"type";s:13:"varchar_ascii";s:6:"length";i:12;s:8:"not null";b:1;}}}s:19:"path_alias_revision";a:1:{s:6:"fields";a:1:{s:8:"langcode";a:3:{s:4:"type";s:13:"varchar_ascii";s:6:"length";i:12;s:8:"not null";b:1;}}}}'), ('entity.storage_schema.sql', 'path_alias.field_schema_data.path', 'a:2:{s:10:"path_alias";a:1:{s:6:"fields";a:1:{s:4:"path";a:4:{s:4:"type";s:7:"varchar";s:6:"length";i:255;s:6:"binary";b:0;s:8:"not null";b:0;}}}s:19:"path_alias_revision";a:1:{s:6:"fields";a:1:{s:4:"path";a:4:{s:4:"type";s:7:"varchar";s:6:"length";i:255;s:6:"binary";b:0;s:8:"not null";b:0;}}}}'), ('entity.storage_schema.sql', 'path_alias.field_schema_data.revision_default', 'a:1:{s:19:"path_alias_revision";a:1:{s:6:"fields";a:1:{s:16:"revision_default";a:3:{s:4:"type";s:3:"int";s:4:"size";s:4:"tiny";s:8:"not null";b:0;}}}}'), ('entity.storage_schema.sql', 'path_alias.field_schema_data.revision_id', 'a:2:{s:10:"path_alias";a:1:{s:6:"fields";a:1:{s:11:"revision_id";a:4:{s:4:"type";s:3:"int";s:8:"unsigned";b:1;s:4:"size";s:6:"normal";s:8:"not null";b:0;}}}s:19:"path_alias_revision";a:1:{s:6:"fields";a:1:{s:11:"revision_id";a:4:{s:4:"type";s:6:"serial";s:8:"unsigned";b:1;s:4:"size";s:6:"normal";s:8:"not null";b:1;}}}}'), ('entity.storage_schema.sql', 'path_alias.field_schema_data.status', 'a:2:{s:10:"path_alias";a:1:{s:6:"fields";a:1:{s:6:"status";a:3:{s:4:"type";s:3:"int";s:4:"size";s:4:"tiny";s:8:"not null";b:1;}}}s:19:"path_alias_revision";a:1:{s:6:"fields";a:1:{s:6:"status";a:3:{s:4:"type";s:3:"int";s:4:"size";s:4:"tiny";s:8:"not null";b:1;}}}}'), ('entity.storage_schema.sql', 'path_alias.field_schema_data.uuid', 'a:1:{s:10:"path_alias";a:2:{s:6:"fields";a:1:{s:4:"uuid";a:4:{s:4:"type";s:13:"varchar_ascii";s:6:"length";i:128;s:6:"binary";b:0;s:8:"not null";b:1;}}s:11:"unique keys";a:1:{s:29:"path_alias_field__uuid__value";a:1:{i:0;s:4:"uuid";}}}}'), ('entity.storage_schema.sql', 'taxonomy_term.entity_schema_data', 'a:5:{s:18:"taxonomy_term_data";a:2:{s:11:"primary key";a:1:{i:0;s:3:"tid";}s:11:"unique keys";a:1:{s:26:"taxonomy_term__revision_id";a:1:{i:0;s:11:"revision_id";}}}s:22:"taxonomy_term_revision";a:2:{s:11:"primary key";a:1:{i:0;s:11:"revision_id";}s:7:"indexes";a:1:{s:18:"taxonomy_term__tid";a:1:{i:0;s:3:"tid";}}}s:24:"taxonomy_term_field_data";a:2:{s:11:"primary key";a:2:{i:0;s:3:"tid";i:1;s:8:"langcode";}s:7:"indexes";a:5:{s:45:"taxonomy_term__id__default_langcode__langcode";a:3:{i:0;s:3:"tid";i:1;s:16:"default_langcode";i:2;s:8:"langcode";}s:26:"taxonomy_term__revision_id";a:1:{i:0;s:11:"revision_id";}s:25:"taxonomy_term__status_vid";a:3:{i:0;s:6:"status";i:1;s:3:"vid";i:2;s:3:"tid";}s:19:"taxonomy_term__tree";a:3:{i:0;s:3:"vid";i:1;s:6:"weight";i:2;s:4:"name";}s:23:"taxonomy_term__vid_name";a:2:{i:0;s:3:"vid";i:1;s:4:"name";}}}s:28:"taxonomy_term_field_revision";a:2:{s:11:"primary key";a:2:{i:0;s:11:"revision_id";i:1;s:8:"langcode";}s:7:"indexes";a:1:{s:45:"taxonomy_term__id__default_langcode__langcode";a:3:{i:0;s:3:"tid";i:1;s:16:"default_langcode";i:2;s:8:"langcode";}}}s:14:"taxonomy_index";a:2:{s:11:"primary key";a:2:{i:0;s:3:"nid";i:1;s:3:"tid";}s:7:"indexes";a:1:{s:9:"term_node";a:4:{i:0;s:3:"tid";i:1;s:6:"status";i:2;s:6:"sticky";i:3;s:7:"created";}}}}'), ('entity.storage_schema.sql', 'taxonomy_term.field_schema_data.changed', 'a:2:{s:24:"taxonomy_term_field_data";a:1:{s:6:"fields";a:1:{s:7:"changed";a:2:{s:4:"type";s:3:"int";s:8:"not null";b:0;}}}s:28:"taxonomy_term_field_revision";a:1:{s:6:"fields";a:1:{s:7:"changed";a:2:{s:4:"type";s:3:"int";s:8:"not null";b:0;}}}}'), ('entity.storage_schema.sql', 'taxonomy_term.field_schema_data.default_langcode', 'a:2:{s:24:"taxonomy_term_field_data";a:1:{s:6:"fields";a:1:{s:16:"default_langcode";a:3:{s:4:"type";s:3:"int";s:4:"size";s:4:"tiny";s:8:"not null";b:1;}}}s:28:"taxonomy_term_field_revision";a:1:{s:6:"fields";a:1:{s:16:"default_langcode";a:3:{s:4:"type";s:3:"int";s:4:"size";s:4:"tiny";s:8:"not null";b:1;}}}}'), ('entity.storage_schema.sql', 'taxonomy_term.field_schema_data.description', 'a:2:{s:24:"taxonomy_term_field_data";a:2:{s:6:"fields";a:2:{s:18:"description__value";a:3:{s:4:"type";s:4:"text";s:4:"size";s:3:"big";s:8:"not null";b:0;}s:19:"description__format";a:3:{s:4:"type";s:13:"varchar_ascii";s:6:"length";i:255;s:8:"not null";b:0;}}s:7:"indexes";a:0:{}}s:28:"taxonomy_term_field_revision";a:2:{s:6:"fields";a:2:{s:18:"description__value";a:3:{s:4:"type";s:4:"text";s:4:"size";s:3:"big";s:8:"not null";b:0;}s:19:"description__format";a:3:{s:4:"type";s:13:"varchar_ascii";s:6:"length";i:255;s:8:"not null";b:0;}}s:7:"indexes";a:1:{s:40:"taxonomy_term_field__description__format";a:1:{i:0;s:19:"description__format";}}}}'), ('entity.storage_schema.sql', 'taxonomy_term.field_schema_data.langcode', 'a:4:{s:18:"taxonomy_term_data";a:1:{s:6:"fields";a:1:{s:8:"langcode";a:3:{s:4:"type";s:13:"varchar_ascii";s:6:"length";i:12;s:8:"not null";b:1;}}}s:24:"taxonomy_term_field_data";a:1:{s:6:"fields";a:1:{s:8:"langcode";a:3:{s:4:"type";s:13:"varchar_ascii";s:6:"length";i:12;s:8:"not null";b:1;}}}s:22:"taxonomy_term_revision";a:1:{s:6:"fields";a:1:{s:8:"langcode";a:3:{s:4:"type";s:13:"varchar_ascii";s:6:"length";i:12;s:8:"not null";b:1;}}}s:28:"taxonomy_term_field_revision";a:1:{s:6:"fields";a:1:{s:8:"langcode";a:3:{s:4:"type";s:13:"varchar_ascii";s:6:"length";i:12;s:8:"not null";b:1;}}}}'), ('entity.storage_schema.sql', 'taxonomy_term.field_schema_data.name', 'a:2:{s:24:"taxonomy_term_field_data";a:2:{s:6:"fields";a:1:{s:4:"name";a:4:{s:4:"type";s:7:"varchar";s:6:"length";i:255;s:6:"binary";b:0;s:8:"not null";b:1;}}s:7:"indexes";a:1:{s:25:"taxonomy_term_field__name";a:1:{i:0;s:4:"name";}}}s:28:"taxonomy_term_field_revision";a:1:{s:6:"fields";a:1:{s:4:"name";a:4:{s:4:"type";s:7:"varchar";s:6:"length";i:255;s:6:"binary";b:0;s:8:"not null";b:0;}}}}'), ('entity.storage_schema.sql', 'taxonomy_term.field_schema_data.parent', 'a:2:{s:21:"taxonomy_term__parent";a:4:{s:11:"description";s:44:"Data storage for taxonomy_term field parent.";s:6:"fields";a:7:{s:6:"bundle";a:5:{s:4:"type";s:13:"varchar_ascii";s:6:"length";i:128;s:8:"not null";b:1;s:7:"default";s:0:"";s:11:"description";s:88:"The field instance bundle to which this row belongs, used when deleting a field instance";}s:7:"deleted";a:5:{s:4:"type";s:3:"int";s:4:"size";s:4:"tiny";s:8:"not null";b:1;s:7:"default";i:0;s:11:"description";s:60:"A boolean indicating whether this data item has been deleted";}s:9:"entity_id";a:4:{s:4:"type";s:3:"int";s:8:"unsigned";b:1;s:8:"not null";b:1;s:11:"description";s:38:"The entity id this data is attached to";}s:11:"revision_id";a:4:{s:4:"type";s:3:"int";s:8:"unsigned";b:1;s:8:"not null";b:1;s:11:"description";s:47:"The entity revision id this data is attached to";}s:8:"langcode";a:5:{s:4:"type";s:13:"varchar_ascii";s:6:"length";i:32;s:8:"not null";b:1;s:7:"default";s:0:"";s:11:"description";s:37:"The language code for this data item.";}s:5:"delta";a:4:{s:4:"type";s:3:"int";s:8:"unsigned";b:1;s:8:"not null";b:1;s:11:"description";s:67:"The sequence number for this data item, used for multi-value fields";}s:16:"parent_target_id";a:4:{s:11:"description";s:28:"The ID of the target entity.";s:4:"type";s:3:"int";s:8:"unsigned";b:1;s:8:"not null";b:1;}}s:11:"primary key";a:4:{i:0;s:9:"entity_id";i:1;s:7:"deleted";i:2;s:5:"delta";i:3;s:8:"langcode";}s:7:"indexes";a:3:{s:11:"revision_id";a:1:{i:0;s:11:"revision_id";}s:16:"parent_target_id";a:1:{i:0;s:16:"parent_target_id";}s:22:"bundle_delta_target_id";a:3:{i:0;s:6:"bundle";i:1;s:5:"delta";i:2;s:16:"parent_target_id";}}}s:30:"taxonomy_term_revision__parent";a:4:{s:11:"description";s:56:"Revision archive storage for taxonomy_term field parent.";s:6:"fields";a:7:{s:6:"bundle";a:5:{s:4:"type";s:13:"varchar_ascii";s:6:"length";i:128;s:8:"not null";b:1;s:7:"default";s:0:"";s:11:"description";s:88:"The field instance bundle to which this row belongs, used when deleting a field instance";}s:7:"deleted";a:5:{s:4:"type";s:3:"int";s:4:"size";s:4:"tiny";s:8:"not null";b:1;s:7:"default";i:0;s:11:"description";s:60:"A boolean indicating whether this data item has been deleted";}s:9:"entity_id";a:4:{s:4:"type";s:3:"int";s:8:"unsigned";b:1;s:8:"not null";b:1;s:11:"description";s:38:"The entity id this data is attached to";}s:11:"revision_id";a:4:{s:4:"type";s:3:"int";s:8:"unsigned";b:1;s:8:"not null";b:1;s:11:"description";s:47:"The entity revision id this data is attached to";}s:8:"langcode";a:5:{s:4:"type";s:13:"varchar_ascii";s:6:"length";i:32;s:8:"not null";b:1;s:7:"default";s:0:"";s:11:"description";s:37:"The language code for this data item.";}s:5:"delta";a:4:{s:4:"type";s:3:"int";s:8:"unsigned";b:1;s:8:"not null";b:1;s:11:"description";s:67:"The sequence number for this data item, used for multi-value fields";}s:16:"parent_target_id";a:4:{s:11:"description";s:28:"The ID of the target entity.";s:4:"type";s:3:"int";s:8:"unsigned";b:1;s:8:"not null";b:1;}}s:11:"primary key";a:5:{i:0;s:9:"entity_id";i:1;s:11:"revision_id";i:2;s:7:"deleted";i:3;s:5:"delta";i:4;s:8:"langcode";}s:7:"indexes";a:3:{s:6:"bundle";a:1:{i:0;s:6:"bundle";}s:11:"revision_id";a:1:{i:0;s:11:"revision_id";}s:16:"parent_target_id";a:1:{i:0;s:16:"parent_target_id";}}}}'), ('entity.storage_schema.sql', 'taxonomy_term.field_schema_data.revision_created', 'a:1:{s:22:"taxonomy_term_revision";a:1:{s:6:"fields";a:1:{s:16:"revision_created";a:2:{s:4:"type";s:3:"int";s:8:"not null";b:0;}}}}'), ('entity.storage_schema.sql', 'taxonomy_term.field_schema_data.revision_default', 'a:1:{s:22:"taxonomy_term_revision";a:1:{s:6:"fields";a:1:{s:16:"revision_default";a:3:{s:4:"type";s:3:"int";s:4:"size";s:4:"tiny";s:8:"not null";b:0;}}}}'), ('entity.storage_schema.sql', 'taxonomy_term.field_schema_data.revision_id', 'a:4:{s:18:"taxonomy_term_data";a:1:{s:6:"fields";a:1:{s:11:"revision_id";a:4:{s:4:"type";s:3:"int";s:8:"unsigned";b:1;s:4:"size";s:6:"normal";s:8:"not null";b:0;}}}s:24:"taxonomy_term_field_data";a:1:{s:6:"fields";a:1:{s:11:"revision_id";a:4:{s:4:"type";s:3:"int";s:8:"unsigned";b:1;s:4:"size";s:6:"normal";s:8:"not null";b:1;}}}s:22:"taxonomy_term_revision";a:1:{s:6:"fields";a:1:{s:11:"revision_id";a:4:{s:4:"type";s:6:"serial";s:8:"unsigned";b:1;s:4:"size";s:6:"normal";s:8:"not null";b:1;}}}s:28:"taxonomy_term_field_revision";a:1:{s:6:"fields";a:1:{s:11:"revision_id";a:4:{s:4:"type";s:3:"int";s:8:"unsigned";b:1;s:4:"size";s:6:"normal";s:8:"not null";b:1;}}}}'), ('entity.storage_schema.sql', 'taxonomy_term.field_schema_data.revision_log_message', 'a:1:{s:22:"taxonomy_term_revision";a:1:{s:6:"fields";a:1:{s:20:"revision_log_message";a:3:{s:4:"type";s:4:"text";s:4:"size";s:3:"big";s:8:"not null";b:0;}}}}'), ('entity.storage_schema.sql', 'taxonomy_term.field_schema_data.revision_translation_affected', 'a:2:{s:24:"taxonomy_term_field_data";a:1:{s:6:"fields";a:1:{s:29:"revision_translation_affected";a:3:{s:4:"type";s:3:"int";s:4:"size";s:4:"tiny";s:8:"not null";b:0;}}}s:28:"taxonomy_term_field_revision";a:1:{s:6:"fields";a:1:{s:29:"revision_translation_affected";a:3:{s:4:"type";s:3:"int";s:4:"size";s:4:"tiny";s:8:"not null";b:0;}}}}'), ('entity.storage_schema.sql', 'taxonomy_term.field_schema_data.revision_user', 'a:1:{s:22:"taxonomy_term_revision";a:2:{s:6:"fields";a:1:{s:13:"revision_user";a:4:{s:11:"description";s:28:"The ID of the target entity.";s:4:"type";s:3:"int";s:8:"unsigned";b:1;s:8:"not null";b:0;}}s:7:"indexes";a:1:{s:45:"taxonomy_term_field__revision_user__target_id";a:1:{i:0;s:13:"revision_user";}}}}'), ('entity.storage_schema.sql', 'taxonomy_term.field_schema_data.status', 'a:2:{s:24:"taxonomy_term_field_data";a:1:{s:6:"fields";a:1:{s:6:"status";a:3:{s:4:"type";s:3:"int";s:4:"size";s:4:"tiny";s:8:"not null";b:1;}}}s:28:"taxonomy_term_field_revision";a:1:{s:6:"fields";a:1:{s:6:"status";a:3:{s:4:"type";s:3:"int";s:4:"size";s:4:"tiny";s:8:"not null";b:1;}}}}'), ('entity.storage_schema.sql', 'taxonomy_term.field_schema_data.tid', 'a:4:{s:18:"taxonomy_term_data";a:1:{s:6:"fields";a:1:{s:3:"tid";a:4:{s:4:"type";s:6:"serial";s:8:"unsigned";b:1;s:4:"size";s:6:"normal";s:8:"not null";b:1;}}}s:24:"taxonomy_term_field_data";a:1:{s:6:"fields";a:1:{s:3:"tid";a:4:{s:4:"type";s:3:"int";s:8:"unsigned";b:1;s:4:"size";s:6:"normal";s:8:"not null";b:1;}}}s:22:"taxonomy_term_revision";a:1:{s:6:"fields";a:1:{s:3:"tid";a:4:{s:4:"type";s:3:"int";s:8:"unsigned";b:1;s:4:"size";s:6:"normal";s:8:"not null";b:1;}}}s:28:"taxonomy_term_field_revision";a:1:{s:6:"fields";a:1:{s:3:"tid";a:4:{s:4:"type";s:3:"int";s:8:"unsigned";b:1;s:4:"size";s:6:"normal";s:8:"not null";b:1;}}}}'), ('entity.storage_schema.sql', 'taxonomy_term.field_schema_data.uuid', 'a:1:{s:18:"taxonomy_term_data";a:2:{s:6:"fields";a:1:{s:4:"uuid";a:4:{s:4:"type";s:13:"varchar_ascii";s:6:"length";i:128;s:6:"binary";b:0;s:8:"not null";b:1;}}s:11:"unique keys";a:1:{s:32:"taxonomy_term_field__uuid__value";a:1:{i:0;s:4:"uuid";}}}}'), ('entity.storage_schema.sql', 'taxonomy_term.field_schema_data.vid', 'a:2:{s:18:"taxonomy_term_data";a:2:{s:6:"fields";a:1:{s:3:"vid";a:4:{s:11:"description";s:28:"The ID of the target entity.";s:4:"type";s:13:"varchar_ascii";s:6:"length";i:32;s:8:"not null";b:1;}}s:7:"indexes";a:1:{s:35:"taxonomy_term_field__vid__target_id";a:1:{i:0;s:3:"vid";}}}s:24:"taxonomy_term_field_data";a:2:{s:6:"fields";a:1:{s:3:"vid";a:4:{s:11:"description";s:28:"The ID of the target entity.";s:4:"type";s:13:"varchar_ascii";s:6:"length";i:32;s:8:"not null";b:1;}}s:7:"indexes";a:0:{}}}'), ('entity.storage_schema.sql', 'taxonomy_term.field_schema_data.weight', 'a:1:{s:24:"taxonomy_term_field_data";a:1:{s:6:"fields";a:1:{s:6:"weight";a:4:{s:4:"type";s:3:"int";s:8:"unsigned";b:0;s:4:"size";s:6:"normal";s:8:"not null";b:1;}}}}'), ('entity.storage_schema.sql', 'user.entity_schema_data', 'a:2:{s:5:"users";a:1:{s:11:"primary key";a:1:{i:0;s:3:"uid";}}s:16:"users_field_data";a:3:{s:11:"primary key";a:2:{i:0;s:3:"uid";i:1;s:8:"langcode";}s:7:"indexes";a:1:{s:36:"user__id__default_langcode__langcode";a:3:{i:0;s:3:"uid";i:1;s:16:"default_langcode";i:2;s:8:"langcode";}}s:11:"unique keys";a:1:{s:10:"user__name";a:2:{i:0;s:4:"name";i:1;s:8:"langcode";}}}}'), ('entity.storage_schema.sql', 'user.field_schema_data.access', 'a:1:{s:16:"users_field_data";a:2:{s:6:"fields";a:1:{s:6:"access";a:2:{s:4:"type";s:3:"int";s:8:"not null";b:1;}}s:7:"indexes";a:1:{s:18:"user_field__access";a:1:{i:0;s:6:"access";}}}}'), ('entity.storage_schema.sql', 'user.field_schema_data.changed', 'a:1:{s:16:"users_field_data";a:1:{s:6:"fields";a:1:{s:7:"changed";a:2:{s:4:"type";s:3:"int";s:8:"not null";b:0;}}}}'), ('entity.storage_schema.sql', 'user.field_schema_data.created', 'a:1:{s:16:"users_field_data";a:2:{s:6:"fields";a:1:{s:7:"created";a:2:{s:4:"type";s:3:"int";s:8:"not null";b:1;}}s:7:"indexes";a:1:{s:19:"user_field__created";a:1:{i:0;s:7:"created";}}}}'), ('entity.storage_schema.sql', 'user.field_schema_data.default_langcode', 'a:1:{s:16:"users_field_data";a:1:{s:6:"fields";a:1:{s:16:"default_langcode";a:3:{s:4:"type";s:3:"int";s:4:"size";s:4:"tiny";s:8:"not null";b:1;}}}}'), ('entity.storage_schema.sql', 'user.field_schema_data.init', 'a:1:{s:16:"users_field_data";a:1:{s:6:"fields";a:1:{s:4:"init";a:3:{s:4:"type";s:7:"varchar";s:6:"length";i:254;s:8:"not null";b:0;}}}}'), ('entity.storage_schema.sql', 'user.field_schema_data.langcode', 'a:2:{s:5:"users";a:1:{s:6:"fields";a:1:{s:8:"langcode";a:3:{s:4:"type";s:13:"varchar_ascii";s:6:"length";i:12;s:8:"not null";b:1;}}}s:16:"users_field_data";a:1:{s:6:"fields";a:1:{s:8:"langcode";a:3:{s:4:"type";s:13:"varchar_ascii";s:6:"length";i:12;s:8:"not null";b:1;}}}}'), ('entity.storage_schema.sql', 'user.field_schema_data.login', 'a:1:{s:16:"users_field_data";a:1:{s:6:"fields";a:1:{s:5:"login";a:2:{s:4:"type";s:3:"int";s:8:"not null";b:0;}}}}'), ('entity.storage_schema.sql', 'user.field_schema_data.mail', 'a:1:{s:16:"users_field_data";a:2:{s:6:"fields";a:1:{s:4:"mail";a:3:{s:4:"type";s:7:"varchar";s:6:"length";i:254;s:8:"not null";b:0;}}s:7:"indexes";a:1:{s:16:"user_field__mail";a:1:{i:0;s:4:"mail";}}}}'), ('entity.storage_schema.sql', 'user.field_schema_data.name', 'a:1:{s:16:"users_field_data";a:1:{s:6:"fields";a:1:{s:4:"name";a:4:{s:4:"type";s:7:"varchar";s:6:"length";i:60;s:6:"binary";b:0;s:8:"not null";b:1;}}}}'), ('entity.storage_schema.sql', 'user.field_schema_data.pass', 'a:1:{s:16:"users_field_data";a:1:{s:6:"fields";a:1:{s:4:"pass";a:4:{s:4:"type";s:7:"varchar";s:6:"length";i:255;s:6:"binary";b:0;s:8:"not null";b:0;}}}}'), ('entity.storage_schema.sql', 'user.field_schema_data.preferred_admin_langcode', 'a:1:{s:16:"users_field_data";a:1:{s:6:"fields";a:1:{s:24:"preferred_admin_langcode";a:3:{s:4:"type";s:13:"varchar_ascii";s:6:"length";i:12;s:8:"not null";b:0;}}}}'), ('entity.storage_schema.sql', 'user.field_schema_data.preferred_langcode', 'a:1:{s:16:"users_field_data";a:1:{s:6:"fields";a:1:{s:18:"preferred_langcode";a:3:{s:4:"type";s:13:"varchar_ascii";s:6:"length";i:12;s:8:"not null";b:0;}}}}'), ('entity.storage_schema.sql', 'user.field_schema_data.roles', 'a:1:{s:11:"user__roles";a:4:{s:11:"description";s:34:"Data storage for user field roles.";s:6:"fields";a:7:{s:6:"bundle";a:5:{s:4:"type";s:13:"varchar_ascii";s:6:"length";i:128;s:8:"not null";b:1;s:7:"default";s:0:"";s:11:"description";s:88:"The field instance bundle to which this row belongs, used when deleting a field instance";}s:7:"deleted";a:5:{s:4:"type";s:3:"int";s:4:"size";s:4:"tiny";s:8:"not null";b:1;s:7:"default";i:0;s:11:"description";s:60:"A boolean indicating whether this data item has been deleted";}s:9:"entity_id";a:4:{s:4:"type";s:3:"int";s:8:"unsigned";b:1;s:8:"not null";b:1;s:11:"description";s:38:"The entity id this data is attached to";}s:11:"revision_id";a:4:{s:4:"type";s:3:"int";s:8:"unsigned";b:1;s:8:"not null";b:1;s:11:"description";s:114:"The entity revision id this data is attached to, which for an unversioned entity type is the same as the entity id";}s:8:"langcode";a:5:{s:4:"type";s:13:"varchar_ascii";s:6:"length";i:32;s:8:"not null";b:1;s:7:"default";s:0:"";s:11:"description";s:37:"The language code for this data item.";}s:5:"delta";a:4:{s:4:"type";s:3:"int";s:8:"unsigned";b:1;s:8:"not null";b:1;s:11:"description";s:67:"The sequence number for this data item, used for multi-value fields";}s:15:"roles_target_id";a:4:{s:11:"description";s:28:"The ID of the target entity.";s:4:"type";s:13:"varchar_ascii";s:6:"length";i:255;s:8:"not null";b:1;}}s:11:"primary key";a:4:{i:0;s:9:"entity_id";i:1;s:7:"deleted";i:2;s:5:"delta";i:3;s:8:"langcode";}s:7:"indexes";a:3:{s:6:"bundle";a:1:{i:0;s:6:"bundle";}s:11:"revision_id";a:1:{i:0;s:11:"revision_id";}s:15:"roles_target_id";a:1:{i:0;s:15:"roles_target_id";}}}}'), ('entity.storage_schema.sql', 'user.field_schema_data.status', 'a:1:{s:16:"users_field_data";a:1:{s:6:"fields";a:1:{s:6:"status";a:3:{s:4:"type";s:3:"int";s:4:"size";s:4:"tiny";s:8:"not null";b:0;}}}}'), ('entity.storage_schema.sql', 'user.field_schema_data.timezone', 'a:1:{s:16:"users_field_data";a:1:{s:6:"fields";a:1:{s:8:"timezone";a:4:{s:4:"type";s:7:"varchar";s:6:"length";i:32;s:6:"binary";b:0;s:8:"not null";b:0;}}}}'), ('entity.storage_schema.sql', 'user.field_schema_data.uid', 'a:2:{s:5:"users";a:1:{s:6:"fields";a:1:{s:3:"uid";a:4:{s:4:"type";s:6:"serial";s:8:"unsigned";b:1;s:4:"size";s:6:"normal";s:8:"not null";b:1;}}}s:16:"users_field_data";a:1:{s:6:"fields";a:1:{s:3:"uid";a:4:{s:4:"type";s:3:"int";s:8:"unsigned";b:1;s:4:"size";s:6:"normal";s:8:"not null";b:1;}}}}'), ('entity.storage_schema.sql', 'user.field_schema_data.user_picture', 'a:1:{s:18:"user__user_picture";a:5:{s:11:"description";s:41:"Data storage for user field user_picture.";s:6:"fields";a:11:{s:6:"bundle";a:5:{s:4:"type";s:13:"varchar_ascii";s:6:"length";i:128;s:8:"not null";b:1;s:7:"default";s:0:"";s:11:"description";s:88:"The field instance bundle to which this row belongs, used when deleting a field instance";}s:7:"deleted";a:5:{s:4:"type";s:3:"int";s:4:"size";s:4:"tiny";s:8:"not null";b:1;s:7:"default";i:0;s:11:"description";s:60:"A boolean indicating whether this data item has been deleted";}s:9:"entity_id";a:4:{s:4:"type";s:3:"int";s:8:"unsigned";b:1;s:8:"not null";b:1;s:11:"description";s:38:"The entity id this data is attached to";}s:11:"revision_id";a:4:{s:4:"type";s:3:"int";s:8:"unsigned";b:1;s:8:"not null";b:1;s:11:"description";s:114:"The entity revision id this data is attached to, which for an unversioned entity type is the same as the entity id";}s:8:"langcode";a:5:{s:4:"type";s:13:"varchar_ascii";s:6:"length";i:32;s:8:"not null";b:1;s:7:"default";s:0:"";s:11:"description";s:37:"The language code for this data item.";}s:5:"delta";a:4:{s:4:"type";s:3:"int";s:8:"unsigned";b:1;s:8:"not null";b:1;s:11:"description";s:67:"The sequence number for this data item, used for multi-value fields";}s:22:"user_picture_target_id";a:4:{s:11:"description";s:26:"The ID of the file entity.";s:4:"type";s:3:"int";s:8:"unsigned";b:1;s:8:"not null";b:1;}s:16:"user_picture_alt";a:4:{s:11:"description";s:56:"Alternative image text, for the image''s ''alt'' attribute.";s:4:"type";s:7:"varchar";s:6:"length";i:512;s:8:"not null";b:0;}s:18:"user_picture_title";a:4:{s:11:"description";s:52:"Image title text, for the image''s ''title'' attribute.";s:4:"type";s:7:"varchar";s:6:"length";i:1024;s:8:"not null";b:0;}s:18:"user_picture_width";a:4:{s:11:"description";s:33:"The width of the image in pixels.";s:4:"type";s:3:"int";s:8:"unsigned";b:1;s:8:"not null";b:0;}s:19:"user_picture_height";a:4:{s:11:"description";s:34:"The height of the image in pixels.";s:4:"type";s:3:"int";s:8:"unsigned";b:1;s:8:"not null";b:0;}}s:11:"primary key";a:4:{i:0;s:9:"entity_id";i:1;s:7:"deleted";i:2;s:5:"delta";i:3;s:8:"langcode";}s:7:"indexes";a:3:{s:6:"bundle";a:1:{i:0;s:6:"bundle";}s:11:"revision_id";a:1:{i:0;s:11:"revision_id";}s:22:"user_picture_target_id";a:1:{i:0;s:22:"user_picture_target_id";}}s:12:"foreign keys";a:1:{s:22:"user_picture_target_id";a:2:{s:5:"table";s:12:"file_managed";s:7:"columns";a:1:{s:22:"user_picture_target_id";s:3:"fid";}}}}}'), ('entity.storage_schema.sql', 'user.field_schema_data.uuid', 'a:1:{s:5:"users";a:2:{s:6:"fields";a:1:{s:4:"uuid";a:4:{s:4:"type";s:13:"varchar_ascii";s:6:"length";i:128;s:6:"binary";b:0;s:8:"not null";b:1;}}s:11:"unique keys";a:1:{s:23:"user_field__uuid__value";a:1:{i:0;s:4:"uuid";}}}}'), ('hook_data', 'group_includes', 'a:0:{}'); INSERT INTO `[[dbprefix]]key_value` VALUES ('hook_data', 'hook_list', 'a:193:{s:9:"hook_info";a:2:{s:16:"system_hook_info";s:6:"system";s:15:"views_hook_info";s:5:"views";}s:15:"authorized_init";a:1:{s:22:"system_authorized_init";s:6:"system";}s:18:"authorized_get_url";a:1:{s:25:"system_authorized_get_url";s:6:"system";}s:31:"authorized_batch_processing_url";a:1:{s:38:"system_authorized_batch_processing_url";s:6:"system";}s:14:"authorized_run";a:1:{s:21:"system_authorized_run";s:6:"system";}s:24:"authorized_batch_process";a:1:{s:31:"system_authorized_batch_process";s:6:"system";}s:15:"check_directory";a:1:{s:22:"system_check_directory";s:6:"system";}s:11:"region_list";a:1:{s:18:"system_region_list";s:6:"system";}s:11:"sort_themes";a:1:{s:18:"system_sort_themes";s:6:"system";}s:14:"default_region";a:1:{s:21:"system_default_region";s:6:"system";}s:18:"admin_compact_mode";a:1:{s:25:"system_admin_compact_mode";s:6:"system";}s:20:"add_contextual_links";a:1:{s:26:"views_add_contextual_links";s:5:"views";}s:16:"invalidate_cache";a:1:{s:22:"views_invalidate_cache";s:5:"views";}s:16:"set_current_view";a:1:{s:22:"views_set_current_view";s:5:"views";}s:16:"get_current_view";a:1:{s:22:"views_get_current_view";s:5:"views";}s:15:"view_is_enabled";a:1:{s:21:"views_view_is_enabled";s:5:"views";}s:16:"view_is_disabled";a:1:{s:22:"views_view_is_disabled";s:5:"views";}s:11:"enable_view";a:1:{s:17:"views_enable_view";s:5:"views";}s:12:"disable_view";a:1:{s:18:"views_disable_view";s:5:"views";}s:10:"embed_view";a:1:{s:16:"views_embed_view";s:5:"views";}s:15:"get_view_result";a:1:{s:21:"views_get_view_result";s:5:"views";}s:21:"element_validate_tags";a:1:{s:27:"views_element_validate_tags";s:5:"views";}s:24:"field_default_views_data";a:1:{s:30:"views_field_default_views_data";s:5:"views";}s:18:"entity_field_label";a:1:{s:24:"views_entity_field_label";s:5:"views";}s:7:"toolbar";a:3:{s:69:"Drupal\\announcements_feed\\Hook\\AnnouncementsFeedToolbarHooks::toolbar";s:18:"announcements_feed";s:47:"Drupal\\contextual\\Hook\\ContextualHooks::toolbar";s:10:"contextual";s:35:"Drupal\\user\\Hook\\UserHooks::toolbar";s:4:"user";}s:13:"toolbar_alter";a:1:{s:74:"Drupal\\announcements_feed\\Hook\\AnnouncementsFeedToolbarHooks::toolbarAlter";s:18:"announcements_feed";}s:4:"help";a:36:{s:63:"Drupal\\announcements_feed\\Hook\\AnnouncementsFeedHelpHooks::help";s:18:"announcements_feed";s:51:"Drupal\\automated_cron\\Hook\\AutomatedCronHooks::help";s:14:"automated_cron";s:39:"Drupal\\big_pipe\\Hook\\BigPipeHooks::help";s:8:"big_pipe";s:34:"Drupal\\block\\Hook\\BlockHooks::help";s:5:"block";s:49:"Drupal\\block_content\\Hook\\BlockContentHooks::help";s:13:"block_content";s:44:"Drupal\\breakpoint\\Hook\\BreakpointHooks::help";s:10:"breakpoint";s:42:"Drupal\\ckeditor5\\Hook\\Ckeditor5Hooks::help";s:9:"ckeditor5";s:36:"Drupal\\config\\Hook\\ConfigHooks::help";s:6:"config";s:44:"Drupal\\contextual\\Hook\\ContextualHooks::help";s:10:"contextual";s:40:"Drupal\\datetime\\Hook\\DatetimeHooks::help";s:8:"datetime";s:34:"Drupal\\dblog\\Hook\\DblogHooks::help";s:5:"dblog";s:58:"Drupal\\dynamic_page_cache\\Hook\\DynamicPageCacheHooks::help";s:18:"dynamic_page_cache";s:36:"Drupal\\editor\\Hook\\EditorHooks::help";s:6:"editor";s:34:"Drupal\\field\\Hook\\FieldHooks::help";s:5:"field";s:39:"Drupal\\field_ui\\Hook\\FieldUiHooks::help";s:8:"field_ui";s:32:"Drupal\\file\\Hook\\FileHooks::help";s:4:"file";s:36:"Drupal\\filter\\Hook\\FilterHooks::help";s:6:"filter";s:32:"Drupal\\help\\Hook\\HelpHooks::help";s:4:"help";s:34:"Drupal\\image\\Hook\\ImageHooks::help";s:5:"image";s:55:"Drupal\\layout_discovery\\Hook\\LayoutDiscoveryHooks::help";s:16:"layout_discovery";s:32:"Drupal\\link\\Hook\\LinkHooks::help";s:4:"link";s:56:"Drupal\\menu_link_content\\Hook\\MenuLinkContentHooks::help";s:17:"menu_link_content";s:37:"Drupal\\menu_ui\\Hook\\MenuUiHooks::help";s:7:"menu_ui";s:34:"Drupal\\mysql\\Hook\\MysqlHooks::help";s:5:"mysql";s:44:"Drupal\\navigation\\Hook\\NavigationHooks::help";s:10:"navigation";s:36:"Drupal\\node\\Hook\\NodeHelpHooks::help";s:4:"node";s:38:"Drupal\\options\\Hook\\OptionsHooks::help";s:7:"options";s:43:"Drupal\\page_cache\\Hook\\PageCacheHooks::help";s:10:"page_cache";s:32:"Drupal\\path\\Hook\\PathHooks::help";s:4:"path";s:36:"Drupal\\system\\Hook\\SystemHooks::help";s:6:"system";s:40:"Drupal\\taxonomy\\Hook\\TaxonomyHooks::help";s:8:"taxonomy";s:32:"Drupal\\text\\Hook\\TextHooks::help";s:4:"text";s:36:"Drupal\\update\\Hook\\UpdateHooks::help";s:6:"update";s:32:"Drupal\\user\\Hook\\UserHooks::help";s:4:"user";s:39:"Drupal\\views_ui\\Hook\\ViewsUiHooks::help";s:8:"views_ui";s:34:"Drupal\\views\\Hook\\ViewsHooks::help";s:5:"views";}s:5:"theme";a:21:{s:65:"Drupal\\announcements_feed\\Hook\\AnnouncementsFeedThemeHooks::theme";s:18:"announcements_feed";s:40:"Drupal\\big_pipe\\Hook\\BigPipeHooks::theme";s:8:"big_pipe";s:35:"Drupal\\block\\Hook\\BlockHooks::theme";s:5:"block";s:50:"Drupal\\block_content\\Hook\\BlockContentHooks::theme";s:13:"block_content";s:43:"Drupal\\ckeditor5\\Hook\\Ckeditor5Hooks::theme";s:9:"ckeditor5";s:40:"Drupal\\field_ui\\Hook\\FieldUiHooks::theme";s:8:"field_ui";s:38:"Drupal\\file\\Hook\\FileThemeHooks::theme";s:4:"file";s:42:"Drupal\\filter\\Hook\\FilterThemeHooks::theme";s:6:"filter";s:33:"Drupal\\help\\Hook\\HelpHooks::theme";s:4:"help";s:40:"Drupal\\image\\Hook\\ImageThemeHooks::theme";s:5:"image";s:61:"Drupal\\layout_discovery\\Hook\\LayoutDiscoveryThemeHooks::theme";s:16:"layout_discovery";s:38:"Drupal\\link\\Hook\\LinkThemeHooks::theme";s:4:"link";s:38:"Drupal\\menu_ui\\Hook\\MenuUiHooks::theme";s:7:"menu_ui";s:50:"Drupal\\navigation\\Hook\\NavigationThemeHooks::theme";s:10:"navigation";s:38:"Drupal\\node\\Hook\\NodeThemeHooks::theme";s:4:"node";s:42:"Drupal\\system\\Hook\\SystemThemeHooks::theme";s:6:"system";s:46:"Drupal\\taxonomy\\Hook\\TaxonomyThemeHooks::theme";s:8:"taxonomy";s:42:"Drupal\\update\\Hook\\UpdateThemeHooks::theme";s:6:"update";s:38:"Drupal\\user\\Hook\\UserThemeHooks::theme";s:4:"user";s:45:"Drupal\\views_ui\\Hook\\ViewsUiThemeHooks::theme";s:8:"views_ui";s:40:"Drupal\\views\\Hook\\ViewsThemeHooks::theme";s:5:"views";}s:4:"cron";a:6:{s:63:"Drupal\\announcements_feed\\Hook\\AnnouncementsFeedCronHooks::cron";s:18:"announcements_feed";s:34:"Drupal\\dblog\\Hook\\DblogHooks::cron";s:5:"dblog";s:35:"Drupal\\file\\Hook\\CronHook::__invoke";s:4:"file";s:51:"Drupal\\layout_builder\\Hook\\LayoutBuilderHooks::cron";s:14:"layout_builder";s:36:"Drupal\\system\\Hook\\SystemHooks::cron";s:6:"system";s:40:"Drupal\\update\\Hook\\UpdateCronHooks::cron";s:6:"update";}s:31:"form_system_cron_settings_alter";a:1:{s:74:"Drupal\\automated_cron\\Hook\\AutomatedCronHooks::formSystemCronSettingsAlter";s:14:"automated_cron";}s:44:"theme_suggestions_big_pipe_interface_preview";a:1:{s:79:"Drupal\\big_pipe\\Hook\\BigPipeThemeHooks::themeSuggestionsBigPipeInterfacePreview";s:8:"big_pipe";}s:16:"page_attachments";a:3:{s:50:"Drupal\\big_pipe\\Hook\\BigPipeHooks::pageAttachments";s:8:"big_pipe";s:55:"Drupal\\contextual\\Hook\\ContextualHooks::pageAttachments";s:10:"contextual";s:55:"Drupal\\system\\Hook\\PageAttachmentsHook::pageAttachments";s:6:"system";}s:23:"theme_suggestions_block";a:1:{s:56:"Drupal\\block\\Hook\\BlockThemeHooks::themeSuggestionsBlock";s:5:"block";}s:17:"modules_installed";a:4:{s:46:"Drupal\\block\\Hook\\BlockHooks::modulesInstalled";s:5:"block";s:56:"Drupal\\navigation\\Hook\\NavigationHooks::modulesInstalled";s:10:"navigation";s:50:"Drupal\\node\\Hook\\NodeModuleHooks::modulesInstalled";s:4:"node";s:48:"Drupal\\update\\Hook\\UpdateHooks::modulesInstalled";s:6:"update";}s:16:"themes_installed";a:3:{s:45:"Drupal\\block\\Hook\\BlockHooks::themesInstalled";s:5:"block";s:55:"Drupal\\breakpoint\\Hook\\BreakpointHooks::themesInstalled";s:10:"breakpoint";s:47:"Drupal\\update\\Hook\\UpdateHooks::themesInstalled";s:6:"update";}s:7:"rebuild";a:1:{s:37:"Drupal\\block\\Hook\\BlockHooks::rebuild";s:5:"block";}s:16:"user_role_delete";a:2:{s:44:"Drupal\\block\\Hook\\BlockHooks::userRoleDelete";s:5:"block";s:42:"Drupal\\user\\Hook\\UserHooks::userRoleDelete";s:4:"user";}s:11:"menu_delete";a:3:{s:40:"Drupal\\block\\Hook\\BlockHooks::menuDelete";s:5:"block";s:62:"Drupal\\menu_link_content\\Hook\\MenuLinkContentHooks::menuDelete";s:17:"menu_link_content";s:43:"Drupal\\menu_ui\\Hook\\MenuUiHooks::menuDelete";s:7:"menu_ui";}s:28:"configurable_language_delete";a:2:{s:56:"Drupal\\block\\Hook\\BlockHooks::configurableLanguageDelete";s:5:"block";s:60:"Drupal\\node\\Hook\\NodeEntityHooks::configurableLanguageDelete";s:4:"node";}s:37:"block_build_local_actions_block_alter";a:1:{s:62:"Drupal\\block\\Hook\\BlockHooks::blockBuildLocalActionsBlockAlter";s:5:"block";}s:17:"entity_type_alter";a:4:{s:60:"Drupal\\block_content\\Hook\\BlockContentHooks::entityTypeAlter";s:13:"block_content";s:62:"Drupal\\layout_builder\\Hook\\LayoutBuilderHooks::entityTypeAlter";s:14:"layout_builder";s:67:"Drupal\\menu_link_content\\Hook\\MenuLinkContentHooks::entityTypeAlter";s:17:"menu_link_content";s:43:"Drupal\\path\\Hook\\PathHooks::entityTypeAlter";s:4:"path";}s:28:"query_entity_reference_alter";a:2:{s:70:"Drupal\\block_content\\Hook\\BlockContentHooks::queryEntityReferenceAlter";s:13:"block_content";s:57:"Drupal\\system\\Hook\\SystemHooks::queryEntityReferenceAlter";s:6:"system";}s:29:"theme_suggestions_block_alter";a:1:{s:71:"Drupal\\block_content\\Hook\\BlockContentHooks::themeSuggestionsBlockAlter";s:13:"block_content";}s:16:"entity_operation";a:6:{s:60:"Drupal\\block_content\\Hook\\BlockContentHooks::entityOperation";s:13:"block_content";s:50:"Drupal\\field_ui\\Hook\\FieldUiHooks::entityOperation";s:8:"field_ui";s:48:"Drupal\\menu_ui\\Hook\\MenuUiHooks::entityOperation";s:7:"menu_ui";s:51:"Drupal\\taxonomy\\Hook\\TaxonomyHooks::entityOperation";s:8:"taxonomy";s:43:"Drupal\\user\\Hook\\UserHooks::entityOperation";s:4:"user";s:50:"Drupal\\views_ui\\Hook\\ViewsUiHooks::entityOperation";s:8:"views_ui";}s:13:"block_presave";a:2:{s:57:"Drupal\\block_content\\Hook\\BlockContentHooks::blockPreSave";s:13:"block_content";s:42:"Drupal\\views\\Hook\\ViewsHooks::blockPresave";s:5:"views";}s:26:"preprocess_entity_add_list";a:1:{s:73:"Drupal\\block_content\\Hook\\BlockContentThemeHooks::preprocessEntityAddList";s:13:"block_content";}s:18:"themes_uninstalled";a:2:{s:57:"Drupal\\breakpoint\\Hook\\BreakpointHooks::themesUninstalled";s:10:"breakpoint";s:49:"Drupal\\update\\Hook\\UpdateHooks::themesUninstalled";s:6:"update";}s:29:"form_filter_format_form_alter";a:2:{s:57:"Drupal\\editor\\Hook\\EditorHooks::formFilterFormatFormAlter";s:6:"editor";s:63:"Drupal\\ckeditor5\\Hook\\Ckeditor5Hooks::formFilterFormatFormAlter";s:9:"ckeditor5";}s:18:"library_info_alter";a:1:{s:54:"Drupal\\ckeditor5\\Hook\\Ckeditor5Hooks::libraryInfoAlter";s:9:"ckeditor5";}s:8:"js_alter";a:1:{s:45:"Drupal\\ckeditor5\\Hook\\Ckeditor5Hooks::jsAlter";s:9:"ckeditor5";}s:24:"config_schema_info_alter";a:1:{s:59:"Drupal\\ckeditor5\\Hook\\Ckeditor5Hooks::configSchemaInfoAlter";s:9:"ckeditor5";}s:38:"field_widget_single_element_form_alter";a:2:{s:71:"Drupal\\ckeditor5\\Hook\\Ckeditor5Hooks::fieldWidgetSingleElementFormAlter";s:9:"ckeditor5";s:61:"Drupal\\path\\Hook\\PathHooks::fieldWidgetSingleElementFormAlter";s:4:"path";}s:24:"entity_bundle_info_alter";a:1:{s:59:"Drupal\\ckeditor5\\Hook\\Ckeditor5Hooks::entityBundleInfoAlter";s:9:"ckeditor5";}s:14:"editor_presave";a:1:{s:51:"Drupal\\ckeditor5\\Hook\\Ckeditor5Hooks::editorPresave";s:9:"ckeditor5";}s:13:"file_download";a:5:{s:44:"Drupal\\config\\Hook\\ConfigHooks::fileDownload";s:6:"config";s:44:"Drupal\\editor\\Hook\\EditorHooks::fileDownload";s:6:"editor";s:43:"Drupal\\file\\Hook\\FileDownloadHook::__invoke";s:4:"file";s:42:"Drupal\\image\\Hook\\ImageHooks::fileDownload";s:5:"image";s:44:"Drupal\\system\\Hook\\SystemHooks::fileDownload";s:6:"system";}s:10:"preprocess";a:1:{s:55:"Drupal\\contextual\\Hook\\ContextualThemeHooks::preprocess";s:10:"contextual";}s:27:"contextual_links_view_alter";a:2:{s:64:"Drupal\\contextual\\Hook\\ContextualHooks::contextualLinksViewAlter";s:10:"contextual";s:59:"Drupal\\views_ui\\Hook\\ViewsUiHooks::contextualLinksViewAlter";s:8:"views_ui";}s:16:"views_data_alter";a:2:{s:59:"Drupal\\contextual\\Hook\\ContextualViewsHooks::viewsDataAlter";s:10:"contextual";s:55:"Drupal\\taxonomy\\Hook\\TaxonomyViewsHooks::viewsDataAlter";s:8:"taxonomy";}s:16:"field_views_data";a:5:{s:55:"Drupal\\datetime\\Hook\\DatetimeViewsHooks::fieldViewsData";s:8:"datetime";s:47:"Drupal\\file\\Hook\\FileViewsHooks::fieldViewsData";s:4:"file";s:49:"Drupal\\image\\Hook\\ImageViewsHooks::fieldViewsData";s:5:"image";s:53:"Drupal\\options\\Hook\\OptionsViewsHooks::fieldViewsData";s:7:"options";s:49:"Drupal\\views\\Hook\\ViewsViewsHooks::fieldViewsData";s:5:"views";}s:10:"views_data";a:2:{s:44:"Drupal\\dblog\\Hook\\DblogViewsHooks::viewsData";s:5:"dblog";s:44:"Drupal\\views\\Hook\\ViewsViewsHooks::viewsData";s:5:"views";}s:27:"menu_links_discovered_alter";a:3:{s:54:"Drupal\\dblog\\Hook\\DblogHooks::menuLinksDiscoveredAlter";s:5:"dblog";s:56:"Drupal\\editor\\Hook\\EditorHooks::menuLinksDiscoveredAlter";s:6:"editor";s:64:"Drupal\\navigation\\Hook\\NavigationHooks::menuLinksDiscoveredAlter";s:10:"navigation";}s:34:"form_system_logging_settings_alter";a:1:{s:60:"Drupal\\dblog\\Hook\\DblogHooks::formSystemLoggingSettingsAlter";s:5:"dblog";}s:16:"views_pre_render";a:2:{s:44:"Drupal\\dblog\\Hook\\DblogHooks::viewsPreRender";s:5:"dblog";s:44:"Drupal\\views\\Hook\\ViewsHooks::viewsPreRender";s:5:"views";}s:18:"element_info_alter";a:4:{s:48:"Drupal\\editor\\Hook\\EditorHooks::elementInfoAlter";s:6:"editor";s:56:"Drupal\\navigation\\Hook\\NavigationHooks::elementInfoAlter";s:10:"navigation";s:48:"Drupal\\system\\Hook\\SystemHooks::elementInfoAlter";s:6:"system";s:49:"Drupal\\user\\Hook\\UserThemeHooks::elementInfoAlter";s:4:"user";}s:32:"form_filter_admin_overview_alter";a:1:{s:60:"Drupal\\editor\\Hook\\EditorHooks::formFilterAdminOverviewAlter";s:6:"editor";}s:13:"entity_insert";a:1:{s:44:"Drupal\\editor\\Hook\\EditorHooks::entityInsert";s:6:"editor";}s:13:"entity_update";a:2:{s:44:"Drupal\\editor\\Hook\\EditorHooks::entityUpdate";s:6:"editor";s:59:"Drupal\\layout_builder\\Hook\\LayoutBuilderHooks::entityUpdate";s:14:"layout_builder";}s:13:"entity_delete";a:2:{s:44:"Drupal\\editor\\Hook\\EditorHooks::entityDelete";s:6:"editor";s:59:"Drupal\\layout_builder\\Hook\\LayoutBuilderHooks::entityDelete";s:14:"layout_builder";}s:22:"entity_revision_delete";a:1:{s:52:"Drupal\\editor\\Hook\\EditorHooks::entityRevisionDelete";s:6:"editor";}s:21:"filter_format_presave";a:1:{s:51:"Drupal\\editor\\Hook\\EditorHooks::filterFormatPresave";s:6:"editor";}s:25:"entity_field_storage_info";a:1:{s:52:"Drupal\\field\\Hook\\FieldHooks::entityFieldStorageInfo";s:5:"field";}s:24:"entity_bundle_field_info";a:1:{s:51:"Drupal\\field\\Hook\\FieldHooks::entityBundleFieldInfo";s:5:"field";}s:20:"entity_bundle_delete";a:1:{s:48:"Drupal\\field\\Hook\\FieldHooks::entityBundleDelete";s:5:"field";}s:25:"config_import_steps_alter";a:1:{s:52:"Drupal\\field\\Hook\\FieldHooks::configImportStepsAlter";s:5:"field";}s:35:"form_config_admin_import_form_alter";a:1:{s:60:"Drupal\\field\\Hook\\FieldHooks::formConfigAdminImportFormAlter";s:5:"field";}s:19:"field_config_insert";a:3:{s:47:"Drupal\\field\\Hook\\FieldHooks::fieldConfigInsert";s:5:"field";s:64:"Drupal\\layout_builder\\Hook\\LayoutBuilderHooks::fieldConfigInsert";s:14:"layout_builder";s:47:"Drupal\\views\\Hook\\ViewsHooks::fieldConfigInsert";s:5:"views";}s:27:"field_storage_config_update";a:3:{s:54:"Drupal\\field\\Hook\\FieldHooks::fieldStorageConfigUpdate";s:5:"field";s:54:"Drupal\\image\\Hook\\ImageHooks::fieldStorageConfigUpdate";s:5:"image";s:58:"Drupal\\options\\Hook\\OptionsHooks::fieldStorageConfigUpdate";s:7:"options";}s:19:"field_config_create";a:1:{s:47:"Drupal\\field\\Hook\\FieldHooks::fieldConfigCreate";s:5:"field";}s:20:"field_config_presave";a:1:{s:48:"Drupal\\field\\Hook\\FieldHooks::fieldConfigPresave";s:5:"field";}s:17:"entity_type_build";a:4:{s:50:"Drupal\\field_ui\\Hook\\FieldUiHooks::entityTypeBuild";s:8:"field_ui";s:48:"Drupal\\menu_ui\\Hook\\MenuUiHooks::entityTypeBuild";s:7:"menu_ui";s:47:"Drupal\\system\\Hook\\SystemHooks::entityTypeBuild";s:6:"system";s:50:"Drupal\\views_ui\\Hook\\ViewsUiHooks::entityTypeBuild";s:8:"views_ui";}s:20:"entity_bundle_create";a:1:{s:53:"Drupal\\field_ui\\Hook\\FieldUiHooks::entityBundleCreate";s:8:"field_ui";}s:24:"entity_view_mode_presave";a:1:{s:56:"Drupal\\field_ui\\Hook\\FieldUiHooks::entityViewModePresave";s:8:"field_ui";}s:24:"entity_form_mode_presave";a:2:{s:56:"Drupal\\field_ui\\Hook\\FieldUiHooks::entityFormModePresave";s:8:"field_ui";s:59:"Drupal\\system\\Hook\\SystemHooks::systemEntityFormModePresave";s:6:"system";}s:23:"entity_view_mode_delete";a:1:{s:55:"Drupal\\field_ui\\Hook\\FieldUiHooks::entityViewModeDelete";s:8:"field_ui";}s:23:"entity_form_mode_delete";a:1:{s:55:"Drupal\\field_ui\\Hook\\FieldUiHooks::entityFormModeDelete";s:8:"field_ui";}s:17:"local_tasks_alter";a:4:{s:50:"Drupal\\field_ui\\Hook\\FieldUiHooks::localTasksAlter";s:8:"field_ui";s:47:"Drupal\\node\\Hook\\NodeMenuHooks::localTasksAlter";s:4:"node";s:51:"Drupal\\taxonomy\\Hook\\TaxonomyHooks::localTasksAlter";s:8:"taxonomy";s:45:"Drupal\\views\\Hook\\ViewsHooks::localTasksAlter";s:5:"views";}s:42:"form_field_ui_field_storage_add_form_alter";a:1:{s:70:"Drupal\\field_ui\\Hook\\FieldUiHooks::formFieldUiFieldStorageAddFormAlter";s:8:"field_ui";}s:10:"form_alter";a:1:{s:44:"Drupal\\field_ui\\Hook\\FieldUiHooks::formAlter";s:8:"field_ui";}s:41:"preprocess_form_element__new_storage_type";a:1:{s:75:"Drupal\\field_ui\\Hook\\FieldUiThemeHooks::preprocessFormElementNewStorageType";s:8:"field_ui";}s:38:"form_system_file_system_settings_alter";a:1:{s:65:"Drupal\\file\\Hook\\FileFormHooks::formSystemFileSystemSettingsAlter";s:4:"file";}s:23:"field_widget_info_alter";a:1:{s:48:"Drupal\\file\\Hook\\FileHooks::fieldWidgetInfoAlter";s:4:"file";}s:14:"file_predelete";a:2:{s:41:"Drupal\\file\\Hook\\FileHooks::filePredelete";s:4:"file";s:43:"Drupal\\image\\Hook\\ImageHooks::filePredelete";s:5:"image";}s:20:"runtime_requirements";a:7:{s:42:"Drupal\\file\\Hook\\FileRequirements::runtime";s:4:"file";s:44:"Drupal\\image\\Hook\\ImageRequirements::runtime";s:5:"image";s:44:"Drupal\\mysql\\Hook\\MysqlRequirements::runtime";s:5:"mysql";s:42:"Drupal\\node\\Hook\\NodeRequirements::runtime";s:4:"node";s:63:"Drupal\\system\\Hook\\SystemRequirementsHooks::runtimeRequirements";s:6:"system";s:46:"Drupal\\update\\Hook\\UpdateRequirements::runtime";s:6:"update";s:42:"Drupal\\user\\Hook\\UserRequirements::runtime";s:4:"user";}s:6:"tokens";a:6:{s:35:"Drupal\\file\\Hook\\TokenHooks::tokens";s:4:"file";s:40:"Drupal\\node\\Hook\\NodeTokensHooks::tokens";s:4:"node";s:44:"Drupal\\system\\Hook\\SystemTokensHooks::tokens";s:6:"system";s:48:"Drupal\\taxonomy\\Hook\\TaxonomyTokensHooks::tokens";s:8:"taxonomy";s:40:"Drupal\\user\\Hook\\UserTokensHooks::tokens";s:4:"user";s:42:"Drupal\\views\\Hook\\ViewsTokensHooks::tokens";s:5:"views";}s:10:"token_info";a:6:{s:38:"Drupal\\file\\Hook\\TokenHooks::tokenInfo";s:4:"file";s:43:"Drupal\\node\\Hook\\NodeTokensHooks::tokenInfo";s:4:"node";s:47:"Drupal\\system\\Hook\\SystemTokensHooks::tokenInfo";s:6:"system";s:51:"Drupal\\taxonomy\\Hook\\TaxonomyTokensHooks::tokenInfo";s:8:"taxonomy";s:43:"Drupal\\user\\Hook\\UserTokensHooks::tokenInfo";s:4:"user";s:45:"Drupal\\views\\Hook\\ViewsTokensHooks::tokenInfo";s:5:"views";}s:33:"field_views_data_views_data_alter";a:2:{s:61:"Drupal\\file\\Hook\\FileViewsHooks::fieldViewsDataViewsDataAlter";s:4:"file";s:63:"Drupal\\image\\Hook\\ImageViewsHooks::fieldViewsDataViewsDataAlter";s:5:"image";}s:25:"filter_secure_image_alter";a:1:{s:54:"Drupal\\filter\\Hook\\FilterHooks::filterSecureImageAlter";s:6:"filter";}s:16:"preprocess_block";a:5:{s:48:"Drupal\\help\\Hook\\HelpThemeHooks::preprocessBlock";s:4:"help";s:53:"Drupal\\menu_ui\\Hook\\MenuUiThemeHooks::preprocessBlock";s:7:"menu_ui";s:48:"Drupal\\node\\Hook\\NodeThemeHooks::preprocessBlock";s:4:"node";s:52:"Drupal\\system\\Hook\\SystemThemeHooks::preprocessBlock";s:6:"system";s:48:"Drupal\\user\\Hook\\UserThemeHooks::preprocessBlock";s:4:"user";}s:27:"block_view_help_block_alter";a:1:{s:51:"Drupal\\help\\Hook\\HelpHooks::blockViewHelpBlockAlter";s:4:"help";}s:9:"file_move";a:1:{s:38:"Drupal\\image\\Hook\\ImageHooks::fileMove";s:5:"image";}s:14:"entity_presave";a:2:{s:43:"Drupal\\image\\Hook\\ImageHooks::entityPresave";s:5:"image";s:60:"Drupal\\layout_builder\\Hook\\LayoutBuilderHooks::entityPresave";s:14:"layout_builder";}s:19:"field_config_update";a:2:{s:47:"Drupal\\image\\Hook\\ImageHooks::fieldConfigUpdate";s:5:"image";s:47:"Drupal\\views\\Hook\\ViewsHooks::fieldConfigUpdate";s:5:"views";}s:27:"field_storage_config_delete";a:2:{s:54:"Drupal\\image\\Hook\\ImageHooks::fieldStorageConfigDelete";s:5:"image";s:58:"Drupal\\options\\Hook\\OptionsHooks::fieldStorageConfigDelete";s:7:"options";}s:19:"field_config_delete";a:3:{s:47:"Drupal\\image\\Hook\\ImageHooks::fieldConfigDelete";s:5:"image";s:64:"Drupal\\layout_builder\\Hook\\LayoutBuilderHooks::fieldConfigDelete";s:14:"layout_builder";s:47:"Drupal\\views\\Hook\\ViewsHooks::fieldConfigDelete";s:5:"views";}s:42:"preprocess_language_content_settings_table";a:1:{s:90:"Drupal\\layout_builder\\Hook\\LayoutBuilderThemeHooks::preprocessLanguageContentSettingsTable";s:14:"layout_builder";}s:40:"form_entity_form_display_edit_form_alter";a:1:{s:81:"Drupal\\layout_builder\\Hook\\LayoutBuilderHooks::formEntityFormDisplayEditFormAlter";s:14:"layout_builder";}s:17:"entity_view_alter";a:1:{s:62:"Drupal\\layout_builder\\Hook\\LayoutBuilderHooks::entityViewAlter";s:14:"layout_builder";}s:27:"entity_build_defaults_alter";a:1:{s:71:"Drupal\\layout_builder\\Hook\\LayoutBuilderHooks::entityBuildDefaultsAlter";s:14:"layout_builder";}s:41:"plugin_filter_block__layout_builder_alter";a:2:{s:82:"Drupal\\layout_builder\\Hook\\LayoutBuilderHooks::pluginFilterBlockLayoutBuilderAlter";s:14:"layout_builder";s:75:"Drupal\\navigation\\Hook\\NavigationHooks::pluginFilterBlockLayoutBuilderAlter";s:10:"navigation";}s:25:"plugin_filter_block_alter";a:1:{s:69:"Drupal\\layout_builder\\Hook\\LayoutBuilderHooks::pluginFilterBlockAlter";s:14:"layout_builder";}s:20:"block_content_access";a:1:{s:65:"Drupal\\layout_builder\\Hook\\LayoutBuilderHooks::blockContentAccess";s:14:"layout_builder";}s:35:"plugin_filter_block__block_ui_alter";a:1:{s:76:"Drupal\\layout_builder\\Hook\\LayoutBuilderHooks::pluginFilterBlockBlockUiAlter";s:14:"layout_builder";}s:42:"plugin_filter_layout__layout_builder_alter";a:2:{s:83:"Drupal\\layout_builder\\Hook\\LayoutBuilderHooks::pluginFilterLayoutLayoutBuilderAlter";s:14:"layout_builder";s:76:"Drupal\\navigation\\Hook\\NavigationHooks::pluginFilterLayoutLayoutBuilderAlter";s:10:"navigation";}s:26:"plugin_filter_layout_alter";a:1:{s:70:"Drupal\\layout_builder\\Hook\\LayoutBuilderHooks::pluginFilterLayoutAlter";s:14:"layout_builder";}s:23:"system_breadcrumb_alter";a:2:{s:68:"Drupal\\layout_builder\\Hook\\LayoutBuilderHooks::systemBreadcrumbAlter";s:14:"layout_builder";s:54:"Drupal\\menu_ui\\Hook\\MenuUiHooks::systemBreadcrumbAlter";s:7:"menu_ui";}s:25:"entity_translation_create";a:2:{s:70:"Drupal\\layout_builder\\Hook\\LayoutBuilderHooks::entityTranslationCreate";s:14:"layout_builder";s:51:"Drupal\\path\\Hook\\PathHooks::entityTranslationCreate";s:4:"path";}s:20:"theme_registry_alter";a:1:{s:65:"Drupal\\layout_builder\\Hook\\LayoutBuilderHooks::themeRegistryAlter";s:14:"layout_builder";}s:29:"theme_suggestions_field_alter";a:1:{s:73:"Drupal\\layout_builder\\Hook\\LayoutBuilderHooks::themeSuggestionsFieldAlter";s:14:"layout_builder";}s:30:"field_type_category_info_alter";a:2:{s:54:"Drupal\\link\\Hook\\LinkHooks::fieldTypeCategoryInfoAlter";s:4:"link";s:54:"Drupal\\text\\Hook\\TextHooks::fieldTypeCategoryInfoAlter";s:4:"text";}s:17:"path_alias_insert";a:1:{s:67:"Drupal\\menu_link_content\\Hook\\MenuLinkContentHooks::pathAliasInsert";s:17:"menu_link_content";}s:17:"path_alias_update";a:1:{s:67:"Drupal\\menu_link_content\\Hook\\MenuLinkContentHooks::pathAliasUpdate";s:17:"menu_link_content";}s:17:"path_alias_delete";a:1:{s:67:"Drupal\\menu_link_content\\Hook\\MenuLinkContentHooks::pathAliasDelete";s:17:"menu_link_content";}s:16:"entity_predelete";a:1:{s:67:"Drupal\\menu_link_content\\Hook\\MenuLinkContentHooks::entityPredelete";s:17:"menu_link_content";}s:34:"block_view_system_menu_block_alter";a:1:{s:62:"Drupal\\menu_ui\\Hook\\MenuUiHooks::blockViewSystemMenuBlockAlter";s:7:"menu_ui";}s:20:"form_node_form_alter";a:1:{s:50:"Drupal\\menu_ui\\Hook\\MenuUiHooks::formNodeFormAlter";s:7:"menu_ui";}s:25:"form_node_type_form_alter";a:1:{s:54:"Drupal\\menu_ui\\Hook\\MenuUiHooks::formNodeTypeFormAlter";s:7:"menu_ui";}s:8:"page_top";a:3:{s:39:"Drupal\\system\\Hook\\SystemHooks::pageTop";s:6:"system";s:39:"Drupal\\update\\Hook\\UpdateHooks::pageTop";s:6:"update";s:47:"Drupal\\navigation\\Hook\\NavigationHooks::pageTop";s:10:"navigation";}s:35:"block_build_local_tasks_block_alter";a:1:{s:70:"Drupal\\navigation\\Hook\\NavigationHooks::blockBuildLocalTasksBlockAlter";s:10:"navigation";}s:11:"block_alter";a:2:{s:50:"Drupal\\navigation\\Hook\\NavigationHooks::blockAlter";s:10:"navigation";s:43:"Drupal\\node\\Hook\\NodeBlockHooks::blockAlter";s:4:"node";}s:22:"navigation_content_top";a:1:{s:60:"Drupal\\navigation\\Hook\\NavigationHooks::navigationWorkspaces";s:10:"navigation";}s:31:"navigation_menu_link_tree_alter";a:1:{s:67:"Drupal\\navigation\\Hook\\NavigationHooks::navigationMenuLinkTreeAlter";s:10:"navigation";}s:19:"modules_uninstalled";a:4:{s:52:"Drupal\\node\\Hook\\NodeModuleHooks::modulesUninstalled";s:4:"node";s:50:"Drupal\\system\\Hook\\SystemHooks::modulesUninstalled";s:6:"system";s:50:"Drupal\\update\\Hook\\UpdateHooks::modulesUninstalled";s:6:"update";s:46:"Drupal\\user\\Hook\\UserHooks::modulesUninstalled";s:4:"user";}s:13:"views_analyze";a:2:{s:45:"Drupal\\node\\Hook\\NodeViewsHooks::viewsAnalyze";s:4:"node";s:47:"Drupal\\views_ui\\Hook\\ViewsUiHooks::viewsAnalyze";s:8:"views_ui";}s:25:"views_query_substitutions";a:3:{s:56:"Drupal\\node\\Hook\\NodeViewsHooks::viewsQuerySubstitutions";s:4:"node";s:65:"Drupal\\user\\Hook\\UserViewsExecutionHooks::viewsQuerySubstitutions";s:4:"user";s:67:"Drupal\\views\\Hook\\ViewsViewsExecutionHooks::viewsQuerySubstitutions";s:5:"views";}s:35:"form_system_themes_admin_form_alter";a:1:{s:62:"Drupal\\node\\Hook\\NodeFormHooks::formSystemThemesAdminFormAlter";s:4:"node";}s:11:"user_cancel";a:2:{s:56:"Drupal\\node\\Hook\\NodeUserHooks::userCancelBlockUnpublish";s:4:"node";s:50:"Drupal\\node\\Hook\\NodeUserHooks::userCancelReassign";s:4:"node";}s:22:"theme_suggestions_node";a:1:{s:53:"Drupal\\node\\Hook\\NodeThemeHooks::themeSuggestionsNode";s:4:"node";}s:22:"preprocess_field__node";a:1:{s:52:"Drupal\\node\\Hook\\NodeThemeHooks::preprocessFieldNode";s:4:"node";}s:15:"preprocess_html";a:1:{s:47:"Drupal\\node\\Hook\\NodeThemeHooks::preprocessHtml";s:4:"node";}s:36:"field_ui_preconfigured_options_alter";a:3:{s:57:"Drupal\\node\\Hook\\NodeFieldHooks::preConfiguredDescription";s:4:"node";s:65:"Drupal\\taxonomy\\Hook\\TaxonomyFieldHooks::preConfiguredDescription";s:8:"taxonomy";s:57:"Drupal\\user\\Hook\\UserFieldHooks::preConfiguredDescription";s:4:"user";}s:23:"entity_extra_field_info";a:2:{s:54:"Drupal\\node\\Hook\\NodeEntityHooks::entityExtraFieldInfo";s:4:"node";s:48:"Drupal\\user\\Hook\\UserHooks::entityExtraFieldInfo";s:4:"user";}s:14:"user_predelete";a:1:{s:47:"Drupal\\node\\Hook\\NodeEntityHooks::userPredelete";s:4:"node";}s:11:"node_access";a:1:{s:44:"Drupal\\node\\Hook\\NodeEntityHooks::nodeAccess";s:4:"node";}s:23:"query_node_access_alter";a:1:{s:56:"Drupal\\node\\Hook\\NodeDatabaseHooks::queryNodeAccessAlter";s:4:"node";}s:29:"config_translation_info_alter";a:1:{s:71:"Drupal\\node\\Hook\\NodeConfigTranslationHooks::configTranslationInfoAlter";s:4:"node";}s:34:"field_storage_config_update_forbid";a:1:{s:64:"Drupal\\options\\Hook\\OptionsHooks::fieldStorageConfigUpdateForbid";s:7:"options";}s:28:"entity_base_field_info_alter";a:1:{s:52:"Drupal\\path\\Hook\\PathHooks::entityBaseFieldInfoAlter";s:4:"path";}s:22:"entity_base_field_info";a:1:{s:47:"Drupal\\path\\Hook\\PathHooks::entityBaseFieldInfo";s:4:"path";}s:22:"theme_suggestions_html";a:1:{s:57:"Drupal\\system\\Hook\\SystemThemeHooks::themeSuggestionsHtml";s:6:"system";}s:22:"theme_suggestions_page";a:1:{s:57:"Drupal\\system\\Hook\\SystemThemeHooks::themeSuggestionsPage";s:6:"system";}s:34:"theme_suggestions_maintenance_page";a:1:{s:68:"Drupal\\system\\Hook\\SystemThemeHooks::themeSuggestionsMaintenancePage";s:6:"system";}s:24:"theme_suggestions_region";a:1:{s:59:"Drupal\\system\\Hook\\SystemThemeHooks::themeSuggestionsRegion";s:6:"system";}s:23:"theme_suggestions_field";a:1:{s:58:"Drupal\\system\\Hook\\SystemThemeHooks::themeSuggestionsField";s:6:"system";}s:12:"updater_info";a:1:{s:43:"Drupal\\system\\Hook\\SystemHooks::updaterInfo";s:6:"system";}s:17:"filetransfer_info";a:1:{s:48:"Drupal\\system\\Hook\\SystemHooks::filetransferInfo";s:6:"system";}s:17:"js_settings_build";a:1:{s:47:"Drupal\\system\\Hook\\SystemHooks::jsSettingsBuild";s:6:"system";}s:17:"js_settings_alter";a:2:{s:47:"Drupal\\system\\Hook\\SystemHooks::jsSettingsAlter";s:6:"system";s:43:"Drupal\\user\\Hook\\UserHooks::jsSettingsAlter";s:4:"user";}s:17:"system_info_alter";a:1:{s:47:"Drupal\\system\\Hook\\SystemHooks::systemInfoAlter";s:6:"system";}s:4:"mail";a:3:{s:36:"Drupal\\system\\Hook\\SystemHooks::mail";s:6:"system";s:36:"Drupal\\update\\Hook\\UpdateHooks::mail";s:6:"update";s:32:"Drupal\\user\\Hook\\UserHooks::mail";s:4:"user";}s:34:"block_view_system_main_block_alter";a:1:{s:61:"Drupal\\system\\Hook\\SystemHooks::blockViewSystemMainBlockAlter";s:6:"system";}s:19:"archiver_info_alter";a:1:{s:49:"Drupal\\system\\Hook\\SystemHooks::archiverInfoAlter";s:6:"system";}s:19:"update_requirements";a:1:{s:62:"Drupal\\system\\Hook\\SystemRequirementsHooks::updateRequirements";s:6:"system";}s:31:"theme_suggestions_taxonomy_term";a:1:{s:69:"Drupal\\taxonomy\\Hook\\TaxonomyThemeHooks::themeSuggestionsTaxonomyTerm";s:8:"taxonomy";}s:22:"field_views_data_alter";a:1:{s:60:"Drupal\\taxonomy\\Hook\\TaxonomyViewsHooks::fieldViewsDataAlter";s:8:"taxonomy";}s:11:"node_insert";a:1:{s:46:"Drupal\\taxonomy\\Hook\\TaxonomyHooks::nodeInsert";s:8:"taxonomy";}s:11:"node_update";a:1:{s:46:"Drupal\\taxonomy\\Hook\\TaxonomyHooks::nodeUpdate";s:8:"taxonomy";}s:14:"node_predelete";a:1:{s:49:"Drupal\\taxonomy\\Hook\\TaxonomyHooks::nodePredelete";s:8:"taxonomy";}s:20:"taxonomy_term_delete";a:1:{s:54:"Drupal\\taxonomy\\Hook\\TaxonomyHooks::taxonomyTermDelete";s:8:"taxonomy";}s:21:"verify_update_archive";a:1:{s:51:"Drupal\\update\\Hook\\UpdateHooks::verifyUpdateArchive";s:6:"update";}s:38:"views_plugins_argument_validator_alter";a:1:{s:67:"Drupal\\user\\Hook\\UserViewsHooks::viewsPluginsArgumentValidatorAlter";s:4:"user";}s:9:"user_view";a:1:{s:36:"Drupal\\user\\Hook\\UserHooks::userView";s:4:"user";}s:15:"user_view_alter";a:1:{s:41:"Drupal\\user\\Hook\\UserHooks::userViewAlter";s:4:"user";}s:43:"template_preprocess_default_variables_alter";a:1:{s:67:"Drupal\\user\\Hook\\UserHooks::templatePreprocessDefaultVariablesAlter";s:4:"user";}s:10:"user_login";a:1:{s:37:"Drupal\\user\\Hook\\UserHooks::userLogin";s:4:"user";}s:11:"user_logout";a:1:{s:38:"Drupal\\user\\Hook\\UserHooks::userLogout";s:4:"user";}s:16:"user_role_insert";a:1:{s:42:"Drupal\\user\\Hook\\UserHooks::userRoleInsert";s:4:"user";}s:35:"form_system_regional_settings_alter";a:1:{s:59:"Drupal\\user\\Hook\\UserHooks::formSystemRegionalSettingsAlter";s:4:"user";}s:21:"filter_format_disable";a:1:{s:47:"Drupal\\user\\Hook\\UserHooks::filterFormatDisable";s:4:"user";}s:21:"preprocess_views_view";a:1:{s:59:"Drupal\\views_ui\\Hook\\ViewsUiThemeHooks::preprocessViewsView";s:8:"views_ui";}s:47:"theme_suggestions_views_ui_view_preview_section";a:1:{s:81:"Drupal\\views_ui\\Hook\\ViewsUiThemeHooks::themeSuggestionsViewsUiViewPreviewSection";s:8:"views_ui";}s:27:"views_plugins_display_alter";a:1:{s:59:"Drupal\\views_ui\\Hook\\ViewsUiHooks::viewsPluginsDisplayAlter";s:8:"views_ui";}s:24:"views_form_substitutions";a:1:{s:66:"Drupal\\views\\Hook\\ViewsViewsExecutionHooks::viewsFormSubstitutions";s:5:"views";}s:15:"preprocess_node";a:1:{s:49:"Drupal\\views\\Hook\\ViewsThemeHooks::preprocessNode";s:5:"views";}s:18:"preprocess_comment";a:1:{s:52:"Drupal\\views\\Hook\\ViewsThemeHooks::preprocessComment";s:5:"views";}s:28:"theme_suggestions_node_alter";a:1:{s:55:"Drupal\\views\\Hook\\ViewsHooks::themeSuggestionsNodeAlter";s:5:"views";}s:31:"theme_suggestions_comment_alter";a:1:{s:58:"Drupal\\views\\Hook\\ViewsHooks::themeSuggestionsCommentAlter";s:5:"views";}s:33:"theme_suggestions_container_alter";a:1:{s:60:"Drupal\\views\\Hook\\ViewsHooks::themeSuggestionsContainerAlter";s:5:"views";}s:26:"base_field_override_insert";a:1:{s:53:"Drupal\\views\\Hook\\ViewsHooks::baseFieldOverrideInsert";s:5:"views";}s:26:"base_field_override_update";a:1:{s:53:"Drupal\\views\\Hook\\ViewsHooks::baseFieldOverrideUpdate";s:5:"views";}s:26:"base_field_override_delete";a:1:{s:53:"Drupal\\views\\Hook\\ViewsHooks::baseFieldOverrideDelete";s:5:"views";}s:29:"form_views_exposed_form_alter";a:1:{s:55:"Drupal\\views\\Hook\\ViewsHooks::formViewsExposedFormAlter";s:5:"views";}s:17:"query_views_alter";a:1:{s:45:"Drupal\\views\\Hook\\ViewsHooks::queryViewsAlter";s:5:"views";}s:12:"view_presave";a:1:{s:41:"Drupal\\views\\Hook\\ViewsHooks::viewPresave";s:5:"views";}}'), ('hook_data', 'includes', 'a:0:{}'), ('hook_data', 'packed_order_operations', 'a:2:{s:29:"form_filter_format_form_alter";a:1:{i:0;a:2:{i:0;b:1;i:1;a:4:{s:10:"identifier";s:63:"Drupal\\ckeditor5\\Hook\\Ckeditor5Hooks::formFilterFormatFormAlter";s:21:"modulesToOrderAgainst";a:1:{i:0;s:6:"editor";}s:25:"identifiersToOrderAgainst";a:0:{}s:7:"isAfter";b:1;}}}s:17:"entity_view_alter";a:1:{i:0;a:2:{i:0;b:0;i:1;a:2:{s:10:"identifier";s:62:"Drupal\\layout_builder\\Hook\\LayoutBuilderHooks::entityViewAlter";s:6:"isLast";b:1;}}}}'), ('hook_data', 'preprocess_for_suggestions', 'a:17:{s:50:"field_ui_preprocess_form_element__new_storage_type";s:6:"module";s:27:"node_preprocess_field__node";s:6:"module";s:39:"olivero_preprocess_field__node__created";s:5:"theme";s:33:"olivero_preprocess_field__comment";s:5:"theme";s:44:"olivero_preprocess_item_list__search_results";s:5:"theme";s:33:"olivero_preprocess_links__comment";s:5:"theme";s:42:"claro_preprocess_menu_local_task__views_ui";s:5:"theme";s:47:"claro_preprocess_form_element__password_confirm";s:5:"theme";s:39:"claro_preprocess_form_element__password";s:5:"theme";s:34:"claro_preprocess_links__dropbutton";s:5:"theme";s:36:"claro_preprocess_links__action_links";s:5:"theme";s:49:"claro_preprocess_views_view_fields__media_library";s:5:"theme";s:61:"claro_preprocess_item_list__media_library_add_form_media_list";s:5:"theme";s:43:"claro_preprocess_media_library_item__widget";s:5:"theme";s:42:"claro_preprocess_media_library_item__small";s:5:"theme";s:47:"claro_preprocess_fieldset__media_library_widget";s:5:"theme";s:42:"claro_preprocess_links__media_library_menu";s:5:"theme";}'), ('hook_data', 'theme_hook_list', 'a:2:{s:7:"olivero";a:36:{s:32:"form_system_theme_settings_alter";a:1:{i:0;s:40:"olivero_form_system_theme_settings_alter";}s:27:"preprocess_maintenance_page";a:1:{i:0;s:59:"Drupal\\olivero\\Hook\\OliveroHooks::preprocessMaintenancePage";}s:15:"preprocess_node";a:1:{i:0;s:48:"Drupal\\olivero\\Hook\\OliveroHooks::preprocessNode";}s:16:"preprocess_block";a:1:{i:0;s:49:"Drupal\\olivero\\Hook\\OliveroHooks::preprocessBlock";}s:28:"theme_suggestions_menu_alter";a:1:{i:0;s:59:"Drupal\\olivero\\Hook\\OliveroHooks::themeSuggestionsMenuAlter";}s:15:"preprocess_menu";a:1:{i:0;s:48:"Drupal\\olivero\\Hook\\OliveroHooks::preprocessMenu";}s:28:"theme_suggestions_form_alter";a:1:{i:0;s:59:"Drupal\\olivero\\Hook\\OliveroHooks::themeSuggestionsFormAlter";}s:10:"form_alter";a:1:{i:0;s:43:"Drupal\\olivero\\Hook\\OliveroHooks::formAlter";}s:29:"theme_suggestions_block_alter";a:1:{i:0;s:60:"Drupal\\olivero\\Hook\\OliveroHooks::themeSuggestionsBlockAlter";}s:27:"preprocess_menu_local_tasks";a:1:{i:0;s:58:"Drupal\\olivero\\Hook\\OliveroHooks::preprocessMenuLocalTasks";}s:23:"preprocess_form_element";a:1:{i:0;s:55:"Drupal\\olivero\\Hook\\OliveroHooks::preprocessFormElement";}s:29:"preprocess_form_element_label";a:1:{i:0;s:60:"Drupal\\olivero\\Hook\\OliveroHooks::preprocessFormElementLabel";}s:16:"preprocess_input";a:1:{i:0;s:49:"Drupal\\olivero\\Hook\\OliveroHooks::preprocessInput";}s:19:"preprocess_textarea";a:1:{i:0;s:52:"Drupal\\olivero\\Hook\\OliveroHooks::preprocessTextarea";}s:17:"preprocess_select";a:1:{i:0;s:50:"Drupal\\olivero\\Hook\\OliveroHooks::preprocessSelect";}s:21:"preprocess_checkboxes";a:1:{i:0;s:54:"Drupal\\olivero\\Hook\\OliveroHooks::preprocessCheckboxes";}s:17:"preprocess_radios";a:1:{i:0;s:50:"Drupal\\olivero\\Hook\\OliveroHooks::preprocessRadios";}s:16:"preprocess_field";a:1:{i:0;s:49:"Drupal\\olivero\\Hook\\OliveroHooks::preprocessField";}s:36:"preprocess_field_multiple_value_form";a:1:{i:0;s:66:"Drupal\\olivero\\Hook\\OliveroHooks::preprocessFieldMultipleValueForm";}s:26:"preprocess_menu_local_task";a:1:{i:0;s:57:"Drupal\\olivero\\Hook\\OliveroHooks::preprocessMenuLocalTask";}s:19:"preprocess_fieldset";a:1:{i:0;s:52:"Drupal\\olivero\\Hook\\OliveroHooks::preprocessFieldset";}s:28:"theme_suggestions_user_alter";a:1:{i:0;s:59:"Drupal\\olivero\\Hook\\OliveroHooks::themeSuggestionsUserAlter";}s:31:"preprocess_field__node__created";a:1:{i:0;s:60:"Drupal\\olivero\\Hook\\OliveroHooks::preprocessFieldNodeCreated";}s:25:"preprocess_filter_caption";a:1:{i:0;s:57:"Drupal\\olivero\\Hook\\OliveroHooks::preprocessFilterCaption";}s:35:"form_node_preview_form_select_alter";a:1:{i:0;s:64:"Drupal\\olivero\\Hook\\OliveroHooks::formNodePreviewFormSelectAlter";}s:18:"preprocess_comment";a:1:{i:0;s:51:"Drupal\\olivero\\Hook\\OliveroHooks::preprocessComment";}s:25:"preprocess_field__comment";a:1:{i:0;s:56:"Drupal\\olivero\\Hook\\OliveroHooks::preprocessFieldComment";}s:18:"element_info_alter";a:1:{i:0;s:50:"Drupal\\olivero\\Hook\\OliveroHooks::elementInfoAlter";}s:30:"preprocess_text_format_wrapper";a:1:{i:0;s:61:"Drupal\\olivero\\Hook\\OliveroHooks::preprocessTextFormatWrapper";}s:24:"preprocess_search_result";a:1:{i:0;s:56:"Drupal\\olivero\\Hook\\OliveroHooks::preprocessSearchResult";}s:36:"preprocess_item_list__search_results";a:1:{i:0;s:65:"Drupal\\olivero\\Hook\\OliveroHooks::preprocessItemListSearchResults";}s:25:"preprocess_links__comment";a:1:{i:0;s:56:"Drupal\\olivero\\Hook\\OliveroHooks::preprocessLinksComment";}s:16:"preprocess_table";a:1:{i:0;s:49:"Drupal\\olivero\\Hook\\OliveroHooks::preprocessTable";}s:27:"preprocess_views_view_table";a:1:{i:0;s:58:"Drupal\\olivero\\Hook\\OliveroHooks::preprocessViewsViewTable";}s:29:"form_views_exposed_form_alter";a:1:{i:0;s:59:"Drupal\\olivero\\Hook\\OliveroHooks::formViewsExposedFormAlter";}s:15:"preprocess_html";a:1:{i:0;s:62:"Drupal\\olivero\\Hook\\OliveroPagePreprocessHooks::preprocessHtml";}}s:5:"claro";a:66:{s:27:"preprocess_maintenance_page";a:1:{i:0;s:55:"Drupal\\claro\\Hook\\ClaroHooks::preprocessMaintenancePage";}s:16:"preprocess_block";a:1:{i:0;s:45:"Drupal\\claro\\Hook\\ClaroHooks::preprocessBlock";}s:10:"form_alter";a:1:{i:0;s:43:"Drupal\\claro\\Hook\\ClaroFormHooks::formAlter";}s:27:"preprocess_menu_local_tasks";a:1:{i:0;s:54:"Drupal\\claro\\Hook\\ClaroHooks::preprocessMenuLocalTasks";}s:23:"preprocess_form_element";a:1:{i:0;s:51:"Drupal\\claro\\Hook\\ClaroHooks::preprocessFormElement";}s:16:"preprocess_input";a:1:{i:0;s:45:"Drupal\\claro\\Hook\\ClaroHooks::preprocessInput";}s:17:"preprocess_select";a:1:{i:0;s:46:"Drupal\\claro\\Hook\\ClaroHooks::preprocessSelect";}s:36:"preprocess_field_multiple_value_form";a:1:{i:0;s:62:"Drupal\\claro\\Hook\\ClaroHooks::preprocessFieldMultipleValueForm";}s:26:"preprocess_menu_local_task";a:1:{i:0;s:53:"Drupal\\claro\\Hook\\ClaroHooks::preprocessMenuLocalTask";}s:19:"preprocess_fieldset";a:1:{i:0;s:48:"Drupal\\claro\\Hook\\ClaroHooks::preprocessFieldset";}s:35:"form_node_preview_form_select_alter";a:1:{i:0;s:60:"Drupal\\claro\\Hook\\ClaroHooks::formNodePreviewFormSelectAlter";}s:18:"element_info_alter";a:1:{i:0;s:46:"Drupal\\claro\\Hook\\ClaroHooks::elementInfoAlter";}s:30:"preprocess_text_format_wrapper";a:1:{i:0;s:57:"Drupal\\claro\\Hook\\ClaroHooks::preprocessTextFormatWrapper";}s:16:"preprocess_table";a:1:{i:0;s:45:"Drupal\\claro\\Hook\\ClaroHooks::preprocessTable";}s:27:"preprocess_views_view_table";a:1:{i:0;s:54:"Drupal\\claro\\Hook\\ClaroHooks::preprocessViewsViewTable";}s:29:"form_views_exposed_form_alter";a:1:{i:0;s:55:"Drupal\\claro\\Hook\\ClaroHooks::formViewsExposedFormAlter";}s:36:"theme_suggestions_form_element_alter";a:1:{i:0;s:62:"Drupal\\claro\\Hook\\ClaroHooks::themeSuggestionsFormElementAlter";}s:31:"theme_suggestions_details_alter";a:1:{i:0;s:58:"Drupal\\claro\\Hook\\ClaroHooks::themeSuggestionsDetailsAlter";}s:22:"page_attachments_alter";a:1:{i:0;s:50:"Drupal\\claro\\Hook\\ClaroHooks::pageAttachmentsAlter";}s:36:"preprocess_menu_local_task__views_ui";a:1:{i:0;s:60:"Drupal\\claro\\Hook\\ClaroHooks::preprocessMenuLocalTaskViewsUi";}s:24:"preprocess_node_add_list";a:1:{i:0;s:51:"Drupal\\claro\\Hook\\ClaroHooks::preprocessNodeAddList";}s:26:"preprocess_entity_add_list";a:1:{i:0;s:53:"Drupal\\claro\\Hook\\ClaroHooks::preprocessEntityAddList";}s:22:"preprocess_admin_block";a:1:{i:0;s:50:"Drupal\\claro\\Hook\\ClaroHooks::preprocessAdminBlock";}s:30:"preprocess_admin_block_content";a:1:{i:0;s:57:"Drupal\\claro\\Hook\\ClaroHooks::preprocessAdminBlockContent";}s:28:"preprocess_menu_local_action";a:1:{i:0;s:55:"Drupal\\claro\\Hook\\ClaroHooks::preprocessMenuLocalAction";}s:20:"theme_registry_alter";a:1:{i:0;s:48:"Drupal\\claro\\Hook\\ClaroHooks::themeRegistryAlter";}s:23:"preprocess_install_page";a:1:{i:0;s:51:"Drupal\\claro\\Hook\\ClaroHooks::preprocessInstallPage";}s:40:"theme_suggestions_maintenance_page_alter";a:1:{i:0;s:66:"Drupal\\claro\\Hook\\ClaroHooks::themeSuggestionsMaintenancePageAlter";}s:18:"preprocess_details";a:1:{i:0;s:47:"Drupal\\claro\\Hook\\ClaroHooks::preprocessDetails";}s:16:"preprocess_links";a:1:{i:0;s:45:"Drupal\\claro\\Hook\\ClaroHooks::preprocessLinks";}s:20:"form_node_form_alter";a:1:{i:0;s:47:"Drupal\\claro\\Hook\\ClaroHooks::formNodeFormAlter";}s:33:"form_menu_link_content_form_alter";a:1:{i:0;s:58:"Drupal\\claro\\Hook\\ClaroHooks::formMenuLinkContentFormAlter";}s:25:"form_menu_link_edit_alter";a:1:{i:0;s:51:"Drupal\\claro\\Hook\\ClaroHooks::formMenuLinkEditAlter";}s:21:"form_media_form_alter";a:1:{i:0;s:48:"Drupal\\claro\\Hook\\ClaroHooks::formMediaFormAlter";}s:26:"views_ui_display_top_alter";a:1:{i:0;s:52:"Drupal\\claro\\Hook\\ClaroHooks::viewsUiDisplayTopAlter";}s:26:"views_ui_display_tab_alter";a:1:{i:0;s:52:"Drupal\\claro\\Hook\\ClaroHooks::viewsUiDisplayTabAlter";}s:29:"preprocess_views_exposed_form";a:1:{i:0;s:56:"Drupal\\claro\\Hook\\ClaroHooks::preprocessViewsExposedForm";}s:25:"form_system_modules_alter";a:1:{i:0;s:52:"Drupal\\claro\\Hook\\ClaroHooks::formSystemModulesAlter";}s:27:"preprocess_datetime_wrapper";a:1:{i:0;s:55:"Drupal\\claro\\Hook\\ClaroHooks::preprocessDatetimeWrapper";}s:41:"preprocess_form_element__password_confirm";a:1:{i:0;s:66:"Drupal\\claro\\Hook\\ClaroHooks::preprocessFormElementPasswordConfirm";}s:33:"preprocess_form_element__password";a:1:{i:0;s:59:"Drupal\\claro\\Hook\\ClaroHooks::preprocessFormElementPassword";}s:22:"preprocess_filter_tips";a:1:{i:0;s:50:"Drupal\\claro\\Hook\\ClaroHooks::preprocessFilterTips";}s:25:"preprocess_field_ui_table";a:1:{i:0;s:52:"Drupal\\claro\\Hook\\ClaroHooks::preprocessFieldUiTable";}s:28:"preprocess_links__dropbutton";a:1:{i:0;s:55:"Drupal\\claro\\Hook\\ClaroHooks::preprocessLinksDropbutton";}s:38:"preprocess_views_ui_display_tab_bucket";a:1:{i:0;s:63:"Drupal\\claro\\Hook\\ClaroHooks::preprocessViewsUiDisplayTabBucket";}s:26:"preprocess_status_messages";a:1:{i:0;s:54:"Drupal\\claro\\Hook\\ClaroHooks::preprocessStatusMessages";}s:29:"preprocess_system_themes_page";a:1:{i:0;s:56:"Drupal\\claro\\Hook\\ClaroHooks::preprocessSystemThemesPage";}s:30:"preprocess_links__action_links";a:1:{i:0;s:56:"Drupal\\claro\\Hook\\ClaroHooks::preprocessLinksActionLinks";}s:28:"preprocess_file_managed_file";a:1:{i:0;s:55:"Drupal\\claro\\Hook\\ClaroHooks::preprocessFileManagedFile";}s:31:"preprocess_file_widget_multiple";a:1:{i:0;s:58:"Drupal\\claro\\Hook\\ClaroHooks::preprocessFileWidgetMultiple";}s:23:"preprocess_image_widget";a:1:{i:0;s:51:"Drupal\\claro\\Hook\\ClaroHooks::preprocessImageWidget";}s:43:"preprocess_views_view_fields__media_library";a:1:{i:0;s:67:"Drupal\\claro\\Hook\\ClaroHooks::preprocessViewsViewFieldsMediaLibrary";}s:33:"form_media_library_add_form_alter";a:1:{i:0;s:58:"Drupal\\claro\\Hook\\ClaroHooks::formMediaLibraryAddFormAlter";}s:40:"form_media_library_add_form_upload_alter";a:1:{i:0;s:64:"Drupal\\claro\\Hook\\ClaroHooks::formMediaLibraryAddFormUploadAlter";}s:40:"form_media_library_add_form_oembed_alter";a:1:{i:0;s:64:"Drupal\\claro\\Hook\\ClaroHooks::formMediaLibraryAddFormOembedAlter";}s:55:"preprocess_item_list__media_library_add_form_media_list";a:1:{i:0;s:76:"Drupal\\claro\\Hook\\ClaroHooks::preprocessItemListMediaLibraryAddFormMediaList";}s:37:"preprocess_media_library_item__widget";a:1:{i:0;s:62:"Drupal\\claro\\Hook\\ClaroHooks::preprocessMediaLibraryItemWidget";}s:36:"preprocess_media_library_item__small";a:1:{i:0;s:61:"Drupal\\claro\\Hook\\ClaroHooks::preprocessMediaLibraryItemSmall";}s:41:"preprocess_fieldset__media_library_widget";a:1:{i:0;s:66:"Drupal\\claro\\Hook\\ClaroHooks::preprocessFieldsetMediaLibraryWidget";}s:16:"views_pre_render";a:1:{i:0;s:44:"Drupal\\claro\\Hook\\ClaroHooks::viewsPreRender";}s:36:"preprocess_links__media_library_menu";a:1:{i:0;s:61:"Drupal\\claro\\Hook\\ClaroHooks::preprocessLinksMediaLibraryMenu";}s:41:"preprocess_views_ui_rearrange_filter_form";a:1:{i:0;s:66:"Drupal\\claro\\Hook\\ClaroHooks::preprocessViewsUiRearrangeFilterForm";}s:36:"form_views_ui_config_item_form_alter";a:1:{i:0;s:60:"Drupal\\claro\\Hook\\ClaroHooks::formViewsUiConfigItemFormAlter";}s:36:"form_views_ui_add_handler_form_alter";a:1:{i:0;s:60:"Drupal\\claro\\Hook\\ClaroHooks::formViewsUiAddHandlerFormAlter";}s:33:"form_user_admin_permissions_alter";a:1:{i:0;s:59:"Drupal\\claro\\Hook\\ClaroHooks::formUserAdminPermissionsAlter";}s:33:"preprocess_block_content_add_list";a:1:{i:0;s:59:"Drupal\\claro\\Hook\\ClaroHooks::preprocessBlockContentAddList";}}}'); INSERT INTO `[[dbprefix]]key_value` VALUES ('post_update', 'existing_updates', 'a:202:{i:0;s:70:"system_post_update_convert_empty_country_and_timezone_settings_to_null";i:1;s:70:"system_post_update_convert_empty_description_entity_form_modes_to_null";i:2;s:36:"system_post_update_delete_rss_config";i:3;s:43:"system_post_update_migrate_compress_setting";i:4;s:48:"system_post_update_remove_non_admin_routes_state";i:5;s:34:"system_post_update_remove_path_key";i:6;s:46:"system_post_update_remove_rss_cdata_subscriber";i:7;s:32:"system_post_update_sdc_uninstall";i:8;s:64:"system_post_update_recalculate_configuration_entity_dependencies";i:9;s:48:"system_post_update_add_region_to_entity_displays";i:10;s:37:"system_post_update_hashes_clear_cache";i:11;s:36:"system_post_update_timestamp_plugins";i:12;s:41:"system_post_update_classy_message_library";i:13;s:37:"system_post_update_field_type_plugins";i:14;s:48:"system_post_update_field_formatter_entity_schema";i:15;s:36:"system_post_update_fix_jquery_extend";i:16;s:40:"system_post_update_change_action_plugins";i:17;s:47:"system_post_update_change_delete_action_plugins";i:18;s:41:"system_post_update_language_item_callback";i:19;s:31:"system_post_update_extra_fields";i:20;s:37:"system_post_update_states_clear_cache";i:21;s:64:"system_post_update_add_expand_all_items_key_in_system_menu_block";i:22;s:35:"system_post_update_clear_menu_cache";i:23;s:46:"system_post_update_layout_plugin_schema_change";i:24;s:60:"system_post_update_entity_reference_autocomplete_match_limit";i:25;s:44:"system_post_update_extra_fields_form_display";i:26;s:39:"system_post_update_uninstall_simpletest";i:27;s:52:"system_post_update_uninstall_entity_reference_module";i:28;s:54:"system_post_update_entity_revision_metadata_bc_cleanup";i:29;s:35:"system_post_update_uninstall_classy";i:30;s:35:"system_post_update_uninstall_stable";i:31;s:44:"system_post_update_claro_dropbutton_variants";i:32;s:37:"system_post_update_schema_version_int";i:33;s:38:"system_post_update_delete_rss_settings";i:34;s:52:"system_post_update_remove_key_value_expire_all_index";i:35;s:44:"system_post_update_service_advisory_settings";i:36;s:44:"system_post_update_delete_authorize_settings";i:37;s:34:"system_post_update_sort_all_config";i:38;s:50:"system_post_update_enable_provider_database_driver";i:39;s:35:"system_post_update_linkset_settings";i:40;s:48:"system_post_update_enable_password_compatibility";i:41;s:39:"system_post_update_remove_asset_entries";i:42;s:44:"system_post_update_remove_asset_query_string";i:43;s:54:"system_post_update_add_description_to_entity_view_mode";i:44;s:54:"system_post_update_add_description_to_entity_form_mode";i:45;s:44:"system_post_update_set_blank_log_url_to_null";i:46;s:38:"system_post_update_mailer_dsn_settings";i:47;s:49:"system_post_update_mailer_structured_dsn_settings";i:48;s:47:"system_post_update_amend_config_sync_readme_url";i:49;s:44:"system_post_update_mail_notification_setting";i:50;s:54:"system_post_update_set_cron_logging_setting_to_boolean";i:51;s:56:"system_post_update_move_development_settings_to_keyvalue";i:52;s:58:"system_post_update_add_langcode_to_all_translatable_config";i:53;s:67:"announcements_feed_post_update_migrate_last_fetch_state_to_keyvalue";i:54;s:39:"big_pipe_post_update_html5_placeholders";i:55;s:37:"block_post_update_make_weight_integer";i:56;s:54:"block_post_update_set_menu_block_depth_to_null_if_zero";i:57;s:54:"block_post_update_disable_blocks_with_missing_contexts";i:58;s:40:"block_post_update_disabled_region_update";i:59;s:42:"block_post_update_fix_negate_in_conditions";i:60;s:45:"block_post_update_replace_node_type_condition";i:61;s:60:"block_content_post_update_remove_block_content_listing_empty";i:62;s:63:"block_content_post_update_remove_block_content_status_info_keys";i:63;s:51:"block_content_post_update_add_views_reusable_filter";i:64;s:51:"block_content_post_update_entity_changed_constraint";i:65;s:51:"block_content_post_update_move_custom_block_library";i:66;s:55:"block_content_post_update_block_library_view_permission";i:67;s:42:"block_content_post_update_sort_permissions";i:68;s:39:"block_content_post_update_revision_type";i:69;s:31:"ckeditor5_post_update_list_type";i:70;s:37:"ckeditor5_post_update_list_type_again";i:71;s:39:"ckeditor5_post_update_alignment_buttons";i:72;s:40:"ckeditor5_post_update_image_toolbar_item";i:73;s:51:"ckeditor5_post_update_plugins_settings_export_order";i:74;s:32:"ckeditor5_post_update_code_block";i:75;s:37:"ckeditor5_post_update_list_multiblock";i:76;s:41:"ckeditor5_post_update_list_start_reversed";i:77;s:48:"contextual_post_update_fixed_endpoint_and_markup";i:78;s:49:"dblog_post_update_convert_recent_messages_to_view";i:79;s:56:"editor_post_update_clear_cache_for_file_reference_filter";i:80;s:34:"editor_post_update_image_lazy_load";i:81;s:49:"editor_post_update_sanitize_image_upload_settings";i:82;s:40:"field_post_update_clear_purge_batch_size";i:83;s:46:"field_post_update_save_custom_storage_property";i:84;s:50:"field_post_update_entity_reference_handler_setting";i:85;s:43:"field_post_update_email_widget_size_setting";i:86;s:47:"field_post_update_remove_handler_submit_setting";i:87;s:32:"file_post_update_add_playsinline";i:88;s:54:"file_post_update_add_txt_if_allows_insecure_extensions";i:89;s:41:"file_post_update_add_permissions_to_roles";i:90;s:64:"file_post_update_add_default_filename_sanitization_configuration";i:91;s:31:"filter_post_update_sort_filters";i:92;s:44:"filter_post_update_consolidate_filter_config";i:93;s:57:"path_alias_post_update_update_path_alias_revision_indexes";i:94;s:51:"path_alias_post_update_drop_path_alias_status_index";i:95;s:42:"text_post_update_add_required_summary_flag";i:96;s:55:"text_post_update_add_required_summary_flag_form_display";i:97;s:32:"text_post_update_allowed_formats";i:98;s:45:"user_post_update_enforce_order_of_permissions";i:99;s:29:"user_post_update_update_roles";i:100;s:33:"user_post_update_sort_permissions";i:101;s:39:"user_post_update_sort_permissions_again";i:102;s:41:"help_post_update_search_help_dependencies";i:103;s:35:"help_post_update_help_topics_search";i:104;s:38:"help_post_update_help_topics_uninstall";i:105;s:41:"help_post_update_add_permissions_to_roles";i:106;s:42:"image_post_update_image_style_dependencies";i:107;s:50:"image_post_update_scale_and_crop_effect_add_anchor";i:108;s:41:"image_post_update_image_loading_attribute";i:109;s:54:"layout_builder_post_update_rebuild_plugin_dependencies";i:110;s:43:"layout_builder_post_update_add_extra_fields";i:111;s:62:"layout_builder_post_update_section_storage_context_definitions";i:112;s:57:"layout_builder_post_update_overrides_view_mode_annotation";i:113;s:62:"layout_builder_post_update_cancel_link_to_discard_changes_form";i:114;s:54:"layout_builder_post_update_remove_layout_is_rebuilding";i:115;s:46:"layout_builder_post_update_routing_entity_form";i:116;s:55:"layout_builder_post_update_discover_blank_layout_plugin";i:117;s:43:"layout_builder_post_update_routing_defaults";i:118;s:56:"layout_builder_post_update_discover_new_contextual_links";i:119;s:45:"layout_builder_post_update_fix_tempstore_keys";i:120;s:62:"layout_builder_post_update_section_third_party_settings_schema";i:121;s:59:"layout_builder_post_update_layout_builder_dependency_change";i:122;s:45:"layout_builder_post_update_update_permissions";i:123;s:53:"layout_builder_post_update_make_layout_untranslatable";i:124;s:58:"layout_builder_post_update_override_entity_form_controller";i:125;s:58:"layout_builder_post_update_section_storage_context_mapping";i:126;s:51:"layout_builder_post_update_tempstore_route_enhancer";i:127;s:46:"layout_builder_post_update_timestamp_formatter";i:128;s:65:"layout_builder_post_update_enable_expose_field_block_feature_flag";i:129;s:73:"layout_discovery_post_update_recalculate_entity_form_display_dependencies";i:130;s:73:"layout_discovery_post_update_recalculate_entity_view_display_dependencies";i:131;s:65:"menu_link_content_post_update_make_menu_link_content_revisionable";i:132;s:49:"navigation_post_update_navigation_user_links_menu";i:133;s:51:"navigation_post_update_refresh_tempstore_repository";i:134;s:50:"navigation_post_update_set_logo_dimensions_default";i:135;s:51:"navigation_post_update_uninstall_navigation_top_bar";i:136;s:41:"navigation_post_update_update_permissions";i:137;s:48:"node_post_update_add_rebuild_permission_to_roles";i:138;s:52:"node_post_update_create_promote_base_field_overrides";i:139;s:46:"node_post_update_configure_status_field_widget";i:140;s:41:"node_post_update_node_revision_views_data";i:141;s:40:"node_post_update_glossary_view_published";i:142;s:45:"node_post_update_rebuild_node_revision_routes";i:143;s:50:"node_post_update_modify_base_field_author_override";i:144;s:59:"node_post_update_set_node_type_description_and_help_to_null";i:145;s:49:"path_post_update_create_language_content_settings";i:146;s:43:"taxonomy_post_update_clear_views_data_cache";i:147;s:64:"taxonomy_post_update_clear_entity_bundle_field_definitions_cache";i:148;s:63:"taxonomy_post_update_handle_publishing_status_addition_in_views";i:149;s:55:"taxonomy_post_update_remove_hierarchy_from_vocabularies";i:150;s:52:"taxonomy_post_update_make_taxonomy_term_revisionable";i:151;s:50:"taxonomy_post_update_configure_status_field_widget";i:152;s:65:"taxonomy_post_update_clear_views_argument_validator_plugins_cache";i:153;s:37:"taxonomy_post_update_set_new_revision";i:154;s:55:"taxonomy_post_update_set_vocabulary_description_to_null";i:155;s:44:"views_post_update_add_date_default_arguments";i:156;s:38:"views_post_update_block_items_per_page";i:157;s:44:"views_post_update_counter_field_not_sortable";i:158;s:31:"views_post_update_format_plural";i:159;s:33:"views_post_update_table_css_class";i:160;s:44:"views_post_update_update_remember_role_empty";i:161;s:47:"views_post_update_views_data_argument_plugin_id";i:162;s:46:"views_post_update_update_cacheability_metadata";i:163;s:46:"views_post_update_cleanup_duplicate_views_data";i:164;s:46:"views_post_update_field_formatter_dependencies";i:165;s:36:"views_post_update_taxonomy_index_tid";i:166;s:41:"views_post_update_serializer_dependencies";i:167;s:39:"views_post_update_boolean_filter_values";i:168;s:33:"views_post_update_grouped_filters";i:169;s:42:"views_post_update_revision_metadata_fields";i:170;s:33:"views_post_update_entity_link_url";i:171;s:34:"views_post_update_bulk_field_moved";i:172;s:41:"views_post_update_filter_placeholder_text";i:173;s:47:"views_post_update_views_data_table_dependencies";i:174;s:45:"views_post_update_table_display_cache_max_age";i:175;s:53:"views_post_update_exposed_filter_blocks_label_display";i:176;s:48:"views_post_update_make_placeholders_translatable";i:177;s:41:"views_post_update_limit_operator_defaults";i:178;s:33:"views_post_update_remove_core_key";i:179;s:51:"views_post_update_field_names_for_multivalue_fields";i:180;s:52:"views_post_update_configuration_entity_relationships";i:181;s:48:"views_post_update_rename_default_display_setting";i:182;s:50:"views_post_update_remove_sorting_global_text_field";i:183;s:36:"views_post_update_title_translations";i:184;s:33:"views_post_update_sort_identifier";i:185;s:53:"views_post_update_provide_revision_table_relationship";i:186;s:33:"views_post_update_image_lazy_load";i:187;s:39:"views_post_update_boolean_custom_titles";i:188;s:35:"views_post_update_oembed_eager_load";i:189;s:44:"views_post_update_responsive_image_lazy_load";i:190;s:37:"views_post_update_timestamp_formatter";i:191;s:38:"views_post_update_fix_revision_id_part";i:192;s:36:"views_post_update_add_missing_labels";i:193;s:43:"views_post_update_remove_skip_cache_setting";i:194;s:50:"views_post_update_remove_default_argument_skip_url";i:195;s:46:"views_post_update_taxonomy_filter_user_context";i:196;s:31:"views_post_update_pager_heading";i:197;s:54:"views_post_update_rendered_entity_field_cache_metadata";i:198;s:61:"olivero_post_update_remove_shortcut_settings_if_not_installed";i:199;s:45:"olivero_post_update_add_olivero_primary_color";i:200;s:35:"update_post_update_clear_disk_cache";i:201;s:36:"update_post_update_fix_update_emails";}'), ('state', 'asset.css_js_query_string', '[[css_js_query_string]]'), ('state', 'install_task', 's:4:"done";'), ('state', 'install_time', 'i:[[timestamp]];'), ('state', 'router.path_roots', 'a:25:{i:0;s:5:"admin";i:1;s:8:"big_pipe";i:2;s:14:"block-category";i:3;s:5:"block";i:4;s:9:"ckeditor5";i:5;s:10:"contextual";i:6;s:6:"editor";i:7;s:4:"file";i:8;s:6:"filter";i:9;s:5:"sites";i:10;s:6:"system";i:11;s:14:"layout_builder";i:12;s:4:"node";i:13;s:4:"cron";i:14;s:0:"";i:15;s:9:"";i:16;s:5:"batch";i:17;s:10:"update.php";i:18;s:29:"entity_reference_autocomplete";i:19;s:7:"session";i:20;s:8:"taxonomy";i:21;s:4:"user";i:22;s:11:".well-known";i:23;s:7:"rss.xml";i:24;s:5:"views";}'), ('state', 'routing.menu_masks.router', 'a:54:{i:0;i:988;i:1;i:987;i:2;i:501;i:3;i:494;i:4;i:493;i:5;i:492;i:6;i:491;i:7;i:464;i:8;i:253;i:9;i:252;i:10;i:251;i:11;i:250;i:12;i:247;i:13;i:246;i:14;i:245;i:15;i:244;i:16;i:232;i:17;i:224;i:18;i:126;i:19;i:125;i:20;i:124;i:21;i:123;i:22;i:122;i:23;i:117;i:24;i:116;i:25;i:112;i:26;i:63;i:27;i:62;i:28;i:61;i:29;i:60;i:30;i:59;i:31;i:56;i:32;i:53;i:33;i:49;i:34;i:42;i:35;i:31;i:36;i:30;i:37;i:29;i:38;i:28;i:39;i:27;i:40;i:24;i:41;i:21;i:42;i:15;i:43;i:14;i:44;i:13;i:45;i:12;i:46;i:11;i:47;i:8;i:48;i:7;i:49;i:6;i:50;i:5;i:51;i:3;i:52;i:2;i:53;i:1;}'), ('state', 'system.cron_key', '[[system_cron_key]]'), ('state', 'system.cron_last', 'i:[[timestamp]];'), ('state', 'system.private_key', '[[system_private_key]]'), ('state', 'system.profile.files', 'a:3:{s:10:"demo_umami";s:44:"core/profiles/demo_umami/demo_umami.info.yml";s:7:"minimal";s:38:"core/profiles/minimal/minimal.info.yml";s:8:"standard";s:40:"core/profiles/standard/standard.info.yml";}'), ('state', 'twig_extension_hash_prefix', 'a:2:{s:19:"twig_extension_hash";s:0:"";s:17:"twig_cache_prefix";s:0:"";}'), ('state', 'update.last_check', 'i:[[timestamp]];'), ('state', 'views.view_route_names', 'a:10:{s:13:"watchdog.page";s:14:"dblog.overview";s:24:"user_admin_people.page_1";s:22:"entity.user.collection";s:20:"taxonomy_term.page_1";s:30:"entity.taxonomy_term.canonical";s:14:"content.page_1";s:20:"system.admin_content";s:20:"block_content.page_1";s:31:"entity.block_content.collection";s:12:"files.page_1";s:17:"view.files.page_1";s:12:"files.page_2";s:17:"view.files.page_2";s:16:"frontpage.feed_1";s:21:"view.frontpage.feed_1";s:16:"frontpage.page_1";s:21:"view.frontpage.page_1";s:20:"taxonomy_term.feed_1";s:25:"view.taxonomy_term.feed_1";}'), ('system.schema', 'announcements_feed', 'i:8000;'), ('system.schema', 'automated_cron', 'i:8000;'), ('system.schema', 'big_pipe', 'i:8000;'), ('system.schema', 'block', 'i:8003;'), ('system.schema', 'block_content', 'i:10300;'), ('system.schema', 'breakpoint', 'i:8000;'), ('system.schema', 'ckeditor5', 'i:8000;'), ('system.schema', 'config', 'i:8000;'), ('system.schema', 'contextual', 'i:8000;'), ('system.schema', 'datetime', 'i:8000;'), ('system.schema', 'dblog', 'i:10101;'), ('system.schema', 'dynamic_page_cache', 'i:8000;'), ('system.schema', 'editor', 'i:8001;'), ('system.schema', 'field', 'i:8500;'), ('system.schema', 'field_ui', 'i:8000;'), ('system.schema', 'file', 'i:8700;'), ('system.schema', 'filter', 'i:8000;'), ('system.schema', 'help', 'i:10200;'), ('system.schema', 'image', 'i:8201;'), ('system.schema', 'layout_builder', 'i:8602;'), ('system.schema', 'layout_discovery', 'i:8000;'), ('system.schema', 'link', 'i:8000;'), ('system.schema', 'menu_link_content', 'i:8601;'), ('system.schema', 'menu_ui', 'i:8000;'), ('system.schema', 'mysql', 'i:8000;'), ('system.schema', 'navigation', 'i:11002;'), ('system.schema', 'node', 'i:8700;'), ('system.schema', 'options', 'i:8000;'), ('system.schema', 'page_cache', 'i:8000;'), ('system.schema', 'path', 'i:8200;'), ('system.schema', 'path_alias', 'i:8000;'), ('system.schema', 'standard', 'i:8000;'), ('system.schema', 'system', 'i:11401;'), ('system.schema', 'taxonomy', 'i:10100;'), ('system.schema', 'text', 'i:8000;'), ('system.schema', 'update', 'i:8001;'), ('system.schema', 'user', 'i:10000;'), ('system.schema', 'views', 'i:11201;'), ('system.schema', 'views_ui', 'i:8000;'); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]key_value_expire` -- CREATE TABLE `[[dbprefix]]key_value_expire` ( `collection` varchar(128) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL DEFAULT '' COMMENT 'A named collection of key and value pairs.', `name` varchar(128) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL DEFAULT '' COMMENT 'The key of the key/value pair.', `value` longblob NOT NULL COMMENT 'The value of the key/value pair.', `expire` int NOT NULL DEFAULT '2147483647' COMMENT 'The time since Unix epoch in seconds when this item expires. Defaults to the maximum possible time.', PRIMARY KEY (`collection`,`name`), KEY `expire` (`expire`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Generic key/value storage table with an expiration.'; -- -- Dumping data for table `[[dbprefix]]key_value_expire` -- INSERT INTO `[[dbprefix]]key_value_expire` VALUES ('announcements_feed', 'announcements', 'a:24:{i:0;a:7:{s:2:"id";s:7:"3604040";s:5:"title";s:88:"Drupal AI 1.4.0: Unveiling Extensibility, Enterprise Resilience, and Advanced Guardrails";s:12:"content_html";s:474:"

          Just two months after the milestone release of Drupal AI 1.3.0, we are thrilled to announce that Drupal AI 1.4.0 is officially here!

          \n

          With the 1.x branch reaching a high level of maturity and stability, we are excited to transition into a more predictable, bi-monthly minor release cadence. Moving forward, the Drupal community can look forward to a steady, reliable stream of improvements, new integrations, and expanded platform capabilities.

          ";s:3:"url";s:131:"https://www.drupal.org/about/announcements/blog/drupal-ai-140-unveiling-extensibility-enterprise-resilience-and-advanced-guardrails";s:13:"date_modified";s:25:"2026-06-18T20:03:32+00:00";s:14:"date_published";s:25:"2026-06-18T14:04:05+00:00";s:10:"_drupalorg";a:2:{s:8:"featured";b:0;s:7:"version";s:3:">=7";}}i:1;a:7:{s:2:"id";s:7:"3570022";s:5:"title";s:80:"Drupal CMS 2.0 is here: Visual building, AI, and site templates transform Drupal";s:12:"content_html";s:568:"

          \n

          January 28, 2026 – Today marks one of the biggest evolutions in Drupal''s 25-year history.

          \n

          Drupal CMS 2.0 launches with Drupal Canvas, AI-powered tools, and introduces a component system along with the first site template that enables marketing teams to launch fully branded, professional websites in days instead of weeks. Built on Drupal core, it maintains the enterprise-grade security, scalability, and flexibility Drupal is known for.

          ";s:3:"url";s:104:"https://www.drupal.org/blog/drupal-cms-20-is-here-visual-building-ai-and-site-templates-transform-drupal";s:13:"date_modified";s:25:"2026-01-28T21:04:36+00:00";s:14:"date_published";s:25:"2026-01-28T03:13:51+00:00";s:10:"_drupalorg";a:2:{s:8:"featured";b:0;s:7:"version";s:3:">=7";}}i:2;a:7:{s:2:"id";s:7:"3567691";s:5:"title";s:21:"Drupal Turns 25 Today";s:12:"content_html";s:594:"

          Twenty-five years! In the world of technology, hitting a quarter-century milestone while remaining a top-notch powerhouse of the internet is an achievement so rare it''s almost unheard of. Today, we''re popping the confetti and cutting the cakes around the world to celebrate a colossal journey. This isn''t just a birthday for a piece of software; it''s a testament to resilience, constant evolution, and the deep-seated belief in doing things the right way. Join us as we look back on 25 years of shared passion, contribution, and the incredible community that has made Drupal so powerful.

          ";s:3:"url";s:69:"https://www.drupal.org/about/announcements/blog/drupal-turns-25-today";s:13:"date_modified";s:25:"2026-01-27T08:54:42+00:00";s:14:"date_published";s:25:"2026-01-15T12:05:33+00:00";s:10:"_drupalorg";a:2:{s:8:"featured";b:0;s:7:"version";s:3:">=7";}}i:3;a:7:{s:2:"id";s:7:"3566490";s:5:"title";s:63:"Get ready to celebrate Drupal''s 25th birthday on Jan 15th, 2026";s:12:"content_html";s:414:"

          https://buff.ly/24y5oL8Drupal turns 25 on 15 January 2026! 🥳 That’s 25 years of open source, collaboration, innovation, and an incredible global community.

          \n

          We’re planning a few ways to celebrate Drupal’s birthday week (Jan 8-15). Meanwhile, you can start dreaming up your own ways to join the fun 👉 meetups, posts, stories, creativity, and more. ✨

          \n";s:3:"url";s:109:"https://www.drupal.org/about/announcements/blog/get-ready-to-celebrate-drupals-25th-birthday-on-jan-15th-2026";s:13:"date_modified";s:25:"2026-01-15T08:53:28+00:00";s:14:"date_published";s:25:"2026-01-08T19:58:58+00:00";s:10:"_drupalorg";a:2:{s:8:"featured";b:0;s:7:"version";s:3:">=7";}}i:4;a:7:{s:2:"id";s:7:"3563660";s:5:"title";s:30:"Drupal 11.3.0 is now available";s:12:"content_html";s:508:"

          The third feature release of Drupal 11 is here with the biggest performance boost in a decade. Serve 26-33% more requests with the same database load. New native HTMX support enables rich UX with up to 71% less JavaScript. Plus, enjoy the new stable Navigation module, improved CKEditor content editing, native content export, and cleaner OOP hooks for themes.

          \n

          ";s:3:"url";s:41:"https://www.drupal.org/blog/drupal-11-3-0";s:13:"date_modified";s:25:"2025-12-18T15:15:07+00:00";s:14:"date_published";s:25:"2025-12-17T12:04:38+00:00";s:10:"_drupalorg";a:2:{s:8:"featured";b:0;s:7:"version";s:3:">=7";}}i:5;a:7:{s:2:"id";s:7:"3561543";s:5:"title";s:71:"Drupal Canvas is Now Available: Inside Drupal''s New Visual Page Builder";s:12:"content_html";s:451:"

          \n

          For years, Drupal has been the platform of choice for organizations that need serious digital capabilities—think universities managing millions of pages, government agencies with complex workflows, and Fortune 500 companies running mission-critical websites. The power is undeniable, but there''s always been a catch: you needed technical expertise to unlock it.

          ";s:3:"url";s:97:"https://www.drupal.org/blog/drupal-canvas-is-now-available-inside-drupals-new-visual-page-builder";s:13:"date_modified";s:25:"2025-12-18T10:41:24+00:00";s:14:"date_published";s:25:"2025-12-04T18:24:05+00:00";s:10:"_drupalorg";a:2:{s:8:"featured";b:0;s:7:"version";s:3:">=7";}}i:6;a:7:{s:2:"id";s:7:"3548048";s:5:"title";s:54:"DrupalCon Chicago 2026: Your Stage to Shape the Future";s:12:"content_html";s:270:"

          March 23–26, 2026 | Chicago, IL

          \n

          Chicago isn''t just hosting DrupalCon 2026—it''s providing the stage where the Drupal community writes its next chapter. And that story starts with you.

          ";s:3:"url";s:101:"https://www.drupal.org/about/announcements/blog/drupalcon-chicago-2026-your-stage-to-shape-the-future";s:13:"date_modified";s:25:"2025-09-22T20:30:38+00:00";s:14:"date_published";s:25:"2025-09-22T20:30:38+00:00";s:10:"_drupalorg";a:2:{s:8:"featured";b:0;s:7:"version";s:3:">=7";}}i:7;a:7:{s:2:"id";s:7:"3546850";s:5:"title";s:76:"DrupalCon Nara 2025: Building Tomorrow in One of Japan''s Most Ancient Cities";s:12:"content_html";s:389:"

          November 17–19, 2025 | Nara, Japan

          \n

          The energy is building in Asia. Following July''s groundbreaking first-ever Contribution Day in Tokyo—where developers, translators, and UX experts came together to push Drupal forward—that momentum is heading straight to one of Japan''s most culturally rich cities.

          ";s:3:"url";s:122:"https://www.drupal.org/about/announcements/blog/drupalcon-nara-2025-building-tomorrow-in-one-of-japans-most-ancient-cities";s:13:"date_modified";s:25:"2025-09-15T21:58:39+00:00";s:14:"date_published";s:25:"2025-09-15T21:58:39+00:00";s:10:"_drupalorg";a:2:{s:8:"featured";b:0;s:7:"version";s:3:">=7";}}i:8;a:7:{s:2:"id";s:7:"3545545";s:5:"title";s:93:"DrupalCon Vienna 2025: Where Digital Ambitions Meet Community Innovation - Will you be there?";s:12:"content_html";s:363:"

          October 14–17, 2025 | Austria Center Vienna

          \n

          Vienna is calling the global Drupal community home this October, and we can''t wait to see what happens when ambitious minds gather in one of Europe''s most inspiring cities.

          ";s:3:"url";s:137:"https://www.drupal.org/about/announcements/blog/drupalcon-vienna-2025-where-digital-ambitions-meet-community-innovation-will-you-be-there";s:13:"date_modified";s:25:"2025-09-08T20:20:15+00:00";s:14:"date_published";s:25:"2025-09-08T20:19:27+00:00";s:10:"_drupalorg";a:2:{s:8:"featured";b:0;s:7:"version";s:3:">=7";}}i:9;a:7:{s:2:"id";s:7:"3530875";s:5:"title";s:30:"Drupal 11.2.0 is now available";s:12:"content_html";s:324:"

          The second feature release of Drupal 11 improves backend and frontend performance and scalability, completes the introduction of OOP support of hooks, adds JSON Schema support, includes AVIF image format capability, supports SDC variants, and more.

          \n";s:3:"url";s:41:"https://www.drupal.org/blog/drupal-11-2-0";s:13:"date_modified";s:25:"2025-07-17T01:20:03+00:00";s:14:"date_published";s:25:"2025-06-19T05:05:25+00:00";s:10:"_drupalorg";a:2:{s:8:"featured";b:0;s:7:"version";s:1:"*";}}i:10;a:7:{s:2:"id";s:7:"3516956";s:5:"title";s:41:"State of Drupal presentation (March 2025)";s:12:"content_html";s:459:"

          Three months ago, we launched Drupal CMS 1.0, our biggest step forward in years. Our goal is ambitious: to reimagine Drupal as both radically easier to use and a platform for faster innovation.

          \n

          In Dries'' DrupalCon Atlanta keynote last week, he reflected on the journey so far, but mostly talked about the work ahead.

          \n";s:3:"url";s:87:"https://www.drupal.org/about/announcements/blog/state-of-drupal-presentation-march-2025";s:13:"date_modified";s:25:"2025-04-07T17:05:05+00:00";s:14:"date_published";s:25:"2025-04-02T18:27:47+00:00";s:10:"_drupalorg";a:2:{s:8:"featured";b:0;s:7:"version";s:3:">=7";}}i:11;a:7:{s:2:"id";s:7:"3509234";s:5:"title";s:48:"DrupalCon Atlanta is almost here! 24-27 of March";s:12:"content_html";s:444:"

          DrupalCon is an exciting and invaluable event for anyone involved in the Drupal community, whether you’re a developer, website owner, or digital professional. If you’re heading to DrupalCon Atlanta 2025 for the first time, you’re in for a treat! Here''s everything you need to know to make the most of your experience, along with some top tips for how to prepare.

          ";s:3:"url";s:95:"https://www.drupal.org/about/announcements/blog/drupalcon-atlanta-is-almost-here-24-27-of-march";s:13:"date_modified";s:25:"2025-02-26T20:33:54+00:00";s:14:"date_published";s:25:"2025-02-26T20:33:27+00:00";s:10:"_drupalorg";a:2:{s:8:"featured";b:0;s:7:"version";s:3:">=7";}}i:12;a:7:{s:2:"id";s:7:"3499892";s:5:"title";s:32:"Drupal CMS 1.0 is now available!";s:12:"content_html";s:436:"

          We’re excited to share that Drupal CMS 1.0 has officially launched! This new platform is designed to make it easier than ever for marketers and content teams to create amazing digital experiences, all while staying true to Drupal’s open-source roots.

          \n

          Getting started takes minutes

          \n

          Drupal CMS 1.0 is packed with features to make your life easier:

          ";s:3:"url";s:42:"https://www.drupal.org/blog/drupal-cms-1-0";s:13:"date_modified";s:25:"2025-01-15T18:40:24+00:00";s:14:"date_published";s:25:"2025-01-15T17:00:28+00:00";s:10:"_drupalorg";a:2:{s:8:"featured";b:0;s:7:"version";s:2:">7";}}i:14;a:7:{s:2:"id";s:7:"3494304";s:5:"title";s:30:"Drupal 11.1.0 is now available";s:12:"content_html";s:263:"

          The first feature release of Drupal 11 improves the recipe system, introduces support for hooks written as classes, makes Workspaces more flexible and enhances performance.

          ";s:3:"url";s:41:"https://www.drupal.org/blog/drupal-11-1-0";s:13:"date_modified";s:25:"2024-12-16T20:28:53+00:00";s:14:"date_published";s:25:"2024-12-16T17:50:29+00:00";s:10:"_drupalorg";a:2:{s:8:"featured";b:0;s:7:"version";s:5:">=7.0";}}i:16;a:7:{s:2:"id";s:7:"3480615";s:5:"title";s:58:"DrupalCon Singapore 2024: What Awaits You in the Lion City";s:12:"content_html";s:528:"

          It’s time to dust off those suitcases and start thinking about where your passport is - DrupalCon Singapore 2024 is just around the corner, and this year’s event promises to be amazing! From 9-11 December, our much-anticipated event will bring together the brightest minds and most passionate contributors from the Drupal community for three days of innovation, learning, and inspiration at the luxurious Parkroyal Collection Marina Bay, Singapore.

          ";s:3:"url";s:105:"https://www.drupal.org/about/announcements/blog/drupalcon-singapore-2024-what-awaits-you-in-the-lion-city";s:13:"date_modified";s:25:"2024-10-14T16:49:44+00:00";s:14:"date_published";s:25:"2024-10-14T16:49:44+00:00";s:10:"_drupalorg";a:2:{s:8:"featured";b:0;s:7:"version";s:5:">=7.0";}}i:17;a:7:{s:2:"id";s:7:"3465580";s:5:"title";s:18:"Drupal 11 released";s:12:"content_html";s:114:"

          Today is a big day for Drupal as we officially released Drupal 11!

          \n";s:3:"url";s:46:"https://www.drupal.org/blog/drupal-11-released";s:13:"date_modified";s:25:"2024-08-15T15:10:39+00:00";s:14:"date_published";s:25:"2024-08-01T22:57:58+00:00";s:10:"_drupalorg";a:2:{s:8:"featured";b:0;s:7:"version";s:1:"*";}}i:18;a:7:{s:2:"id";s:7:"3456034";s:5:"title";s:28:"Drupal 10.3 is now available";s:12:"content_html";s:370:"

          The third and final feature release of Drupal 10 ships with a new experimental Navigation user interface, stable Workspaces functionality, stable Single-Directory Components support, simplified menu editing, taxonomy moderation support, new recipe and access policy APIs and more.

          ";s:3:"url";s:41:"https://www.drupal.org/blog/drupal-10-3-0";s:13:"date_modified";s:25:"2024-09-05T23:00:47+00:00";s:14:"date_published";s:25:"2024-06-20T20:00:04+00:00";s:10:"_drupalorg";a:2:{s:8:"featured";b:0;s:7:"version";s:5:">=7.0";}}i:20;a:7:{s:2:"id";s:7:"3427138";s:5:"title";s:52:"You''re invited to DrupalCon Portland | 6-9 May, 2024";s:12:"content_html";s:384:"

          DrupalCon is an event for developers, marketers/content editors, site owners, and the Drupal-curious to join with the community. You''ll find incredible keynotes, session content from expert speakers who have helped to build Drupal, networking opportunities with your peers, fun social events, and the chance to deepen your connection by contributing to the open source project.

          ";s:3:"url";s:96:"https://www.drupal.org/about/announcements/blog/youre-invited-to-drupalcon-portland-6-9-may-2024";s:13:"date_modified";s:25:"2024-03-18T19:40:04+00:00";s:14:"date_published";s:25:"2024-03-11T16:49:53+00:00";s:10:"_drupalorg";a:2:{s:8:"featured";b:0;s:7:"version";s:5:">=7.0";}}i:21;a:7:{s:2:"id";s:7:"3408836";s:5:"title";s:28:"Drupal 10.2 is now available";s:12:"content_html";s:378:"

          The second feature release of Drupal 10 improves content modeling, block management, menu and taxonomy organization, and permission administration. New options to sanitize file names make it possible to clean up the names of uploaded files, and media item revisions now have a dedicated user interface.

          \n";s:3:"url";s:41:"https://www.drupal.org/blog/drupal-10-2-0";s:13:"date_modified";s:25:"2024-01-25T18:24:28+00:00";s:14:"date_published";s:25:"2023-12-15T18:27:47+00:00";s:10:"_drupalorg";a:2:{s:8:"featured";b:0;s:7:"version";s:5:">=7.0";}}i:22;a:7:{s:2:"id";s:7:"3403229";s:5:"title";s:75:"Drupal 10 will be supported until the release of Drupal 12 in mid-late 2026";s:12:"content_html";s:190:"

          Announcing a new major release schedule with long term support for Drupal 10 until mid-late 2026. Drupal 11 will be released in 2024 and work on the dedicated branch starts this week.

          ";s:3:"url";s:103:"https://www.drupal.org/blog/drupal-10-will-be-supported-until-the-release-of-drupal-12-in-mid-late-2026";s:13:"date_modified";s:25:"2024-01-25T18:31:05+00:00";s:14:"date_published";s:25:"2023-11-22T07:13:55+00:00";s:10:"_drupalorg";a:2:{s:8:"featured";b:0;s:7:"version";s:5:">=7.0";}}i:24;a:7:{s:2:"id";s:7:"3368367";s:5:"title";s:28:"Drupal 10.1 is now available";s:12:"content_html";s:257:"

          This first feature release of Drupal 10 is packed with amazing improvements! It makes customizing the look of your site easier, adds support for decoupled navigation, improves content modeling and editing, block management, performance and many more.

          ";s:3:"url";s:41:"https://www.drupal.org/blog/drupal-10-1-0";s:13:"date_modified";s:25:"2023-10-30T16:22:24+00:00";s:14:"date_published";s:25:"2023-06-22T09:11:30+00:00";s:10:"_drupalorg";a:2:{s:8:"featured";b:0;s:7:"version";s:5:">=7.0";}}i:25;a:7:{s:2:"id";s:7:"3347976";s:5:"title";s:37:"Contribute to Drupal and the Open Web";s:12:"content_html";s:146:"

          Drupal is an open source project. But what does that mean? How can you as a site-owner participate in the project of building a better web?

          ";s:3:"url";s:85:"https://www.drupal.org/about/announcements/blog/contribute-to-drupal-and-the-open-web";s:13:"date_modified";s:25:"2023-03-14T19:43:12+00:00";s:14:"date_published";s:25:"2023-03-14T19:39:44+00:00";s:10:"_drupalorg";a:2:{s:8:"featured";b:0;s:7:"version";s:5:">=7.0";}}i:26;a:7:{s:2:"id";s:7:"3343486";s:5:"title";s:43:"What to expect from the Announcements feed?";s:12:"content_html";s:197:"

          Drupal is introducing a new project Announcements feature so that you can see news and updates about the Drupal project and community directly in your Drupal dashboard. Learn what to expect.

          ";s:3:"url";s:90:"https://www.drupal.org/about/announcements/blog/what-to-expect-from-the-announcements-feed";s:13:"date_modified";s:25:"2023-02-21T19:45:53+00:00";s:14:"date_published";s:25:"2023-02-21T19:45:53+00:00";s:10:"_drupalorg";a:2:{s:8:"featured";b:0;s:7:"version";s:5:">=7.0";}}i:27;a:7:{s:2:"id";s:7:"3327047";s:5:"title";s:26:"Drupal 10.0.0 is available";s:12:"content_html";s:296:"

          Thanks to 2129 contributors from 616 organizations resolving 4083 issues in the past two and a half years, Drupal 10.0.0 is available today! This new version sets Drupal up for continued stability and security for the longer term. All new features will be added to Drupal 10 going forward.

          ";s:3:"url";s:41:"https://www.drupal.org/blog/drupal-10-0-0";s:13:"date_modified";s:25:"2023-10-30T16:21:38+00:00";s:14:"date_published";s:25:"2022-12-15T17:43:23+00:00";s:10:"_drupalorg";a:2:{s:8:"featured";b:0;s:7:"version";s:5:">=7.0";}}}', [[timestamp_nextday]]), ('system', 'advisories_response', 'a:1:{i:0;a:7:{s:5:"title";s:65:"Upcoming highly critical release on May 20, 2026 - PSA-2026-05-18";s:4:"link";s:37:"https://www.drupal.org/psa-2026-05-18";s:7:"project";s:17:"securitydrupalorg";s:4:"type";s:6:"module";s:6:"is_psa";s:1:"1";s:8:"insecure";a:0:{}s:7:"pubDate";s:25:"2026-05-18T18:57:42+00:00";}}', [[timestamp]]), ('update', 'fetch_failures', 'N;', [[timestamp]]), ('update', 'update_project_data', 'a:1:{s:6:"drupal";a:16:{s:4:"name";s:6:"drupal";s:4:"info";a:6:{s:4:"name";s:13:"Announcements";s:7:"package";s:4:"Core";s:7:"version";s:6:"11.4.0";s:7:"project";s:6:"drupal";s:9:"datestamp";i:1782918947;s:16:"_info_file_ctime";i:[[timestamp]];}s:9:"datestamp";i:1782918947;s:8:"includes";a:41:{s:18:"announcements_feed";s:13:"Announcements";s:14:"automated_cron";s:14:"Automated Cron";s:8:"big_pipe";s:7:"BigPipe";s:5:"block";s:5:"Block";s:13:"block_content";s:13:"Block Content";s:10:"breakpoint";s:10:"Breakpoint";s:9:"ckeditor5";s:10:"CKEditor 5";s:6:"config";s:21:"Configuration Manager";s:10:"contextual";s:16:"Contextual Links";s:8:"datetime";s:8:"Datetime";s:5:"dblog";s:16:"Database Logging";s:18:"dynamic_page_cache";s:27:"Internal Dynamic Page Cache";s:6:"editor";s:11:"Text Editor";s:5:"field";s:5:"Field";s:8:"field_ui";s:8:"Field UI";s:4:"file";s:4:"File";s:6:"filter";s:6:"Filter";s:4:"help";s:4:"Help";s:5:"image";s:5:"Image";s:14:"layout_builder";s:14:"Layout Builder";s:16:"layout_discovery";s:16:"Layout Discovery";s:4:"link";s:4:"Link";s:17:"menu_link_content";s:17:"Custom Menu Links";s:7:"menu_ui";s:7:"Menu UI";s:5:"mysql";s:5:"MySQL";s:10:"navigation";s:10:"Navigation";s:4:"node";s:4:"Node";s:7:"options";s:7:"Options";s:10:"page_cache";s:19:"Internal Page Cache";s:4:"path";s:4:"Path";s:10:"path_alias";s:10:"Path alias";s:6:"system";s:6:"System";s:8:"taxonomy";s:8:"Taxonomy";s:4:"text";s:4:"Text";s:6:"update";s:13:"Update Status";s:4:"user";s:4:"User";s:5:"views";s:5:"Views";s:8:"views_ui";s:8:"Views UI";s:8:"standard";s:8:"Standard";s:5:"claro";s:5:"Claro";s:7:"olivero";s:7:"Olivero";}s:12:"project_type";s:4:"core";s:14:"project_status";b:1;s:8:"disabled";a:39:{s:3:"ban";s:3:"Ban";s:10:"basic_auth";s:25:"HTTP Basic Authentication";s:7:"comment";s:7:"Comment";s:18:"config_translation";s:25:"Configuration Translation";s:7:"contact";s:7:"Contact";s:18:"content_moderation";s:18:"Content Moderation";s:19:"content_translation";s:19:"Content Translation";s:14:"datetime_range";s:14:"Datetime Range";s:12:"field_layout";s:12:"Field Layout";s:7:"history";s:7:"History";s:18:"inline_form_errors";s:18:"Inline Form Errors";s:7:"jsonapi";s:8:"JSON:API";s:8:"language";s:8:"Language";s:38:"layout_builder_expose_all_field_blocks";s:38:"Layout Builder Expose All Field Blocks";s:6:"locale";s:21:"Interface Translation";s:5:"media";s:5:"Media";s:13:"media_library";s:13:"Media Library";s:7:"migrate";s:7:"Migrate";s:14:"migrate_drupal";s:14:"Migrate Drupal";s:17:"migrate_drupal_ui";s:17:"Migrate Drupal UI";s:5:"pgsql";s:10:"PostgreSQL";s:6:"phpass";s:22:"Password Compatibility";s:16:"responsive_image";s:16:"Responsive Image";s:4:"rest";s:20:"RESTful Web Services";s:11:"search_help";s:11:"Search help";s:11:"search_node";s:11:"Search node";s:6:"search";s:6:"Search";s:13:"serialization";s:13:"Serialization";s:13:"settings_tray";s:13:"Settings Tray";s:8:"shortcut";s:8:"Shortcut";s:6:"sqlite";s:6:"SQLite";s:6:"syslog";s:6:"Syslog";s:9:"telephone";s:9:"Telephone";s:7:"toolbar";s:7:"Toolbar";s:9:"workflows";s:9:"Workflows";s:10:"workspaces";s:10:"Workspaces";s:13:"workspaces_ui";s:13:"Workspaces UI";s:13:"default_admin";s:13:"Default Admin";s:5:"stark";s:5:"Stark";}s:16:"existing_version";s:6:"11.4.0";s:14:"existing_major";s:2:"11";s:12:"install_type";s:8:"official";s:5:"title";s:11:"Drupal core";s:4:"link";s:37:"https://www.drupal.org/project/drupal";s:14:"latest_version";s:6:"11.4.0";s:8:"releases";a:1:{s:6:"11.4.0";a:10:{s:4:"name";s:13:"drupal 11.4.0";s:7:"version";s:6:"11.4.0";s:3:"tag";s:6:"11.4.0";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/11.4.0";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-11.4.0.tar.gz";s:4:"date";s:10:"1782918851";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}}s:11:"recommended";s:6:"11.4.0";s:6:"status";i:5;}}', [[timestamp]]), ('update', 'update_project_projects', 'a:1:{s:6:"drupal";a:7:{s:4:"name";s:6:"drupal";s:4:"info";a:6:{s:4:"name";s:13:"Announcements";s:7:"package";s:4:"Core";s:7:"version";s:6:"11.4.0";s:7:"project";s:6:"drupal";s:9:"datestamp";i:1782918947;s:16:"_info_file_ctime";i:[[timestamp]];}s:9:"datestamp";i:1782918947;s:8:"includes";a:41:{s:18:"announcements_feed";s:13:"Announcements";s:14:"automated_cron";s:14:"Automated Cron";s:8:"big_pipe";s:7:"BigPipe";s:5:"block";s:5:"Block";s:13:"block_content";s:13:"Block Content";s:10:"breakpoint";s:10:"Breakpoint";s:9:"ckeditor5";s:10:"CKEditor 5";s:6:"config";s:21:"Configuration Manager";s:10:"contextual";s:16:"Contextual Links";s:8:"datetime";s:8:"Datetime";s:5:"dblog";s:16:"Database Logging";s:18:"dynamic_page_cache";s:27:"Internal Dynamic Page Cache";s:6:"editor";s:11:"Text Editor";s:5:"field";s:5:"Field";s:8:"field_ui";s:8:"Field UI";s:4:"file";s:4:"File";s:6:"filter";s:6:"Filter";s:4:"help";s:4:"Help";s:5:"image";s:5:"Image";s:14:"layout_builder";s:14:"Layout Builder";s:16:"layout_discovery";s:16:"Layout Discovery";s:4:"link";s:4:"Link";s:17:"menu_link_content";s:17:"Custom Menu Links";s:7:"menu_ui";s:7:"Menu UI";s:5:"mysql";s:5:"MySQL";s:10:"navigation";s:10:"Navigation";s:4:"node";s:4:"Node";s:7:"options";s:7:"Options";s:10:"page_cache";s:19:"Internal Page Cache";s:4:"path";s:4:"Path";s:10:"path_alias";s:10:"Path alias";s:6:"system";s:6:"System";s:8:"taxonomy";s:8:"Taxonomy";s:4:"text";s:4:"Text";s:6:"update";s:13:"Update Status";s:4:"user";s:4:"User";s:5:"views";s:5:"Views";s:8:"views_ui";s:8:"Views UI";s:8:"standard";s:8:"Standard";s:5:"claro";s:5:"Claro";s:7:"olivero";s:7:"Olivero";}s:12:"project_type";s:4:"core";s:14:"project_status";b:1;s:8:"disabled";a:39:{s:3:"ban";s:3:"Ban";s:10:"basic_auth";s:25:"HTTP Basic Authentication";s:7:"comment";s:7:"Comment";s:18:"config_translation";s:25:"Configuration Translation";s:7:"contact";s:7:"Contact";s:18:"content_moderation";s:18:"Content Moderation";s:19:"content_translation";s:19:"Content Translation";s:14:"datetime_range";s:14:"Datetime Range";s:12:"field_layout";s:12:"Field Layout";s:7:"history";s:7:"History";s:18:"inline_form_errors";s:18:"Inline Form Errors";s:7:"jsonapi";s:8:"JSON:API";s:8:"language";s:8:"Language";s:38:"layout_builder_expose_all_field_blocks";s:38:"Layout Builder Expose All Field Blocks";s:6:"locale";s:21:"Interface Translation";s:5:"media";s:5:"Media";s:13:"media_library";s:13:"Media Library";s:7:"migrate";s:7:"Migrate";s:14:"migrate_drupal";s:14:"Migrate Drupal";s:17:"migrate_drupal_ui";s:17:"Migrate Drupal UI";s:5:"pgsql";s:10:"PostgreSQL";s:6:"phpass";s:22:"Password Compatibility";s:16:"responsive_image";s:16:"Responsive Image";s:4:"rest";s:20:"RESTful Web Services";s:11:"search_help";s:11:"Search help";s:11:"search_node";s:11:"Search node";s:6:"search";s:6:"Search";s:13:"serialization";s:13:"Serialization";s:13:"settings_tray";s:13:"Settings Tray";s:8:"shortcut";s:8:"Shortcut";s:6:"sqlite";s:6:"SQLite";s:6:"syslog";s:6:"Syslog";s:9:"telephone";s:9:"Telephone";s:7:"toolbar";s:7:"Toolbar";s:9:"workflows";s:9:"Workflows";s:10:"workspaces";s:10:"Workspaces";s:13:"workspaces_ui";s:13:"Workspaces UI";s:13:"default_admin";s:13:"Default Admin";s:5:"stark";s:5:"Stark";}}}', [[timestamp]]); INSERT INTO `[[dbprefix]]key_value_expire` VALUES ('update_available_releases', 'drupal', 'a:10:{s:5:"title";s:11:"Drupal core";s:10:"short_name";s:6:"drupal";s:4:"type";s:12:"project_core";s:18:"supported_branches";s:29:"10.5.,10.6.,11.2.,11.3.,11.4.";s:18:"composer_namespace";s:11:"drupal/core";s:14:"project_status";s:9:"published";s:4:"link";s:37:"https://www.drupal.org/project/drupal";s:5:"terms";s:0:"";s:8:"releases";a:543:{s:6:"11.4.0";a:10:{s:4:"name";s:13:"drupal 11.4.0";s:7:"version";s:6:"11.4.0";s:3:"tag";s:6:"11.4.0";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/11.4.0";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-11.4.0.tar.gz";s:4:"date";s:10:"1782918851";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:10:"11.4.0-rc2";a:10:{s:4:"name";s:17:"drupal 11.4.0-rc2";s:7:"version";s:10:"11.4.0-rc2";s:3:"tag";s:10:"11.4.0-rc2";s:6:"status";s:9:"published";s:12:"release_link";s:57:"https://www.drupal.org/project/drupal/releases/11.4.0-rc2";s:13:"download_link";s:62:"https://ftp.drupal.org/files/projects/drupal-11.4.0-rc2.tar.gz";s:4:"date";s:10:"1781721258";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:1:{i:0;s:15:"Security update";}}s:8:"security";s:58:"RC releases are not covered by Drupal security advisories.";}s:10:"11.4.0-rc1";a:10:{s:4:"name";s:17:"drupal 11.4.0-rc1";s:7:"version";s:10:"11.4.0-rc1";s:3:"tag";s:10:"11.4.0-rc1";s:6:"status";s:9:"published";s:12:"release_link";s:57:"https://www.drupal.org/project/drupal/releases/11.4.0-rc1";s:13:"download_link";s:62:"https://ftp.drupal.org/files/projects/drupal-11.4.0-rc1.tar.gz";s:4:"date";s:10:"1781171805";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:12:"New features";i:1;s:8:"Insecure";}}s:8:"security";s:58:"RC releases are not covered by Drupal security advisories.";}s:12:"11.4.0-beta1";a:10:{s:4:"name";s:19:"drupal 11.4.0-beta1";s:7:"version";s:12:"11.4.0-beta1";s:3:"tag";s:12:"11.4.0-beta1";s:6:"status";s:9:"published";s:12:"release_link";s:59:"https://www.drupal.org/project/drupal/releases/11.4.0-beta1";s:13:"download_link";s:64:"https://ftp.drupal.org/files/projects/drupal-11.4.0-beta1.tar.gz";s:4:"date";s:10:"1780487672";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";i:2;s:8:"Insecure";}}s:8:"security";s:60:"Beta releases are not covered by Drupal security advisories.";}s:7:"11.3.13";a:10:{s:4:"name";s:14:"drupal 11.3.13";s:7:"version";s:7:"11.3.13";s:3:"tag";s:7:"11.3.13";s:6:"status";s:9:"published";s:12:"release_link";s:54:"https://www.drupal.org/project/drupal/releases/11.3.13";s:13:"download_link";s:59:"https://ftp.drupal.org/files/projects/drupal-11.3.13.tar.gz";s:4:"date";s:10:"1782201383";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:1:{i:0;s:9:"Bug fixes";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:7:"11.3.12";a:10:{s:4:"name";s:14:"drupal 11.3.12";s:7:"version";s:7:"11.3.12";s:3:"tag";s:7:"11.3.12";s:6:"status";s:9:"published";s:12:"release_link";s:54:"https://www.drupal.org/project/drupal/releases/11.3.12";s:13:"download_link";s:59:"https://ftp.drupal.org/files/projects/drupal-11.3.12.tar.gz";s:4:"date";s:10:"1781715637";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:1:{i:0;s:15:"Security update";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:7:"11.3.11";a:10:{s:4:"name";s:14:"drupal 11.3.11";s:7:"version";s:7:"11.3.11";s:3:"tag";s:7:"11.3.11";s:6:"status";s:9:"published";s:12:"release_link";s:54:"https://www.drupal.org/project/drupal/releases/11.3.11";s:13:"download_link";s:59:"https://ftp.drupal.org/files/projects/drupal-11.3.11.tar.gz";s:4:"date";s:10:"1779974128";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:7:"11.3.10";a:10:{s:4:"name";s:14:"drupal 11.3.10";s:7:"version";s:7:"11.3.10";s:3:"tag";s:7:"11.3.10";s:6:"status";s:9:"published";s:12:"release_link";s:54:"https://www.drupal.org/project/drupal/releases/11.3.10";s:13:"download_link";s:59:"https://ftp.drupal.org/files/projects/drupal-11.3.10.tar.gz";s:4:"date";s:10:"1779300386";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"11.3.9";a:10:{s:4:"name";s:13:"drupal 11.3.9";s:7:"version";s:6:"11.3.9";s:3:"tag";s:6:"11.3.9";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/11.3.9";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-11.3.9.tar.gz";s:4:"date";s:10:"1778079457";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"11.3.8";a:10:{s:4:"name";s:13:"drupal 11.3.8";s:7:"version";s:6:"11.3.8";s:3:"tag";s:6:"11.3.8";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/11.3.8";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-11.3.8.tar.gz";s:4:"date";s:10:"1776671527";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:15:"Security update";i:1;s:9:"Bug fixes";i:2;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"11.3.7";a:10:{s:4:"name";s:13:"drupal 11.3.7";s:7:"version";s:6:"11.3.7";s:3:"tag";s:6:"11.3.7";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/11.3.7";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-11.3.7.tar.gz";s:4:"date";s:10:"1776276359";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:8:"Insecure";i:1;s:15:"Security update";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"11.3.6";a:10:{s:4:"name";s:13:"drupal 11.3.6";s:7:"version";s:6:"11.3.6";s:3:"tag";s:6:"11.3.6";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/11.3.6";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-11.3.6.tar.gz";s:4:"date";s:10:"1775643612";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:8:"Insecure";i:1;s:9:"Bug fixes";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"11.3.5";a:10:{s:4:"name";s:13:"drupal 11.3.5";s:7:"version";s:6:"11.3.5";s:3:"tag";s:6:"11.3.5";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/11.3.5";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-11.3.5.tar.gz";s:4:"date";s:10:"1772797604";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"11.3.4";a:10:{s:4:"name";s:13:"drupal 11.3.4";s:7:"version";s:6:"11.3.4";s:3:"tag";s:6:"11.3.4";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/11.3.4";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-11.3.4.tar.gz";s:4:"date";s:10:"1772707962";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"11.3.3";a:10:{s:4:"name";s:13:"drupal 11.3.3";s:7:"version";s:6:"11.3.3";s:3:"tag";s:6:"11.3.3";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/11.3.3";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-11.3.3.tar.gz";s:4:"date";s:10:"1770281390";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"11.3.2";a:10:{s:4:"name";s:13:"drupal 11.3.2";s:7:"version";s:6:"11.3.2";s:3:"tag";s:6:"11.3.2";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/11.3.2";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-11.3.2.tar.gz";s:4:"date";s:10:"1767865697";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"11.3.1";a:10:{s:4:"name";s:13:"drupal 11.3.1";s:7:"version";s:6:"11.3.1";s:3:"tag";s:6:"11.3.1";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/11.3.1";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-11.3.1.tar.gz";s:4:"date";s:10:"1766069226";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"11.3.0";a:10:{s:4:"name";s:13:"drupal 11.3.0";s:7:"version";s:6:"11.3.0";s:3:"tag";s:6:"11.3.0";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/11.3.0";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-11.3.0.tar.gz";s:4:"date";s:10:"1765971890";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";i:2;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:10:"11.3.0-rc2";a:10:{s:4:"name";s:17:"drupal 11.3.0-rc2";s:7:"version";s:10:"11.3.0-rc2";s:3:"tag";s:10:"11.3.0-rc2";s:6:"status";s:9:"published";s:12:"release_link";s:57:"https://www.drupal.org/project/drupal/releases/11.3.0-rc2";s:13:"download_link";s:62:"https://ftp.drupal.org/files/projects/drupal-11.3.0-rc2.tar.gz";s:4:"date";s:10:"1765804707";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";i:2;s:8:"Insecure";}}s:8:"security";s:58:"RC releases are not covered by Drupal security advisories.";}s:10:"11.3.0-rc1";a:10:{s:4:"name";s:17:"drupal 11.3.0-rc1";s:7:"version";s:10:"11.3.0-rc1";s:3:"tag";s:10:"11.3.0-rc1";s:6:"status";s:9:"published";s:12:"release_link";s:57:"https://www.drupal.org/project/drupal/releases/11.3.0-rc1";s:13:"download_link";s:62:"https://ftp.drupal.org/files/projects/drupal-11.3.0-rc1.tar.gz";s:4:"date";s:10:"1764843586";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";i:2;s:8:"Insecure";}}s:8:"security";s:58:"RC releases are not covered by Drupal security advisories.";}s:12:"11.3.0-beta1";a:10:{s:4:"name";s:19:"drupal 11.3.0-beta1";s:7:"version";s:12:"11.3.0-beta1";s:3:"tag";s:12:"11.3.0-beta1";s:6:"status";s:9:"published";s:12:"release_link";s:59:"https://www.drupal.org/project/drupal/releases/11.3.0-beta1";s:13:"download_link";s:64:"https://ftp.drupal.org/files/projects/drupal-11.3.0-beta1.tar.gz";s:4:"date";s:10:"1764071187";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";i:2;s:8:"Insecure";}}s:8:"security";s:60:"Beta releases are not covered by Drupal security advisories.";}s:13:"11.3.0-alpha1";a:10:{s:4:"name";s:20:"drupal 11.3.0-alpha1";s:7:"version";s:13:"11.3.0-alpha1";s:3:"tag";s:13:"11.3.0-alpha1";s:6:"status";s:9:"published";s:12:"release_link";s:60:"https://www.drupal.org/project/drupal/releases/11.3.0-alpha1";s:13:"download_link";s:65:"https://ftp.drupal.org/files/projects/drupal-11.3.0-alpha1.tar.gz";s:4:"date";s:10:"1762423955";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";i:2;s:8:"Insecure";}}s:8:"security";s:61:"Alpha releases are not covered by Drupal security advisories.";}s:7:"11.2.14";a:10:{s:4:"name";s:14:"drupal 11.2.14";s:7:"version";s:7:"11.2.14";s:3:"tag";s:7:"11.2.14";s:6:"status";s:9:"published";s:12:"release_link";s:54:"https://www.drupal.org/project/drupal/releases/11.2.14";s:13:"download_link";s:59:"https://ftp.drupal.org/files/projects/drupal-11.2.14.tar.gz";s:4:"date";s:10:"1781718479";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:1:{i:0;s:15:"Security update";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:7:"11.2.13";a:10:{s:4:"name";s:14:"drupal 11.2.13";s:7:"version";s:7:"11.2.13";s:3:"tag";s:7:"11.2.13";s:6:"status";s:9:"published";s:12:"release_link";s:54:"https://www.drupal.org/project/drupal/releases/11.2.13";s:13:"download_link";s:59:"https://ftp.drupal.org/files/projects/drupal-11.2.13.tar.gz";s:4:"date";s:10:"1779972673";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:7:"11.2.12";a:10:{s:4:"name";s:14:"drupal 11.2.12";s:7:"version";s:7:"11.2.12";s:3:"tag";s:7:"11.2.12";s:6:"status";s:9:"published";s:12:"release_link";s:54:"https://www.drupal.org/project/drupal/releases/11.2.12";s:13:"download_link";s:59:"https://ftp.drupal.org/files/projects/drupal-11.2.12.tar.gz";s:4:"date";s:10:"1779302418";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:7:"11.2.11";a:10:{s:4:"name";s:14:"drupal 11.2.11";s:7:"version";s:7:"11.2.11";s:3:"tag";s:7:"11.2.11";s:6:"status";s:9:"published";s:12:"release_link";s:54:"https://www.drupal.org/project/drupal/releases/11.2.11";s:13:"download_link";s:59:"https://ftp.drupal.org/files/projects/drupal-11.2.11.tar.gz";s:4:"date";s:10:"1776280509";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:7:"11.2.10";a:10:{s:4:"name";s:14:"drupal 11.2.10";s:7:"version";s:7:"11.2.10";s:3:"tag";s:7:"11.2.10";s:6:"status";s:9:"published";s:12:"release_link";s:54:"https://www.drupal.org/project/drupal/releases/11.2.10";s:13:"download_link";s:59:"https://ftp.drupal.org/files/projects/drupal-11.2.10.tar.gz";s:4:"date";s:10:"1765361834";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"11.2.9";a:10:{s:4:"name";s:13:"drupal 11.2.9";s:7:"version";s:6:"11.2.9";s:3:"tag";s:6:"11.2.9";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/11.2.9";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-11.2.9.tar.gz";s:4:"date";s:10:"1764840100";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"11.2.8";a:10:{s:4:"name";s:13:"drupal 11.2.8";s:7:"version";s:6:"11.2.8";s:3:"tag";s:6:"11.2.8";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/11.2.8";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-11.2.8.tar.gz";s:4:"date";s:10:"1762990140";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"11.2.7";a:10:{s:4:"name";s:13:"drupal 11.2.7";s:7:"version";s:6:"11.2.7";s:3:"tag";s:6:"11.2.7";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/11.2.7";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-11.2.7.tar.gz";s:4:"date";s:10:"1762453153";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"11.2.6";a:10:{s:4:"name";s:13:"drupal 11.2.6";s:7:"version";s:6:"11.2.6";s:3:"tag";s:6:"11.2.6";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/11.2.6";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-11.2.6.tar.gz";s:4:"date";s:10:"1762402744";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"11.2.5";a:10:{s:4:"name";s:13:"drupal 11.2.5";s:7:"version";s:6:"11.2.5";s:3:"tag";s:6:"11.2.5";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/11.2.5";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-11.2.5.tar.gz";s:4:"date";s:10:"1759390965";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"11.2.4";a:10:{s:4:"name";s:13:"drupal 11.2.4";s:7:"version";s:6:"11.2.4";s:3:"tag";s:6:"11.2.4";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/11.2.4";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-11.2.4.tar.gz";s:4:"date";s:10:"1756977008";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"11.2.3";a:10:{s:4:"name";s:13:"drupal 11.2.3";s:7:"version";s:6:"11.2.3";s:3:"tag";s:6:"11.2.3";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/11.2.3";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-11.2.3.tar.gz";s:4:"date";s:10:"1754563343";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"11.2.2";a:10:{s:4:"name";s:13:"drupal 11.2.2";s:7:"version";s:6:"11.2.2";s:3:"tag";s:6:"11.2.2";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/11.2.2";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-11.2.2.tar.gz";s:4:"date";s:10:"1750948270";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"11.2.1";a:10:{s:4:"name";s:13:"drupal 11.2.1";s:7:"version";s:6:"11.2.1";s:3:"tag";s:6:"11.2.1";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/11.2.1";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-11.2.1.tar.gz";s:4:"date";s:10:"1750849338";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"11.2.0";a:10:{s:4:"name";s:13:"drupal 11.2.0";s:7:"version";s:6:"11.2.0";s:3:"tag";s:6:"11.2.0";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/11.2.0";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-11.2.0.tar.gz";s:4:"date";s:10:"1750707923";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";i:2;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:10:"11.2.0-rc2";a:10:{s:4:"name";s:17:"drupal 11.2.0-rc2";s:7:"version";s:10:"11.2.0-rc2";s:3:"tag";s:10:"11.2.0-rc2";s:6:"status";s:9:"published";s:12:"release_link";s:57:"https://www.drupal.org/project/drupal/releases/11.2.0-rc2";s:13:"download_link";s:62:"https://ftp.drupal.org/files/projects/drupal-11.2.0-rc2.tar.gz";s:4:"date";s:10:"1750706924";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";i:2;s:8:"Insecure";}}s:8:"security";s:58:"RC releases are not covered by Drupal security advisories.";}s:10:"11.2.0-rc1";a:10:{s:4:"name";s:17:"drupal 11.2.0-rc1";s:7:"version";s:10:"11.2.0-rc1";s:3:"tag";s:10:"11.2.0-rc1";s:6:"status";s:9:"published";s:12:"release_link";s:57:"https://www.drupal.org/project/drupal/releases/11.2.0-rc1";s:13:"download_link";s:62:"https://ftp.drupal.org/files/projects/drupal-11.2.0-rc1.tar.gz";s:4:"date";s:10:"1750707307";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";i:2;s:8:"Insecure";}}s:8:"security";s:58:"RC releases are not covered by Drupal security advisories.";}s:12:"11.2.0-beta1";a:10:{s:4:"name";s:19:"drupal 11.2.0-beta1";s:7:"version";s:12:"11.2.0-beta1";s:3:"tag";s:12:"11.2.0-beta1";s:6:"status";s:9:"published";s:12:"release_link";s:59:"https://www.drupal.org/project/drupal/releases/11.2.0-beta1";s:13:"download_link";s:64:"https://ftp.drupal.org/files/projects/drupal-11.2.0-beta1.tar.gz";s:4:"date";s:10:"1750706273";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";i:2;s:8:"Insecure";}}s:8:"security";s:60:"Beta releases are not covered by Drupal security advisories.";}s:13:"11.2.0-alpha1";a:10:{s:4:"name";s:20:"drupal 11.2.0-alpha1";s:7:"version";s:13:"11.2.0-alpha1";s:3:"tag";s:13:"11.2.0-alpha1";s:6:"status";s:9:"published";s:12:"release_link";s:60:"https://www.drupal.org/project/drupal/releases/11.2.0-alpha1";s:13:"download_link";s:65:"https://ftp.drupal.org/files/projects/drupal-11.2.0-alpha1.tar.gz";s:4:"date";s:10:"1750705843";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";i:2;s:8:"Insecure";}}s:8:"security";s:61:"Alpha releases are not covered by Drupal security advisories.";}s:7:"11.1.10";a:10:{s:4:"name";s:14:"drupal 11.1.10";s:7:"version";s:7:"11.1.10";s:3:"tag";s:7:"11.1.10";s:6:"status";s:9:"published";s:12:"release_link";s:54:"https://www.drupal.org/project/drupal/releases/11.1.10";s:13:"download_link";s:59:"https://ftp.drupal.org/files/projects/drupal-11.1.10.tar.gz";s:4:"date";s:10:"1779307833";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"11.1.9";a:10:{s:4:"name";s:13:"drupal 11.1.9";s:7:"version";s:6:"11.1.9";s:3:"tag";s:6:"11.1.9";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/11.1.9";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-11.1.9.tar.gz";s:4:"date";s:10:"1762992079";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"11.1.8";a:10:{s:4:"name";s:13:"drupal 11.1.8";s:7:"version";s:6:"11.1.8";s:3:"tag";s:6:"11.1.8";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/11.1.8";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-11.1.8.tar.gz";s:4:"date";s:10:"1749167497";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"11.1.7";a:10:{s:4:"name";s:13:"drupal 11.1.7";s:7:"version";s:6:"11.1.7";s:3:"tag";s:6:"11.1.7";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/11.1.7";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-11.1.7.tar.gz";s:4:"date";s:10:"1746678183";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"11.1.6";a:10:{s:4:"name";s:13:"drupal 11.1.6";s:7:"version";s:6:"11.1.6";s:3:"tag";s:6:"11.1.6";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/11.1.6";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-11.1.6.tar.gz";s:4:"date";s:10:"1743628262";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"11.1.5";a:10:{s:4:"name";s:13:"drupal 11.1.5";s:7:"version";s:6:"11.1.5";s:3:"tag";s:6:"11.1.5";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/11.1.5";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-11.1.5.tar.gz";s:4:"date";s:10:"1742407823";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"11.1.4";a:10:{s:4:"name";s:13:"drupal 11.1.4";s:7:"version";s:6:"11.1.4";s:3:"tag";s:6:"11.1.4";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/11.1.4";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-11.1.4.tar.gz";s:4:"date";s:10:"1741210524";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"11.1.3";a:10:{s:4:"name";s:13:"drupal 11.1.3";s:7:"version";s:6:"11.1.3";s:3:"tag";s:6:"11.1.3";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/11.1.3";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-11.1.3.tar.gz";s:4:"date";s:10:"1739986133";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"11.1.2";a:10:{s:4:"name";s:13:"drupal 11.1.2";s:7:"version";s:6:"11.1.2";s:3:"tag";s:6:"11.1.2";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/11.1.2";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-11.1.2.tar.gz";s:4:"date";s:10:"1738796542";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"11.1.1";a:10:{s:4:"name";s:13:"drupal 11.1.1";s:7:"version";s:6:"11.1.1";s:3:"tag";s:6:"11.1.1";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/11.1.1";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-11.1.1.tar.gz";s:4:"date";s:10:"1736204811";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"11.1.0";a:10:{s:4:"name";s:13:"drupal 11.1.0";s:7:"version";s:6:"11.1.0";s:3:"tag";s:6:"11.1.0";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/11.1.0";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-11.1.0.tar.gz";s:4:"date";s:10:"1734369672";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";i:2;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:10:"11.1.0-rc1";a:10:{s:4:"name";s:17:"drupal 11.1.0-rc1";s:7:"version";s:10:"11.1.0-rc1";s:3:"tag";s:10:"11.1.0-rc1";s:6:"status";s:9:"published";s:12:"release_link";s:57:"https://www.drupal.org/project/drupal/releases/11.1.0-rc1";s:13:"download_link";s:62:"https://ftp.drupal.org/files/projects/drupal-11.1.0-rc1.tar.gz";s:4:"date";s:10:"1733153182";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";i:2;s:8:"Insecure";}}s:8:"security";s:58:"RC releases are not covered by Drupal security advisories.";}s:12:"11.1.0-beta1";a:10:{s:4:"name";s:19:"drupal 11.1.0-beta1";s:7:"version";s:12:"11.1.0-beta1";s:3:"tag";s:12:"11.1.0-beta1";s:6:"status";s:9:"published";s:12:"release_link";s:59:"https://www.drupal.org/project/drupal/releases/11.1.0-beta1";s:13:"download_link";s:64:"https://ftp.drupal.org/files/projects/drupal-11.1.0-beta1.tar.gz";s:4:"date";s:10:"1731695942";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";i:2;s:8:"Insecure";}}s:8:"security";s:60:"Beta releases are not covered by Drupal security advisories.";}s:7:"11.0.13";a:10:{s:4:"name";s:14:"drupal 11.0.13";s:7:"version";s:7:"11.0.13";s:3:"tag";s:7:"11.0.13";s:6:"status";s:9:"published";s:12:"release_link";s:54:"https://www.drupal.org/project/drupal/releases/11.0.13";s:13:"download_link";s:59:"https://ftp.drupal.org/files/projects/drupal-11.0.13.tar.gz";s:4:"date";s:10:"1742408477";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:7:"11.0.12";a:10:{s:4:"name";s:14:"drupal 11.0.12";s:7:"version";s:7:"11.0.12";s:3:"tag";s:7:"11.0.12";s:6:"status";s:9:"published";s:12:"release_link";s:54:"https://www.drupal.org/project/drupal/releases/11.0.12";s:13:"download_link";s:59:"https://ftp.drupal.org/files/projects/drupal-11.0.12.tar.gz";s:4:"date";s:10:"1739988102";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:7:"11.0.11";a:10:{s:4:"name";s:14:"drupal 11.0.11";s:7:"version";s:7:"11.0.11";s:3:"tag";s:7:"11.0.11";s:6:"status";s:9:"published";s:12:"release_link";s:54:"https://www.drupal.org/project/drupal/releases/11.0.11";s:13:"download_link";s:59:"https://ftp.drupal.org/files/projects/drupal-11.0.11.tar.gz";s:4:"date";s:10:"1738797159";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:7:"11.0.10";a:10:{s:4:"name";s:14:"drupal 11.0.10";s:7:"version";s:7:"11.0.10";s:3:"tag";s:7:"11.0.10";s:6:"status";s:9:"published";s:12:"release_link";s:54:"https://www.drupal.org/project/drupal/releases/11.0.10";s:13:"download_link";s:59:"https://ftp.drupal.org/files/projects/drupal-11.0.10.tar.gz";s:4:"date";s:10:"1736206526";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"11.0.9";a:10:{s:4:"name";s:13:"drupal 11.0.9";s:7:"version";s:6:"11.0.9";s:3:"tag";s:6:"11.0.9";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/11.0.9";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-11.0.9.tar.gz";s:4:"date";s:10:"1732283629";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"11.0.8";a:10:{s:4:"name";s:13:"drupal 11.0.8";s:7:"version";s:6:"11.0.8";s:3:"tag";s:6:"11.0.8";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/11.0.8";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-11.0.8.tar.gz";s:4:"date";s:10:"1732132096";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"11.0.7";a:10:{s:4:"name";s:13:"drupal 11.0.7";s:7:"version";s:6:"11.0.7";s:3:"tag";s:6:"11.0.7";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/11.0.7";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-11.0.7.tar.gz";s:4:"date";s:10:"1731407794";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"11.0.6";a:10:{s:4:"name";s:13:"drupal 11.0.6";s:7:"version";s:6:"11.0.6";s:3:"tag";s:6:"11.0.6";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/11.0.6";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-11.0.6.tar.gz";s:4:"date";s:10:"1730969764";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"11.0.5";a:10:{s:4:"name";s:13:"drupal 11.0.5";s:7:"version";s:6:"11.0.5";s:3:"tag";s:6:"11.0.5";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/11.0.5";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-11.0.5.tar.gz";s:4:"date";s:10:"1727946737";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"11.0.4";a:10:{s:4:"name";s:13:"drupal 11.0.4";s:7:"version";s:6:"11.0.4";s:3:"tag";s:6:"11.0.4";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/11.0.4";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-11.0.4.tar.gz";s:4:"date";s:10:"1726136390";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"11.0.3";a:10:{s:4:"name";s:13:"drupal 11.0.3";s:7:"version";s:6:"11.0.3";s:3:"tag";s:6:"11.0.3";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/11.0.3";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-11.0.3.tar.gz";s:4:"date";s:10:"1726074557";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"11.0.2";a:10:{s:4:"name";s:13:"drupal 11.0.2";s:7:"version";s:6:"11.0.2";s:3:"tag";s:6:"11.0.2";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/11.0.2";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-11.0.2.tar.gz";s:4:"date";s:10:"1725526703";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"11.0.1";a:10:{s:4:"name";s:13:"drupal 11.0.1";s:7:"version";s:6:"11.0.1";s:3:"tag";s:6:"11.0.1";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/11.0.1";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-11.0.1.tar.gz";s:4:"date";s:10:"1723108396";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"11.0.0";a:10:{s:4:"name";s:13:"drupal 11.0.0";s:7:"version";s:6:"11.0.0";s:3:"tag";s:6:"11.0.0";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/11.0.0";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-11.0.0.tar.gz";s:4:"date";s:10:"1722578454";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";i:2;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:10:"11.0.0-rc1";a:10:{s:4:"name";s:17:"drupal 11.0.0-rc1";s:7:"version";s:10:"11.0.0-rc1";s:3:"tag";s:10:"11.0.0-rc1";s:6:"status";s:9:"published";s:12:"release_link";s:57:"https://www.drupal.org/project/drupal/releases/11.0.0-rc1";s:13:"download_link";s:62:"https://ftp.drupal.org/files/projects/drupal-11.0.0-rc1.tar.gz";s:4:"date";s:10:"1720736512";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";i:2;s:8:"Insecure";}}s:8:"security";s:58:"RC releases are not covered by Drupal security advisories.";}s:12:"11.0.0-beta1";a:10:{s:4:"name";s:19:"drupal 11.0.0-beta1";s:7:"version";s:12:"11.0.0-beta1";s:3:"tag";s:12:"11.0.0-beta1";s:6:"status";s:9:"published";s:12:"release_link";s:59:"https://www.drupal.org/project/drupal/releases/11.0.0-beta1";s:13:"download_link";s:64:"https://ftp.drupal.org/files/projects/drupal-11.0.0-beta1.tar.gz";s:4:"date";s:10:"1715953266";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";i:2;s:8:"Insecure";}}s:8:"security";s:60:"Beta releases are not covered by Drupal security advisories.";}s:13:"11.0.0-alpha1";a:10:{s:4:"name";s:20:"drupal 11.0.0-alpha1";s:7:"version";s:13:"11.0.0-alpha1";s:3:"tag";s:13:"11.0.0-alpha1";s:6:"status";s:9:"published";s:12:"release_link";s:60:"https://www.drupal.org/project/drupal/releases/11.0.0-alpha1";s:13:"download_link";s:65:"https://ftp.drupal.org/files/projects/drupal-11.0.0-alpha1.tar.gz";s:4:"date";s:10:"1714797816";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";i:2;s:8:"Insecure";}}s:8:"security";s:61:"Alpha releases are not covered by Drupal security advisories.";}s:7:"10.6.12";a:10:{s:4:"name";s:14:"drupal 10.6.12";s:7:"version";s:7:"10.6.12";s:3:"tag";s:7:"10.6.12";s:6:"status";s:9:"published";s:12:"release_link";s:54:"https://www.drupal.org/project/drupal/releases/10.6.12";s:13:"download_link";s:59:"https://ftp.drupal.org/files/projects/drupal-10.6.12.tar.gz";s:4:"date";s:10:"1782202699";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:1:{i:0;s:9:"Bug fixes";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:7:"10.6.11";a:10:{s:4:"name";s:14:"drupal 10.6.11";s:7:"version";s:7:"10.6.11";s:3:"tag";s:7:"10.6.11";s:6:"status";s:9:"published";s:12:"release_link";s:54:"https://www.drupal.org/project/drupal/releases/10.6.11";s:13:"download_link";s:59:"https://ftp.drupal.org/files/projects/drupal-10.6.11.tar.gz";s:4:"date";s:10:"1781717051";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:1:{i:0;s:15:"Security update";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:7:"10.6.10";a:10:{s:4:"name";s:14:"drupal 10.6.10";s:7:"version";s:7:"10.6.10";s:3:"tag";s:7:"10.6.10";s:6:"status";s:9:"published";s:12:"release_link";s:54:"https://www.drupal.org/project/drupal/releases/10.6.10";s:13:"download_link";s:59:"https://ftp.drupal.org/files/projects/drupal-10.6.10.tar.gz";s:4:"date";s:10:"1779971159";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"10.6.9";a:10:{s:4:"name";s:13:"drupal 10.6.9";s:7:"version";s:6:"10.6.9";s:3:"tag";s:6:"10.6.9";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/10.6.9";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-10.6.9.tar.gz";s:4:"date";s:10:"1779298018";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"10.6.8";a:10:{s:4:"name";s:13:"drupal 10.6.8";s:7:"version";s:6:"10.6.8";s:3:"tag";s:6:"10.6.8";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/10.6.8";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-10.6.8.tar.gz";s:4:"date";s:10:"1778083128";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"10.6.7";a:10:{s:4:"name";s:13:"drupal 10.6.7";s:7:"version";s:6:"10.6.7";s:3:"tag";s:6:"10.6.7";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/10.6.7";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-10.6.7.tar.gz";s:4:"date";s:10:"1776277764";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"10.6.6";a:10:{s:4:"name";s:13:"drupal 10.6.6";s:7:"version";s:6:"10.6.6";s:3:"tag";s:6:"10.6.6";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/10.6.6";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-10.6.6.tar.gz";s:4:"date";s:10:"1775642162";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"10.6.5";a:10:{s:4:"name";s:13:"drupal 10.6.5";s:7:"version";s:6:"10.6.5";s:3:"tag";s:6:"10.6.5";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/10.6.5";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-10.6.5.tar.gz";s:4:"date";s:10:"1772795936";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"10.6.4";a:10:{s:4:"name";s:13:"drupal 10.6.4";s:7:"version";s:6:"10.6.4";s:3:"tag";s:6:"10.6.4";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/10.6.4";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-10.6.4.tar.gz";s:4:"date";s:10:"1772710523";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"10.6.3";a:10:{s:4:"name";s:13:"drupal 10.6.3";s:7:"version";s:6:"10.6.3";s:3:"tag";s:6:"10.6.3";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/10.6.3";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-10.6.3.tar.gz";s:4:"date";s:10:"1770280319";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"10.6.2";a:10:{s:4:"name";s:13:"drupal 10.6.2";s:7:"version";s:6:"10.6.2";s:3:"tag";s:6:"10.6.2";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/10.6.2";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-10.6.2.tar.gz";s:4:"date";s:10:"1767866420";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"10.6.1";a:10:{s:4:"name";s:13:"drupal 10.6.1";s:7:"version";s:6:"10.6.1";s:3:"tag";s:6:"10.6.1";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/10.6.1";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-10.6.1.tar.gz";s:4:"date";s:10:"1766067020";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"10.6.0";a:10:{s:4:"name";s:13:"drupal 10.6.0";s:7:"version";s:6:"10.6.0";s:3:"tag";s:6:"10.6.0";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/10.6.0";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-10.6.0.tar.gz";s:4:"date";s:10:"1765965714";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:8:"Insecure";i:1;s:9:"Bug fixes";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:10:"10.6.0-rc1";a:10:{s:4:"name";s:17:"drupal 10.6.0-rc1";s:7:"version";s:10:"10.6.0-rc1";s:3:"tag";s:10:"10.6.0-rc1";s:6:"status";s:9:"published";s:12:"release_link";s:57:"https://www.drupal.org/project/drupal/releases/10.6.0-rc1";s:13:"download_link";s:62:"https://ftp.drupal.org/files/projects/drupal-10.6.0-rc1.tar.gz";s:4:"date";s:10:"1764842812";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";i:2;s:8:"Insecure";}}s:8:"security";s:58:"RC releases are not covered by Drupal security advisories.";}s:12:"10.6.0-beta1";a:10:{s:4:"name";s:19:"drupal 10.6.0-beta1";s:7:"version";s:12:"10.6.0-beta1";s:3:"tag";s:12:"10.6.0-beta1";s:6:"status";s:9:"published";s:12:"release_link";s:59:"https://www.drupal.org/project/drupal/releases/10.6.0-beta1";s:13:"download_link";s:64:"https://ftp.drupal.org/files/projects/drupal-10.6.0-beta1.tar.gz";s:4:"date";s:10:"1764083058";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";i:2;s:8:"Insecure";}}s:8:"security";s:60:"Beta releases are not covered by Drupal security advisories.";}s:7:"10.5.12";a:10:{s:4:"name";s:14:"drupal 10.5.12";s:7:"version";s:7:"10.5.12";s:3:"tag";s:7:"10.5.12";s:6:"status";s:9:"published";s:12:"release_link";s:54:"https://www.drupal.org/project/drupal/releases/10.5.12";s:13:"download_link";s:59:"https://ftp.drupal.org/files/projects/drupal-10.5.12.tar.gz";s:4:"date";s:10:"1781719851";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:1:{i:0;s:15:"Security update";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:7:"10.5.11";a:10:{s:4:"name";s:14:"drupal 10.5.11";s:7:"version";s:7:"10.5.11";s:3:"tag";s:7:"10.5.11";s:6:"status";s:9:"published";s:12:"release_link";s:54:"https://www.drupal.org/project/drupal/releases/10.5.11";s:13:"download_link";s:59:"https://ftp.drupal.org/files/projects/drupal-10.5.11.tar.gz";s:4:"date";s:10:"1779984552";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:7:"10.5.10";a:10:{s:4:"name";s:14:"drupal 10.5.10";s:7:"version";s:7:"10.5.10";s:3:"tag";s:7:"10.5.10";s:6:"status";s:9:"published";s:12:"release_link";s:54:"https://www.drupal.org/project/drupal/releases/10.5.10";s:13:"download_link";s:59:"https://ftp.drupal.org/files/projects/drupal-10.5.10.tar.gz";s:4:"date";s:10:"1779306955";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"10.5.9";a:10:{s:4:"name";s:13:"drupal 10.5.9";s:7:"version";s:6:"10.5.9";s:3:"tag";s:6:"10.5.9";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/10.5.9";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-10.5.9.tar.gz";s:4:"date";s:10:"1776279123";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"10.5.8";a:10:{s:4:"name";s:13:"drupal 10.5.8";s:7:"version";s:6:"10.5.8";s:3:"tag";s:6:"10.5.8";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/10.5.8";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-10.5.8.tar.gz";s:4:"date";s:10:"1765309285";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"10.5.7";a:10:{s:4:"name";s:13:"drupal 10.5.7";s:7:"version";s:6:"10.5.7";s:3:"tag";s:6:"10.5.7";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/10.5.7";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-10.5.7.tar.gz";s:4:"date";s:10:"1764837891";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"10.5.6";a:10:{s:4:"name";s:13:"drupal 10.5.6";s:7:"version";s:6:"10.5.6";s:3:"tag";s:6:"10.5.6";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/10.5.6";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-10.5.6.tar.gz";s:4:"date";s:10:"1762990833";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"10.5.5";a:10:{s:4:"name";s:13:"drupal 10.5.5";s:7:"version";s:6:"10.5.5";s:3:"tag";s:6:"10.5.5";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/10.5.5";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-10.5.5.tar.gz";s:4:"date";s:10:"1762403351";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"10.5.4";a:10:{s:4:"name";s:13:"drupal 10.5.4";s:7:"version";s:6:"10.5.4";s:3:"tag";s:6:"10.5.4";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/10.5.4";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-10.5.4.tar.gz";s:4:"date";s:10:"1759391576";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"10.5.3";a:10:{s:4:"name";s:13:"drupal 10.5.3";s:7:"version";s:6:"10.5.3";s:3:"tag";s:6:"10.5.3";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/10.5.3";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-10.5.3.tar.gz";s:4:"date";s:10:"1756978175";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"10.5.2";a:10:{s:4:"name";s:13:"drupal 10.5.2";s:7:"version";s:6:"10.5.2";s:3:"tag";s:6:"10.5.2";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/10.5.2";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-10.5.2.tar.gz";s:4:"date";s:10:"1754564029";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"10.5.1";a:10:{s:4:"name";s:13:"drupal 10.5.1";s:7:"version";s:6:"10.5.1";s:3:"tag";s:6:"10.5.1";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/10.5.1";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-10.5.1.tar.gz";s:4:"date";s:10:"1750947651";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"10.5.0";a:10:{s:4:"name";s:13:"drupal 10.5.0";s:7:"version";s:6:"10.5.0";s:3:"tag";s:6:"10.5.0";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/10.5.0";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-10.5.0.tar.gz";s:4:"date";s:10:"1750294139";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";i:2;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:10:"10.5.0-rc1";a:10:{s:4:"name";s:17:"drupal 10.5.0-rc1";s:7:"version";s:10:"10.5.0-rc1";s:3:"tag";s:10:"10.5.0-rc1";s:6:"status";s:9:"published";s:12:"release_link";s:57:"https://www.drupal.org/project/drupal/releases/10.5.0-rc1";s:13:"download_link";s:62:"https://ftp.drupal.org/files/projects/drupal-10.5.0-rc1.tar.gz";s:4:"date";s:10:"1749746527";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";i:2;s:8:"Insecure";}}s:8:"security";s:58:"RC releases are not covered by Drupal security advisories.";}s:12:"10.5.0-beta1";a:10:{s:4:"name";s:19:"drupal 10.5.0-beta1";s:7:"version";s:12:"10.5.0-beta1";s:3:"tag";s:12:"10.5.0-beta1";s:6:"status";s:9:"published";s:12:"release_link";s:59:"https://www.drupal.org/project/drupal/releases/10.5.0-beta1";s:13:"download_link";s:64:"https://ftp.drupal.org/files/projects/drupal-10.5.0-beta1.tar.gz";s:4:"date";s:10:"1748162570";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";i:2;s:8:"Insecure";}}s:8:"security";s:60:"Beta releases are not covered by Drupal security advisories.";}s:7:"10.4.10";a:10:{s:4:"name";s:14:"drupal 10.4.10";s:7:"version";s:7:"10.4.10";s:3:"tag";s:7:"10.4.10";s:6:"status";s:9:"published";s:12:"release_link";s:54:"https://www.drupal.org/project/drupal/releases/10.4.10";s:13:"download_link";s:59:"https://ftp.drupal.org/files/projects/drupal-10.4.10.tar.gz";s:4:"date";s:10:"1779305427";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"10.4.9";a:10:{s:4:"name";s:13:"drupal 10.4.9";s:7:"version";s:6:"10.4.9";s:3:"tag";s:6:"10.4.9";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/10.4.9";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-10.4.9.tar.gz";s:4:"date";s:10:"1762991487";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"10.4.8";a:10:{s:4:"name";s:13:"drupal 10.4.8";s:7:"version";s:6:"10.4.8";s:3:"tag";s:6:"10.4.8";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/10.4.8";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-10.4.8.tar.gz";s:4:"date";s:10:"1749168268";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"10.4.7";a:10:{s:4:"name";s:13:"drupal 10.4.7";s:7:"version";s:6:"10.4.7";s:3:"tag";s:6:"10.4.7";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/10.4.7";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-10.4.7.tar.gz";s:4:"date";s:10:"1746678757";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"10.4.6";a:10:{s:4:"name";s:13:"drupal 10.4.6";s:7:"version";s:6:"10.4.6";s:3:"tag";s:6:"10.4.6";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/10.4.6";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-10.4.6.tar.gz";s:4:"date";s:10:"1743628915";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"10.4.5";a:10:{s:4:"name";s:13:"drupal 10.4.5";s:7:"version";s:6:"10.4.5";s:3:"tag";s:6:"10.4.5";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/10.4.5";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-10.4.5.tar.gz";s:4:"date";s:10:"1742409107";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"10.4.4";a:10:{s:4:"name";s:13:"drupal 10.4.4";s:7:"version";s:6:"10.4.4";s:3:"tag";s:6:"10.4.4";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/10.4.4";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-10.4.4.tar.gz";s:4:"date";s:10:"1741211791";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"10.4.3";a:10:{s:4:"name";s:13:"drupal 10.4.3";s:7:"version";s:6:"10.4.3";s:3:"tag";s:6:"10.4.3";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/10.4.3";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-10.4.3.tar.gz";s:4:"date";s:10:"1739987505";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"10.4.2";a:10:{s:4:"name";s:13:"drupal 10.4.2";s:7:"version";s:6:"10.4.2";s:3:"tag";s:6:"10.4.2";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/10.4.2";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-10.4.2.tar.gz";s:4:"date";s:10:"1738798328";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"10.4.1";a:10:{s:4:"name";s:13:"drupal 10.4.1";s:7:"version";s:6:"10.4.1";s:3:"tag";s:6:"10.4.1";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/10.4.1";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-10.4.1.tar.gz";s:4:"date";s:10:"1736207882";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"10.4.0";a:10:{s:4:"name";s:13:"drupal 10.4.0";s:7:"version";s:6:"10.4.0";s:3:"tag";s:6:"10.4.0";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/10.4.0";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-10.4.0.tar.gz";s:4:"date";s:10:"1734475162";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:10:"10.4.0-rc1";a:10:{s:4:"name";s:17:"drupal 10.4.0-rc1";s:7:"version";s:10:"10.4.0-rc1";s:3:"tag";s:10:"10.4.0-rc1";s:6:"status";s:9:"published";s:12:"release_link";s:57:"https://www.drupal.org/project/drupal/releases/10.4.0-rc1";s:13:"download_link";s:62:"https://ftp.drupal.org/files/projects/drupal-10.4.0-rc1.tar.gz";s:4:"date";s:10:"1733155673";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";i:2;s:8:"Insecure";}}s:8:"security";s:58:"RC releases are not covered by Drupal security advisories.";}s:12:"10.4.0-beta1";a:10:{s:4:"name";s:19:"drupal 10.4.0-beta1";s:7:"version";s:12:"10.4.0-beta1";s:3:"tag";s:12:"10.4.0-beta1";s:6:"status";s:9:"published";s:12:"release_link";s:59:"https://www.drupal.org/project/drupal/releases/10.4.0-beta1";s:13:"download_link";s:64:"https://ftp.drupal.org/files/projects/drupal-10.4.0-beta1.tar.gz";s:4:"date";s:10:"1731947109";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:8:"Insecure";i:1;s:9:"Bug fixes";i:2;s:12:"New features";}}s:8:"security";s:60:"Beta releases are not covered by Drupal security advisories.";}s:7:"10.3.14";a:10:{s:4:"name";s:14:"drupal 10.3.14";s:7:"version";s:7:"10.3.14";s:3:"tag";s:7:"10.3.14";s:6:"status";s:9:"published";s:12:"release_link";s:54:"https://www.drupal.org/project/drupal/releases/10.3.14";s:13:"download_link";s:59:"https://ftp.drupal.org/files/projects/drupal-10.3.14.tar.gz";s:4:"date";s:10:"1742410042";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:7:"10.3.13";a:10:{s:4:"name";s:14:"drupal 10.3.13";s:7:"version";s:7:"10.3.13";s:3:"tag";s:7:"10.3.13";s:6:"status";s:9:"published";s:12:"release_link";s:54:"https://www.drupal.org/project/drupal/releases/10.3.13";s:13:"download_link";s:59:"https://ftp.drupal.org/files/projects/drupal-10.3.13.tar.gz";s:4:"date";s:10:"1739986815";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:7:"10.3.12";a:10:{s:4:"name";s:14:"drupal 10.3.12";s:7:"version";s:7:"10.3.12";s:3:"tag";s:7:"10.3.12";s:6:"status";s:9:"published";s:12:"release_link";s:54:"https://www.drupal.org/project/drupal/releases/10.3.12";s:13:"download_link";s:59:"https://ftp.drupal.org/files/projects/drupal-10.3.12.tar.gz";s:4:"date";s:10:"1738798951";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:7:"10.3.11";a:10:{s:4:"name";s:14:"drupal 10.3.11";s:7:"version";s:7:"10.3.11";s:3:"tag";s:7:"10.3.11";s:6:"status";s:9:"published";s:12:"release_link";s:54:"https://www.drupal.org/project/drupal/releases/10.3.11";s:13:"download_link";s:59:"https://ftp.drupal.org/files/projects/drupal-10.3.11.tar.gz";s:4:"date";s:10:"1736208549";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:7:"10.3.10";a:10:{s:4:"name";s:14:"drupal 10.3.10";s:7:"version";s:7:"10.3.10";s:3:"tag";s:7:"10.3.10";s:6:"status";s:9:"published";s:12:"release_link";s:54:"https://www.drupal.org/project/drupal/releases/10.3.10";s:13:"download_link";s:59:"https://ftp.drupal.org/files/projects/drupal-10.3.10.tar.gz";s:4:"date";s:10:"1732284381";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"10.3.9";a:10:{s:4:"name";s:13:"drupal 10.3.9";s:7:"version";s:6:"10.3.9";s:3:"tag";s:6:"10.3.9";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/10.3.9";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-10.3.9.tar.gz";s:4:"date";s:10:"1732132747";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"10.3.8";a:10:{s:4:"name";s:13:"drupal 10.3.8";s:7:"version";s:6:"10.3.8";s:3:"tag";s:6:"10.3.8";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/10.3.8";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-10.3.8.tar.gz";s:4:"date";s:10:"1731407050";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"10.3.7";a:10:{s:4:"name";s:13:"drupal 10.3.7";s:7:"version";s:6:"10.3.7";s:3:"tag";s:6:"10.3.7";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/10.3.7";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-10.3.7.tar.gz";s:4:"date";s:10:"1730969060";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"10.3.6";a:10:{s:4:"name";s:13:"drupal 10.3.6";s:7:"version";s:6:"10.3.6";s:3:"tag";s:6:"10.3.6";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/10.3.6";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-10.3.6.tar.gz";s:4:"date";s:10:"1727948888";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"10.3.5";a:10:{s:4:"name";s:13:"drupal 10.3.5";s:7:"version";s:6:"10.3.5";s:3:"tag";s:6:"10.3.5";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/10.3.5";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-10.3.5.tar.gz";s:4:"date";s:10:"1726134993";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"10.3.4";a:10:{s:4:"name";s:13:"drupal 10.3.4";s:7:"version";s:6:"10.3.4";s:3:"tag";s:6:"10.3.4";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/10.3.4";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-10.3.4.tar.gz";s:4:"date";s:10:"1726072510";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"10.3.3";a:10:{s:4:"name";s:13:"drupal 10.3.3";s:7:"version";s:6:"10.3.3";s:3:"tag";s:6:"10.3.3";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/10.3.3";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-10.3.3.tar.gz";s:4:"date";s:10:"1725528161";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"10.3.2";a:10:{s:4:"name";s:13:"drupal 10.3.2";s:7:"version";s:6:"10.3.2";s:3:"tag";s:6:"10.3.2";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/10.3.2";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-10.3.2.tar.gz";s:4:"date";s:10:"1723109810";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"10.3.1";a:10:{s:4:"name";s:13:"drupal 10.3.1";s:7:"version";s:6:"10.3.1";s:3:"tag";s:6:"10.3.1";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/10.3.1";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-10.3.1.tar.gz";s:4:"date";s:10:"1720094095";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"10.3.0";a:10:{s:4:"name";s:13:"drupal 10.3.0";s:7:"version";s:6:"10.3.0";s:3:"tag";s:6:"10.3.0";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/10.3.0";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-10.3.0.tar.gz";s:4:"date";s:10:"1718911125";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";i:2;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:10:"10.3.0-rc1";a:10:{s:4:"name";s:17:"drupal 10.3.0-rc1";s:7:"version";s:10:"10.3.0-rc1";s:3:"tag";s:10:"10.3.0-rc1";s:6:"status";s:9:"published";s:12:"release_link";s:57:"https://www.drupal.org/project/drupal/releases/10.3.0-rc1";s:13:"download_link";s:62:"https://ftp.drupal.org/files/projects/drupal-10.3.0-rc1.tar.gz";s:4:"date";s:10:"1717621189";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";i:2;s:8:"Insecure";}}s:8:"security";s:58:"RC releases are not covered by Drupal security advisories.";}s:12:"10.3.0-beta1";a:10:{s:4:"name";s:19:"drupal 10.3.0-beta1";s:7:"version";s:12:"10.3.0-beta1";s:3:"tag";s:12:"10.3.0-beta1";s:6:"status";s:9:"published";s:12:"release_link";s:59:"https://www.drupal.org/project/drupal/releases/10.3.0-beta1";s:13:"download_link";s:64:"https://ftp.drupal.org/files/projects/drupal-10.3.0-beta1.tar.gz";s:4:"date";s:10:"1715953149";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";i:2;s:8:"Insecure";}}s:8:"security";s:60:"Beta releases are not covered by Drupal security advisories.";}s:7:"10.2.12";a:10:{s:4:"name";s:14:"drupal 10.2.12";s:7:"version";s:7:"10.2.12";s:3:"tag";s:7:"10.2.12";s:6:"status";s:9:"published";s:12:"release_link";s:54:"https://www.drupal.org/project/drupal/releases/10.2.12";s:13:"download_link";s:59:"https://ftp.drupal.org/files/projects/drupal-10.2.12.tar.gz";s:4:"date";s:10:"1732281201";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:7:"10.2.11";a:10:{s:4:"name";s:14:"drupal 10.2.11";s:7:"version";s:7:"10.2.11";s:3:"tag";s:7:"10.2.11";s:6:"status";s:9:"published";s:12:"release_link";s:54:"https://www.drupal.org/project/drupal/releases/10.2.11";s:13:"download_link";s:59:"https://ftp.drupal.org/files/projects/drupal-10.2.11.tar.gz";s:4:"date";s:10:"1732133662";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:7:"10.2.10";a:10:{s:4:"name";s:14:"drupal 10.2.10";s:7:"version";s:7:"10.2.10";s:3:"tag";s:7:"10.2.10";s:6:"status";s:9:"published";s:12:"release_link";s:54:"https://www.drupal.org/project/drupal/releases/10.2.10";s:13:"download_link";s:59:"https://ftp.drupal.org/files/projects/drupal-10.2.10.tar.gz";s:4:"date";s:10:"1729096989";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"10.2.9";a:10:{s:4:"name";s:13:"drupal 10.2.9";s:7:"version";s:6:"10.2.9";s:3:"tag";s:6:"10.2.9";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/10.2.9";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-10.2.9.tar.gz";s:4:"date";s:10:"1728387439";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"10.2.8";a:10:{s:4:"name";s:13:"drupal 10.2.8";s:7:"version";s:6:"10.2.8";s:3:"tag";s:6:"10.2.8";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/10.2.8";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-10.2.8.tar.gz";s:4:"date";s:10:"1726073816";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"10.2.7";a:10:{s:4:"name";s:13:"drupal 10.2.7";s:7:"version";s:6:"10.2.7";s:3:"tag";s:6:"10.2.7";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/10.2.7";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-10.2.7.tar.gz";s:4:"date";s:10:"1717660024";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"10.2.6";a:10:{s:4:"name";s:13:"drupal 10.2.6";s:7:"version";s:6:"10.2.6";s:3:"tag";s:6:"10.2.6";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/10.2.6";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-10.2.6.tar.gz";s:4:"date";s:10:"1714597701";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"10.2.5";a:10:{s:4:"name";s:13:"drupal 10.2.5";s:7:"version";s:6:"10.2.5";s:3:"tag";s:6:"10.2.5";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/10.2.5";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-10.2.5.tar.gz";s:4:"date";s:10:"1712130945";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"10.2.4";a:10:{s:4:"name";s:13:"drupal 10.2.4";s:7:"version";s:6:"10.2.4";s:3:"tag";s:6:"10.2.4";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/10.2.4";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-10.2.4.tar.gz";s:4:"date";s:10:"1709715366";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"10.2.3";a:10:{s:4:"name";s:13:"drupal 10.2.3";s:7:"version";s:6:"10.2.3";s:3:"tag";s:6:"10.2.3";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/10.2.3";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-10.2.3.tar.gz";s:4:"date";s:10:"1707347611";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"10.2.2";a:10:{s:4:"name";s:13:"drupal 10.2.2";s:7:"version";s:6:"10.2.2";s:3:"tag";s:6:"10.2.2";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/10.2.2";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-10.2.2.tar.gz";s:4:"date";s:10:"1705511786";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"10.2.1";a:10:{s:4:"name";s:13:"drupal 10.2.1";s:7:"version";s:6:"10.2.1";s:3:"tag";s:6:"10.2.1";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/10.2.1";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-10.2.1.tar.gz";s:4:"date";s:10:"1704448164";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:8:"Insecure";i:1;s:9:"Bug fixes";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"10.2.0";a:10:{s:4:"name";s:13:"drupal 10.2.0";s:7:"version";s:6:"10.2.0";s:3:"tag";s:6:"10.2.0";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/10.2.0";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-10.2.0.tar.gz";s:4:"date";s:10:"1702681674";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";i:2;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:10:"10.2.0-rc1";a:10:{s:4:"name";s:17:"drupal 10.2.0-rc1";s:7:"version";s:10:"10.2.0-rc1";s:3:"tag";s:10:"10.2.0-rc1";s:6:"status";s:9:"published";s:12:"release_link";s:57:"https://www.drupal.org/project/drupal/releases/10.2.0-rc1";s:13:"download_link";s:62:"https://ftp.drupal.org/files/projects/drupal-10.2.0-rc1.tar.gz";s:4:"date";s:10:"1701450971";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";i:2;s:8:"Insecure";}}s:8:"security";s:58:"RC releases are not covered by Drupal security advisories.";}s:12:"10.2.0-beta1";a:10:{s:4:"name";s:19:"drupal 10.2.0-beta1";s:7:"version";s:12:"10.2.0-beta1";s:3:"tag";s:12:"10.2.0-beta1";s:6:"status";s:9:"published";s:12:"release_link";s:59:"https://www.drupal.org/project/drupal/releases/10.2.0-beta1";s:13:"download_link";s:64:"https://ftp.drupal.org/files/projects/drupal-10.2.0-beta1.tar.gz";s:4:"date";s:10:"1700578716";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";i:2;s:8:"Insecure";}}s:8:"security";s:60:"Beta releases are not covered by Drupal security advisories.";}s:13:"10.2.0-alpha1";a:10:{s:4:"name";s:20:"drupal 10.2.0-alpha1";s:7:"version";s:13:"10.2.0-alpha1";s:3:"tag";s:13:"10.2.0-alpha1";s:6:"status";s:9:"published";s:12:"release_link";s:60:"https://www.drupal.org/project/drupal/releases/10.2.0-alpha1";s:13:"download_link";s:65:"https://ftp.drupal.org/files/projects/drupal-10.2.0-alpha1.tar.gz";s:4:"date";s:10:"1699048959";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";i:2;s:8:"Insecure";}}s:8:"security";s:61:"Alpha releases are not covered by Drupal security advisories.";}s:6:"10.1.8";a:10:{s:4:"name";s:13:"drupal 10.1.8";s:7:"version";s:6:"10.1.8";s:3:"tag";s:6:"10.1.8";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/10.1.8";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-10.1.8.tar.gz";s:4:"date";s:10:"1705512711";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"10.1.7";a:10:{s:4:"name";s:13:"drupal 10.1.7";s:7:"version";s:6:"10.1.7";s:3:"tag";s:6:"10.1.7";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/10.1.7";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-10.1.7.tar.gz";s:4:"date";s:10:"1701857745";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:8:"Insecure";i:1;s:9:"Bug fixes";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"10.1.6";a:10:{s:4:"name";s:13:"drupal 10.1.6";s:7:"version";s:6:"10.1.6";s:3:"tag";s:6:"10.1.6";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/10.1.6";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-10.1.6.tar.gz";s:4:"date";s:10:"1698841286";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"10.1.5";a:10:{s:4:"name";s:13:"drupal 10.1.5";s:7:"version";s:6:"10.1.5";s:3:"tag";s:6:"10.1.5";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/10.1.5";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-10.1.5.tar.gz";s:4:"date";s:10:"1696456362";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"10.1.4";a:10:{s:4:"name";s:13:"drupal 10.1.4";s:7:"version";s:6:"10.1.4";s:3:"tag";s:6:"10.1.4";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/10.1.4";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-10.1.4.tar.gz";s:4:"date";s:10:"1695227262";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"10.1.3";a:10:{s:4:"name";s:13:"drupal 10.1.3";s:7:"version";s:6:"10.1.3";s:3:"tag";s:6:"10.1.3";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/10.1.3";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-10.1.3.tar.gz";s:4:"date";s:10:"1694101052";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"10.1.2";a:10:{s:4:"name";s:13:"drupal 10.1.2";s:7:"version";s:6:"10.1.2";s:3:"tag";s:6:"10.1.2";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/10.1.2";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-10.1.2.tar.gz";s:4:"date";s:10:"1690972078";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"10.1.1";a:10:{s:4:"name";s:13:"drupal 10.1.1";s:7:"version";s:6:"10.1.1";s:3:"tag";s:6:"10.1.1";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/10.1.1";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-10.1.1.tar.gz";s:4:"date";s:10:"1688632960";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"10.1.0";a:10:{s:4:"name";s:13:"drupal 10.1.0";s:7:"version";s:6:"10.1.0";s:3:"tag";s:6:"10.1.0";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/10.1.0";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-10.1.0.tar.gz";s:4:"date";s:10:"1687424272";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:8:"Insecure";i:1;s:9:"Bug fixes";i:2;s:12:"New features";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:10:"10.1.0-rc1";a:10:{s:4:"name";s:17:"drupal 10.1.0-rc1";s:7:"version";s:10:"10.1.0-rc1";s:3:"tag";s:10:"10.1.0-rc1";s:6:"status";s:9:"published";s:12:"release_link";s:57:"https://www.drupal.org/project/drupal/releases/10.1.0-rc1";s:13:"download_link";s:62:"https://ftp.drupal.org/files/projects/drupal-10.1.0-rc1.tar.gz";s:4:"date";s:10:"1686244833";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";i:2;s:8:"Insecure";}}s:8:"security";s:58:"RC releases are not covered by Drupal security advisories.";}s:12:"10.1.0-beta1";a:10:{s:4:"name";s:19:"drupal 10.1.0-beta1";s:7:"version";s:12:"10.1.0-beta1";s:3:"tag";s:12:"10.1.0-beta1";s:6:"status";s:9:"published";s:12:"release_link";s:59:"https://www.drupal.org/project/drupal/releases/10.1.0-beta1";s:13:"download_link";s:64:"https://ftp.drupal.org/files/projects/drupal-10.1.0-beta1.tar.gz";s:4:"date";s:10:"1684130534";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";i:2;s:8:"Insecure";}}s:8:"security";s:60:"Beta releases are not covered by Drupal security advisories.";}s:13:"10.1.0-alpha1";a:10:{s:4:"name";s:20:"drupal 10.1.0-alpha1";s:7:"version";s:13:"10.1.0-alpha1";s:3:"tag";s:13:"10.1.0-alpha1";s:6:"status";s:9:"published";s:12:"release_link";s:60:"https://www.drupal.org/project/drupal/releases/10.1.0-alpha1";s:13:"download_link";s:65:"https://ftp.drupal.org/files/projects/drupal-10.1.0-alpha1.tar.gz";s:4:"date";s:10:"1682694475";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";i:2;s:8:"Insecure";}}s:8:"security";s:61:"Alpha releases are not covered by Drupal security advisories.";}s:7:"10.0.11";a:10:{s:4:"name";s:14:"drupal 10.0.11";s:7:"version";s:7:"10.0.11";s:3:"tag";s:7:"10.0.11";s:6:"status";s:9:"published";s:12:"release_link";s:54:"https://www.drupal.org/project/drupal/releases/10.0.11";s:13:"download_link";s:59:"https://ftp.drupal.org/files/projects/drupal-10.0.11.tar.gz";s:4:"date";s:10:"1695228927";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:7:"10.0.10";a:10:{s:4:"name";s:14:"drupal 10.0.10";s:7:"version";s:7:"10.0.10";s:3:"tag";s:7:"10.0.10";s:6:"status";s:9:"published";s:12:"release_link";s:54:"https://www.drupal.org/project/drupal/releases/10.0.10";s:13:"download_link";s:59:"https://ftp.drupal.org/files/projects/drupal-10.0.10.tar.gz";s:4:"date";s:10:"1688549719";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"10.0.9";a:10:{s:4:"name";s:13:"drupal 10.0.9";s:7:"version";s:6:"10.0.9";s:3:"tag";s:6:"10.0.9";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/10.0.9";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-10.0.9.tar.gz";s:4:"date";s:10:"1683108606";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"10.0.8";a:10:{s:4:"name";s:13:"drupal 10.0.8";s:7:"version";s:6:"10.0.8";s:3:"tag";s:6:"10.0.8";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/10.0.8";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-10.0.8.tar.gz";s:4:"date";s:10:"1681921539";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"10.0.7";a:10:{s:4:"name";s:13:"drupal 10.0.7";s:7:"version";s:6:"10.0.7";s:3:"tag";s:6:"10.0.7";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/10.0.7";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-10.0.7.tar.gz";s:4:"date";s:10:"1679678060";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:12:"New features";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"10.0.6";a:10:{s:4:"name";s:13:"drupal 10.0.6";s:7:"version";s:6:"10.0.6";s:3:"tag";s:6:"10.0.6";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/10.0.6";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-10.0.6.tar.gz";s:4:"date";s:10:"1679664982";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"10.0.5";a:10:{s:4:"name";s:13:"drupal 10.0.5";s:7:"version";s:6:"10.0.5";s:3:"tag";s:6:"10.0.5";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/10.0.5";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-10.0.5.tar.gz";s:4:"date";s:10:"1678901067";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"10.0.4";a:10:{s:4:"name";s:13:"drupal 10.0.4";s:7:"version";s:6:"10.0.4";s:3:"tag";s:6:"10.0.4";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/10.0.4";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-10.0.4.tar.gz";s:4:"date";s:10:"1677681486";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"10.0.3";a:10:{s:4:"name";s:13:"drupal 10.0.3";s:7:"version";s:6:"10.0.3";s:3:"tag";s:6:"10.0.3";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/10.0.3";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-10.0.3.tar.gz";s:4:"date";s:10:"1675276709";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"10.0.2";a:10:{s:4:"name";s:13:"drupal 10.0.2";s:7:"version";s:6:"10.0.2";s:3:"tag";s:6:"10.0.2";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/10.0.2";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-10.0.2.tar.gz";s:4:"date";s:10:"1674065542";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"10.0.1";a:10:{s:4:"name";s:13:"drupal 10.0.1";s:7:"version";s:6:"10.0.1";s:3:"tag";s:6:"10.0.1";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/10.0.1";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-10.0.1.tar.gz";s:4:"date";s:10:"1672847780";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"10.0.0";a:10:{s:4:"name";s:13:"drupal 10.0.0";s:7:"version";s:6:"10.0.0";s:3:"tag";s:6:"10.0.0";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/10.0.0";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-10.0.0.tar.gz";s:4:"date";s:10:"1671125939";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";i:2;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:10:"10.0.0-rc3";a:10:{s:4:"name";s:17:"drupal 10.0.0-rc3";s:7:"version";s:10:"10.0.0-rc3";s:3:"tag";s:10:"10.0.0-rc3";s:6:"status";s:9:"published";s:12:"release_link";s:57:"https://www.drupal.org/project/drupal/releases/10.0.0-rc3";s:13:"download_link";s:62:"https://ftp.drupal.org/files/projects/drupal-10.0.0-rc3.tar.gz";s:4:"date";s:10:"1670591784";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";i:2;s:8:"Insecure";}}s:8:"security";s:58:"RC releases are not covered by Drupal security advisories.";}s:10:"10.0.0-rc2";a:10:{s:4:"name";s:17:"drupal 10.0.0-rc2";s:7:"version";s:10:"10.0.0-rc2";s:3:"tag";s:10:"10.0.0-rc2";s:6:"status";s:9:"published";s:12:"release_link";s:57:"https://www.drupal.org/project/drupal/releases/10.0.0-rc2";s:13:"download_link";s:62:"https://ftp.drupal.org/files/projects/drupal-10.0.0-rc2.tar.gz";s:4:"date";s:10:"1670320927";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";i:2;s:8:"Insecure";}}s:8:"security";s:58:"RC releases are not covered by Drupal security advisories.";}s:10:"10.0.0-rc1";a:10:{s:4:"name";s:17:"drupal 10.0.0-rc1";s:7:"version";s:10:"10.0.0-rc1";s:3:"tag";s:10:"10.0.0-rc1";s:6:"status";s:9:"published";s:12:"release_link";s:57:"https://www.drupal.org/project/drupal/releases/10.0.0-rc1";s:13:"download_link";s:62:"https://ftp.drupal.org/files/projects/drupal-10.0.0-rc1.tar.gz";s:4:"date";s:10:"1668612993";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";i:2;s:8:"Insecure";}}s:8:"security";s:58:"RC releases are not covered by Drupal security advisories.";}s:12:"10.0.0-beta2";a:10:{s:4:"name";s:19:"drupal 10.0.0-beta2";s:7:"version";s:12:"10.0.0-beta2";s:3:"tag";s:12:"10.0.0-beta2";s:6:"status";s:9:"published";s:12:"release_link";s:59:"https://www.drupal.org/project/drupal/releases/10.0.0-beta2";s:13:"download_link";s:64:"https://ftp.drupal.org/files/projects/drupal-10.0.0-beta2.tar.gz";s:4:"date";s:10:"1664462663";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";i:2;s:8:"Insecure";}}s:8:"security";s:60:"Beta releases are not covered by Drupal security advisories.";}s:12:"10.0.0-beta1";a:10:{s:4:"name";s:19:"drupal 10.0.0-beta1";s:7:"version";s:12:"10.0.0-beta1";s:3:"tag";s:12:"10.0.0-beta1";s:6:"status";s:9:"published";s:12:"release_link";s:59:"https://www.drupal.org/project/drupal/releases/10.0.0-beta1";s:13:"download_link";s:64:"https://ftp.drupal.org/files/projects/drupal-10.0.0-beta1.tar.gz";s:4:"date";s:10:"1663358020";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";i:2;s:8:"Insecure";}}s:8:"security";s:60:"Beta releases are not covered by Drupal security advisories.";}s:13:"10.0.0-alpha7";a:10:{s:4:"name";s:20:"drupal 10.0.0-alpha7";s:7:"version";s:13:"10.0.0-alpha7";s:3:"tag";s:13:"10.0.0-alpha7";s:6:"status";s:9:"published";s:12:"release_link";s:60:"https://www.drupal.org/project/drupal/releases/10.0.0-alpha7";s:13:"download_link";s:65:"https://ftp.drupal.org/files/projects/drupal-10.0.0-alpha7.tar.gz";s:4:"date";s:10:"1659633851";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";i:2;s:8:"Insecure";}}s:8:"security";s:61:"Alpha releases are not covered by Drupal security advisories.";}s:13:"10.0.0-alpha6";a:10:{s:4:"name";s:20:"drupal 10.0.0-alpha6";s:7:"version";s:13:"10.0.0-alpha6";s:3:"tag";s:13:"10.0.0-alpha6";s:6:"status";s:9:"published";s:12:"release_link";s:60:"https://www.drupal.org/project/drupal/releases/10.0.0-alpha6";s:13:"download_link";s:65:"https://ftp.drupal.org/files/projects/drupal-10.0.0-alpha6.tar.gz";s:4:"date";s:10:"1657218740";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:8:"Insecure";i:1;s:9:"Bug fixes";i:2;s:12:"New features";}}s:8:"security";s:61:"Alpha releases are not covered by Drupal security advisories.";}s:13:"10.0.0-alpha5";a:10:{s:4:"name";s:20:"drupal 10.0.0-alpha5";s:7:"version";s:13:"10.0.0-alpha5";s:3:"tag";s:13:"10.0.0-alpha5";s:6:"status";s:9:"published";s:12:"release_link";s:60:"https://www.drupal.org/project/drupal/releases/10.0.0-alpha5";s:13:"download_link";s:65:"https://ftp.drupal.org/files/projects/drupal-10.0.0-alpha5.tar.gz";s:4:"date";s:10:"1654722993";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:8:"Insecure";i:1;s:9:"Bug fixes";i:2;s:12:"New features";}}s:8:"security";s:61:"Alpha releases are not covered by Drupal security advisories.";}s:13:"10.0.0-alpha4";a:10:{s:4:"name";s:20:"drupal 10.0.0-alpha4";s:7:"version";s:13:"10.0.0-alpha4";s:3:"tag";s:13:"10.0.0-alpha4";s:6:"status";s:9:"published";s:12:"release_link";s:60:"https://www.drupal.org/project/drupal/releases/10.0.0-alpha4";s:13:"download_link";s:65:"https://ftp.drupal.org/files/projects/drupal-10.0.0-alpha4.tar.gz";s:4:"date";s:10:"1651875601";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:8:"Insecure";i:1;s:9:"Bug fixes";i:2;s:12:"New features";}}s:8:"security";s:61:"Alpha releases are not covered by Drupal security advisories.";}s:13:"10.0.0-alpha3";a:10:{s:4:"name";s:20:"drupal 10.0.0-alpha3";s:7:"version";s:13:"10.0.0-alpha3";s:3:"tag";s:13:"10.0.0-alpha3";s:6:"status";s:9:"published";s:12:"release_link";s:60:"https://www.drupal.org/project/drupal/releases/10.0.0-alpha3";s:13:"download_link";s:65:"https://ftp.drupal.org/files/projects/drupal-10.0.0-alpha3.tar.gz";s:4:"date";s:10:"1649887793";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:8:"Insecure";i:1;s:9:"Bug fixes";i:2;s:12:"New features";}}s:8:"security";s:61:"Alpha releases are not covered by Drupal security advisories.";}s:13:"10.0.0-alpha2";a:10:{s:4:"name";s:20:"drupal 10.0.0-alpha2";s:7:"version";s:13:"10.0.0-alpha2";s:3:"tag";s:13:"10.0.0-alpha2";s:6:"status";s:9:"published";s:12:"release_link";s:60:"https://www.drupal.org/project/drupal/releases/10.0.0-alpha2";s:13:"download_link";s:65:"https://ftp.drupal.org/files/projects/drupal-10.0.0-alpha2.tar.gz";s:4:"date";s:10:"1645204305";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:8:"Insecure";i:1;s:9:"Bug fixes";i:2;s:12:"New features";}}s:8:"security";s:61:"Alpha releases are not covered by Drupal security advisories.";}s:13:"10.0.0-alpha1";a:10:{s:4:"name";s:20:"drupal 10.0.0-alpha1";s:7:"version";s:13:"10.0.0-alpha1";s:3:"tag";s:13:"10.0.0-alpha1";s:6:"status";s:9:"published";s:12:"release_link";s:60:"https://www.drupal.org/project/drupal/releases/10.0.0-alpha1";s:13:"download_link";s:65:"https://ftp.drupal.org/files/projects/drupal-10.0.0-alpha1.tar.gz";s:4:"date";s:10:"1643404041";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:1:{i:0;s:8:"Insecure";}}s:8:"security";s:61:"Alpha releases are not covered by Drupal security advisories.";}s:6:"9.5.11";a:10:{s:4:"name";s:13:"drupal 9.5.11";s:7:"version";s:6:"9.5.11";s:3:"tag";s:6:"9.5.11";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/9.5.11";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-9.5.11.tar.gz";s:4:"date";s:10:"1695228016";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:1:{i:0;s:15:"Security update";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"9.5.10";a:10:{s:4:"name";s:13:"drupal 9.5.10";s:7:"version";s:6:"9.5.10";s:3:"tag";s:6:"9.5.10";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/9.5.10";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-9.5.10.tar.gz";s:4:"date";s:10:"1688550984";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"9.5.9";a:10:{s:4:"name";s:12:"drupal 9.5.9";s:7:"version";s:5:"9.5.9";s:3:"tag";s:5:"9.5.9";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/9.5.9";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-9.5.9.tar.gz";s:4:"date";s:10:"1683121532";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:8:"Insecure";i:1;s:9:"Bug fixes";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"9.5.8";a:10:{s:4:"name";s:12:"drupal 9.5.8";s:7:"version";s:5:"9.5.8";s:3:"tag";s:5:"9.5.8";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/9.5.8";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-9.5.8.tar.gz";s:4:"date";s:10:"1681922649";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"9.5.7";a:10:{s:4:"name";s:12:"drupal 9.5.7";s:7:"version";s:5:"9.5.7";s:3:"tag";s:5:"9.5.7";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/9.5.7";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-9.5.7.tar.gz";s:4:"date";s:10:"1679677448";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"9.5.6";a:10:{s:4:"name";s:12:"drupal 9.5.6";s:7:"version";s:5:"9.5.6";s:3:"tag";s:5:"9.5.6";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/9.5.6";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-9.5.6.tar.gz";s:4:"date";s:10:"1679664389";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"9.5.5";a:10:{s:4:"name";s:12:"drupal 9.5.5";s:7:"version";s:5:"9.5.5";s:3:"tag";s:5:"9.5.5";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/9.5.5";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-9.5.5.tar.gz";s:4:"date";s:10:"1678902101";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"9.5.4";a:10:{s:4:"name";s:12:"drupal 9.5.4";s:7:"version";s:5:"9.5.4";s:3:"tag";s:5:"9.5.4";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/9.5.4";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-9.5.4.tar.gz";s:4:"date";s:10:"1677680813";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"9.5.3";a:10:{s:4:"name";s:12:"drupal 9.5.3";s:7:"version";s:5:"9.5.3";s:3:"tag";s:5:"9.5.3";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/9.5.3";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-9.5.3.tar.gz";s:4:"date";s:10:"1675281829";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"9.5.2";a:10:{s:4:"name";s:12:"drupal 9.5.2";s:7:"version";s:5:"9.5.2";s:3:"tag";s:5:"9.5.2";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/9.5.2";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-9.5.2.tar.gz";s:4:"date";s:10:"1674066112";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"9.5.1";a:10:{s:4:"name";s:12:"drupal 9.5.1";s:7:"version";s:5:"9.5.1";s:3:"tag";s:5:"9.5.1";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/9.5.1";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-9.5.1.tar.gz";s:4:"date";s:10:"1672849046";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"9.5.0";a:10:{s:4:"name";s:12:"drupal 9.5.0";s:7:"version";s:5:"9.5.0";s:3:"tag";s:5:"9.5.0";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/9.5.0";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-9.5.0.tar.gz";s:4:"date";s:10:"1671115839";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";i:2;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:9:"9.5.0-rc2";a:10:{s:4:"name";s:16:"drupal 9.5.0-rc2";s:7:"version";s:9:"9.5.0-rc2";s:3:"tag";s:9:"9.5.0-rc2";s:6:"status";s:9:"published";s:12:"release_link";s:56:"https://www.drupal.org/project/drupal/releases/9.5.0-rc2";s:13:"download_link";s:61:"https://ftp.drupal.org/files/projects/drupal-9.5.0-rc2.tar.gz";s:4:"date";s:10:"1670593040";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";i:2;s:8:"Insecure";}}s:8:"security";s:58:"RC releases are not covered by Drupal security advisories.";}s:9:"9.5.0-rc1";a:10:{s:4:"name";s:16:"drupal 9.5.0-rc1";s:7:"version";s:9:"9.5.0-rc1";s:3:"tag";s:9:"9.5.0-rc1";s:6:"status";s:9:"published";s:12:"release_link";s:56:"https://www.drupal.org/project/drupal/releases/9.5.0-rc1";s:13:"download_link";s:61:"https://ftp.drupal.org/files/projects/drupal-9.5.0-rc1.tar.gz";s:4:"date";s:10:"1668611189";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";i:2;s:8:"Insecure";}}s:8:"security";s:58:"RC releases are not covered by Drupal security advisories.";}s:11:"9.5.0-beta2";a:10:{s:4:"name";s:18:"drupal 9.5.0-beta2";s:7:"version";s:11:"9.5.0-beta2";s:3:"tag";s:11:"9.5.0-beta2";s:6:"status";s:9:"published";s:12:"release_link";s:58:"https://www.drupal.org/project/drupal/releases/9.5.0-beta2";s:13:"download_link";s:63:"https://ftp.drupal.org/files/projects/drupal-9.5.0-beta2.tar.gz";s:4:"date";s:10:"1664463958";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";i:2;s:8:"Insecure";}}s:8:"security";s:60:"Beta releases are not covered by Drupal security advisories.";}s:11:"9.5.0-beta1";a:10:{s:4:"name";s:18:"drupal 9.5.0-beta1";s:7:"version";s:11:"9.5.0-beta1";s:3:"tag";s:11:"9.5.0-beta1";s:6:"status";s:9:"published";s:12:"release_link";s:58:"https://www.drupal.org/project/drupal/releases/9.5.0-beta1";s:13:"download_link";s:63:"https://ftp.drupal.org/files/projects/drupal-9.5.0-beta1.tar.gz";s:4:"date";s:10:"1663358587";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";i:2;s:8:"Insecure";}}s:8:"security";s:60:"Beta releases are not covered by Drupal security advisories.";}s:6:"9.4.15";a:10:{s:4:"name";s:13:"drupal 9.4.15";s:7:"version";s:6:"9.4.15";s:3:"tag";s:6:"9.4.15";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/9.4.15";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-9.4.15.tar.gz";s:4:"date";s:10:"1683122076";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"9.4.14";a:10:{s:4:"name";s:13:"drupal 9.4.14";s:7:"version";s:6:"9.4.14";s:3:"tag";s:6:"9.4.14";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/9.4.14";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-9.4.14.tar.gz";s:4:"date";s:10:"1681922120";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"9.4.13";a:10:{s:4:"name";s:13:"drupal 9.4.13";s:7:"version";s:6:"9.4.13";s:3:"tag";s:6:"9.4.13";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/9.4.13";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-9.4.13.tar.gz";s:4:"date";s:10:"1679665413";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"9.4.12";a:10:{s:4:"name";s:13:"drupal 9.4.12";s:7:"version";s:6:"9.4.12";s:3:"tag";s:6:"9.4.12";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/9.4.12";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-9.4.12.tar.gz";s:4:"date";s:10:"1678901516";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"9.4.11";a:10:{s:4:"name";s:13:"drupal 9.4.11";s:7:"version";s:6:"9.4.11";s:3:"tag";s:6:"9.4.11";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/9.4.11";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-9.4.11.tar.gz";s:4:"date";s:10:"1675282255";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"9.4.10";a:10:{s:4:"name";s:13:"drupal 9.4.10";s:7:"version";s:6:"9.4.10";s:3:"tag";s:6:"9.4.10";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/9.4.10";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-9.4.10.tar.gz";s:4:"date";s:10:"1674066615";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"9.4.9";a:10:{s:4:"name";s:12:"drupal 9.4.9";s:7:"version";s:5:"9.4.9";s:3:"tag";s:5:"9.4.9";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/9.4.9";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-9.4.9.tar.gz";s:4:"date";s:10:"1670421053";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"9.4.8";a:10:{s:4:"name";s:12:"drupal 9.4.8";s:7:"version";s:5:"9.4.8";s:3:"tag";s:5:"9.4.8";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/9.4.8";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-9.4.8.tar.gz";s:4:"date";s:10:"1665072393";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"9.4.7";a:10:{s:4:"name";s:12:"drupal 9.4.7";s:7:"version";s:5:"9.4.7";s:3:"tag";s:5:"9.4.7";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/9.4.7";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-9.4.7.tar.gz";s:4:"date";s:10:"1664383239";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:8:"Insecure";i:1;s:15:"Security update";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"9.4.6";a:10:{s:4:"name";s:12:"drupal 9.4.6";s:7:"version";s:5:"9.4.6";s:3:"tag";s:5:"9.4.6";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/9.4.6";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-9.4.6.tar.gz";s:4:"date";s:10:"1663681319";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"9.4.5";a:10:{s:4:"name";s:12:"drupal 9.4.5";s:7:"version";s:5:"9.4.5";s:3:"tag";s:5:"9.4.5";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/9.4.5";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-9.4.5.tar.gz";s:4:"date";s:10:"1659545453";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"9.4.4";a:10:{s:4:"name";s:12:"drupal 9.4.4";s:7:"version";s:5:"9.4.4";s:3:"tag";s:5:"9.4.4";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/9.4.4";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-9.4.4.tar.gz";s:4:"date";s:10:"1659037490";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"9.4.3";a:10:{s:4:"name";s:12:"drupal 9.4.3";s:7:"version";s:5:"9.4.3";s:3:"tag";s:5:"9.4.3";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/9.4.3";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-9.4.3.tar.gz";s:4:"date";s:10:"1658333415";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"9.4.2";a:10:{s:4:"name";s:12:"drupal 9.4.2";s:7:"version";s:5:"9.4.2";s:3:"tag";s:5:"9.4.2";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/9.4.2";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-9.4.2.tar.gz";s:4:"date";s:10:"1657157309";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"9.4.1";a:10:{s:4:"name";s:12:"drupal 9.4.1";s:7:"version";s:5:"9.4.1";s:3:"tag";s:5:"9.4.1";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/9.4.1";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-9.4.1.tar.gz";s:4:"date";s:10:"1655845511";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"9.4.0";a:10:{s:4:"name";s:12:"drupal 9.4.0";s:7:"version";s:5:"9.4.0";s:3:"tag";s:5:"9.4.0";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/9.4.0";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-9.4.0.tar.gz";s:4:"date";s:10:"1655311138";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:8:"Insecure";i:1;s:9:"Bug fixes";i:2;s:12:"New features";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:9:"9.4.0-rc2";a:10:{s:4:"name";s:16:"drupal 9.4.0-rc2";s:7:"version";s:9:"9.4.0-rc2";s:3:"tag";s:9:"9.4.0-rc2";s:6:"status";s:9:"published";s:12:"release_link";s:56:"https://www.drupal.org/project/drupal/releases/9.4.0-rc2";s:13:"download_link";s:61:"https://ftp.drupal.org/files/projects/drupal-9.4.0-rc2.tar.gz";s:4:"date";s:10:"1654890055";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:15:"Security update";i:1;s:9:"Bug fixes";i:2;s:8:"Insecure";}}s:8:"security";s:58:"RC releases are not covered by Drupal security advisories.";}s:9:"9.4.0-rc1";a:10:{s:4:"name";s:16:"drupal 9.4.0-rc1";s:7:"version";s:9:"9.4.0-rc1";s:3:"tag";s:9:"9.4.0-rc1";s:6:"status";s:9:"published";s:12:"release_link";s:56:"https://www.drupal.org/project/drupal/releases/9.4.0-rc1";s:13:"download_link";s:61:"https://ftp.drupal.org/files/projects/drupal-9.4.0-rc1.tar.gz";s:4:"date";s:10:"1654740019";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";i:2;s:8:"Insecure";}}s:8:"security";s:58:"RC releases are not covered by Drupal security advisories.";}s:11:"9.4.0-beta1";a:10:{s:4:"name";s:18:"drupal 9.4.0-beta1";s:7:"version";s:11:"9.4.0-beta1";s:3:"tag";s:11:"9.4.0-beta1";s:6:"status";s:9:"published";s:12:"release_link";s:58:"https://www.drupal.org/project/drupal/releases/9.4.0-beta1";s:13:"download_link";s:63:"https://ftp.drupal.org/files/projects/drupal-9.4.0-beta1.tar.gz";s:4:"date";s:10:"1653938214";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";i:2;s:8:"Insecure";}}s:8:"security";s:60:"Beta releases are not covered by Drupal security advisories.";}s:12:"9.4.0-alpha1";a:10:{s:4:"name";s:19:"drupal 9.4.0-alpha1";s:7:"version";s:12:"9.4.0-alpha1";s:3:"tag";s:12:"9.4.0-alpha1";s:6:"status";s:9:"published";s:12:"release_link";s:59:"https://www.drupal.org/project/drupal/releases/9.4.0-alpha1";s:13:"download_link";s:64:"https://ftp.drupal.org/files/projects/drupal-9.4.0-alpha1.tar.gz";s:4:"date";s:10:"1651875606";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:8:"Insecure";i:1;s:9:"Bug fixes";i:2;s:12:"New features";}}s:8:"security";s:61:"Alpha releases are not covered by Drupal security advisories.";}s:6:"9.3.22";a:10:{s:4:"name";s:13:"drupal 9.3.22";s:7:"version";s:6:"9.3.22";s:3:"tag";s:6:"9.3.22";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/9.3.22";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-9.3.22.tar.gz";s:4:"date";s:10:"1664382666";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"9.3.21";a:10:{s:4:"name";s:13:"drupal 9.3.21";s:7:"version";s:6:"9.3.21";s:3:"tag";s:6:"9.3.21";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/9.3.21";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-9.3.21.tar.gz";s:4:"date";s:10:"1659544886";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"9.3.20";a:10:{s:4:"name";s:13:"drupal 9.3.20";s:7:"version";s:6:"9.3.20";s:3:"tag";s:6:"9.3.20";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/9.3.20";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-9.3.20.tar.gz";s:4:"date";s:10:"1659037977";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"9.3.19";a:10:{s:4:"name";s:13:"drupal 9.3.19";s:7:"version";s:6:"9.3.19";s:3:"tag";s:6:"9.3.19";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/9.3.19";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-9.3.19.tar.gz";s:4:"date";s:10:"1658333887";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"9.3.18";a:10:{s:4:"name";s:13:"drupal 9.3.18";s:7:"version";s:6:"9.3.18";s:3:"tag";s:6:"9.3.18";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/9.3.18";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-9.3.18.tar.gz";s:4:"date";s:10:"1657238772";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"9.3.17";a:10:{s:4:"name";s:13:"drupal 9.3.17";s:7:"version";s:6:"9.3.17";s:3:"tag";s:6:"9.3.17";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/9.3.17";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-9.3.17.tar.gz";s:4:"date";s:10:"1655846622";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"9.3.16";a:10:{s:4:"name";s:13:"drupal 9.3.16";s:7:"version";s:6:"9.3.16";s:3:"tag";s:6:"9.3.16";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/9.3.16";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-9.3.16.tar.gz";s:4:"date";s:10:"1654888736";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"9.3.15";a:10:{s:4:"name";s:13:"drupal 9.3.15";s:7:"version";s:6:"9.3.15";s:3:"tag";s:6:"9.3.15";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/9.3.15";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-9.3.15.tar.gz";s:4:"date";s:10:"1654098765";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"9.3.14";a:10:{s:4:"name";s:13:"drupal 9.3.14";s:7:"version";s:6:"9.3.14";s:3:"tag";s:6:"9.3.14";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/9.3.14";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-9.3.14.tar.gz";s:4:"date";s:10:"1653506291";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"9.3.13";a:10:{s:4:"name";s:13:"drupal 9.3.13";s:7:"version";s:6:"9.3.13";s:3:"tag";s:6:"9.3.13";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/9.3.13";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-9.3.13.tar.gz";s:4:"date";s:10:"1652261874";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"9.3.12";a:10:{s:4:"name";s:13:"drupal 9.3.12";s:7:"version";s:6:"9.3.12";s:3:"tag";s:6:"9.3.12";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/9.3.12";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-9.3.12.tar.gz";s:4:"date";s:10:"1650467536";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"9.3.11";a:10:{s:4:"name";s:13:"drupal 9.3.11";s:7:"version";s:6:"9.3.11";s:3:"tag";s:6:"9.3.11";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/9.3.11";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-9.3.11.tar.gz";s:4:"date";s:10:"1649897391";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"9.3.10";a:10:{s:4:"name";s:13:"drupal 9.3.10";s:7:"version";s:6:"9.3.10";s:3:"tag";s:6:"9.3.10";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/9.3.10";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-9.3.10.tar.gz";s:4:"date";s:10:"1649890098";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:8:"Insecure";i:1;s:9:"Bug fixes";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"9.3.9";a:10:{s:4:"name";s:12:"drupal 9.3.9";s:7:"version";s:5:"9.3.9";s:3:"tag";s:5:"9.3.9";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/9.3.9";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-9.3.9.tar.gz";s:4:"date";s:10:"1647899360";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"9.3.8";a:10:{s:4:"name";s:12:"drupal 9.3.8";s:7:"version";s:5:"9.3.8";s:3:"tag";s:5:"9.3.8";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/9.3.8";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-9.3.8.tar.gz";s:4:"date";s:10:"1647446914";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"9.3.7";a:10:{s:4:"name";s:12:"drupal 9.3.7";s:7:"version";s:5:"9.3.7";s:3:"tag";s:5:"9.3.7";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/9.3.7";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-9.3.7.tar.gz";s:4:"date";s:10:"1646300599";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"9.3.6";a:10:{s:4:"name";s:12:"drupal 9.3.6";s:7:"version";s:5:"9.3.6";s:3:"tag";s:5:"9.3.6";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/9.3.6";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-9.3.6.tar.gz";s:4:"date";s:10:"1645029460";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"9.3.5";a:10:{s:4:"name";s:12:"drupal 9.3.5";s:7:"version";s:5:"9.3.5";s:3:"tag";s:5:"9.3.5";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/9.3.5";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-9.3.5.tar.gz";s:4:"date";s:10:"1644011676";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"9.3.4";a:10:{s:4:"name";s:12:"drupal 9.3.4";s:7:"version";s:5:"9.3.4";s:3:"tag";s:5:"9.3.4";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/9.3.4";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-9.3.4.tar.gz";s:4:"date";s:10:"1643832805";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"9.3.3";a:10:{s:4:"name";s:12:"drupal 9.3.3";s:7:"version";s:5:"9.3.3";s:3:"tag";s:5:"9.3.3";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/9.3.3";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-9.3.3.tar.gz";s:4:"date";s:10:"1642607769";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"9.3.2";a:10:{s:4:"name";s:12:"drupal 9.3.2";s:7:"version";s:5:"9.3.2";s:3:"tag";s:5:"9.3.2";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/9.3.2";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-9.3.2.tar.gz";s:4:"date";s:10:"1641351799";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"9.3.1";a:10:{s:4:"name";s:12:"drupal 9.3.1";s:7:"version";s:5:"9.3.1";s:3:"tag";s:5:"9.3.1";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/9.3.1";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-9.3.1.tar.gz";s:4:"date";s:10:"1641342679";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"9.3.0";a:10:{s:4:"name";s:12:"drupal 9.3.0";s:7:"version";s:5:"9.3.0";s:3:"tag";s:5:"9.3.0";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/9.3.0";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-9.3.0.tar.gz";s:4:"date";s:10:"1639051276";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";i:2;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:9:"9.3.0-rc1";a:10:{s:4:"name";s:16:"drupal 9.3.0-rc1";s:7:"version";s:9:"9.3.0-rc1";s:3:"tag";s:9:"9.3.0-rc1";s:6:"status";s:9:"published";s:12:"release_link";s:56:"https://www.drupal.org/project/drupal/releases/9.3.0-rc1";s:13:"download_link";s:61:"https://ftp.drupal.org/files/projects/drupal-9.3.0-rc1.tar.gz";s:4:"date";s:10:"1637959424";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";i:2;s:8:"Insecure";}}s:8:"security";s:58:"RC releases are not covered by Drupal security advisories.";}s:11:"9.3.0-beta3";a:10:{s:4:"name";s:18:"drupal 9.3.0-beta3";s:7:"version";s:11:"9.3.0-beta3";s:3:"tag";s:11:"9.3.0-beta3";s:6:"status";s:9:"published";s:12:"release_link";s:58:"https://www.drupal.org/project/drupal/releases/9.3.0-beta3";s:13:"download_link";s:63:"https://ftp.drupal.org/files/projects/drupal-9.3.0-beta3.tar.gz";s:4:"date";s:10:"1637764182";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";i:2;s:8:"Insecure";}}s:8:"security";s:60:"Beta releases are not covered by Drupal security advisories.";}s:11:"9.3.0-beta2";a:10:{s:4:"name";s:18:"drupal 9.3.0-beta2";s:7:"version";s:11:"9.3.0-beta2";s:3:"tag";s:11:"9.3.0-beta2";s:6:"status";s:9:"published";s:12:"release_link";s:58:"https://www.drupal.org/project/drupal/releases/9.3.0-beta2";s:13:"download_link";s:63:"https://ftp.drupal.org/files/projects/drupal-9.3.0-beta2.tar.gz";s:4:"date";s:10:"1637196496";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";i:2;s:8:"Insecure";}}s:8:"security";s:60:"Beta releases are not covered by Drupal security advisories.";}s:11:"9.3.0-beta1";a:10:{s:4:"name";s:18:"drupal 9.3.0-beta1";s:7:"version";s:11:"9.3.0-beta1";s:3:"tag";s:11:"9.3.0-beta1";s:6:"status";s:9:"published";s:12:"release_link";s:58:"https://www.drupal.org/project/drupal/releases/9.3.0-beta1";s:13:"download_link";s:63:"https://ftp.drupal.org/files/projects/drupal-9.3.0-beta1.tar.gz";s:4:"date";s:10:"1636746050";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";i:2;s:8:"Insecure";}}s:8:"security";s:60:"Beta releases are not covered by Drupal security advisories.";}s:12:"9.3.0-alpha1";a:10:{s:4:"name";s:19:"drupal 9.3.0-alpha1";s:7:"version";s:12:"9.3.0-alpha1";s:3:"tag";s:12:"9.3.0-alpha1";s:6:"status";s:9:"published";s:12:"release_link";s:59:"https://www.drupal.org/project/drupal/releases/9.3.0-alpha1";s:13:"download_link";s:64:"https://ftp.drupal.org/files/projects/drupal-9.3.0-alpha1.tar.gz";s:4:"date";s:10:"1635510285";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";i:2;s:8:"Insecure";}}s:8:"security";s:61:"Alpha releases are not covered by Drupal security advisories.";}s:6:"9.2.21";a:10:{s:4:"name";s:13:"drupal 9.2.21";s:7:"version";s:6:"9.2.21";s:3:"tag";s:6:"9.2.21";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/9.2.21";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-9.2.21.tar.gz";s:4:"date";s:10:"1654889475";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"9.2.20";a:10:{s:4:"name";s:13:"drupal 9.2.20";s:7:"version";s:6:"9.2.20";s:3:"tag";s:6:"9.2.20";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/9.2.20";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-9.2.20.tar.gz";s:4:"date";s:10:"1653507225";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"9.2.19";a:10:{s:4:"name";s:13:"drupal 9.2.19";s:7:"version";s:6:"9.2.19";s:3:"tag";s:6:"9.2.19";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/9.2.19";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-9.2.19.tar.gz";s:4:"date";s:10:"1652306637";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"9.2.18";a:10:{s:4:"name";s:13:"drupal 9.2.18";s:7:"version";s:6:"9.2.18";s:3:"tag";s:6:"9.2.18";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/9.2.18";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-9.2.18.tar.gz";s:4:"date";s:10:"1650466972";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"9.2.17";a:10:{s:4:"name";s:13:"drupal 9.2.17";s:7:"version";s:6:"9.2.17";s:3:"tag";s:6:"9.2.17";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/9.2.17";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-9.2.17.tar.gz";s:4:"date";s:10:"1649898006";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"9.2.16";a:10:{s:4:"name";s:13:"drupal 9.2.16";s:7:"version";s:6:"9.2.16";s:3:"tag";s:6:"9.2.16";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/9.2.16";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-9.2.16.tar.gz";s:4:"date";s:10:"1647898826";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"9.2.15";a:10:{s:4:"name";s:13:"drupal 9.2.15";s:7:"version";s:6:"9.2.15";s:3:"tag";s:6:"9.2.15";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/9.2.15";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-9.2.15.tar.gz";s:4:"date";s:10:"1647447411";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"9.2.14";a:10:{s:4:"name";s:13:"drupal 9.2.14";s:7:"version";s:6:"9.2.14";s:3:"tag";s:6:"9.2.14";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/9.2.14";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-9.2.14.tar.gz";s:4:"date";s:10:"1647027629";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"9.2.13";a:10:{s:4:"name";s:13:"drupal 9.2.13";s:7:"version";s:6:"9.2.13";s:3:"tag";s:6:"9.2.13";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/9.2.13";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-9.2.13.tar.gz";s:4:"date";s:10:"1645029955";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"9.2.12";a:10:{s:4:"name";s:13:"drupal 9.2.12";s:7:"version";s:6:"9.2.12";s:3:"tag";s:6:"9.2.12";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/9.2.12";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-9.2.12.tar.gz";s:4:"date";s:10:"1644012448";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"9.2.11";a:10:{s:4:"name";s:13:"drupal 9.2.11";s:7:"version";s:6:"9.2.11";s:3:"tag";s:6:"9.2.11";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/9.2.11";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-9.2.11.tar.gz";s:4:"date";s:10:"1642608353";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:8:"Insecure";i:1;s:15:"Security update";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"9.2.10";a:10:{s:4:"name";s:13:"drupal 9.2.10";s:7:"version";s:6:"9.2.10";s:3:"tag";s:6:"9.2.10";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/9.2.10";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-9.2.10.tar.gz";s:4:"date";s:10:"1637765544";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"9.2.9";a:10:{s:4:"name";s:12:"drupal 9.2.9";s:7:"version";s:5:"9.2.9";s:3:"tag";s:5:"9.2.9";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/9.2.9";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-9.2.9.tar.gz";s:4:"date";s:10:"1637184936";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"9.2.8";a:10:{s:4:"name";s:12:"drupal 9.2.8";s:7:"version";s:5:"9.2.8";s:3:"tag";s:5:"9.2.8";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/9.2.8";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-9.2.8.tar.gz";s:4:"date";s:10:"1635961216";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:8:"Insecure";i:1;s:9:"Bug fixes";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"9.2.7";a:10:{s:4:"name";s:12:"drupal 9.2.7";s:7:"version";s:5:"9.2.7";s:3:"tag";s:5:"9.2.7";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/9.2.7";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-9.2.7.tar.gz";s:4:"date";s:10:"1633544267";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"9.2.6";a:10:{s:4:"name";s:12:"drupal 9.2.6";s:7:"version";s:5:"9.2.6";s:3:"tag";s:5:"9.2.6";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/9.2.6";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-9.2.6.tar.gz";s:4:"date";s:10:"1631721555";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"9.2.5";a:10:{s:4:"name";s:12:"drupal 9.2.5";s:7:"version";s:5:"9.2.5";s:3:"tag";s:5:"9.2.5";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/9.2.5";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-9.2.5.tar.gz";s:4:"date";s:10:"1630534729";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"9.2.4";a:10:{s:4:"name";s:12:"drupal 9.2.4";s:7:"version";s:5:"9.2.4";s:3:"tag";s:5:"9.2.4";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/9.2.4";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-9.2.4.tar.gz";s:4:"date";s:10:"1628791178";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"9.2.3";a:10:{s:4:"name";s:12:"drupal 9.2.3";s:7:"version";s:5:"9.2.3";s:3:"tag";s:5:"9.2.3";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/9.2.3";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-9.2.3.tar.gz";s:4:"date";s:10:"1627997922";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"9.2.2";a:10:{s:4:"name";s:12:"drupal 9.2.2";s:7:"version";s:5:"9.2.2";s:3:"tag";s:5:"9.2.2";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/9.2.2";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-9.2.2.tar.gz";s:4:"date";s:10:"1626882385";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"9.2.1";a:10:{s:4:"name";s:12:"drupal 9.2.1";s:7:"version";s:5:"9.2.1";s:3:"tag";s:5:"9.2.1";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/9.2.1";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-9.2.1.tar.gz";s:4:"date";s:10:"1625664286";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"9.2.0";a:10:{s:4:"name";s:12:"drupal 9.2.0";s:7:"version";s:5:"9.2.0";s:3:"tag";s:5:"9.2.0";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/9.2.0";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-9.2.0.tar.gz";s:4:"date";s:10:"1623847798";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";i:2;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:9:"9.2.0-rc1";a:10:{s:4:"name";s:16:"drupal 9.2.0-rc1";s:7:"version";s:9:"9.2.0-rc1";s:3:"tag";s:9:"9.2.0-rc1";s:6:"status";s:9:"published";s:12:"release_link";s:56:"https://www.drupal.org/project/drupal/releases/9.2.0-rc1";s:13:"download_link";s:61:"https://ftp.drupal.org/files/projects/drupal-9.2.0-rc1.tar.gz";s:4:"date";s:10:"1623080867";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";i:2;s:8:"Insecure";}}s:8:"security";s:58:"RC releases are not covered by Drupal security advisories.";}s:11:"9.2.0-beta3";a:10:{s:4:"name";s:18:"drupal 9.2.0-beta3";s:7:"version";s:11:"9.2.0-beta3";s:3:"tag";s:11:"9.2.0-beta3";s:6:"status";s:9:"published";s:12:"release_link";s:58:"https://www.drupal.org/project/drupal/releases/9.2.0-beta3";s:13:"download_link";s:63:"https://ftp.drupal.org/files/projects/drupal-9.2.0-beta3.tar.gz";s:4:"date";s:10:"1622207568";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";i:2;s:8:"Insecure";}}s:8:"security";s:60:"Beta releases are not covered by Drupal security advisories.";}s:11:"9.2.0-beta2";a:10:{s:4:"name";s:18:"drupal 9.2.0-beta2";s:7:"version";s:11:"9.2.0-beta2";s:3:"tag";s:11:"9.2.0-beta2";s:6:"status";s:9:"published";s:12:"release_link";s:58:"https://www.drupal.org/project/drupal/releases/9.2.0-beta2";s:13:"download_link";s:63:"https://ftp.drupal.org/files/projects/drupal-9.2.0-beta2.tar.gz";s:4:"date";s:10:"1622068611";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:4:{i:0;s:15:"Security update";i:1;s:9:"Bug fixes";i:2;s:12:"New features";i:3;s:8:"Insecure";}}s:8:"security";s:60:"Beta releases are not covered by Drupal security advisories.";}s:11:"9.2.0-beta1";a:10:{s:4:"name";s:18:"drupal 9.2.0-beta1";s:7:"version";s:11:"9.2.0-beta1";s:3:"tag";s:11:"9.2.0-beta1";s:6:"status";s:9:"published";s:12:"release_link";s:58:"https://www.drupal.org/project/drupal/releases/9.2.0-beta1";s:13:"download_link";s:63:"https://ftp.drupal.org/files/projects/drupal-9.2.0-beta1.tar.gz";s:4:"date";s:10:"1621506248";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:8:"Insecure";i:1;s:9:"Bug fixes";i:2;s:12:"New features";}}s:8:"security";s:60:"Beta releases are not covered by Drupal security advisories.";}s:12:"9.2.0-alpha1";a:10:{s:4:"name";s:19:"drupal 9.2.0-alpha1";s:7:"version";s:12:"9.2.0-alpha1";s:3:"tag";s:12:"9.2.0-alpha1";s:6:"status";s:9:"published";s:12:"release_link";s:59:"https://www.drupal.org/project/drupal/releases/9.2.0-alpha1";s:13:"download_link";s:64:"https://ftp.drupal.org/files/projects/drupal-9.2.0-alpha1.tar.gz";s:4:"date";s:10:"1620291652";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";i:2;s:8:"Insecure";}}s:8:"security";s:61:"Alpha releases are not covered by Drupal security advisories.";}s:6:"9.1.15";a:10:{s:4:"name";s:13:"drupal 9.1.15";s:7:"version";s:6:"9.1.15";s:3:"tag";s:6:"9.1.15";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/9.1.15";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-9.1.15.tar.gz";s:4:"date";s:10:"1637766681";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"9.1.14";a:10:{s:4:"name";s:13:"drupal 9.1.14";s:7:"version";s:6:"9.1.14";s:3:"tag";s:6:"9.1.14";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/9.1.14";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-9.1.14.tar.gz";s:4:"date";s:10:"1637185450";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"9.1.13";a:10:{s:4:"name";s:13:"drupal 9.1.13";s:7:"version";s:6:"9.1.13";s:3:"tag";s:6:"9.1.13";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/9.1.13";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-9.1.13.tar.gz";s:4:"date";s:10:"1631722011";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"9.1.12";a:10:{s:4:"name";s:13:"drupal 9.1.12";s:7:"version";s:6:"9.1.12";s:3:"tag";s:6:"9.1.12";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/9.1.12";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-9.1.12.tar.gz";s:4:"date";s:10:"1628791786";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"9.1.11";a:10:{s:4:"name";s:13:"drupal 9.1.11";s:7:"version";s:6:"9.1.11";s:3:"tag";s:6:"9.1.11";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/9.1.11";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-9.1.11.tar.gz";s:4:"date";s:10:"1626882849";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"9.1.10";a:10:{s:4:"name";s:13:"drupal 9.1.10";s:7:"version";s:6:"9.1.10";s:3:"tag";s:6:"9.1.10";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/9.1.10";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-9.1.10.tar.gz";s:4:"date";s:10:"1622828120";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"9.1.9";a:10:{s:4:"name";s:12:"drupal 9.1.9";s:7:"version";s:5:"9.1.9";s:3:"tag";s:5:"9.1.9";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/9.1.9";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-9.1.9.tar.gz";s:4:"date";s:10:"1622056478";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"9.1.8";a:10:{s:4:"name";s:12:"drupal 9.1.8";s:7:"version";s:5:"9.1.8";s:3:"tag";s:5:"9.1.8";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/9.1.8";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-9.1.8.tar.gz";s:4:"date";s:10:"1620214182";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"9.1.7";a:10:{s:4:"name";s:12:"drupal 9.1.7";s:7:"version";s:5:"9.1.7";s:3:"tag";s:5:"9.1.7";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/9.1.7";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-9.1.7.tar.gz";s:4:"date";s:10:"1619022156";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"9.1.6";a:10:{s:4:"name";s:12:"drupal 9.1.6";s:7:"version";s:5:"9.1.6";s:3:"tag";s:5:"9.1.6";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/9.1.6";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-9.1.6.tar.gz";s:4:"date";s:10:"1617795446";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"9.1.5";a:10:{s:4:"name";s:12:"drupal 9.1.5";s:7:"version";s:5:"9.1.5";s:3:"tag";s:5:"9.1.5";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/9.1.5";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-9.1.5.tar.gz";s:4:"date";s:10:"1614869503";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"9.1.4";a:10:{s:4:"name";s:12:"drupal 9.1.4";s:7:"version";s:5:"9.1.4";s:3:"tag";s:5:"9.1.4";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/9.1.4";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-9.1.4.tar.gz";s:4:"date";s:10:"1612380948";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"9.1.3";a:10:{s:4:"name";s:12:"drupal 9.1.3";s:7:"version";s:5:"9.1.3";s:3:"tag";s:5:"9.1.3";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/9.1.3";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-9.1.3.tar.gz";s:4:"date";s:10:"1611161215";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"9.1.2";a:10:{s:4:"name";s:12:"drupal 9.1.2";s:7:"version";s:5:"9.1.2";s:3:"tag";s:5:"9.1.2";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/9.1.2";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-9.1.2.tar.gz";s:4:"date";s:10:"1609984407";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:8:"Insecure";i:1;s:9:"Bug fixes";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"9.1.1";a:10:{s:4:"name";s:12:"drupal 9.1.1";s:7:"version";s:5:"9.1.1";s:3:"tag";s:5:"9.1.1";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/9.1.1";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-9.1.1.tar.gz";s:4:"date";s:10:"1609979034";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"9.1.0";a:10:{s:4:"name";s:12:"drupal 9.1.0";s:7:"version";s:5:"9.1.0";s:3:"tag";s:5:"9.1.0";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/9.1.0";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-9.1.0.tar.gz";s:4:"date";s:10:"1606933254";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";i:2;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:9:"9.1.0-rc3";a:10:{s:4:"name";s:16:"drupal 9.1.0-rc3";s:7:"version";s:9:"9.1.0-rc3";s:3:"tag";s:9:"9.1.0-rc3";s:6:"status";s:9:"published";s:12:"release_link";s:56:"https://www.drupal.org/project/drupal/releases/9.1.0-rc3";s:13:"download_link";s:61:"https://ftp.drupal.org/files/projects/drupal-9.1.0-rc3.tar.gz";s:4:"date";s:10:"1606357271";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:58:"RC releases are not covered by Drupal security advisories.";}s:9:"9.1.0-rc2";a:10:{s:4:"name";s:16:"drupal 9.1.0-rc2";s:7:"version";s:9:"9.1.0-rc2";s:3:"tag";s:9:"9.1.0-rc2";s:6:"status";s:9:"published";s:12:"release_link";s:56:"https://www.drupal.org/project/drupal/releases/9.1.0-rc2";s:13:"download_link";s:61:"https://ftp.drupal.org/files/projects/drupal-9.1.0-rc2.tar.gz";s:4:"date";s:10:"1606332982";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:58:"RC releases are not covered by Drupal security advisories.";}s:9:"9.1.0-rc1";a:10:{s:4:"name";s:16:"drupal 9.1.0-rc1";s:7:"version";s:9:"9.1.0-rc1";s:3:"tag";s:9:"9.1.0-rc1";s:6:"status";s:9:"published";s:12:"release_link";s:56:"https://www.drupal.org/project/drupal/releases/9.1.0-rc1";s:13:"download_link";s:61:"https://ftp.drupal.org/files/projects/drupal-9.1.0-rc1.tar.gz";s:4:"date";s:10:"1605722782";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:4:{i:0;s:15:"Security update";i:1;s:9:"Bug fixes";i:2;s:12:"New features";i:3;s:8:"Insecure";}}s:8:"security";s:58:"RC releases are not covered by Drupal security advisories.";}s:11:"9.1.0-beta1";a:10:{s:4:"name";s:18:"drupal 9.1.0-beta1";s:7:"version";s:11:"9.1.0-beta1";s:3:"tag";s:11:"9.1.0-beta1";s:6:"status";s:9:"published";s:12:"release_link";s:58:"https://www.drupal.org/project/drupal/releases/9.1.0-beta1";s:13:"download_link";s:63:"https://ftp.drupal.org/files/projects/drupal-9.1.0-beta1.tar.gz";s:4:"date";s:10:"1604672644";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";i:2;s:8:"Insecure";}}s:8:"security";s:60:"Beta releases are not covered by Drupal security advisories.";}s:12:"9.1.0-alpha1";a:10:{s:4:"name";s:19:"drupal 9.1.0-alpha1";s:7:"version";s:12:"9.1.0-alpha1";s:3:"tag";s:12:"9.1.0-alpha1";s:6:"status";s:9:"published";s:12:"release_link";s:59:"https://www.drupal.org/project/drupal/releases/9.1.0-alpha1";s:13:"download_link";s:64:"https://ftp.drupal.org/files/projects/drupal-9.1.0-alpha1.tar.gz";s:4:"date";s:10:"1603466665";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";i:2;s:8:"Insecure";}}s:8:"security";s:61:"Alpha releases are not covered by Drupal security advisories.";}s:6:"9.0.14";a:10:{s:4:"name";s:13:"drupal 9.0.14";s:7:"version";s:6:"9.0.14";s:3:"tag";s:6:"9.0.14";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/9.0.14";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-9.0.14.tar.gz";s:4:"date";s:10:"1622055778";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"9.0.13";a:10:{s:4:"name";s:13:"drupal 9.0.13";s:7:"version";s:6:"9.0.13";s:3:"tag";s:6:"9.0.13";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/9.0.13";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-9.0.13.tar.gz";s:4:"date";s:10:"1620218506";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"9.0.12";a:10:{s:4:"name";s:13:"drupal 9.0.12";s:7:"version";s:6:"9.0.12";s:3:"tag";s:6:"9.0.12";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/9.0.12";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-9.0.12.tar.gz";s:4:"date";s:10:"1619020951";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"9.0.11";a:10:{s:4:"name";s:13:"drupal 9.0.11";s:7:"version";s:6:"9.0.11";s:3:"tag";s:6:"9.0.11";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/9.0.11";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-9.0.11.tar.gz";s:4:"date";s:10:"1611161749";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"9.0.10";a:10:{s:4:"name";s:13:"drupal 9.0.10";s:7:"version";s:6:"9.0.10";s:3:"tag";s:6:"9.0.10";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/9.0.10";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-9.0.10.tar.gz";s:4:"date";s:10:"1607029536";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"9.0.9";a:10:{s:4:"name";s:12:"drupal 9.0.9";s:7:"version";s:5:"9.0.9";s:3:"tag";s:5:"9.0.9";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/9.0.9";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-9.0.9.tar.gz";s:4:"date";s:10:"1606359757";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"9.0.8";a:10:{s:4:"name";s:12:"drupal 9.0.8";s:7:"version";s:5:"9.0.8";s:3:"tag";s:5:"9.0.8";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/9.0.8";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-9.0.8.tar.gz";s:4:"date";s:10:"1605720638";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"9.0.7";a:10:{s:4:"name";s:12:"drupal 9.0.7";s:7:"version";s:5:"9.0.7";s:3:"tag";s:5:"9.0.7";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/9.0.7";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-9.0.7.tar.gz";s:4:"date";s:10:"1602100055";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"9.0.6";a:10:{s:4:"name";s:12:"drupal 9.0.6";s:7:"version";s:5:"9.0.6";s:3:"tag";s:5:"9.0.6";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/9.0.6";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-9.0.6.tar.gz";s:4:"date";s:10:"1600275813";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"9.0.5";a:10:{s:4:"name";s:12:"drupal 9.0.5";s:7:"version";s:5:"9.0.5";s:3:"tag";s:5:"9.0.5";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/9.0.5";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-9.0.5.tar.gz";s:4:"date";s:10:"1599167739";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"9.0.4";a:10:{s:4:"name";s:12:"drupal 9.0.4";s:7:"version";s:5:"9.0.4";s:3:"tag";s:5:"9.0.4";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/9.0.4";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-9.0.4.tar.gz";s:4:"date";s:10:"1599046734";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"9.0.3";a:10:{s:4:"name";s:12:"drupal 9.0.3";s:7:"version";s:5:"9.0.3";s:3:"tag";s:5:"9.0.3";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/9.0.3";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-9.0.3.tar.gz";s:4:"date";s:10:"1596664575";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"9.0.2";a:10:{s:4:"name";s:12:"drupal 9.0.2";s:7:"version";s:5:"9.0.2";s:3:"tag";s:5:"9.0.2";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/9.0.2";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-9.0.2.tar.gz";s:4:"date";s:10:"1594237418";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"9.0.1";a:10:{s:4:"name";s:12:"drupal 9.0.1";s:7:"version";s:5:"9.0.1";s:3:"tag";s:5:"9.0.1";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/9.0.1";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-9.0.1.tar.gz";s:4:"date";s:10:"1592417721";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"9.0.0";a:10:{s:4:"name";s:12:"drupal 9.0.0";s:7:"version";s:5:"9.0.0";s:3:"tag";s:5:"9.0.0";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/9.0.0";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-9.0.0.tar.gz";s:4:"date";s:10:"1591221685";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:8:"Insecure";i:1;s:9:"Bug fixes";i:2;s:12:"New features";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:9:"9.0.0-rc1";a:10:{s:4:"name";s:16:"drupal 9.0.0-rc1";s:7:"version";s:9:"9.0.0-rc1";s:3:"tag";s:9:"9.0.0-rc1";s:6:"status";s:9:"published";s:12:"release_link";s:56:"https://www.drupal.org/project/drupal/releases/9.0.0-rc1";s:13:"download_link";s:61:"https://ftp.drupal.org/files/projects/drupal-9.0.0-rc1.tar.gz";s:4:"date";s:10:"1590187579";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:58:"RC releases are not covered by Drupal security advisories.";}s:11:"9.0.0-beta3";a:10:{s:4:"name";s:18:"drupal 9.0.0-beta3";s:7:"version";s:11:"9.0.0-beta3";s:3:"tag";s:11:"9.0.0-beta3";s:6:"status";s:9:"published";s:12:"release_link";s:58:"https://www.drupal.org/project/drupal/releases/9.0.0-beta3";s:13:"download_link";s:63:"https://ftp.drupal.org/files/projects/drupal-9.0.0-beta3.tar.gz";s:4:"date";s:10:"1589587936";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";i:2;s:8:"Insecure";}}s:8:"security";s:60:"Beta releases are not covered by Drupal security advisories.";}s:11:"9.0.0-beta2";a:10:{s:4:"name";s:18:"drupal 9.0.0-beta2";s:7:"version";s:11:"9.0.0-beta2";s:3:"tag";s:11:"9.0.0-beta2";s:6:"status";s:9:"published";s:12:"release_link";s:58:"https://www.drupal.org/project/drupal/releases/9.0.0-beta2";s:13:"download_link";s:63:"https://ftp.drupal.org/files/projects/drupal-9.0.0-beta2.tar.gz";s:4:"date";s:10:"1585597395";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:15:"Security update";i:1;s:9:"Bug fixes";i:2;s:8:"Insecure";}}s:8:"security";s:60:"Beta releases are not covered by Drupal security advisories.";}s:11:"9.0.0-beta1";a:10:{s:4:"name";s:18:"drupal 9.0.0-beta1";s:7:"version";s:11:"9.0.0-beta1";s:3:"tag";s:11:"9.0.0-beta1";s:6:"status";s:9:"published";s:12:"release_link";s:58:"https://www.drupal.org/project/drupal/releases/9.0.0-beta1";s:13:"download_link";s:63:"https://ftp.drupal.org/files/projects/drupal-9.0.0-beta1.tar.gz";s:4:"date";s:10:"1584734060";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:60:"Beta releases are not covered by Drupal security advisories.";}s:12:"9.0.0-alpha2";a:10:{s:4:"name";s:19:"drupal 9.0.0-alpha2";s:7:"version";s:12:"9.0.0-alpha2";s:3:"tag";s:12:"9.0.0-alpha2";s:6:"status";s:9:"published";s:12:"release_link";s:59:"https://www.drupal.org/project/drupal/releases/9.0.0-alpha2";s:13:"download_link";s:64:"https://ftp.drupal.org/files/projects/drupal-9.0.0-alpha2.tar.gz";s:4:"date";s:10:"1583349043";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";i:2;s:8:"Insecure";}}s:8:"security";s:61:"Alpha releases are not covered by Drupal security advisories.";}s:12:"9.0.0-alpha1";a:10:{s:4:"name";s:19:"drupal 9.0.0-alpha1";s:7:"version";s:12:"9.0.0-alpha1";s:3:"tag";s:12:"9.0.0-alpha1";s:6:"status";s:9:"published";s:12:"release_link";s:59:"https://www.drupal.org/project/drupal/releases/9.0.0-alpha1";s:13:"download_link";s:64:"https://ftp.drupal.org/files/projects/drupal-9.0.0-alpha1.tar.gz";s:4:"date";s:10:"1581447927";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";i:2;s:8:"Insecure";}}s:8:"security";s:61:"Alpha releases are not covered by Drupal security advisories.";}s:6:"8.9.20";a:10:{s:4:"name";s:13:"drupal 8.9.20";s:7:"version";s:6:"8.9.20";s:3:"tag";s:6:"8.9.20";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/8.9.20";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-8.9.20.tar.gz";s:4:"date";s:10:"1637185966";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:1:{i:0;s:15:"Security update";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"8.9.19";a:10:{s:4:"name";s:13:"drupal 8.9.19";s:7:"version";s:6:"8.9.19";s:3:"tag";s:6:"8.9.19";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/8.9.19";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-8.9.19.tar.gz";s:4:"date";s:10:"1631722431";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"8.9.18";a:10:{s:4:"name";s:13:"drupal 8.9.18";s:7:"version";s:6:"8.9.18";s:3:"tag";s:6:"8.9.18";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/8.9.18";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-8.9.18.tar.gz";s:4:"date";s:10:"1628792296";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"8.9.17";a:10:{s:4:"name";s:13:"drupal 8.9.17";s:7:"version";s:6:"8.9.17";s:3:"tag";s:6:"8.9.17";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/8.9.17";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-8.9.17.tar.gz";s:4:"date";s:10:"1626883324";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"8.9.16";a:10:{s:4:"name";s:13:"drupal 8.9.16";s:7:"version";s:6:"8.9.16";s:3:"tag";s:6:"8.9.16";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/8.9.16";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-8.9.16.tar.gz";s:4:"date";s:10:"1622058087";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"8.9.15";a:10:{s:4:"name";s:13:"drupal 8.9.15";s:7:"version";s:6:"8.9.15";s:3:"tag";s:6:"8.9.15";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/8.9.15";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-8.9.15.tar.gz";s:4:"date";s:10:"1620216983";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"8.9.14";a:10:{s:4:"name";s:13:"drupal 8.9.14";s:7:"version";s:6:"8.9.14";s:3:"tag";s:6:"8.9.14";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/8.9.14";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-8.9.14.tar.gz";s:4:"date";s:10:"1619021518";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"8.9.13";a:10:{s:4:"name";s:13:"drupal 8.9.13";s:7:"version";s:6:"8.9.13";s:3:"tag";s:6:"8.9.13";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/8.9.13";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-8.9.13.tar.gz";s:4:"date";s:10:"1611162272";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"8.9.12";a:10:{s:4:"name";s:13:"drupal 8.9.12";s:7:"version";s:6:"8.9.12";s:3:"tag";s:6:"8.9.12";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/8.9.12";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-8.9.12.tar.gz";s:4:"date";s:10:"1609977009";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"8.9.11";a:10:{s:4:"name";s:13:"drupal 8.9.11";s:7:"version";s:6:"8.9.11";s:3:"tag";s:6:"8.9.11";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/8.9.11";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-8.9.11.tar.gz";s:4:"date";s:10:"1607030087";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"8.9.10";a:10:{s:4:"name";s:13:"drupal 8.9.10";s:7:"version";s:6:"8.9.10";s:3:"tag";s:6:"8.9.10";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/8.9.10";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-8.9.10.tar.gz";s:4:"date";s:10:"1606360301";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"8.9.9";a:10:{s:4:"name";s:12:"drupal 8.9.9";s:7:"version";s:5:"8.9.9";s:3:"tag";s:5:"8.9.9";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/8.9.9";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-8.9.9.tar.gz";s:4:"date";s:10:"1605721120";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"8.9.8";a:10:{s:4:"name";s:12:"drupal 8.9.8";s:7:"version";s:5:"8.9.8";s:3:"tag";s:5:"8.9.8";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/8.9.8";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-8.9.8.tar.gz";s:4:"date";s:10:"1604595269";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"8.9.7";a:10:{s:4:"name";s:12:"drupal 8.9.7";s:7:"version";s:5:"8.9.7";s:3:"tag";s:5:"8.9.7";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/8.9.7";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-8.9.7.tar.gz";s:4:"date";s:10:"1602100507";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"8.9.6";a:10:{s:4:"name";s:12:"drupal 8.9.6";s:7:"version";s:5:"8.9.6";s:3:"tag";s:5:"8.9.6";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/8.9.6";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-8.9.6.tar.gz";s:4:"date";s:10:"1600276267";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"8.9.5";a:10:{s:4:"name";s:12:"drupal 8.9.5";s:7:"version";s:5:"8.9.5";s:3:"tag";s:5:"8.9.5";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/8.9.5";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-8.9.5.tar.gz";s:4:"date";s:10:"1599168205";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"8.9.4";a:10:{s:4:"name";s:12:"drupal 8.9.4";s:7:"version";s:5:"8.9.4";s:3:"tag";s:5:"8.9.4";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/8.9.4";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-8.9.4.tar.gz";s:4:"date";s:10:"1599047691";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"8.9.3";a:10:{s:4:"name";s:12:"drupal 8.9.3";s:7:"version";s:5:"8.9.3";s:3:"tag";s:5:"8.9.3";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/8.9.3";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-8.9.3.tar.gz";s:4:"date";s:10:"1596665051";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"8.9.2";a:10:{s:4:"name";s:12:"drupal 8.9.2";s:7:"version";s:5:"8.9.2";s:3:"tag";s:5:"8.9.2";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/8.9.2";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-8.9.2.tar.gz";s:4:"date";s:10:"1594237961";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"8.9.1";a:10:{s:4:"name";s:12:"drupal 8.9.1";s:7:"version";s:5:"8.9.1";s:3:"tag";s:5:"8.9.1";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/8.9.1";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-8.9.1.tar.gz";s:4:"date";s:10:"1592418237";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"8.9.0";a:10:{s:4:"name";s:12:"drupal 8.9.0";s:7:"version";s:5:"8.9.0";s:3:"tag";s:5:"8.9.0";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/8.9.0";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-8.9.0.tar.gz";s:4:"date";s:10:"1591204117";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:8:"Insecure";i:1;s:9:"Bug fixes";i:2;s:12:"New features";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:9:"8.9.0-rc1";a:10:{s:4:"name";s:16:"drupal 8.9.0-rc1";s:7:"version";s:9:"8.9.0-rc1";s:3:"tag";s:9:"8.9.0-rc1";s:6:"status";s:9:"published";s:12:"release_link";s:56:"https://www.drupal.org/project/drupal/releases/8.9.0-rc1";s:13:"download_link";s:61:"https://ftp.drupal.org/files/projects/drupal-8.9.0-rc1.tar.gz";s:4:"date";s:10:"1590189096";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";i:2;s:8:"Insecure";}}s:8:"security";s:58:"RC releases are not covered by Drupal security advisories.";}s:11:"8.9.0-beta3";a:10:{s:4:"name";s:18:"drupal 8.9.0-beta3";s:7:"version";s:11:"8.9.0-beta3";s:3:"tag";s:11:"8.9.0-beta3";s:6:"status";s:9:"published";s:12:"release_link";s:58:"https://www.drupal.org/project/drupal/releases/8.9.0-beta3";s:13:"download_link";s:63:"https://ftp.drupal.org/files/projects/drupal-8.9.0-beta3.tar.gz";s:4:"date";s:10:"1589746375";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";i:2;s:8:"Insecure";}}s:8:"security";s:60:"Beta releases are not covered by Drupal security advisories.";}s:11:"8.9.0-beta2";a:10:{s:4:"name";s:18:"drupal 8.9.0-beta2";s:7:"version";s:11:"8.9.0-beta2";s:3:"tag";s:11:"8.9.0-beta2";s:6:"status";s:9:"published";s:12:"release_link";s:58:"https://www.drupal.org/project/drupal/releases/8.9.0-beta2";s:13:"download_link";s:63:"https://ftp.drupal.org/files/projects/drupal-8.9.0-beta2.tar.gz";s:4:"date";s:10:"1585863226";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";i:2;s:8:"Insecure";}}s:8:"security";s:60:"Beta releases are not covered by Drupal security advisories.";}s:11:"8.9.0-beta1";a:10:{s:4:"name";s:18:"drupal 8.9.0-beta1";s:7:"version";s:11:"8.9.0-beta1";s:3:"tag";s:11:"8.9.0-beta1";s:6:"status";s:9:"published";s:12:"release_link";s:58:"https://www.drupal.org/project/drupal/releases/8.9.0-beta1";s:13:"download_link";s:63:"https://ftp.drupal.org/files/projects/drupal-8.9.0-beta1.tar.gz";s:4:"date";s:10:"1585263710";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:8:"Insecure";i:1;s:9:"Bug fixes";i:2;s:12:"New features";}}s:8:"security";s:60:"Beta releases are not covered by Drupal security advisories.";}s:6:"8.8.12";a:10:{s:4:"name";s:13:"drupal 8.8.12";s:7:"version";s:6:"8.8.12";s:3:"tag";s:6:"8.8.12";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/8.8.12";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-8.8.12.tar.gz";s:4:"date";s:10:"1606360866";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"8.8.11";a:10:{s:4:"name";s:13:"drupal 8.8.11";s:7:"version";s:6:"8.8.11";s:3:"tag";s:6:"8.8.11";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/8.8.11";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-8.8.11.tar.gz";s:4:"date";s:10:"1605721628";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"8.8.10";a:10:{s:4:"name";s:13:"drupal 8.8.10";s:7:"version";s:6:"8.8.10";s:3:"tag";s:6:"8.8.10";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/8.8.10";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-8.8.10.tar.gz";s:4:"date";s:10:"1600276704";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"8.8.9";a:10:{s:4:"name";s:12:"drupal 8.8.9";s:7:"version";s:5:"8.8.9";s:3:"tag";s:5:"8.8.9";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/8.8.9";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-8.8.9.tar.gz";s:4:"date";s:10:"1599168716";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"8.8.8";a:10:{s:4:"name";s:12:"drupal 8.8.8";s:7:"version";s:5:"8.8.8";s:3:"tag";s:5:"8.8.8";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/8.8.8";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-8.8.8.tar.gz";s:4:"date";s:10:"1592418750";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"8.8.7";a:10:{s:4:"name";s:12:"drupal 8.8.7";s:7:"version";s:5:"8.8.7";s:3:"tag";s:5:"8.8.7";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/8.8.7";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-8.8.7.tar.gz";s:4:"date";s:10:"1591203837";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"8.8.6";a:10:{s:4:"name";s:12:"drupal 8.8.6";s:7:"version";s:5:"8.8.6";s:3:"tag";s:5:"8.8.6";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/8.8.6";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-8.8.6.tar.gz";s:4:"date";s:10:"1589989060";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"8.8.5";a:10:{s:4:"name";s:12:"drupal 8.8.5";s:7:"version";s:5:"8.8.5";s:3:"tag";s:5:"8.8.5";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/8.8.5";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-8.8.5.tar.gz";s:4:"date";s:10:"1585861530";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"8.8.4";a:10:{s:4:"name";s:12:"drupal 8.8.4";s:7:"version";s:5:"8.8.4";s:3:"tag";s:5:"8.8.4";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/8.8.4";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-8.8.4.tar.gz";s:4:"date";s:10:"1584560524";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"8.8.3";a:10:{s:4:"name";s:12:"drupal 8.8.3";s:7:"version";s:5:"8.8.3";s:3:"tag";s:5:"8.8.3";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/8.8.3";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-8.8.3.tar.gz";s:4:"date";s:10:"1583347094";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"8.8.2";a:10:{s:4:"name";s:12:"drupal 8.8.2";s:7:"version";s:5:"8.8.2";s:3:"tag";s:5:"8.8.2";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/8.8.2";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-8.8.2.tar.gz";s:4:"date";s:10:"1580598849";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"8.8.1";a:10:{s:4:"name";s:12:"drupal 8.8.1";s:7:"version";s:5:"8.8.1";s:3:"tag";s:5:"8.8.1";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/8.8.1";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-8.8.1.tar.gz";s:4:"date";s:10:"1576695785";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"8.8.0";a:10:{s:4:"name";s:12:"drupal 8.8.0";s:7:"version";s:5:"8.8.0";s:3:"tag";s:5:"8.8.0";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/8.8.0";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-8.8.0.tar.gz";s:4:"date";s:10:"1575450481";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:8:"Insecure";i:1;s:9:"Bug fixes";i:2;s:12:"New features";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:9:"8.8.0-rc1";a:10:{s:4:"name";s:16:"drupal 8.8.0-rc1";s:7:"version";s:9:"8.8.0-rc1";s:3:"tag";s:9:"8.8.0-rc1";s:6:"status";s:9:"published";s:12:"release_link";s:56:"https://www.drupal.org/project/drupal/releases/8.8.0-rc1";s:13:"download_link";s:61:"https://ftp.drupal.org/files/projects/drupal-8.8.0-rc1.tar.gz";s:4:"date";s:10:"1574462580";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";i:2;s:8:"Insecure";}}s:8:"security";s:58:"RC releases are not covered by Drupal security advisories.";}s:11:"8.8.0-beta1";a:10:{s:4:"name";s:18:"drupal 8.8.0-beta1";s:7:"version";s:11:"8.8.0-beta1";s:3:"tag";s:11:"8.8.0-beta1";s:6:"status";s:9:"published";s:12:"release_link";s:58:"https://www.drupal.org/project/drupal/releases/8.8.0-beta1";s:13:"download_link";s:63:"https://ftp.drupal.org/files/projects/drupal-8.8.0-beta1.tar.gz";s:4:"date";s:10:"1573256280";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";i:2;s:8:"Insecure";}}s:8:"security";s:60:"Beta releases are not covered by Drupal security advisories.";}s:12:"8.8.0-alpha1";a:10:{s:4:"name";s:19:"drupal 8.8.0-alpha1";s:7:"version";s:12:"8.8.0-alpha1";s:3:"tag";s:12:"8.8.0-alpha1";s:6:"status";s:9:"published";s:12:"release_link";s:59:"https://www.drupal.org/project/drupal/releases/8.8.0-alpha1";s:13:"download_link";s:64:"https://ftp.drupal.org/files/projects/drupal-8.8.0-alpha1.tar.gz";s:4:"date";s:10:"1571355784";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";i:2;s:8:"Insecure";}}s:8:"security";s:61:"Alpha releases are not covered by Drupal security advisories.";}s:6:"8.7.14";a:10:{s:4:"name";s:13:"drupal 8.7.14";s:7:"version";s:6:"8.7.14";s:3:"tag";s:6:"8.7.14";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/8.7.14";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-8.7.14.tar.gz";s:4:"date";s:10:"1589988665";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"8.7.13";a:10:{s:4:"name";s:13:"drupal 8.7.13";s:7:"version";s:6:"8.7.13";s:3:"tag";s:6:"8.7.13";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/8.7.13";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-8.7.13.tar.gz";s:4:"date";s:10:"1585861883";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"8.7.12";a:10:{s:4:"name";s:13:"drupal 8.7.12";s:7:"version";s:6:"8.7.12";s:3:"tag";s:6:"8.7.12";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/8.7.12";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-8.7.12.tar.gz";s:4:"date";s:10:"1584552250";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"8.7.11";a:10:{s:4:"name";s:13:"drupal 8.7.11";s:7:"version";s:6:"8.7.11";s:3:"tag";s:6:"8.7.11";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/8.7.11";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-8.7.11.tar.gz";s:4:"date";s:10:"1576695785";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"8.7.10";a:10:{s:4:"name";s:13:"drupal 8.7.10";s:7:"version";s:6:"8.7.10";s:3:"tag";s:6:"8.7.10";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/8.7.10";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-8.7.10.tar.gz";s:4:"date";s:10:"1573687985";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"8.7.9";a:10:{s:4:"name";s:12:"drupal 8.7.9";s:7:"version";s:5:"8.7.9";s:3:"tag";s:5:"8.7.9";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/8.7.9";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-8.7.9.tar.gz";s:4:"date";s:10:"1573063387";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"8.7.8";a:10:{s:4:"name";s:12:"drupal 8.7.8";s:7:"version";s:5:"8.7.8";s:3:"tag";s:5:"8.7.8";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/8.7.8";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-8.7.8.tar.gz";s:4:"date";s:10:"1570044484";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"8.7.7";a:10:{s:4:"name";s:12:"drupal 8.7.7";s:7:"version";s:5:"8.7.7";s:3:"tag";s:5:"8.7.7";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/8.7.7";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-8.7.7.tar.gz";s:4:"date";s:10:"1567593185";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"8.7.6";a:10:{s:4:"name";s:12:"drupal 8.7.6";s:7:"version";s:5:"8.7.6";s:3:"tag";s:5:"8.7.6";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/8.7.6";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-8.7.6.tar.gz";s:4:"date";s:10:"1565206385";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"8.7.5";a:10:{s:4:"name";s:12:"drupal 8.7.5";s:7:"version";s:5:"8.7.5";s:3:"tag";s:5:"8.7.5";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/8.7.5";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-8.7.5.tar.gz";s:4:"date";s:10:"1563380885";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"8.7.4";a:10:{s:4:"name";s:12:"drupal 8.7.4";s:7:"version";s:5:"8.7.4";s:3:"tag";s:5:"8.7.4";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/8.7.4";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-8.7.4.tar.gz";s:4:"date";s:10:"1562225587";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"8.7.3";a:10:{s:4:"name";s:12:"drupal 8.7.3";s:7:"version";s:5:"8.7.3";s:3:"tag";s:5:"8.7.3";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/8.7.3";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-8.7.3.tar.gz";s:4:"date";s:10:"1559762581";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"8.7.2";a:10:{s:4:"name";s:12:"drupal 8.7.2";s:7:"version";s:5:"8.7.2";s:3:"tag";s:5:"8.7.2";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/8.7.2";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-8.7.2.tar.gz";s:4:"date";s:10:"1558597086";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"8.7.1";a:10:{s:4:"name";s:12:"drupal 8.7.1";s:7:"version";s:5:"8.7.1";s:3:"tag";s:5:"8.7.1";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/8.7.1";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-8.7.1.tar.gz";s:4:"date";s:10:"1557335588";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"8.7.0";a:10:{s:4:"name";s:12:"drupal 8.7.0";s:7:"version";s:5:"8.7.0";s:3:"tag";s:5:"8.7.0";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/8.7.0";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-8.7.0.tar.gz";s:4:"date";s:10:"1556737085";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";i:2;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:9:"8.7.0-rc1";a:10:{s:4:"name";s:16:"drupal 8.7.0-rc1";s:7:"version";s:9:"8.7.0-rc1";s:3:"tag";s:9:"8.7.0-rc1";s:6:"status";s:9:"published";s:12:"release_link";s:56:"https://www.drupal.org/project/drupal/releases/8.7.0-rc1";s:13:"download_link";s:61:"https://ftp.drupal.org/files/projects/drupal-8.7.0-rc1.tar.gz";s:4:"date";s:10:"1555603385";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:4:{i:0;s:15:"Security update";i:1;s:9:"Bug fixes";i:2;s:12:"New features";i:3;s:8:"Insecure";}}s:8:"security";s:58:"RC releases are not covered by Drupal security advisories.";}s:11:"8.7.0-beta2";a:10:{s:4:"name";s:18:"drupal 8.7.0-beta2";s:7:"version";s:11:"8.7.0-beta2";s:3:"tag";s:11:"8.7.0-beta2";s:6:"status";s:9:"published";s:12:"release_link";s:58:"https://www.drupal.org/project/drupal/releases/8.7.0-beta2";s:13:"download_link";s:63:"https://ftp.drupal.org/files/projects/drupal-8.7.0-beta2.tar.gz";s:4:"date";s:10:"1554684784";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:8:"Insecure";i:1;s:9:"Bug fixes";i:2;s:12:"New features";}}s:8:"security";s:60:"Beta releases are not covered by Drupal security advisories.";}s:11:"8.7.0-beta1";a:10:{s:4:"name";s:18:"drupal 8.7.0-beta1";s:7:"version";s:11:"8.7.0-beta1";s:3:"tag";s:11:"8.7.0-beta1";s:6:"status";s:9:"published";s:12:"release_link";s:58:"https://www.drupal.org/project/drupal/releases/8.7.0-beta1";s:13:"download_link";s:63:"https://ftp.drupal.org/files/projects/drupal-8.7.0-beta1.tar.gz";s:4:"date";s:10:"1553881681";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";i:2;s:8:"Insecure";}}s:8:"security";s:60:"Beta releases are not covered by Drupal security advisories.";}s:12:"8.7.0-alpha2";a:10:{s:4:"name";s:19:"drupal 8.7.0-alpha2";s:7:"version";s:12:"8.7.0-alpha2";s:3:"tag";s:12:"8.7.0-alpha2";s:6:"status";s:9:"published";s:12:"release_link";s:59:"https://www.drupal.org/project/drupal/releases/8.7.0-alpha2";s:13:"download_link";s:64:"https://ftp.drupal.org/files/projects/drupal-8.7.0-alpha2.tar.gz";s:4:"date";s:10:"1553106180";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";i:2;s:8:"Insecure";}}s:8:"security";s:61:"Alpha releases are not covered by Drupal security advisories.";}s:12:"8.7.0-alpha1";a:10:{s:4:"name";s:19:"drupal 8.7.0-alpha1";s:7:"version";s:12:"8.7.0-alpha1";s:3:"tag";s:12:"8.7.0-alpha1";s:6:"status";s:9:"published";s:12:"release_link";s:59:"https://www.drupal.org/project/drupal/releases/8.7.0-alpha1";s:13:"download_link";s:64:"https://ftp.drupal.org/files/projects/drupal-8.7.0-alpha1.tar.gz";s:4:"date";s:10:"1552602484";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";i:2;s:8:"Insecure";}}s:8:"security";s:61:"Alpha releases are not covered by Drupal security advisories.";}s:6:"8.6.18";a:10:{s:4:"name";s:13:"drupal 8.6.18";s:7:"version";s:6:"8.6.18";s:3:"tag";s:6:"8.6.18";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/8.6.18";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-8.6.18.tar.gz";s:4:"date";s:10:"1573687985";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"8.6.17";a:10:{s:4:"name";s:13:"drupal 8.6.17";s:7:"version";s:6:"8.6.17";s:3:"tag";s:6:"8.6.17";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/8.6.17";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-8.6.17.tar.gz";s:4:"date";s:10:"1560756785";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"8.6.16";a:10:{s:4:"name";s:13:"drupal 8.6.16";s:7:"version";s:6:"8.6.16";s:3:"tag";s:6:"8.6.16";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/8.6.16";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-8.6.16.tar.gz";s:4:"date";s:10:"1557335588";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"8.6.15";a:10:{s:4:"name";s:13:"drupal 8.6.15";s:7:"version";s:6:"8.6.15";s:3:"tag";s:6:"8.6.15";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/8.6.15";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-8.6.15.tar.gz";s:4:"date";s:10:"1555533181";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:8:"Insecure";i:1;s:15:"Security update";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"8.6.14";a:10:{s:4:"name";s:13:"drupal 8.6.14";s:7:"version";s:6:"8.6.14";s:3:"tag";s:6:"8.6.14";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/8.6.14";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-8.6.14.tar.gz";s:4:"date";s:10:"1554688384";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:8:"Insecure";i:1;s:9:"Bug fixes";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"8.6.13";a:10:{s:4:"name";s:13:"drupal 8.6.13";s:7:"version";s:6:"8.6.13";s:3:"tag";s:6:"8.6.13";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/8.6.13";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-8.6.13.tar.gz";s:4:"date";s:10:"1553099584";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"8.6.12";a:10:{s:4:"name";s:13:"drupal 8.6.12";s:7:"version";s:6:"8.6.12";s:3:"tag";s:6:"8.6.12";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/8.6.12";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-8.6.12.tar.gz";s:4:"date";s:10:"1552601584";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"8.6.11";a:10:{s:4:"name";s:13:"drupal 8.6.11";s:7:"version";s:6:"8.6.11";s:3:"tag";s:6:"8.6.11";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/8.6.11";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-8.6.11.tar.gz";s:4:"date";s:10:"1552511584";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"8.6.10";a:10:{s:4:"name";s:13:"drupal 8.6.10";s:7:"version";s:6:"8.6.10";s:3:"tag";s:6:"8.6.10";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/8.6.10";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-8.6.10.tar.gz";s:4:"date";s:10:"1550691784";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"8.6.9";a:10:{s:4:"name";s:12:"drupal 8.6.9";s:7:"version";s:5:"8.6.9";s:3:"tag";s:5:"8.6.9";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/8.6.9";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-8.6.9.tar.gz";s:4:"date";s:10:"1549628580";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"8.6.8";a:10:{s:4:"name";s:12:"drupal 8.6.8";s:7:"version";s:5:"8.6.8";s:3:"tag";s:5:"8.6.8";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/8.6.8";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-8.6.8.tar.gz";s:4:"date";s:10:"1549466580";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"8.6.7";a:10:{s:4:"name";s:12:"drupal 8.6.7";s:7:"version";s:5:"8.6.7";s:3:"tag";s:5:"8.6.7";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/8.6.7";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-8.6.7.tar.gz";s:4:"date";s:10:"1547682180";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"8.6.6";a:10:{s:4:"name";s:12:"drupal 8.6.6";s:7:"version";s:5:"8.6.6";s:3:"tag";s:5:"8.6.6";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/8.6.6";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-8.6.6.tar.gz";s:4:"date";s:10:"1547663557";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"8.6.5";a:10:{s:4:"name";s:12:"drupal 8.6.5";s:7:"version";s:5:"8.6.5";s:3:"tag";s:5:"8.6.5";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/8.6.5";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-8.6.5.tar.gz";s:4:"date";s:10:"1546467485";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"8.6.4";a:10:{s:4:"name";s:12:"drupal 8.6.4";s:7:"version";s:5:"8.6.4";s:3:"tag";s:5:"8.6.4";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/8.6.4";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-8.6.4.tar.gz";s:4:"date";s:10:"1544011681";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"8.6.3";a:10:{s:4:"name";s:12:"drupal 8.6.3";s:7:"version";s:5:"8.6.3";s:3:"tag";s:5:"8.6.3";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/8.6.3";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-8.6.3.tar.gz";s:4:"date";s:10:"1541602684";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"8.6.2";a:10:{s:4:"name";s:12:"drupal 8.6.2";s:7:"version";s:5:"8.6.2";s:3:"tag";s:5:"8.6.2";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/8.6.2";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-8.6.2.tar.gz";s:4:"date";s:10:"1539816180";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"8.6.1";a:10:{s:4:"name";s:12:"drupal 8.6.1";s:7:"version";s:5:"8.6.1";s:3:"tag";s:5:"8.6.1";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/8.6.1";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-8.6.1.tar.gz";s:4:"date";s:10:"1536585780";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"8.6.0";a:10:{s:4:"name";s:12:"drupal 8.6.0";s:7:"version";s:5:"8.6.0";s:3:"tag";s:5:"8.6.0";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/8.6.0";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-8.6.0.tar.gz";s:4:"date";s:10:"1536186480";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";i:2;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:9:"8.6.0-rc1";a:10:{s:4:"name";s:16:"drupal 8.6.0-rc1";s:7:"version";s:9:"8.6.0-rc1";s:3:"tag";s:9:"8.6.0-rc1";s:6:"status";s:9:"published";s:12:"release_link";s:56:"https://www.drupal.org/project/drupal/releases/8.6.0-rc1";s:13:"download_link";s:61:"https://ftp.drupal.org/files/projects/drupal-8.6.0-rc1.tar.gz";s:4:"date";s:10:"1534532580";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";i:2;s:8:"Insecure";}}s:8:"security";s:58:"RC releases are not covered by Drupal security advisories.";}s:11:"8.6.0-beta2";a:10:{s:4:"name";s:18:"drupal 8.6.0-beta2";s:7:"version";s:11:"8.6.0-beta2";s:3:"tag";s:11:"8.6.0-beta2";s:6:"status";s:9:"published";s:12:"release_link";s:58:"https://www.drupal.org/project/drupal/releases/8.6.0-beta2";s:13:"download_link";s:63:"https://ftp.drupal.org/files/projects/drupal-8.6.0-beta2.tar.gz";s:4:"date";s:10:"1533298080";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";i:2;s:8:"Insecure";}}s:8:"security";s:60:"Beta releases are not covered by Drupal security advisories.";}s:11:"8.6.0-beta1";a:10:{s:4:"name";s:18:"drupal 8.6.0-beta1";s:7:"version";s:11:"8.6.0-beta1";s:3:"tag";s:11:"8.6.0-beta1";s:6:"status";s:9:"published";s:12:"release_link";s:58:"https://www.drupal.org/project/drupal/releases/8.6.0-beta1";s:13:"download_link";s:63:"https://ftp.drupal.org/files/projects/drupal-8.6.0-beta1.tar.gz";s:4:"date";s:10:"1533270485";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:8:"Insecure";i:1;s:9:"Bug fixes";i:2;s:12:"New features";}}s:8:"security";s:60:"Beta releases are not covered by Drupal security advisories.";}s:12:"8.6.0-alpha1";a:10:{s:4:"name";s:19:"drupal 8.6.0-alpha1";s:7:"version";s:12:"8.6.0-alpha1";s:3:"tag";s:12:"8.6.0-alpha1";s:6:"status";s:9:"published";s:12:"release_link";s:59:"https://www.drupal.org/project/drupal/releases/8.6.0-alpha1";s:13:"download_link";s:64:"https://ftp.drupal.org/files/projects/drupal-8.6.0-alpha1.tar.gz";s:4:"date";s:10:"1532033881";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:8:"Insecure";i:1;s:9:"Bug fixes";i:2;s:12:"New features";}}s:8:"security";s:61:"Alpha releases are not covered by Drupal security advisories.";}s:6:"8.5.15";a:10:{s:4:"name";s:13:"drupal 8.5.15";s:7:"version";s:6:"8.5.15";s:3:"tag";s:6:"8.5.15";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/8.5.15";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-8.5.15.tar.gz";s:4:"date";s:10:"1555533181";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:8:"Insecure";i:1;s:15:"Security update";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"8.5.14";a:10:{s:4:"name";s:13:"drupal 8.5.14";s:7:"version";s:6:"8.5.14";s:3:"tag";s:6:"8.5.14";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/8.5.14";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-8.5.14.tar.gz";s:4:"date";s:10:"1553099584";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:8:"Insecure";i:1;s:15:"Security update";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"8.5.13";a:10:{s:4:"name";s:13:"drupal 8.5.13";s:7:"version";s:6:"8.5.13";s:3:"tag";s:6:"8.5.13";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/8.5.13";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-8.5.13.tar.gz";s:4:"date";s:10:"1552601584";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:8:"Insecure";i:1;s:9:"Bug fixes";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"8.5.12";a:10:{s:4:"name";s:13:"drupal 8.5.12";s:7:"version";s:6:"8.5.12";s:3:"tag";s:6:"8.5.12";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/8.5.12";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-8.5.12.tar.gz";s:4:"date";s:10:"1552511584";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:8:"Insecure";i:1;s:9:"Bug fixes";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"8.5.11";a:10:{s:4:"name";s:13:"drupal 8.5.11";s:7:"version";s:6:"8.5.11";s:3:"tag";s:6:"8.5.11";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/8.5.11";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-8.5.11.tar.gz";s:4:"date";s:10:"1550691784";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:8:"Insecure";i:1;s:15:"Security update";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:6:"8.5.10";a:10:{s:4:"name";s:13:"drupal 8.5.10";s:7:"version";s:6:"8.5.10";s:3:"tag";s:6:"8.5.10";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/8.5.10";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-8.5.10.tar.gz";s:4:"date";s:10:"1547682180";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:8:"Insecure";i:1;s:9:"Bug fixes";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"8.5.9";a:10:{s:4:"name";s:12:"drupal 8.5.9";s:7:"version";s:5:"8.5.9";s:3:"tag";s:5:"8.5.9";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/8.5.9";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-8.5.9.tar.gz";s:4:"date";s:10:"1547663557";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:8:"Insecure";i:1;s:15:"Security update";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"8.5.8";a:10:{s:4:"name";s:12:"drupal 8.5.8";s:7:"version";s:5:"8.5.8";s:3:"tag";s:5:"8.5.8";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/8.5.8";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-8.5.8.tar.gz";s:4:"date";s:10:"1539816180";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:8:"Insecure";i:1;s:15:"Security update";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"8.5.7";a:10:{s:4:"name";s:12:"drupal 8.5.7";s:7:"version";s:5:"8.5.7";s:3:"tag";s:5:"8.5.7";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/8.5.7";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-8.5.7.tar.gz";s:4:"date";s:10:"1536187080";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"8.5.6";a:10:{s:4:"name";s:12:"drupal 8.5.6";s:7:"version";s:5:"8.5.6";s:3:"tag";s:5:"8.5.6";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/8.5.6";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-8.5.6.tar.gz";s:4:"date";s:10:"1533156780";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"8.5.5";a:10:{s:4:"name";s:12:"drupal 8.5.5";s:7:"version";s:5:"8.5.5";s:3:"tag";s:5:"8.5.5";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/8.5.5";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-8.5.5.tar.gz";s:4:"date";s:10:"1530738820";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"8.5.4";a:10:{s:4:"name";s:12:"drupal 8.5.4";s:7:"version";s:5:"8.5.4";s:3:"tag";s:5:"8.5.4";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/8.5.4";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-8.5.4.tar.gz";s:4:"date";s:10:"1528319584";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"8.5.3";a:10:{s:4:"name";s:12:"drupal 8.5.3";s:7:"version";s:5:"8.5.3";s:3:"tag";s:5:"8.5.3";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/8.5.3";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-8.5.3.tar.gz";s:4:"date";s:10:"1524672780";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"8.5.2";a:10:{s:4:"name";s:12:"drupal 8.5.2";s:7:"version";s:5:"8.5.2";s:3:"tag";s:5:"8.5.2";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/8.5.2";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-8.5.2.tar.gz";s:4:"date";s:10:"1524073147";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"8.5.1";a:10:{s:4:"name";s:12:"drupal 8.5.1";s:7:"version";s:5:"8.5.1";s:3:"tag";s:5:"8.5.1";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/8.5.1";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-8.5.1.tar.gz";s:4:"date";s:10:"1522263480";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"8.5.0";a:10:{s:4:"name";s:12:"drupal 8.5.0";s:7:"version";s:5:"8.5.0";s:3:"tag";s:5:"8.5.0";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/8.5.0";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-8.5.0.tar.gz";s:4:"date";s:10:"1520457780";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";i:2;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:9:"8.5.0-rc1";a:10:{s:4:"name";s:16:"drupal 8.5.0-rc1";s:7:"version";s:9:"8.5.0-rc1";s:3:"tag";s:9:"8.5.0-rc1";s:6:"status";s:9:"published";s:12:"release_link";s:56:"https://www.drupal.org/project/drupal/releases/8.5.0-rc1";s:13:"download_link";s:61:"https://ftp.drupal.org/files/projects/drupal-8.5.0-rc1.tar.gz";s:4:"date";s:10:"1519234680";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:4:{i:0;s:8:"Insecure";i:1;s:15:"Security update";i:2;s:9:"Bug fixes";i:3;s:12:"New features";}}s:8:"security";s:58:"RC releases are not covered by Drupal security advisories.";}s:11:"8.5.0-beta1";a:10:{s:4:"name";s:18:"drupal 8.5.0-beta1";s:7:"version";s:11:"8.5.0-beta1";s:3:"tag";s:11:"8.5.0-beta1";s:6:"status";s:9:"published";s:12:"release_link";s:58:"https://www.drupal.org/project/drupal/releases/8.5.0-beta1";s:13:"download_link";s:63:"https://ftp.drupal.org/files/projects/drupal-8.5.0-beta1.tar.gz";s:4:"date";s:10:"1518211380";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";i:2;s:8:"Insecure";}}s:8:"security";s:60:"Beta releases are not covered by Drupal security advisories.";}s:12:"8.5.0-alpha1";a:10:{s:4:"name";s:19:"drupal 8.5.0-alpha1";s:7:"version";s:12:"8.5.0-alpha1";s:3:"tag";s:12:"8.5.0-alpha1";s:6:"status";s:9:"published";s:12:"release_link";s:59:"https://www.drupal.org/project/drupal/releases/8.5.0-alpha1";s:13:"download_link";s:64:"https://ftp.drupal.org/files/projects/drupal-8.5.0-alpha1.tar.gz";s:4:"date";s:10:"1516320484";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";i:2;s:8:"Insecure";}}s:8:"security";s:61:"Alpha releases are not covered by Drupal security advisories.";}s:5:"8.4.8";a:10:{s:4:"name";s:12:"drupal 8.4.8";s:7:"version";s:5:"8.4.8";s:3:"tag";s:5:"8.4.8";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/8.4.8";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-8.4.8.tar.gz";s:4:"date";s:10:"1524672780";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"8.4.7";a:10:{s:4:"name";s:12:"drupal 8.4.7";s:7:"version";s:5:"8.4.7";s:3:"tag";s:5:"8.4.7";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/8.4.7";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-8.4.7.tar.gz";s:4:"date";s:10:"1524073147";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"8.4.6";a:10:{s:4:"name";s:12:"drupal 8.4.6";s:7:"version";s:5:"8.4.6";s:3:"tag";s:5:"8.4.6";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/8.4.6";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-8.4.6.tar.gz";s:4:"date";s:10:"1522263480";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"8.4.5";a:10:{s:4:"name";s:12:"drupal 8.4.5";s:7:"version";s:5:"8.4.5";s:3:"tag";s:5:"8.4.5";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/8.4.5";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-8.4.5.tar.gz";s:4:"date";s:10:"1519234680";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:8:"Insecure";i:1;s:15:"Security update";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"8.4.4";a:10:{s:4:"name";s:12:"drupal 8.4.4";s:7:"version";s:5:"8.4.4";s:3:"tag";s:5:"8.4.4";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/8.4.4";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-8.4.4.tar.gz";s:4:"date";s:10:"1515021185";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"8.4.3";a:10:{s:4:"name";s:12:"drupal 8.4.3";s:7:"version";s:5:"8.4.3";s:3:"tag";s:5:"8.4.3";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/8.4.3";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-8.4.3.tar.gz";s:4:"date";s:10:"1512600784";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"8.4.2";a:10:{s:4:"name";s:12:"drupal 8.4.2";s:7:"version";s:5:"8.4.2";s:3:"tag";s:5:"8.4.2";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/8.4.2";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-8.4.2.tar.gz";s:4:"date";s:10:"1509719885";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"8.4.1";a:10:{s:4:"name";s:12:"drupal 8.4.1";s:7:"version";s:5:"8.4.1";s:3:"tag";s:5:"8.4.1";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/8.4.1";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-8.4.1.tar.gz";s:4:"date";s:10:"1509562384";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"8.4.0";a:10:{s:4:"name";s:12:"drupal 8.4.0";s:7:"version";s:5:"8.4.0";s:3:"tag";s:5:"8.4.0";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/8.4.0";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-8.4.0.tar.gz";s:4:"date";s:10:"1507146244";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";i:2;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:9:"8.4.0-rc2";a:10:{s:4:"name";s:16:"drupal 8.4.0-rc2";s:7:"version";s:9:"8.4.0-rc2";s:3:"tag";s:9:"8.4.0-rc2";s:6:"status";s:9:"published";s:12:"release_link";s:56:"https://www.drupal.org/project/drupal/releases/8.4.0-rc2";s:13:"download_link";s:61:"https://ftp.drupal.org/files/projects/drupal-8.4.0-rc2.tar.gz";s:4:"date";s:10:"1505911444";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:8:"Insecure";i:1;s:9:"Bug fixes";i:2;s:12:"New features";}}s:8:"security";s:58:"RC releases are not covered by Drupal security advisories.";}s:9:"8.4.0-rc1";a:10:{s:4:"name";s:16:"drupal 8.4.0-rc1";s:7:"version";s:9:"8.4.0-rc1";s:3:"tag";s:9:"8.4.0-rc1";s:6:"status";s:9:"published";s:12:"release_link";s:56:"https://www.drupal.org/project/drupal/releases/8.4.0-rc1";s:13:"download_link";s:61:"https://ftp.drupal.org/files/projects/drupal-8.4.0-rc1.tar.gz";s:4:"date";s:10:"1504733043";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";i:2;s:8:"Insecure";}}s:8:"security";s:58:"RC releases are not covered by Drupal security advisories.";}s:11:"8.4.0-beta1";a:10:{s:4:"name";s:18:"drupal 8.4.0-beta1";s:7:"version";s:11:"8.4.0-beta1";s:3:"tag";s:11:"8.4.0-beta1";s:6:"status";s:9:"published";s:12:"release_link";s:58:"https://www.drupal.org/project/drupal/releases/8.4.0-beta1";s:13:"download_link";s:63:"https://ftp.drupal.org/files/projects/drupal-8.4.0-beta1.tar.gz";s:4:"date";s:10:"1502992144";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";i:2;s:8:"Insecure";}}s:8:"security";s:60:"Beta releases are not covered by Drupal security advisories.";}s:12:"8.4.0-alpha1";a:10:{s:4:"name";s:19:"drupal 8.4.0-alpha1";s:7:"version";s:12:"8.4.0-alpha1";s:3:"tag";s:12:"8.4.0-alpha1";s:6:"status";s:9:"published";s:12:"release_link";s:59:"https://www.drupal.org/project/drupal/releases/8.4.0-alpha1";s:13:"download_link";s:64:"https://ftp.drupal.org/files/projects/drupal-8.4.0-alpha1.tar.gz";s:4:"date";s:10:"1501790944";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";i:2;s:8:"Insecure";}}s:8:"security";s:61:"Alpha releases are not covered by Drupal security advisories.";}s:5:"8.3.9";a:10:{s:4:"name";s:12:"drupal 8.3.9";s:7:"version";s:5:"8.3.9";s:3:"tag";s:5:"8.3.9";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/8.3.9";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-8.3.9.tar.gz";s:4:"date";s:10:"1522263480";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"8.3.8";a:10:{s:4:"name";s:12:"drupal 8.3.8";s:7:"version";s:5:"8.3.8";s:3:"tag";s:5:"8.3.8";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/8.3.8";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-8.3.8.tar.gz";s:4:"date";s:10:"1520881985";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:8:"Insecure";i:1;s:15:"Security update";i:2;s:9:"Bug fixes";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"8.3.7";a:10:{s:4:"name";s:12:"drupal 8.3.7";s:7:"version";s:5:"8.3.7";s:3:"tag";s:5:"8.3.7";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/8.3.7";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-8.3.7.tar.gz";s:4:"date";s:10:"1502903903";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:8:"Insecure";i:1;s:15:"Security update";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"8.3.6";a:10:{s:4:"name";s:12:"drupal 8.3.6";s:7:"version";s:5:"8.3.6";s:3:"tag";s:5:"8.3.6";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/8.3.6";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-8.3.6.tar.gz";s:4:"date";s:10:"1501688043";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"8.3.5";a:10:{s:4:"name";s:12:"drupal 8.3.5";s:7:"version";s:5:"8.3.5";s:3:"tag";s:5:"8.3.5";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/8.3.5";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-8.3.5.tar.gz";s:4:"date";s:10:"1499274843";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"8.3.4";a:10:{s:4:"name";s:12:"drupal 8.3.4";s:7:"version";s:5:"8.3.4";s:3:"tag";s:5:"8.3.4";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/8.3.4";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-8.3.4.tar.gz";s:4:"date";s:10:"1498069442";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"8.3.3";a:10:{s:4:"name";s:12:"drupal 8.3.3";s:7:"version";s:5:"8.3.3";s:3:"tag";s:5:"8.3.3";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/8.3.3";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-8.3.3.tar.gz";s:4:"date";s:10:"1496858041";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"8.3.2";a:10:{s:4:"name";s:12:"drupal 8.3.2";s:7:"version";s:5:"8.3.2";s:3:"tag";s:5:"8.3.2";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/8.3.2";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-8.3.2.tar.gz";s:4:"date";s:10:"1493834585";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"8.3.1";a:10:{s:4:"name";s:12:"drupal 8.3.1";s:7:"version";s:5:"8.3.1";s:3:"tag";s:5:"8.3.1";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/8.3.1";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-8.3.1.tar.gz";s:4:"date";s:10:"1492622946";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"8.3.0";a:10:{s:4:"name";s:12:"drupal 8.3.0";s:7:"version";s:5:"8.3.0";s:3:"tag";s:5:"8.3.0";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/8.3.0";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-8.3.0.tar.gz";s:4:"date";s:10:"1491439084";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";i:2;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:9:"8.3.0-rc2";a:10:{s:4:"name";s:16:"drupal 8.3.0-rc2";s:7:"version";s:9:"8.3.0-rc2";s:3:"tag";s:9:"8.3.0-rc2";s:6:"status";s:9:"published";s:12:"release_link";s:56:"https://www.drupal.org/project/drupal/releases/8.3.0-rc2";s:13:"download_link";s:61:"https://ftp.drupal.org/files/projects/drupal-8.3.0-rc2.tar.gz";s:4:"date";s:10:"1489613583";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";i:2;s:8:"Insecure";}}s:8:"security";s:58:"RC releases are not covered by Drupal security advisories.";}s:9:"8.3.0-rc1";a:10:{s:4:"name";s:16:"drupal 8.3.0-rc1";s:7:"version";s:9:"8.3.0-rc1";s:3:"tag";s:9:"8.3.0-rc1";s:6:"status";s:9:"published";s:12:"release_link";s:56:"https://www.drupal.org/project/drupal/releases/8.3.0-rc1";s:13:"download_link";s:61:"https://ftp.drupal.org/files/projects/drupal-8.3.0-rc1.tar.gz";s:4:"date";s:10:"1488383284";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";i:2;s:8:"Insecure";}}s:8:"security";s:58:"RC releases are not covered by Drupal security advisories.";}s:11:"8.3.0-beta1";a:10:{s:4:"name";s:18:"drupal 8.3.0-beta1";s:7:"version";s:11:"8.3.0-beta1";s:3:"tag";s:11:"8.3.0-beta1";s:6:"status";s:9:"published";s:12:"release_link";s:58:"https://www.drupal.org/project/drupal/releases/8.3.0-beta1";s:13:"download_link";s:63:"https://ftp.drupal.org/files/projects/drupal-8.3.0-beta1.tar.gz";s:4:"date";s:10:"1487175783";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";i:2;s:8:"Insecure";}}s:8:"security";s:60:"Beta releases are not covered by Drupal security advisories.";}s:12:"8.3.0-alpha1";a:10:{s:4:"name";s:19:"drupal 8.3.0-alpha1";s:7:"version";s:12:"8.3.0-alpha1";s:3:"tag";s:12:"8.3.0-alpha1";s:6:"status";s:9:"published";s:12:"release_link";s:59:"https://www.drupal.org/project/drupal/releases/8.3.0-alpha1";s:13:"download_link";s:64:"https://ftp.drupal.org/files/projects/drupal-8.3.0-alpha1.tar.gz";s:4:"date";s:10:"1485968583";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";i:2;s:8:"Insecure";}}s:8:"security";s:61:"Alpha releases are not covered by Drupal security advisories.";}s:5:"8.2.8";a:10:{s:4:"name";s:12:"drupal 8.2.8";s:7:"version";s:5:"8.2.8";s:3:"tag";s:5:"8.2.8";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/8.2.8";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-8.2.8.tar.gz";s:4:"date";s:10:"1492622852";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:8:"Insecure";i:1;s:15:"Security update";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"8.2.7";a:10:{s:4:"name";s:12:"drupal 8.2.7";s:7:"version";s:5:"8.2.7";s:3:"tag";s:5:"8.2.7";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/8.2.7";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-8.2.7.tar.gz";s:4:"date";s:10:"1489609638";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"8.2.6";a:10:{s:4:"name";s:12:"drupal 8.2.6";s:7:"version";s:5:"8.2.6";s:3:"tag";s:5:"8.2.6";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/8.2.6";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-8.2.6.tar.gz";s:4:"date";s:10:"1485975485";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"8.2.5";a:10:{s:4:"name";s:12:"drupal 8.2.5";s:7:"version";s:5:"8.2.5";s:3:"tag";s:5:"8.2.5";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/8.2.5";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-8.2.5.tar.gz";s:4:"date";s:10:"1483529942";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"8.2.4";a:10:{s:4:"name";s:12:"drupal 8.2.4";s:7:"version";s:5:"8.2.4";s:3:"tag";s:5:"8.2.4";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/8.2.4";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-8.2.4.tar.gz";s:4:"date";s:10:"1481136784";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"8.2.3";a:10:{s:4:"name";s:12:"drupal 8.2.3";s:7:"version";s:5:"8.2.3";s:3:"tag";s:5:"8.2.3";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/8.2.3";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-8.2.3.tar.gz";s:4:"date";s:10:"1479322439";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:8:"Insecure";i:1;s:15:"Security update";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"8.2.2";a:10:{s:4:"name";s:12:"drupal 8.2.2";s:7:"version";s:5:"8.2.2";s:3:"tag";s:5:"8.2.2";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/8.2.2";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-8.2.2.tar.gz";s:4:"date";s:10:"1478106542";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"8.2.1";a:10:{s:4:"name";s:12:"drupal 8.2.1";s:7:"version";s:5:"8.2.1";s:3:"tag";s:5:"8.2.1";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/8.2.1";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-8.2.1.tar.gz";s:4:"date";s:10:"1476181439";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"8.2.0";a:10:{s:4:"name";s:12:"drupal 8.2.0";s:7:"version";s:5:"8.2.0";s:3:"tag";s:5:"8.2.0";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/8.2.0";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-8.2.0.tar.gz";s:4:"date";s:10:"1475660639";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";i:2;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:9:"8.2.0-rc2";a:10:{s:4:"name";s:16:"drupal 8.2.0-rc2";s:7:"version";s:9:"8.2.0-rc2";s:3:"tag";s:9:"8.2.0-rc2";s:6:"status";s:9:"published";s:12:"release_link";s:56:"https://www.drupal.org/project/drupal/releases/8.2.0-rc2";s:13:"download_link";s:61:"https://ftp.drupal.org/files/projects/drupal-8.2.0-rc2.tar.gz";s:4:"date";s:10:"1474484358";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";i:2;s:8:"Insecure";}}s:8:"security";s:58:"RC releases are not covered by Drupal security advisories.";}s:9:"8.2.0-rc1";a:10:{s:4:"name";s:16:"drupal 8.2.0-rc1";s:7:"version";s:9:"8.2.0-rc1";s:3:"tag";s:9:"8.2.0-rc1";s:6:"status";s:9:"published";s:12:"release_link";s:56:"https://www.drupal.org/project/drupal/releases/8.2.0-rc1";s:13:"download_link";s:61:"https://ftp.drupal.org/files/projects/drupal-8.2.0-rc1.tar.gz";s:4:"date";s:10:"1473285089";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";i:2;s:8:"Insecure";}}s:8:"security";s:58:"RC releases are not covered by Drupal security advisories.";}s:11:"8.2.0-beta3";a:10:{s:4:"name";s:18:"drupal 8.2.0-beta3";s:7:"version";s:11:"8.2.0-beta3";s:3:"tag";s:11:"8.2.0-beta3";s:6:"status";s:9:"published";s:12:"release_link";s:58:"https://www.drupal.org/project/drupal/releases/8.2.0-beta3";s:13:"download_link";s:63:"https://ftp.drupal.org/files/projects/drupal-8.2.0-beta3.tar.gz";s:4:"date";s:10:"1472222475";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";i:2;s:8:"Insecure";}}s:8:"security";s:60:"Beta releases are not covered by Drupal security advisories.";}s:11:"8.2.0-beta2";a:10:{s:4:"name";s:18:"drupal 8.2.0-beta2";s:7:"version";s:11:"8.2.0-beta2";s:3:"tag";s:11:"8.2.0-beta2";s:6:"status";s:9:"published";s:12:"release_link";s:58:"https://www.drupal.org/project/drupal/releases/8.2.0-beta2";s:13:"download_link";s:63:"https://ftp.drupal.org/files/projects/drupal-8.2.0-beta2.tar.gz";s:4:"date";s:10:"1471710839";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";i:2;s:8:"Insecure";}}s:8:"security";s:60:"Beta releases are not covered by Drupal security advisories.";}s:11:"8.2.0-beta1";a:10:{s:4:"name";s:18:"drupal 8.2.0-beta1";s:7:"version";s:11:"8.2.0-beta1";s:3:"tag";s:11:"8.2.0-beta1";s:6:"status";s:9:"published";s:12:"release_link";s:58:"https://www.drupal.org/project/drupal/releases/8.2.0-beta1";s:13:"download_link";s:63:"https://ftp.drupal.org/files/projects/drupal-8.2.0-beta1.tar.gz";s:4:"date";s:10:"1470230639";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";i:2;s:8:"Insecure";}}s:8:"security";s:60:"Beta releases are not covered by Drupal security advisories.";}s:6:"8.1.10";a:10:{s:4:"name";s:13:"drupal 8.1.10";s:7:"version";s:6:"8.1.10";s:3:"tag";s:6:"8.1.10";s:6:"status";s:9:"published";s:12:"release_link";s:53:"https://www.drupal.org/project/drupal/releases/8.1.10";s:13:"download_link";s:58:"https://ftp.drupal.org/files/projects/drupal-8.1.10.tar.gz";s:4:"date";s:10:"1474478939";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:8:"Insecure";i:1;s:15:"Security update";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"8.1.9";a:10:{s:4:"name";s:12:"drupal 8.1.9";s:7:"version";s:5:"8.1.9";s:3:"tag";s:5:"8.1.9";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/8.1.9";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-8.1.9.tar.gz";s:4:"date";s:10:"1473276313";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"8.1.8";a:10:{s:4:"name";s:12:"drupal 8.1.8";s:7:"version";s:5:"8.1.8";s:3:"tag";s:5:"8.1.8";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/8.1.8";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-8.1.8.tar.gz";s:4:"date";s:10:"1470233647";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"8.1.7";a:10:{s:4:"name";s:12:"drupal 8.1.7";s:7:"version";s:5:"8.1.7";s:3:"tag";s:5:"8.1.7";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/8.1.7";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-8.1.7.tar.gz";s:4:"date";s:10:"1468855358";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"8.1.6";a:10:{s:4:"name";s:12:"drupal 8.1.6";s:7:"version";s:5:"8.1.6";s:3:"tag";s:5:"8.1.6";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/8.1.6";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-8.1.6.tar.gz";s:4:"date";s:10:"1468242539";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"8.1.5";a:10:{s:4:"name";s:12:"drupal 8.1.5";s:7:"version";s:5:"8.1.5";s:3:"tag";s:5:"8.1.5";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/8.1.5";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-8.1.5.tar.gz";s:4:"date";s:10:"1467884639";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"8.1.4";a:10:{s:4:"name";s:12:"drupal 8.1.4";s:7:"version";s:5:"8.1.4";s:3:"tag";s:5:"8.1.4";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/8.1.4";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-8.1.4.tar.gz";s:4:"date";s:10:"1467810839";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"8.1.3";a:10:{s:4:"name";s:12:"drupal 8.1.3";s:7:"version";s:5:"8.1.3";s:3:"tag";s:5:"8.1.3";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/8.1.3";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-8.1.3.tar.gz";s:4:"date";s:10:"1466021480";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:15:"Security update";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"8.1.2";a:10:{s:4:"name";s:12:"drupal 8.1.2";s:7:"version";s:5:"8.1.2";s:3:"tag";s:5:"8.1.2";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/8.1.2";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-8.1.2.tar.gz";s:4:"date";s:10:"1464824339";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"8.1.1";a:10:{s:4:"name";s:12:"drupal 8.1.1";s:7:"version";s:5:"8.1.1";s:3:"tag";s:5:"8.1.1";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/8.1.1";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-8.1.1.tar.gz";s:4:"date";s:10:"1462361039";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"8.1.0";a:10:{s:4:"name";s:12:"drupal 8.1.0";s:7:"version";s:5:"8.1.0";s:3:"tag";s:5:"8.1.0";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/8.1.0";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-8.1.0.tar.gz";s:4:"date";s:10:"1461118190";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";i:2;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:9:"8.1.0-rc1";a:10:{s:4:"name";s:16:"drupal 8.1.0-rc1";s:7:"version";s:9:"8.1.0-rc1";s:3:"tag";s:9:"8.1.0-rc1";s:6:"status";s:9:"published";s:12:"release_link";s:56:"https://www.drupal.org/project/drupal/releases/8.1.0-rc1";s:13:"download_link";s:61:"https://ftp.drupal.org/files/projects/drupal-8.1.0-rc1.tar.gz";s:4:"date";s:10:"1459976639";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:8:"Insecure";i:1;s:9:"Bug fixes";i:2;s:12:"New features";}}s:8:"security";s:58:"RC releases are not covered by Drupal security advisories.";}s:11:"8.1.0-beta2";a:10:{s:4:"name";s:18:"drupal 8.1.0-beta2";s:7:"version";s:11:"8.1.0-beta2";s:3:"tag";s:11:"8.1.0-beta2";s:6:"status";s:9:"published";s:12:"release_link";s:58:"https://www.drupal.org/project/drupal/releases/8.1.0-beta2";s:13:"download_link";s:63:"https://ftp.drupal.org/files/projects/drupal-8.1.0-beta2.tar.gz";s:4:"date";s:10:"1458699840";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:8:"Insecure";i:1;s:9:"Bug fixes";i:2;s:12:"New features";}}s:8:"security";s:60:"Beta releases are not covered by Drupal security advisories.";}s:11:"8.1.0-beta1";a:10:{s:4:"name";s:18:"drupal 8.1.0-beta1";s:7:"version";s:11:"8.1.0-beta1";s:3:"tag";s:11:"8.1.0-beta1";s:6:"status";s:9:"published";s:12:"release_link";s:58:"https://www.drupal.org/project/drupal/releases/8.1.0-beta1";s:13:"download_link";s:63:"https://ftp.drupal.org/files/projects/drupal-8.1.0-beta1.tar.gz";s:4:"date";s:10:"1456975758";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:8:"Insecure";i:1;s:9:"Bug fixes";i:2;s:12:"New features";}}s:8:"security";s:60:"Beta releases are not covered by Drupal security advisories.";}s:5:"8.0.6";a:10:{s:4:"name";s:12:"drupal 8.0.6";s:7:"version";s:5:"8.0.6";s:3:"tag";s:5:"8.0.6";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/8.0.6";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-8.0.6.tar.gz";s:4:"date";s:10:"1459900439";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:8:"Insecure";i:1;s:9:"Bug fixes";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"8.0.5";a:10:{s:4:"name";s:12:"drupal 8.0.5";s:7:"version";s:5:"8.0.5";s:3:"tag";s:5:"8.0.5";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/8.0.5";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-8.0.5.tar.gz";s:4:"date";s:10:"1456914839";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:8:"Insecure";i:1;s:9:"Bug fixes";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"8.0.4";a:10:{s:4:"name";s:12:"drupal 8.0.4";s:7:"version";s:5:"8.0.4";s:3:"tag";s:5:"8.0.4";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/8.0.4";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-8.0.4.tar.gz";s:4:"date";s:10:"1456341749";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:8:"Insecure";i:1;s:15:"Security update";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"8.0.3";a:10:{s:4:"name";s:12:"drupal 8.0.3";s:7:"version";s:5:"8.0.3";s:3:"tag";s:5:"8.0.3";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/8.0.3";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-8.0.3.tar.gz";s:4:"date";s:10:"1454489043";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:8:"Insecure";i:1;s:9:"Bug fixes";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"8.0.2";a:10:{s:4:"name";s:12:"drupal 8.0.2";s:7:"version";s:5:"8.0.2";s:3:"tag";s:5:"8.0.2";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/8.0.2";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-8.0.2.tar.gz";s:4:"date";s:10:"1452119939";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:8:"Insecure";i:1;s:9:"Bug fixes";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"8.0.1";a:10:{s:4:"name";s:12:"drupal 8.0.1";s:7:"version";s:5:"8.0.1";s:3:"tag";s:5:"8.0.1";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/8.0.1";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-8.0.1.tar.gz";s:4:"date";s:10:"1449066839";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:8:"Insecure";i:1;s:9:"Bug fixes";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:5:"8.0.0";a:10:{s:4:"name";s:12:"drupal 8.0.0";s:7:"version";s:5:"8.0.0";s:3:"tag";s:5:"8.0.0";s:6:"status";s:9:"published";s:12:"release_link";s:52:"https://www.drupal.org/project/drupal/releases/8.0.0";s:13:"download_link";s:57:"https://ftp.drupal.org/files/projects/drupal-8.0.0.tar.gz";s:4:"date";s:10:"1447941840";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:1:{i:0;s:8:"Insecure";}}s:8:"security";s:44:"Covered by Drupal''s security advisory policy";}s:9:"8.0.0-rc4";a:10:{s:4:"name";s:16:"drupal 8.0.0-rc4";s:7:"version";s:9:"8.0.0-rc4";s:3:"tag";s:9:"8.0.0-rc4";s:6:"status";s:9:"published";s:12:"release_link";s:56:"https://www.drupal.org/project/drupal/releases/8.0.0-rc4";s:13:"download_link";s:61:"https://ftp.drupal.org/files/projects/drupal-8.0.0-rc4.tar.gz";s:4:"date";s:10:"1447413840";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:1:{i:0;s:8:"Insecure";}}s:8:"security";s:58:"RC releases are not covered by Drupal security advisories.";}s:9:"8.0.0-rc3";a:10:{s:4:"name";s:16:"drupal 8.0.0-rc3";s:7:"version";s:9:"8.0.0-rc3";s:3:"tag";s:9:"8.0.0-rc3";s:6:"status";s:9:"published";s:12:"release_link";s:56:"https://www.drupal.org/project/drupal/releases/8.0.0-rc3";s:13:"download_link";s:61:"https://ftp.drupal.org/files/projects/drupal-8.0.0-rc3.tar.gz";s:4:"date";s:10:"1446633239";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:1:{i:0;s:8:"Insecure";}}s:8:"security";s:58:"RC releases are not covered by Drupal security advisories.";}s:9:"8.0.0-rc2";a:10:{s:4:"name";s:16:"drupal 8.0.0-rc2";s:7:"version";s:9:"8.0.0-rc2";s:3:"tag";s:9:"8.0.0-rc2";s:6:"status";s:9:"published";s:12:"release_link";s:56:"https://www.drupal.org/project/drupal/releases/8.0.0-rc2";s:13:"download_link";s:61:"https://ftp.drupal.org/files/projects/drupal-8.0.0-rc2.tar.gz";s:4:"date";s:10:"1445468639";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:8:"Insecure";i:1;s:9:"Bug fixes";}}s:8:"security";s:58:"RC releases are not covered by Drupal security advisories.";}s:9:"8.0.0-rc1";a:10:{s:4:"name";s:16:"drupal 8.0.0-rc1";s:7:"version";s:9:"8.0.0-rc1";s:3:"tag";s:9:"8.0.0-rc1";s:6:"status";s:9:"published";s:12:"release_link";s:56:"https://www.drupal.org/project/drupal/releases/8.0.0-rc1";s:13:"download_link";s:61:"https://ftp.drupal.org/files/projects/drupal-8.0.0-rc1.tar.gz";s:4:"date";s:10:"1444253039";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:8:"Insecure";i:1;s:9:"Bug fixes";}}s:8:"security";s:58:"RC releases are not covered by Drupal security advisories.";}s:12:"8.0.0-beta16";a:10:{s:4:"name";s:19:"drupal 8.0.0-beta16";s:7:"version";s:12:"8.0.0-beta16";s:3:"tag";s:12:"8.0.0-beta16";s:6:"status";s:9:"published";s:12:"release_link";s:59:"https://www.drupal.org/project/drupal/releases/8.0.0-beta16";s:13:"download_link";s:64:"https://ftp.drupal.org/files/projects/drupal-8.0.0-beta16.tar.gz";s:4:"date";s:10:"1443746640";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:8:"Insecure";i:1;s:9:"Bug fixes";}}s:8:"security";s:60:"Beta releases are not covered by Drupal security advisories.";}s:12:"8.0.0-beta15";a:10:{s:4:"name";s:19:"drupal 8.0.0-beta15";s:7:"version";s:12:"8.0.0-beta15";s:3:"tag";s:12:"8.0.0-beta15";s:6:"status";s:9:"published";s:12:"release_link";s:59:"https://www.drupal.org/project/drupal/releases/8.0.0-beta15";s:13:"download_link";s:64:"https://ftp.drupal.org/files/projects/drupal-8.0.0-beta15.tar.gz";s:4:"date";s:10:"1441357140";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:1:{i:0;s:8:"Insecure";}}s:8:"security";s:60:"Beta releases are not covered by Drupal security advisories.";}s:12:"8.0.0-beta14";a:10:{s:4:"name";s:19:"drupal 8.0.0-beta14";s:7:"version";s:12:"8.0.0-beta14";s:3:"tag";s:12:"8.0.0-beta14";s:6:"status";s:9:"published";s:12:"release_link";s:59:"https://www.drupal.org/project/drupal/releases/8.0.0-beta14";s:13:"download_link";s:64:"https://ftp.drupal.org/files/projects/drupal-8.0.0-beta14.tar.gz";s:4:"date";s:10:"1438593539";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:1:{i:0;s:8:"Insecure";}}s:8:"security";s:60:"Beta releases are not covered by Drupal security advisories.";}s:12:"8.0.0-beta13";a:10:{s:4:"name";s:19:"drupal 8.0.0-beta13";s:7:"version";s:12:"8.0.0-beta13";s:3:"tag";s:12:"8.0.0-beta13";s:6:"status";s:9:"published";s:12:"release_link";s:59:"https://www.drupal.org/project/drupal/releases/8.0.0-beta13";s:13:"download_link";s:64:"https://ftp.drupal.org/files/projects/drupal-8.0.0-beta13.tar.gz";s:4:"date";s:10:"1438194539";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:1:{i:0;s:8:"Insecure";}}s:8:"security";s:60:"Beta releases are not covered by Drupal security advisories.";}s:12:"8.0.0-beta12";a:10:{s:4:"name";s:19:"drupal 8.0.0-beta12";s:7:"version";s:12:"8.0.0-beta12";s:3:"tag";s:12:"8.0.0-beta12";s:6:"status";s:9:"published";s:12:"release_link";s:59:"https://www.drupal.org/project/drupal/releases/8.0.0-beta12";s:13:"download_link";s:64:"https://ftp.drupal.org/files/projects/drupal-8.0.0-beta12.tar.gz";s:4:"date";s:10:"1435601583";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:1:{i:0;s:8:"Insecure";}}s:8:"security";s:60:"Beta releases are not covered by Drupal security advisories.";}s:12:"8.0.0-beta11";a:10:{s:4:"name";s:19:"drupal 8.0.0-beta11";s:7:"version";s:12:"8.0.0-beta11";s:3:"tag";s:12:"8.0.0-beta11";s:6:"status";s:9:"published";s:12:"release_link";s:59:"https://www.drupal.org/project/drupal/releases/8.0.0-beta11";s:13:"download_link";s:64:"https://ftp.drupal.org/files/projects/drupal-8.0.0-beta11.tar.gz";s:4:"date";s:10:"1432758481";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:1:{i:0;s:8:"Insecure";}}s:8:"security";s:60:"Beta releases are not covered by Drupal security advisories.";}s:12:"8.0.0-beta10";a:10:{s:4:"name";s:19:"drupal 8.0.0-beta10";s:7:"version";s:12:"8.0.0-beta10";s:3:"tag";s:12:"8.0.0-beta10";s:6:"status";s:9:"published";s:12:"release_link";s:59:"https://www.drupal.org/project/drupal/releases/8.0.0-beta10";s:13:"download_link";s:64:"https://ftp.drupal.org/files/projects/drupal-8.0.0-beta10.tar.gz";s:4:"date";s:10:"1430314681";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:1:{i:0;s:8:"Insecure";}}s:8:"security";s:60:"Beta releases are not covered by Drupal security advisories.";}s:11:"8.0.0-beta9";a:10:{s:4:"name";s:18:"drupal 8.0.0-beta9";s:7:"version";s:11:"8.0.0-beta9";s:3:"tag";s:11:"8.0.0-beta9";s:6:"status";s:9:"published";s:12:"release_link";s:58:"https://www.drupal.org/project/drupal/releases/8.0.0-beta9";s:13:"download_link";s:63:"https://ftp.drupal.org/files/projects/drupal-8.0.0-beta9.tar.gz";s:4:"date";s:10:"1427299981";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:1:{i:0;s:8:"Insecure";}}s:8:"security";s:60:"Beta releases are not covered by Drupal security advisories.";}s:11:"8.0.0-beta7";a:10:{s:4:"name";s:18:"drupal 8.0.0-beta7";s:7:"version";s:11:"8.0.0-beta7";s:3:"tag";s:11:"8.0.0-beta7";s:6:"status";s:9:"published";s:12:"release_link";s:58:"https://www.drupal.org/project/drupal/releases/8.0.0-beta7";s:13:"download_link";s:63:"https://ftp.drupal.org/files/projects/drupal-8.0.0-beta7.tar.gz";s:4:"date";s:10:"1424875381";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:1:{i:0;s:8:"Insecure";}}s:8:"security";s:60:"Beta releases are not covered by Drupal security advisories.";}s:11:"8.0.0-beta6";a:10:{s:4:"name";s:18:"drupal 8.0.0-beta6";s:7:"version";s:11:"8.0.0-beta6";s:3:"tag";s:11:"8.0.0-beta6";s:6:"status";s:9:"published";s:12:"release_link";s:58:"https://www.drupal.org/project/drupal/releases/8.0.0-beta6";s:13:"download_link";s:63:"https://ftp.drupal.org/files/projects/drupal-8.0.0-beta6.tar.gz";s:4:"date";s:10:"1422443800";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:1:{i:0;s:8:"Insecure";}}s:8:"security";s:60:"Beta releases are not covered by Drupal security advisories.";}s:11:"8.0.0-beta4";a:10:{s:4:"name";s:18:"drupal 8.0.0-beta4";s:7:"version";s:11:"8.0.0-beta4";s:3:"tag";s:11:"8.0.0-beta4";s:6:"status";s:9:"published";s:12:"release_link";s:58:"https://www.drupal.org/project/drupal/releases/8.0.0-beta4";s:13:"download_link";s:63:"https://ftp.drupal.org/files/projects/drupal-8.0.0-beta4.tar.gz";s:4:"date";s:10:"1418825280";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:1:{i:0;s:8:"Insecure";}}s:8:"security";s:60:"Beta releases are not covered by Drupal security advisories.";}s:11:"8.0.0-beta3";a:10:{s:4:"name";s:18:"drupal 8.0.0-beta3";s:7:"version";s:11:"8.0.0-beta3";s:3:"tag";s:11:"8.0.0-beta3";s:6:"status";s:9:"published";s:12:"release_link";s:58:"https://www.drupal.org/project/drupal/releases/8.0.0-beta3";s:13:"download_link";s:63:"https://ftp.drupal.org/files/projects/drupal-8.0.0-beta3.tar.gz";s:4:"date";s:10:"1415797380";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:1:{i:0;s:8:"Insecure";}}s:8:"security";s:60:"Beta releases are not covered by Drupal security advisories.";}s:11:"8.0.0-beta2";a:10:{s:4:"name";s:18:"drupal 8.0.0-beta2";s:7:"version";s:11:"8.0.0-beta2";s:3:"tag";s:11:"8.0.0-beta2";s:6:"status";s:9:"published";s:12:"release_link";s:58:"https://www.drupal.org/project/drupal/releases/8.0.0-beta2";s:13:"download_link";s:63:"https://ftp.drupal.org/files/projects/drupal-8.0.0-beta2.tar.gz";s:4:"date";s:10:"1413394161";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:8:"Insecure";i:1;s:15:"Security update";}}s:8:"security";s:60:"Beta releases are not covered by Drupal security advisories.";}s:11:"8.0.0-beta1";a:10:{s:4:"name";s:18:"drupal 8.0.0-beta1";s:7:"version";s:11:"8.0.0-beta1";s:3:"tag";s:11:"8.0.0-beta1";s:6:"status";s:9:"published";s:12:"release_link";s:58:"https://www.drupal.org/project/drupal/releases/8.0.0-beta1";s:13:"download_link";s:63:"https://ftp.drupal.org/files/projects/drupal-8.0.0-beta1.tar.gz";s:4:"date";s:10:"1412147030";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:1:{i:0;s:8:"Insecure";}}s:8:"security";s:60:"Beta releases are not covered by Drupal security advisories.";}s:13:"8.0.0-alpha15";a:10:{s:4:"name";s:20:"drupal 8.0.0-alpha15";s:7:"version";s:13:"8.0.0-alpha15";s:3:"tag";s:13:"8.0.0-alpha15";s:6:"status";s:9:"published";s:12:"release_link";s:60:"https://www.drupal.org/project/drupal/releases/8.0.0-alpha15";s:13:"download_link";s:65:"https://ftp.drupal.org/files/projects/drupal-8.0.0-alpha15.tar.gz";s:4:"date";s:10:"1411139628";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:1:{i:0;s:8:"Insecure";}}s:8:"security";s:61:"Alpha releases are not covered by Drupal security advisories.";}s:13:"8.0.0-alpha14";a:10:{s:4:"name";s:20:"drupal 8.0.0-alpha14";s:7:"version";s:13:"8.0.0-alpha14";s:3:"tag";s:13:"8.0.0-alpha14";s:6:"status";s:9:"published";s:12:"release_link";s:60:"https://www.drupal.org/project/drupal/releases/8.0.0-alpha14";s:13:"download_link";s:65:"https://ftp.drupal.org/files/projects/drupal-8.0.0-alpha14.tar.gz";s:4:"date";s:10:"1407344628";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:1:{i:0;s:8:"Insecure";}}s:8:"security";s:61:"Alpha releases are not covered by Drupal security advisories.";}s:11:"8.0-alpha13";a:10:{s:4:"name";s:18:"drupal 8.0-alpha13";s:7:"version";s:11:"8.0-alpha13";s:3:"tag";s:11:"8.0-alpha13";s:6:"status";s:9:"published";s:12:"release_link";s:58:"https://www.drupal.org/project/drupal/releases/8.0-alpha13";s:13:"download_link";s:63:"https://ftp.drupal.org/files/projects/drupal-8.0-alpha13.tar.gz";s:4:"date";s:10:"1404296627";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:1:{i:0;s:8:"Insecure";}}s:8:"security";s:61:"Alpha releases are not covered by Drupal security advisories.";}s:11:"8.0-alpha12";a:10:{s:4:"name";s:18:"drupal 8.0-alpha12";s:7:"version";s:11:"8.0-alpha12";s:3:"tag";s:11:"8.0-alpha12";s:6:"status";s:9:"published";s:12:"release_link";s:58:"https://www.drupal.org/project/drupal/releases/8.0-alpha12";s:13:"download_link";s:63:"https://ftp.drupal.org/files/projects/drupal-8.0-alpha12.tar.gz";s:4:"date";s:10:"1401293627";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:61:"Alpha releases are not covered by Drupal security advisories.";}s:11:"8.0-alpha11";a:10:{s:4:"name";s:18:"drupal 8.0-alpha11";s:7:"version";s:11:"8.0-alpha11";s:3:"tag";s:11:"8.0-alpha11";s:6:"status";s:9:"published";s:12:"release_link";s:58:"https://www.drupal.org/project/drupal/releases/8.0-alpha11";s:13:"download_link";s:63:"https://ftp.drupal.org/files/projects/drupal-8.0-alpha11.tar.gz";s:4:"date";s:10:"1398249227";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:1:{i:0;s:8:"Insecure";}}s:8:"security";s:61:"Alpha releases are not covered by Drupal security advisories.";}s:11:"8.0-alpha10";a:10:{s:4:"name";s:18:"drupal 8.0-alpha10";s:7:"version";s:11:"8.0-alpha10";s:3:"tag";s:11:"8.0-alpha10";s:6:"status";s:9:"published";s:12:"release_link";s:58:"https://www.drupal.org/project/drupal/releases/8.0-alpha10";s:13:"download_link";s:63:"https://ftp.drupal.org/files/projects/drupal-8.0-alpha10.tar.gz";s:4:"date";s:10:"1395231556";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:1:{i:0;s:8:"Insecure";}}s:8:"security";s:61:"Alpha releases are not covered by Drupal security advisories.";}s:10:"8.0-alpha9";a:10:{s:4:"name";s:17:"drupal 8.0-alpha9";s:7:"version";s:10:"8.0-alpha9";s:3:"tag";s:10:"8.0-alpha9";s:6:"status";s:9:"published";s:12:"release_link";s:57:"https://www.drupal.org/project/drupal/releases/8.0-alpha9";s:13:"download_link";s:62:"https://ftp.drupal.org/files/projects/drupal-8.0-alpha9.tar.gz";s:4:"date";s:10:"1392806005";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:12:"New features";i:1;s:8:"Insecure";}}s:8:"security";s:61:"Alpha releases are not covered by Drupal security advisories.";}s:10:"8.0-alpha8";a:10:{s:4:"name";s:17:"drupal 8.0-alpha8";s:7:"version";s:10:"8.0-alpha8";s:3:"tag";s:10:"8.0-alpha8";s:6:"status";s:9:"published";s:12:"release_link";s:57:"https://www.drupal.org/project/drupal/releases/8.0-alpha8";s:13:"download_link";s:62:"https://ftp.drupal.org/files/projects/drupal-8.0-alpha8.tar.gz";s:4:"date";s:10:"1390393105";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";i:2;s:8:"Insecure";}}s:8:"security";s:61:"Alpha releases are not covered by Drupal security advisories.";}s:10:"8.0-alpha7";a:10:{s:4:"name";s:17:"drupal 8.0-alpha7";s:7:"version";s:10:"8.0-alpha7";s:3:"tag";s:10:"8.0-alpha7";s:6:"status";s:9:"published";s:12:"release_link";s:57:"https://www.drupal.org/project/drupal/releases/8.0-alpha7";s:13:"download_link";s:62:"https://ftp.drupal.org/files/projects/drupal-8.0-alpha7.tar.gz";s:4:"date";s:10:"1387399705";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";i:2;s:8:"Insecure";}}s:8:"security";s:61:"Alpha releases are not covered by Drupal security advisories.";}s:10:"8.0-alpha6";a:10:{s:4:"name";s:17:"drupal 8.0-alpha6";s:7:"version";s:10:"8.0-alpha6";s:3:"tag";s:10:"8.0-alpha6";s:6:"status";s:9:"published";s:12:"release_link";s:57:"https://www.drupal.org/project/drupal/releases/8.0-alpha6";s:13:"download_link";s:62:"https://ftp.drupal.org/files/projects/drupal-8.0-alpha6.tar.gz";s:4:"date";s:10:"1385153305";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:8:"Insecure";}}s:8:"security";s:61:"Alpha releases are not covered by Drupal security advisories.";}s:10:"8.0-alpha5";a:10:{s:4:"name";s:17:"drupal 8.0-alpha5";s:7:"version";s:10:"8.0-alpha5";s:3:"tag";s:10:"8.0-alpha5";s:6:"status";s:9:"published";s:12:"release_link";s:57:"https://www.drupal.org/project/drupal/releases/8.0-alpha5";s:13:"download_link";s:62:"https://ftp.drupal.org/files/projects/drupal-8.0-alpha5.tar.gz";s:4:"date";s:10:"1384850305";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:1:{i:0;s:8:"Insecure";}}s:8:"security";s:61:"Alpha releases are not covered by Drupal security advisories.";}s:10:"8.0-alpha4";a:10:{s:4:"name";s:17:"drupal 8.0-alpha4";s:7:"version";s:10:"8.0-alpha4";s:3:"tag";s:10:"8.0-alpha4";s:6:"status";s:9:"published";s:12:"release_link";s:57:"https://www.drupal.org/project/drupal/releases/8.0-alpha4";s:13:"download_link";s:62:"https://ftp.drupal.org/files/projects/drupal-8.0-alpha4.tar.gz";s:4:"date";s:10:"1382092313";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:12:"New features";i:1;s:9:"Bug fixes";i:2;s:8:"Insecure";}}s:8:"security";s:61:"Alpha releases are not covered by Drupal security advisories.";}s:10:"8.0-alpha3";a:10:{s:4:"name";s:17:"drupal 8.0-alpha3";s:7:"version";s:10:"8.0-alpha3";s:3:"tag";s:10:"8.0-alpha3";s:6:"status";s:9:"published";s:12:"release_link";s:57:"https://www.drupal.org/project/drupal/releases/8.0-alpha3";s:13:"download_link";s:62:"https://ftp.drupal.org/files/projects/drupal-8.0-alpha3.tar.gz";s:4:"date";s:10:"1378303307";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:3:{i:0;s:12:"New features";i:1;s:9:"Bug fixes";i:2;s:8:"Insecure";}}s:8:"security";s:61:"Alpha releases are not covered by Drupal security advisories.";}s:10:"8.0-alpha2";a:10:{s:4:"name";s:17:"drupal 8.0-alpha2";s:7:"version";s:10:"8.0-alpha2";s:3:"tag";s:10:"8.0-alpha2";s:6:"status";s:9:"published";s:12:"release_link";s:57:"https://www.drupal.org/project/drupal/releases/8.0-alpha2";s:13:"download_link";s:62:"https://ftp.drupal.org/files/projects/drupal-8.0-alpha2.tar.gz";s:4:"date";s:10:"1372069563";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:1:{i:0;s:8:"Insecure";}}s:8:"security";s:61:"Alpha releases are not covered by Drupal security advisories.";}s:10:"11.4.x-dev";a:10:{s:4:"name";s:17:"drupal 11.4.x-dev";s:7:"version";s:10:"11.4.x-dev";s:3:"tag";s:6:"11.4.x";s:6:"status";s:9:"published";s:12:"release_link";s:57:"https://www.drupal.org/project/drupal/releases/11.4.x-dev";s:13:"download_link";s:62:"https://ftp.drupal.org/files/projects/drupal-11.4.x-dev.tar.gz";s:4:"date";s:10:"1782920351";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";}}s:8:"security";s:59:"Dev releases are not covered by Drupal security advisories.";}s:10:"11.3.x-dev";a:10:{s:4:"name";s:17:"drupal 11.3.x-dev";s:7:"version";s:10:"11.3.x-dev";s:3:"tag";s:6:"11.3.x";s:6:"status";s:9:"published";s:12:"release_link";s:57:"https://www.drupal.org/project/drupal/releases/11.3.x-dev";s:13:"download_link";s:62:"https://ftp.drupal.org/files/projects/drupal-11.3.x-dev.tar.gz";s:4:"date";s:10:"1782200109";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";}}s:8:"security";s:59:"Dev releases are not covered by Drupal security advisories.";}s:10:"11.2.x-dev";a:10:{s:4:"name";s:17:"drupal 11.2.x-dev";s:7:"version";s:10:"11.2.x-dev";s:3:"tag";s:6:"11.2.x";s:6:"status";s:9:"published";s:12:"release_link";s:57:"https://www.drupal.org/project/drupal/releases/11.2.x-dev";s:13:"download_link";s:62:"https://ftp.drupal.org/files/projects/drupal-11.2.x-dev.tar.gz";s:4:"date";s:10:"1779975623";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";}}s:8:"security";s:59:"Dev releases are not covered by Drupal security advisories.";}s:10:"11.1.x-dev";a:10:{s:4:"name";s:17:"drupal 11.1.x-dev";s:7:"version";s:10:"11.1.x-dev";s:3:"tag";s:6:"11.1.x";s:6:"status";s:9:"published";s:12:"release_link";s:57:"https://www.drupal.org/project/drupal/releases/11.1.x-dev";s:13:"download_link";s:62:"https://ftp.drupal.org/files/projects/drupal-11.1.x-dev.tar.gz";s:4:"date";s:10:"1779315055";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";}}s:8:"security";s:59:"Dev releases are not covered by Drupal security advisories.";}s:10:"11.0.x-dev";a:10:{s:4:"name";s:17:"drupal 11.0.x-dev";s:7:"version";s:10:"11.0.x-dev";s:3:"tag";s:6:"11.0.x";s:6:"status";s:9:"published";s:12:"release_link";s:57:"https://www.drupal.org/project/drupal/releases/11.0.x-dev";s:13:"download_link";s:62:"https://ftp.drupal.org/files/projects/drupal-11.0.x-dev.tar.gz";s:4:"date";s:10:"1746485552";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";}}s:8:"security";s:59:"Dev releases are not covered by Drupal security advisories.";}s:8:"11.x-dev";a:10:{s:4:"name";s:15:"drupal 11.x-dev";s:7:"version";s:8:"11.x-dev";s:3:"tag";s:4:"11.x";s:6:"status";s:9:"published";s:12:"release_link";s:55:"https://www.drupal.org/project/drupal/releases/11.x-dev";s:13:"download_link";s:60:"https://ftp.drupal.org/files/projects/drupal-11.x-dev.tar.gz";s:4:"date";s:10:"1782930423";s:5:"files";s:0:"";s:8:"security";s:59:"Dev releases are not covered by Drupal security advisories.";s:5:"terms";a:0:{}}s:10:"10.6.x-dev";a:10:{s:4:"name";s:17:"drupal 10.6.x-dev";s:7:"version";s:10:"10.6.x-dev";s:3:"tag";s:6:"10.6.x";s:6:"status";s:9:"published";s:12:"release_link";s:57:"https://www.drupal.org/project/drupal/releases/10.6.x-dev";s:13:"download_link";s:62:"https://ftp.drupal.org/files/projects/drupal-10.6.x-dev.tar.gz";s:4:"date";s:10:"1782500614";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";}}s:8:"security";s:59:"Dev releases are not covered by Drupal security advisories.";}s:10:"10.5.x-dev";a:10:{s:4:"name";s:17:"drupal 10.5.x-dev";s:7:"version";s:10:"10.5.x-dev";s:3:"tag";s:6:"10.5.x";s:6:"status";s:9:"published";s:12:"release_link";s:57:"https://www.drupal.org/project/drupal/releases/10.5.x-dev";s:13:"download_link";s:62:"https://ftp.drupal.org/files/projects/drupal-10.5.x-dev.tar.gz";s:4:"date";s:10:"1779983325";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";}}s:8:"security";s:59:"Dev releases are not covered by Drupal security advisories.";}s:10:"10.4.x-dev";a:10:{s:4:"name";s:17:"drupal 10.4.x-dev";s:7:"version";s:10:"10.4.x-dev";s:3:"tag";s:6:"10.4.x";s:6:"status";s:9:"published";s:12:"release_link";s:57:"https://www.drupal.org/project/drupal/releases/10.4.x-dev";s:13:"download_link";s:62:"https://ftp.drupal.org/files/projects/drupal-10.4.x-dev.tar.gz";s:4:"date";s:10:"1779313302";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";}}s:8:"security";s:59:"Dev releases are not covered by Drupal security advisories.";}s:10:"10.3.x-dev";a:10:{s:4:"name";s:17:"drupal 10.3.x-dev";s:7:"version";s:10:"10.3.x-dev";s:3:"tag";s:6:"10.3.x";s:6:"status";s:9:"published";s:12:"release_link";s:57:"https://www.drupal.org/project/drupal/releases/10.3.x-dev";s:13:"download_link";s:62:"https://ftp.drupal.org/files/projects/drupal-10.3.x-dev.tar.gz";s:4:"date";s:10:"1738800218";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";}}s:8:"security";s:59:"Dev releases are not covered by Drupal security advisories.";}s:10:"10.2.x-dev";a:10:{s:4:"name";s:17:"drupal 10.2.x-dev";s:7:"version";s:10:"10.2.x-dev";s:3:"tag";s:6:"10.2.x";s:6:"status";s:9:"published";s:12:"release_link";s:57:"https://www.drupal.org/project/drupal/releases/10.2.x-dev";s:13:"download_link";s:62:"https://ftp.drupal.org/files/projects/drupal-10.2.x-dev.tar.gz";s:4:"date";s:10:"1732287023";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";}}s:8:"security";s:59:"Dev releases are not covered by Drupal security advisories.";}s:10:"10.1.x-dev";a:10:{s:4:"name";s:17:"drupal 10.1.x-dev";s:7:"version";s:10:"10.1.x-dev";s:3:"tag";s:6:"10.1.x";s:6:"status";s:9:"published";s:12:"release_link";s:57:"https://www.drupal.org/project/drupal/releases/10.1.x-dev";s:13:"download_link";s:62:"https://ftp.drupal.org/files/projects/drupal-10.1.x-dev.tar.gz";s:4:"date";s:10:"1713001795";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";}}s:8:"security";s:59:"Dev releases are not covered by Drupal security advisories.";}s:10:"10.0.x-dev";a:10:{s:4:"name";s:17:"drupal 10.0.x-dev";s:7:"version";s:10:"10.0.x-dev";s:3:"tag";s:6:"10.0.x";s:6:"status";s:9:"published";s:12:"release_link";s:57:"https://www.drupal.org/project/drupal/releases/10.0.x-dev";s:13:"download_link";s:62:"https://ftp.drupal.org/files/projects/drupal-10.0.x-dev.tar.gz";s:4:"date";s:10:"1696930730";s:5:"files";s:0:"";s:8:"security";s:59:"Dev releases are not covered by Drupal security advisories.";s:5:"terms";a:0:{}}s:9:"9.5.x-dev";a:10:{s:4:"name";s:16:"drupal 9.5.x-dev";s:7:"version";s:9:"9.5.x-dev";s:3:"tag";s:5:"9.5.x";s:6:"status";s:9:"published";s:12:"release_link";s:56:"https://www.drupal.org/project/drupal/releases/9.5.x-dev";s:13:"download_link";s:61:"https://ftp.drupal.org/files/projects/drupal-9.5.x-dev.tar.gz";s:4:"date";s:10:"1701801362";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";}}s:8:"security";s:59:"Dev releases are not covered by Drupal security advisories.";}s:9:"9.4.x-dev";a:10:{s:4:"name";s:16:"drupal 9.4.x-dev";s:7:"version";s:9:"9.4.x-dev";s:3:"tag";s:5:"9.4.x";s:6:"status";s:9:"published";s:12:"release_link";s:56:"https://www.drupal.org/project/drupal/releases/9.4.x-dev";s:13:"download_link";s:61:"https://ftp.drupal.org/files/projects/drupal-9.4.x-dev.tar.gz";s:4:"date";s:10:"1683123227";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";}}s:8:"security";s:59:"Dev releases are not covered by Drupal security advisories.";}s:9:"9.3.x-dev";a:10:{s:4:"name";s:16:"drupal 9.3.x-dev";s:7:"version";s:9:"9.3.x-dev";s:3:"tag";s:5:"9.3.x";s:6:"status";s:9:"published";s:12:"release_link";s:56:"https://www.drupal.org/project/drupal/releases/9.3.x-dev";s:13:"download_link";s:61:"https://ftp.drupal.org/files/projects/drupal-9.3.x-dev.tar.gz";s:4:"date";s:10:"1664385919";s:5:"files";s:0:"";s:8:"security";s:59:"Dev releases are not covered by Drupal security advisories.";s:5:"terms";a:0:{}}s:9:"9.2.x-dev";a:10:{s:4:"name";s:16:"drupal 9.2.x-dev";s:7:"version";s:9:"9.2.x-dev";s:3:"tag";s:5:"9.2.x";s:6:"status";s:9:"published";s:12:"release_link";s:56:"https://www.drupal.org/project/drupal/releases/9.2.x-dev";s:13:"download_link";s:61:"https://ftp.drupal.org/files/projects/drupal-9.2.x-dev.tar.gz";s:4:"date";s:10:"1654891907";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";}}s:8:"security";s:59:"Dev releases are not covered by Drupal security advisories.";}s:9:"9.1.x-dev";a:10:{s:4:"name";s:16:"drupal 9.1.x-dev";s:7:"version";s:9:"9.1.x-dev";s:3:"tag";s:5:"9.1.x";s:6:"status";s:9:"published";s:12:"release_link";s:56:"https://www.drupal.org/project/drupal/releases/9.1.x-dev";s:13:"download_link";s:61:"https://ftp.drupal.org/files/projects/drupal-9.1.x-dev.tar.gz";s:4:"date";s:10:"1637766277";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";}}s:8:"security";s:59:"Dev releases are not covered by Drupal security advisories.";}s:9:"9.0.x-dev";a:10:{s:4:"name";s:16:"drupal 9.0.x-dev";s:7:"version";s:9:"9.0.x-dev";s:3:"tag";s:5:"9.0.x";s:6:"status";s:9:"published";s:12:"release_link";s:56:"https://www.drupal.org/project/drupal/releases/9.0.x-dev";s:13:"download_link";s:61:"https://ftp.drupal.org/files/projects/drupal-9.0.x-dev.tar.gz";s:4:"date";s:10:"1622063424";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";}}s:8:"security";s:59:"Dev releases are not covered by Drupal security advisories.";}s:9:"8.9.x-dev";a:10:{s:4:"name";s:16:"drupal 8.9.x-dev";s:7:"version";s:9:"8.9.x-dev";s:3:"tag";s:5:"8.9.x";s:6:"status";s:9:"published";s:12:"release_link";s:56:"https://www.drupal.org/project/drupal/releases/8.9.x-dev";s:13:"download_link";s:61:"https://ftp.drupal.org/files/projects/drupal-8.9.x-dev.tar.gz";s:4:"date";s:10:"1637188625";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";}}s:8:"security";s:59:"Dev releases are not covered by Drupal security advisories.";}s:9:"8.8.x-dev";a:10:{s:4:"name";s:16:"drupal 8.8.x-dev";s:7:"version";s:9:"8.8.x-dev";s:3:"tag";s:5:"8.8.x";s:6:"status";s:9:"published";s:12:"release_link";s:56:"https://www.drupal.org/project/drupal/releases/8.8.x-dev";s:13:"download_link";s:61:"https://ftp.drupal.org/files/projects/drupal-8.8.x-dev.tar.gz";s:4:"date";s:10:"1606364994";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";}}s:8:"security";s:59:"Dev releases are not covered by Drupal security advisories.";}s:9:"8.7.x-dev";a:10:{s:4:"name";s:16:"drupal 8.7.x-dev";s:7:"version";s:9:"8.7.x-dev";s:3:"tag";s:5:"8.7.x";s:6:"status";s:9:"published";s:12:"release_link";s:56:"https://www.drupal.org/project/drupal/releases/8.7.x-dev";s:13:"download_link";s:61:"https://ftp.drupal.org/files/projects/drupal-8.7.x-dev.tar.gz";s:4:"date";s:10:"1589987612";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";}}s:8:"security";s:59:"Dev releases are not covered by Drupal security advisories.";}s:9:"8.6.x-dev";a:10:{s:4:"name";s:16:"drupal 8.6.x-dev";s:7:"version";s:9:"8.6.x-dev";s:3:"tag";s:5:"8.6.x";s:6:"status";s:9:"published";s:12:"release_link";s:56:"https://www.drupal.org/project/drupal/releases/8.6.x-dev";s:13:"download_link";s:61:"https://ftp.drupal.org/files/projects/drupal-8.6.x-dev.tar.gz";s:4:"date";s:10:"1573687985";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";}}s:8:"security";s:59:"Dev releases are not covered by Drupal security advisories.";}s:9:"8.5.x-dev";a:10:{s:4:"name";s:16:"drupal 8.5.x-dev";s:7:"version";s:9:"8.5.x-dev";s:3:"tag";s:5:"8.5.x";s:6:"status";s:9:"published";s:12:"release_link";s:56:"https://www.drupal.org/project/drupal/releases/8.5.x-dev";s:13:"download_link";s:61:"https://ftp.drupal.org/files/projects/drupal-8.5.x-dev.tar.gz";s:4:"date";s:10:"1555533181";s:5:"files";s:0:"";s:8:"security";s:59:"Dev releases are not covered by Drupal security advisories.";s:5:"terms";a:0:{}}s:9:"8.4.x-dev";a:10:{s:4:"name";s:16:"drupal 8.4.x-dev";s:7:"version";s:9:"8.4.x-dev";s:3:"tag";s:5:"8.4.x";s:6:"status";s:9:"published";s:12:"release_link";s:56:"https://www.drupal.org/project/drupal/releases/8.4.x-dev";s:13:"download_link";s:61:"https://ftp.drupal.org/files/projects/drupal-8.4.x-dev.tar.gz";s:4:"date";s:10:"1533047880";s:5:"files";s:0:"";s:8:"security";s:59:"Dev releases are not covered by Drupal security advisories.";s:5:"terms";a:0:{}}s:9:"8.3.x-dev";a:10:{s:4:"name";s:16:"drupal 8.3.x-dev";s:7:"version";s:9:"8.3.x-dev";s:3:"tag";s:5:"8.3.x";s:6:"status";s:9:"published";s:12:"release_link";s:56:"https://www.drupal.org/project/drupal/releases/8.3.x-dev";s:13:"download_link";s:61:"https://ftp.drupal.org/files/projects/drupal-8.3.x-dev.tar.gz";s:4:"date";s:10:"1522263480";s:5:"files";s:0:"";s:8:"security";s:59:"Dev releases are not covered by Drupal security advisories.";s:5:"terms";a:0:{}}s:9:"8.2.x-dev";a:10:{s:4:"name";s:16:"drupal 8.2.x-dev";s:7:"version";s:9:"8.2.x-dev";s:3:"tag";s:5:"8.2.x";s:6:"status";s:9:"published";s:12:"release_link";s:56:"https://www.drupal.org/project/drupal/releases/8.2.x-dev";s:13:"download_link";s:61:"https://ftp.drupal.org/files/projects/drupal-8.2.x-dev.tar.gz";s:4:"date";s:10:"1492624982";s:5:"files";s:0:"";s:8:"security";s:59:"Dev releases are not covered by Drupal security advisories.";s:5:"terms";a:0:{}}s:9:"8.1.x-dev";a:10:{s:4:"name";s:16:"drupal 8.1.x-dev";s:7:"version";s:9:"8.1.x-dev";s:3:"tag";s:5:"8.1.x";s:6:"status";s:9:"published";s:12:"release_link";s:56:"https://www.drupal.org/project/drupal/releases/8.1.x-dev";s:13:"download_link";s:61:"https://ftp.drupal.org/files/projects/drupal-8.1.x-dev.tar.gz";s:4:"date";s:10:"1474478393";s:5:"files";s:0:"";s:8:"security";s:59:"Dev releases are not covered by Drupal security advisories.";s:5:"terms";a:0:{}}s:9:"8.0.x-dev";a:10:{s:4:"name";s:16:"drupal 8.0.x-dev";s:7:"version";s:9:"8.0.x-dev";s:3:"tag";s:5:"8.0.x";s:6:"status";s:9:"published";s:12:"release_link";s:56:"https://www.drupal.org/project/drupal/releases/8.0.x-dev";s:13:"download_link";s:61:"https://ftp.drupal.org/files/projects/drupal-8.0.x-dev.tar.gz";s:4:"date";s:10:"1459900439";s:5:"files";s:0:"";s:5:"terms";a:1:{s:12:"Release type";a:2:{i:0;s:9:"Bug fixes";i:1;s:12:"New features";}}s:8:"security";s:59:"Dev releases are not covered by Drupal security advisories.";}s:8:"dev-main";a:10:{s:4:"name";s:11:"drupal main";s:7:"version";s:8:"dev-main";s:3:"tag";s:4:"main";s:6:"status";s:9:"published";s:12:"release_link";s:51:"https://www.drupal.org/project/drupal/releases/main";s:13:"download_link";s:56:"https://ftp.drupal.org/files/projects/drupal-main.tar.gz";s:4:"date";s:10:"1782928286";s:5:"files";s:0:"";s:8:"security";s:59:"Dev releases are not covered by Drupal security advisories.";s:5:"terms";a:0:{}}}s:10:"last_fetch";i:[[timestamp]];}', [[timestamp_nextday]]); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]menu_link_content` -- CREATE TABLE `[[dbprefix]]menu_link_content` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `revision_id` int unsigned DEFAULT NULL, `bundle` varchar(32) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL, `uuid` varchar(128) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL, `langcode` varchar(12) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `menu_link_content_field__uuid__value` (`uuid`), UNIQUE KEY `menu_link_content__revision_id` (`revision_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='The base table for menu_link_content entities.' AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]menu_link_content_data` -- CREATE TABLE `[[dbprefix]]menu_link_content_data` ( `id` int unsigned NOT NULL, `revision_id` int unsigned NOT NULL, `bundle` varchar(32) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL, `langcode` varchar(12) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL, `enabled` tinyint NOT NULL, `title` varchar(255) DEFAULT NULL, `description` varchar(255) DEFAULT NULL, `menu_name` varchar(255) CHARACTER SET ascii COLLATE ascii_general_ci DEFAULT NULL, `link__uri` varchar(2048) DEFAULT NULL COMMENT 'The URI of the link.', `link__title` varchar(255) DEFAULT NULL COMMENT 'The link text.', `link__options` longblob COMMENT 'Serialized array of options for the link.', `external` tinyint DEFAULT NULL, `rediscover` tinyint DEFAULT NULL, `weight` int DEFAULT NULL, `expanded` tinyint DEFAULT NULL, `parent` varchar(255) DEFAULT NULL, `changed` int DEFAULT NULL, `default_langcode` tinyint NOT NULL, `revision_translation_affected` tinyint DEFAULT NULL, PRIMARY KEY (`id`,`langcode`), KEY `menu_link_content__id__default_langcode__langcode` (`id`,`default_langcode`,`langcode`), KEY `menu_link_content__revision_id` (`revision_id`), KEY `menu_link_content_field__link__uri` (`link__uri`(30)), KEY `menu_link_content__enabled_bundle` (`enabled`,`bundle`,`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='The data table for menu_link_content entities.'; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]menu_link_content_field_revision` -- CREATE TABLE `[[dbprefix]]menu_link_content_field_revision` ( `id` int unsigned NOT NULL, `revision_id` int unsigned NOT NULL, `langcode` varchar(12) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL, `enabled` tinyint NOT NULL, `title` varchar(255) DEFAULT NULL, `description` varchar(255) DEFAULT NULL, `link__uri` varchar(2048) DEFAULT NULL COMMENT 'The URI of the link.', `link__title` varchar(255) DEFAULT NULL COMMENT 'The link text.', `link__options` longblob COMMENT 'Serialized array of options for the link.', `external` tinyint DEFAULT NULL, `changed` int DEFAULT NULL, `default_langcode` tinyint NOT NULL, `revision_translation_affected` tinyint DEFAULT NULL, PRIMARY KEY (`revision_id`,`langcode`), KEY `menu_link_content__id__default_langcode__langcode` (`id`,`default_langcode`,`langcode`), KEY `menu_link_content_field__link__uri` (`link__uri`(30)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='The revision data table for menu_link_content entities.'; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]menu_link_content_revision` -- CREATE TABLE `[[dbprefix]]menu_link_content_revision` ( `id` int unsigned NOT NULL, `revision_id` int unsigned NOT NULL AUTO_INCREMENT, `langcode` varchar(12) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL, `revision_user` int unsigned DEFAULT NULL COMMENT 'The ID of the target entity.', `revision_created` int DEFAULT NULL, `revision_log_message` longtext, `revision_default` tinyint DEFAULT NULL, PRIMARY KEY (`revision_id`), KEY `menu_link_content__id` (`id`), KEY `menu_link_content__ef029a1897` (`revision_user`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='The revision table for menu_link_content entities.'; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]menu_tree` -- CREATE TABLE `[[dbprefix]]menu_tree` ( `menu_name` varchar(32) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL DEFAULT '' COMMENT 'The menu name. All links with the same menu name (such as ''tools'') are part of the same menu.', `mlid` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'The menu link ID (mlid) is the integer primary key.', `id` varchar(255) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL COMMENT 'Unique machine name: the plugin ID.', `parent` varchar(255) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL DEFAULT '' COMMENT 'The plugin ID for the parent of this link.', `route_name` varchar(255) CHARACTER SET ascii COLLATE ascii_general_ci DEFAULT NULL COMMENT 'The machine name of a defined Symfony Route this menu link represents.', `route_param_key` varchar(2048) DEFAULT NULL COMMENT 'An encoded string of route parameters for loading by route.', `route_parameters` longblob COMMENT 'Serialized array of route parameters of this menu link.', `url` varchar(2048) NOT NULL DEFAULT '' COMMENT 'The external path this link points to (when not using a route).', `title` longblob COMMENT 'The serialized title for the link. May be a TranslatableMarkup.', `description` longblob COMMENT 'The serialized description of this link - used for admin pages and title attribute. May be a TranslatableMarkup.', `class` text COMMENT 'The class for this link plugin.', `options` longblob COMMENT 'A serialized array of URL options, such as a query string or HTML attributes.', `provider` varchar(50) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL DEFAULT 'system' COMMENT 'The name of the module that generated this link.', `enabled` smallint NOT NULL DEFAULT '1' COMMENT 'A flag for whether the link should be rendered in menus. (0 = a disabled menu link that may be shown on admin screens, 1 = a normal, visible link)', `discovered` smallint NOT NULL DEFAULT '0' COMMENT 'A flag for whether the link was discovered, so can be purged on rebuild', `expanded` smallint NOT NULL DEFAULT '0' COMMENT 'Flag for whether this link should be rendered as expanded in menus - expanded links always have their child links displayed, instead of only when the link is in the active trail (1 = expanded, 0 = not expanded)', `weight` int NOT NULL DEFAULT '0' COMMENT 'Link weight among links in the same menu at the same depth.', `metadata` longblob COMMENT 'A serialized array of data that may be used by the plugin instance.', `has_children` smallint NOT NULL DEFAULT '0' COMMENT 'Flag indicating whether any enabled links have this link as a parent (1 = enabled children exist, 0 = no enabled children).', `depth` smallint NOT NULL DEFAULT '0' COMMENT 'The depth relative to the top level. A link with empty parent will have depth == 1.', `p1` int unsigned NOT NULL DEFAULT '0' COMMENT 'The first mlid in the materialized path. If N = depth, then pN must equal the mlid. If depth > 1 then p(N-1) must equal the parent link mlid. All pX where X > depth must equal zero. The columns p1 .. p9 are also called the parents.', `p2` int unsigned NOT NULL DEFAULT '0' COMMENT 'The second mlid in the materialized path. See p1.', `p3` int unsigned NOT NULL DEFAULT '0' COMMENT 'The third mlid in the materialized path. See p1.', `p4` int unsigned NOT NULL DEFAULT '0' COMMENT 'The fourth mlid in the materialized path. See p1.', `p5` int unsigned NOT NULL DEFAULT '0' COMMENT 'The fifth mlid in the materialized path. See p1.', `p6` int unsigned NOT NULL DEFAULT '0' COMMENT 'The sixth mlid in the materialized path. See p1.', `p7` int unsigned NOT NULL DEFAULT '0' COMMENT 'The seventh mlid in the materialized path. See p1.', `p8` int unsigned NOT NULL DEFAULT '0' COMMENT 'The eighth mlid in the materialized path. See p1.', `p9` int unsigned NOT NULL DEFAULT '0' COMMENT 'The ninth mlid in the materialized path. See p1.', `form_class` varchar(255) DEFAULT NULL COMMENT 'meh', PRIMARY KEY (`mlid`), UNIQUE KEY `id` (`id`), KEY `menu_parents` (`menu_name`,`p1`,`p2`,`p3`,`p4`,`p5`,`p6`,`p7`,`p8`,`p9`), KEY `menu_parent_expand_child` (`menu_name`,`expanded`,`has_children`,`parent`(16)), KEY `route_values` (`route_name`(32),`route_param_key`(16)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Contains the menu tree hierarchy.' AUTO_INCREMENT=66 ; -- -- Dumping data for table `[[dbprefix]]menu_tree` -- INSERT INTO `[[dbprefix]]menu_tree` VALUES ('navigation-user-links', 1, 'navigation.user_links.user.page', '', 'user.page', '', 'a:0:{}', '', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:12:"View profile";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 's:0:"";', 'Drupal\\Core\\Menu\\MenuLinkDefault', 'a:0:{}', 'navigation', 1, 1, 0, -10, 'a:0:{}', 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 'Drupal\\Core\\Menu\\Form\\MenuLinkDefaultForm'), ('navigation-user-links', 2, 'navigation.user_links.user.edit', '', 'user.edit', '', 'a:0:{}', '', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:12:"Edit profile";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 's:0:"";', 'Drupal\\Core\\Menu\\MenuLinkDefault', 'a:0:{}', 'navigation', 1, 1, 0, 0, 'a:0:{}', 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 'Drupal\\Core\\Menu\\Form\\MenuLinkDefaultForm'), ('navigation-user-links', 3, 'navigation.user_links.user.logout', '', 'user.logout', '', 'a:0:{}', '', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:7:"Log out";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 's:0:"";', 'Drupal\\Core\\Menu\\MenuLinkDefault', 'a:0:{}', 'navigation', 1, 1, 0, 10, 'a:0:{}', 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 'Drupal\\Core\\Menu\\Form\\MenuLinkDefaultForm'), ('tools', 4, 'node.add_page', '', 'entity.node.add_page', '', 'a:0:{}', '', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:11:"Add content";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 's:0:"";', 'Drupal\\Core\\Menu\\MenuLinkDefault', 'a:0:{}', 'node', 1, 1, 0, 0, 'a:0:{}', 0, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 'Drupal\\Core\\Menu\\Form\\MenuLinkDefaultForm'), ('main', 5, 'standard.front_page', '', '', '', 'a:0:{}', '', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:4:"Home";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 's:0:"";', 'Drupal\\Core\\Menu\\MenuLinkDefault', 'a:0:{}', 'standard', 1, 1, 0, 0, 'a:0:{}', 0, 1, 5, 0, 0, 0, 0, 0, 0, 0, 0, 'Drupal\\Core\\Menu\\Form\\MenuLinkDefaultForm'), ('admin', 6, 'system.admin', '', 'system.admin', '', 'a:0:{}', '', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:14:"Administration";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 's:0:"";', 'Drupal\\Core\\Menu\\MenuLinkDefault', 'a:0:{}', 'system', 1, 1, 0, 9, 'a:0:{}', 1, 1, 6, 0, 0, 0, 0, 0, 0, 0, 0, 'Drupal\\Core\\Menu\\Form\\MenuLinkDefaultForm'), ('admin', 7, 'announcements_feed.announcement', 'system.admin', 'announcements_feed.announcement', '', 'a:0:{}', '', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:13:"Announcements";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:49:"Displays announcements from the Drupal community.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 'Drupal\\Core\\Menu\\MenuLinkDefault', 'a:0:{}', 'announcements_feed', 1, 1, 0, 10, 'a:0:{}', 0, 2, 6, 7, 0, 0, 0, 0, 0, 0, 0, 'Drupal\\Core\\Menu\\Form\\MenuLinkDefaultForm'), ('admin', 8, 'help.main', 'system.admin', 'help.main', '', 'a:0:{}', '', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:4:"Help";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:48:"Reference for usage, configuration, and modules.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 'Drupal\\Core\\Menu\\MenuLinkDefault', 'a:0:{}', 'help', 1, 1, 0, 9, 'a:0:{}', 0, 2, 6, 8, 0, 0, 0, 0, 0, 0, 0, 'Drupal\\Core\\Menu\\Form\\MenuLinkDefaultForm'), ('admin', 9, 'system.admin_content', 'system.admin', 'system.admin_content', '', 'a:0:{}', '', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:7:"Content";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:24:"Find and manage content.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 'Drupal\\Core\\Menu\\MenuLinkDefault', 'a:0:{}', 'system', 1, 1, 0, -10, 'a:0:{}', 0, 2, 6, 9, 0, 0, 0, 0, 0, 0, 0, 'Drupal\\Core\\Menu\\Form\\MenuLinkDefaultForm'), ('admin', 10, 'system.admin_structure', 'system.admin', 'system.admin_structure', '', 'a:0:{}', '', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:9:"Structure";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:45:"Administer blocks, content types, menus, etc.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 'Drupal\\Core\\Menu\\MenuLinkDefault', 'a:0:{}', 'system', 1, 1, 0, -8, 'a:0:{}', 1, 2, 6, 10, 0, 0, 0, 0, 0, 0, 0, 'Drupal\\Core\\Menu\\Form\\MenuLinkDefaultForm'), ('admin', 11, 'block.admin_display', 'system.admin_structure', 'block.admin_display', '', 'a:0:{}', '', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:12:"Block layout";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:79:"Configure what block content appears in your site''s sidebars and other regions.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 'Drupal\\Core\\Menu\\MenuLinkDefault', 'a:0:{}', 'block', 1, 1, 0, 0, 'a:0:{}', 0, 3, 6, 10, 11, 0, 0, 0, 0, 0, 0, 'Drupal\\Core\\Menu\\Form\\MenuLinkDefaultForm'), ('admin', 12, 'entity.block_content_type.collection', 'system.admin_structure', 'entity.block_content_type.collection', '', 'a:0:{}', '', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:11:"Block types";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:78:"Create and manage fields, forms, and display settings for your content blocks.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 'Drupal\\Core\\Menu\\MenuLinkDefault', 'a:0:{}', 'block_content', 1, 1, 0, 0, 'a:0:{}', 0, 3, 6, 10, 12, 0, 0, 0, 0, 0, 0, 'Drupal\\Core\\Menu\\Form\\MenuLinkDefaultForm'), ('admin', 13, 'field_ui.display_mode', 'system.admin_structure', 'field_ui.display_mode', '', 'a:0:{}', '', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:13:"Display modes";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:65:"Configure what displays are available for your content and forms.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 'Drupal\\Core\\Menu\\MenuLinkDefault', 'a:0:{}', 'field_ui', 1, 1, 0, 0, 'a:0:{}', 1, 3, 6, 10, 13, 0, 0, 0, 0, 0, 0, 'Drupal\\Core\\Menu\\Form\\MenuLinkDefaultForm'), ('admin', 14, 'entity.entity_view_mode.collection', 'field_ui.display_mode', 'entity.entity_view_mode.collection', '', 'a:0:{}', '', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:10:"View modes";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:25:"Manage custom view modes.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 'Drupal\\Core\\Menu\\MenuLinkDefault', 'a:0:{}', 'field_ui', 1, 1, 0, 0, 'a:0:{}', 0, 4, 6, 10, 13, 14, 0, 0, 0, 0, 0, 'Drupal\\Core\\Menu\\Form\\MenuLinkDefaultForm'), ('admin', 15, 'entity.entity_form_mode.collection', 'field_ui.display_mode', 'entity.entity_form_mode.collection', '', 'a:0:{}', '', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:10:"Form modes";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:25:"Manage custom form modes.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 'Drupal\\Core\\Menu\\MenuLinkDefault', 'a:0:{}', 'field_ui', 1, 1, 0, 0, 'a:0:{}', 0, 4, 6, 10, 13, 15, 0, 0, 0, 0, 0, 'Drupal\\Core\\Menu\\Form\\MenuLinkDefaultForm'), ('admin', 16, 'entity.menu.collection', 'system.admin_structure', 'entity.menu.collection', '', 'a:0:{}', '', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:5:"Menus";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:28:"Manage menus and menu links.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 'Drupal\\Core\\Menu\\MenuLinkDefault', 'a:0:{}', 'menu_ui', 1, 1, 0, 0, 'a:0:{}', 0, 3, 6, 10, 16, 0, 0, 0, 0, 0, 0, 'Drupal\\Core\\Menu\\Form\\MenuLinkDefaultForm'), ('admin', 17, 'entity.node_type.collection', 'system.admin_structure', 'entity.node_type.collection', '', 'a:0:{}', '', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:13:"Content types";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:71:"Create and manage fields, forms, and display settings for your content.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 'Drupal\\Core\\Menu\\MenuLinkDefault', 'a:0:{}', 'node', 1, 1, 0, 0, 'a:0:{}', 0, 3, 6, 10, 17, 0, 0, 0, 0, 0, 0, 'Drupal\\Core\\Menu\\Form\\MenuLinkDefaultForm'), ('admin', 18, 'entity.taxonomy_vocabulary.collection', 'system.admin_structure', 'entity.taxonomy_vocabulary.collection', '', 'a:0:{}', '', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:8:"Taxonomy";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:67:"Manage tagging, categorization, and classification of your content.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 'Drupal\\Core\\Menu\\MenuLinkDefault', 'a:0:{}', 'taxonomy', 1, 1, 0, 0, 'a:0:{}', 0, 3, 6, 10, 18, 0, 0, 0, 0, 0, 0, 'Drupal\\Core\\Menu\\Form\\MenuLinkDefaultForm'), ('admin', 19, 'entity.view.collection', 'system.admin_structure', 'entity.view.collection', '', 'a:0:{}', '', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:5:"Views";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:35:"Manage customized lists of content.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 'Drupal\\Core\\Menu\\MenuLinkDefault', 'a:0:{}', 'views_ui', 1, 1, 0, 0, 'a:0:{}', 0, 3, 6, 10, 19, 0, 0, 0, 0, 0, 0, 'Drupal\\Core\\Menu\\Form\\MenuLinkDefaultForm'), ('admin', 20, 'system.themes_page', 'system.admin', 'system.themes_page', '', 'a:0:{}', '', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:10:"Appearance";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:28:"Select and configure themes.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 'Drupal\\Core\\Menu\\MenuLinkDefault', 'a:0:{}', 'system', 1, 1, 0, -6, 'a:0:{}', 0, 2, 6, 20, 0, 0, 0, 0, 0, 0, 0, 'Drupal\\Core\\Menu\\Form\\MenuLinkDefaultForm'), ('admin', 21, 'system.modules_list', 'system.admin', 'system.modules_list', '', 'a:0:{}', '', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:6:"Extend";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:53:"Add and install modules to extend site functionality.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 'Drupal\\Core\\Menu\\MenuLinkDefault', 'a:0:{}', 'system', 1, 1, 0, -2, 'a:0:{}', 0, 2, 6, 21, 0, 0, 0, 0, 0, 0, 0, 'Drupal\\Core\\Menu\\Form\\MenuLinkDefaultForm'), ('admin', 22, 'system.admin_config', 'system.admin', 'system.admin_config', '', 'a:0:{}', '', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:13:"Configuration";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:20:"Administer settings.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 'Drupal\\Core\\Menu\\MenuLinkDefault', 'a:0:{}', 'system', 1, 1, 0, 0, 'a:0:{}', 1, 2, 6, 22, 0, 0, 0, 0, 0, 0, 0, 'Drupal\\Core\\Menu\\Form\\MenuLinkDefaultForm'), ('admin', 23, 'system.admin_config_media', 'system.admin_config', 'system.admin_config_media', '', 'a:0:{}', '', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:5:"Media";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 's:0:"";', 'Drupal\\Core\\Menu\\MenuLinkDefault', 'a:0:{}', 'system', 1, 1, 0, -10, 'a:0:{}', 1, 3, 6, 22, 23, 0, 0, 0, 0, 0, 0, 'Drupal\\Core\\Menu\\Form\\MenuLinkDefaultForm'), ('admin', 24, 'entity.image_style.collection', 'system.admin_config_media', 'entity.image_style.collection', '', 'a:0:{}', '', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:12:"Image styles";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:78:"Configure styles that can be used for resizing or adjusting images on display.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 'Drupal\\Core\\Menu\\MenuLinkDefault', 'a:0:{}', 'image', 1, 1, 0, 0, 'a:0:{}', 0, 4, 6, 22, 23, 24, 0, 0, 0, 0, 0, 'Drupal\\Core\\Menu\\Form\\MenuLinkDefaultForm'), ('admin', 25, 'system.file_system_settings', 'system.admin_config_media', 'system.file_system_settings', '', 'a:0:{}', '', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:11:"File system";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:67:"Configure the location of uploaded files and how they are accessed.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 'Drupal\\Core\\Menu\\MenuLinkDefault', 'a:0:{}', 'system', 1, 1, 0, 0, 'a:0:{}', 0, 4, 6, 22, 23, 25, 0, 0, 0, 0, 0, 'Drupal\\Core\\Menu\\Form\\MenuLinkDefaultForm'), ('admin', 26, 'system.image_toolkit_settings', 'system.admin_config_media', 'system.image_toolkit_settings', '', 'a:0:{}', '', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:13:"Image toolkit";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:74:"Choose which image toolkit to use if you have installed optional toolkits.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 'Drupal\\Core\\Menu\\MenuLinkDefault', 'a:0:{}', 'system', 1, 1, 0, 20, 'a:0:{}', 0, 4, 6, 22, 23, 26, 0, 0, 0, 0, 0, 'Drupal\\Core\\Menu\\Form\\MenuLinkDefaultForm'), ('admin', 27, 'system.admin_config_services', 'system.admin_config', 'system.admin_config_services', '', 'a:0:{}', '', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:12:"Web services";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 's:0:"";', 'Drupal\\Core\\Menu\\MenuLinkDefault', 'a:0:{}', 'system', 1, 1, 0, 0, 'a:0:{}', 1, 3, 6, 22, 27, 0, 0, 0, 0, 0, 0, 'Drupal\\Core\\Menu\\Form\\MenuLinkDefaultForm'), ('admin', 28, 'system.linkset_settings', 'system.admin_config_services', 'system.linkset_settings', '', 'a:0:{}', '', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:21:"Menu Linkset Settings";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:43:"Enable or disable the menu linkset endpoint";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 'Drupal\\Core\\Menu\\MenuLinkDefault', 'a:0:{}', 'system', 1, 1, 0, 10, 'a:0:{}', 0, 4, 6, 22, 27, 28, 0, 0, 0, 0, 0, 'Drupal\\Core\\Menu\\Form\\MenuLinkDefaultForm'), ('admin', 29, 'system.admin_config_development', 'system.admin_config', 'system.admin_config_development', '', 'a:0:{}', '', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:11:"Development";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:36:"Configure and use development tools.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 'Drupal\\Core\\Menu\\MenuLinkDefault', 'a:0:{}', 'system', 1, 1, 0, -10, 'a:0:{}', 1, 3, 6, 22, 29, 0, 0, 0, 0, 0, 0, 'Drupal\\Core\\Menu\\Form\\MenuLinkDefaultForm'), ('admin', 30, 'config.sync', 'system.admin_config_development', 'config.sync', '', 'a:0:{}', '', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:29:"Configuration synchronization";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:37:"Import and export your configuration.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 'Drupal\\Core\\Menu\\MenuLinkDefault', 'a:0:{}', 'config', 1, 1, 0, 0, 'a:0:{}', 0, 4, 6, 22, 29, 30, 0, 0, 0, 0, 0, 'Drupal\\Core\\Menu\\Form\\MenuLinkDefaultForm'), ('admin', 31, 'system.site_maintenance_mode', 'system.admin_config_development', 'system.site_maintenance_mode', '', 'a:0:{}', '', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:16:"Maintenance mode";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:62:"Take the site offline for updates and other maintenance tasks.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 'Drupal\\Core\\Menu\\MenuLinkDefault', 'a:0:{}', 'system', 1, 1, 0, -10, 'a:0:{}', 0, 4, 6, 22, 29, 31, 0, 0, 0, 0, 0, 'Drupal\\Core\\Menu\\Form\\MenuLinkDefaultForm'), ('admin', 32, 'system.performance_settings', 'system.admin_config_development', 'system.performance_settings', '', 'a:0:{}', '', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:11:"Performance";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:45:"Configure caching and bandwidth optimization.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 'Drupal\\Core\\Menu\\MenuLinkDefault', 'a:0:{}', 'system', 1, 1, 0, -20, 'a:0:{}', 0, 4, 6, 22, 29, 32, 0, 0, 0, 0, 0, 'Drupal\\Core\\Menu\\Form\\MenuLinkDefaultForm'), ('admin', 33, 'system.development_settings', 'system.admin_config_development', 'system.development_settings', '', 'a:0:{}', '', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:20:"Development settings";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:36:"Configure theme development settings";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 'Drupal\\Core\\Menu\\MenuLinkDefault', 'a:0:{}', 'system', 1, 1, 0, -19, 'a:0:{}', 0, 4, 6, 22, 29, 33, 0, 0, 0, 0, 0, 'Drupal\\Core\\Menu\\Form\\MenuLinkDefaultForm'), ('admin', 34, 'system.logging_settings', 'system.admin_config_development', 'system.logging_settings', '', 'a:0:{}', '', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:18:"Logging and errors";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:61:"Configure the display of error messages and database logging.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 'Drupal\\Core\\Menu\\MenuLinkDefault', 'a:0:{}', 'system', 1, 1, 0, -15, 'a:0:{}', 0, 4, 6, 22, 29, 34, 0, 0, 0, 0, 0, 'Drupal\\Core\\Menu\\Form\\MenuLinkDefaultForm'), ('admin', 35, 'system.admin_config_regional', 'system.admin_config', 'system.admin_config_regional', '', 'a:0:{}', '', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:19:"Region and language";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:59:"Configure regional settings, localization, and translation.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 'Drupal\\Core\\Menu\\MenuLinkDefault', 'a:0:{}', 'system', 1, 1, 0, -5, 'a:0:{}', 1, 3, 6, 22, 35, 0, 0, 0, 0, 0, 0, 'Drupal\\Core\\Menu\\Form\\MenuLinkDefaultForm'), ('admin', 36, 'system.regional_settings', 'system.admin_config_regional', 'system.regional_settings', '', 'a:0:{}', '', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:17:"Regional settings";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:43:"Configure the locale and timezone settings.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 'Drupal\\Core\\Menu\\MenuLinkDefault', 'a:0:{}', 'system', 1, 1, 0, -20, 'a:0:{}', 0, 4, 6, 22, 35, 36, 0, 0, 0, 0, 0, 'Drupal\\Core\\Menu\\Form\\MenuLinkDefaultForm'), ('admin', 37, 'entity.date_format.collection', 'system.admin_config_regional', 'entity.date_format.collection', '', 'a:0:{}', '', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:21:"Date and time formats";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:44:"Configure how dates and times are displayed.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 'Drupal\\Core\\Menu\\MenuLinkDefault', 'a:0:{}', 'system', 1, 1, 0, -9, 'a:0:{}', 0, 4, 6, 22, 35, 37, 0, 0, 0, 0, 0, 'Drupal\\Core\\Menu\\Form\\MenuLinkDefaultForm'), ('admin', 38, 'system.admin_config_search', 'system.admin_config', 'system.admin_config_search', '', 'a:0:{}', '', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:19:"Search and metadata";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:64:"Configure site search, metadata, and search engine optimization.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 'Drupal\\Core\\Menu\\MenuLinkDefault', 'a:0:{}', 'system', 1, 1, 0, -10, 'a:0:{}', 1, 3, 6, 22, 38, 0, 0, 0, 0, 0, 0, 'Drupal\\Core\\Menu\\Form\\MenuLinkDefaultForm'), ('admin', 39, 'entity.path_alias.collection', 'system.admin_config_search', 'entity.path_alias.collection', '', 'a:0:{}', '', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:11:"URL aliases";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:34:"Add custom URLs to existing paths.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 'Drupal\\Core\\Menu\\MenuLinkDefault', 'a:0:{}', 'path', 1, 1, 0, -5, 'a:0:{}', 0, 4, 6, 22, 38, 39, 0, 0, 0, 0, 0, 'Drupal\\Core\\Menu\\Form\\MenuLinkDefaultForm'), ('admin', 40, 'system.admin_config_system', 'system.admin_config', 'system.admin_config_system', '', 'a:0:{}', '', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:6:"System";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:49:"Configure basic site settings, actions, and cron.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 'Drupal\\Core\\Menu\\MenuLinkDefault', 'a:0:{}', 'system', 1, 1, 0, -20, 'a:0:{}', 1, 3, 6, 22, 40, 0, 0, 0, 0, 0, 0, 'Drupal\\Core\\Menu\\Form\\MenuLinkDefaultForm'), ('admin', 41, 'system.site_information_settings', 'system.admin_config_system', 'system.site_information_settings', '', 'a:0:{}', '', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:19:"Basic site settings";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:77:"Change site name, email address, slogan, default front page, and error pages.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 'Drupal\\Core\\Menu\\MenuLinkDefault', 'a:0:{}', 'system', 1, 1, 0, -20, 'a:0:{}', 0, 4, 6, 22, 40, 41, 0, 0, 0, 0, 0, 'Drupal\\Core\\Menu\\Form\\MenuLinkDefaultForm'), ('admin', 42, 'system.cron_settings', 'system.admin_config_system', 'system.cron_settings', '', 'a:0:{}', '', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:4:"Cron";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:40:"Manage automatic site maintenance tasks.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 'Drupal\\Core\\Menu\\MenuLinkDefault', 'a:0:{}', 'system', 1, 1, 0, 20, 'a:0:{}', 0, 4, 6, 22, 40, 42, 0, 0, 0, 0, 0, 'Drupal\\Core\\Menu\\Form\\MenuLinkDefaultForm'), ('admin', 43, 'system.admin_config_ui', 'system.admin_config', 'system.admin_config_ui', '', 'a:0:{}', '', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:14:"User interface";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:44:"Configure the administrative user interface.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 'Drupal\\Core\\Menu\\MenuLinkDefault', 'a:0:{}', 'system', 1, 1, 0, -15, 'a:0:{}', 1, 3, 6, 22, 43, 0, 0, 0, 0, 0, 0, 'Drupal\\Core\\Menu\\Form\\MenuLinkDefaultForm'), ('admin', 44, 'navigation.settings', 'system.admin_config_ui', 'navigation.settings', '', 'a:0:{}', '', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:19:"Navigation settings";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:27:"Manage navigation settings.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 'Drupal\\Core\\Menu\\MenuLinkDefault', 'a:0:{}', 'navigation', 1, 1, 0, 0, 'a:0:{}', 0, 4, 6, 22, 43, 44, 0, 0, 0, 0, 0, 'Drupal\\Core\\Menu\\Form\\MenuLinkDefaultForm'), ('admin', 45, 'navigation_block.admin_display', 'system.admin_config_ui', 'layout_builder.navigation.view', '', 'a:0:{}', '', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:17:"Navigation blocks";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:25:"Manage navigation blocks.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 'Drupal\\Core\\Menu\\MenuLinkDefault', 'a:0:{}', 'navigation', 1, 1, 0, 0, 'a:0:{}', 0, 4, 6, 22, 43, 45, 0, 0, 0, 0, 0, 'Drupal\\Core\\Menu\\Form\\MenuLinkDefaultForm'), ('admin', 46, 'system.admin_config_workflow', 'system.admin_config', 'system.admin_config_workflow', '', 'a:0:{}', '', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:8:"Workflow";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:28:"Manage the content workflow.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 'Drupal\\Core\\Menu\\MenuLinkDefault', 'a:0:{}', 'system', 1, 1, 0, 5, 'a:0:{}', 0, 3, 6, 22, 46, 0, 0, 0, 0, 0, 0, 'Drupal\\Core\\Menu\\Form\\MenuLinkDefaultForm'), ('admin', 47, 'system.admin_config_content', 'system.admin_config', 'system.admin_config_content', '', 'a:0:{}', '', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:17:"Content authoring";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:43:"Configure content formatting and authoring.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 'Drupal\\Core\\Menu\\MenuLinkDefault', 'a:0:{}', 'system', 1, 1, 0, -15, 'a:0:{}', 1, 3, 6, 22, 47, 0, 0, 0, 0, 0, 0, 'Drupal\\Core\\Menu\\Form\\MenuLinkDefaultForm'), ('admin', 48, 'filter.admin_overview', 'system.admin_config_content', 'filter.admin_overview', '', 'a:0:{}', '', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:24:"Text formats and editors";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:78:"Select and configure text editors, and how content is filtered when displayed.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 'Drupal\\Core\\Menu\\MenuLinkDefault', 'a:0:{}', 'filter', 1, 1, 0, 0, 'a:0:{}', 0, 4, 6, 22, 47, 48, 0, 0, 0, 0, 0, 'Drupal\\Core\\Menu\\Form\\MenuLinkDefaultForm'), ('admin', 49, 'user.admin_index', 'system.admin_config', 'user.admin_index', '', 'a:0:{}', '', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:6:"People";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:24:"Configure user accounts.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 'Drupal\\Core\\Menu\\MenuLinkDefault', 'a:0:{}', 'user', 1, 1, 0, -20, 'a:0:{}', 1, 3, 6, 22, 49, 0, 0, 0, 0, 0, 0, 'Drupal\\Core\\Menu\\Form\\MenuLinkDefaultForm'), ('admin', 50, 'entity.user.admin_form', 'user.admin_index', 'entity.user.admin_form', '', 'a:0:{}', '', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:16:"Account settings";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:105:"Configure default user account settings, including fields, registration requirements, and email messages.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 'Drupal\\Core\\Menu\\MenuLinkDefault', 'a:0:{}', 'user', 1, 1, 0, -10, 'a:0:{}', 0, 4, 6, 22, 49, 50, 0, 0, 0, 0, 0, 'Drupal\\Core\\Menu\\Form\\MenuLinkDefaultForm'), ('admin', 51, 'system.admin_reports', 'system.admin', 'system.admin_reports', '', 'a:0:{}', '', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:7:"Reports";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:34:"View reports, updates, and errors.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 'Drupal\\Core\\Menu\\MenuLinkDefault', 'a:0:{}', 'system', 1, 1, 0, 5, 'a:0:{}', 1, 2, 6, 51, 0, 0, 0, 0, 0, 0, 0, 'Drupal\\Core\\Menu\\Form\\MenuLinkDefaultForm'), ('admin', 52, 'dblog.overview', 'system.admin_reports', 'dblog.overview', '', 'a:0:{}', '', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:19:"Recent log messages";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:43:"View events that have recently been logged.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 'Drupal\\Core\\Menu\\MenuLinkDefault', 'a:0:{}', 'dblog', 1, 1, 0, -1, 'a:0:{}', 0, 3, 6, 51, 52, 0, 0, 0, 0, 0, 0, 'Drupal\\Core\\Menu\\Form\\MenuLinkDefaultForm'), ('admin', 53, 'dblog.page_not_found', 'system.admin_reports', 'dblog.page_not_found', '', 'a:0:{}', '', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:27:"Top ''page not found'' errors";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:36:"View ''page not found'' errors (404s).";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 'Drupal\\Core\\Menu\\MenuLinkDefault', 'a:0:{}', 'dblog', 1, 1, 0, 0, 'a:0:{}', 0, 3, 6, 51, 53, 0, 0, 0, 0, 0, 0, 'Drupal\\Core\\Menu\\Form\\MenuLinkDefaultForm'), ('admin', 54, 'dblog.access_denied', 'system.admin_reports', 'dblog.access_denied', '', 'a:0:{}', '', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:26:"Top ''access denied'' errors";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:35:"View ''access denied'' errors (403s).";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 'Drupal\\Core\\Menu\\MenuLinkDefault', 'a:0:{}', 'dblog', 1, 1, 0, 0, 'a:0:{}', 0, 3, 6, 51, 54, 0, 0, 0, 0, 0, 0, 'Drupal\\Core\\Menu\\Form\\MenuLinkDefaultForm'), ('admin', 55, 'entity.field_storage_config.collection', 'system.admin_reports', 'entity.field_storage_config.collection', '', 'a:0:{}', '', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:10:"Field list";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:39:"Overview of fields on all entity types.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 'Drupal\\Core\\Menu\\MenuLinkDefault', 'a:0:{}', 'field_ui', 1, 1, 0, 0, 'a:0:{}', 0, 3, 6, 51, 55, 0, 0, 0, 0, 0, 0, 'Drupal\\Core\\Menu\\Form\\MenuLinkDefaultForm'), ('admin', 56, 'system.status', 'system.admin_reports', 'system.status', '', 'a:0:{}', '', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:13:"Status report";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:48:"Get a status report about your site''s operation.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 'Drupal\\Core\\Menu\\MenuLinkDefault', 'a:0:{}', 'system', 1, 1, 0, -60, 'a:0:{}', 0, 3, 6, 51, 56, 0, 0, 0, 0, 0, 0, 'Drupal\\Core\\Menu\\Form\\MenuLinkDefaultForm'), ('admin', 57, 'views_ui.reports_plugins', 'system.admin_reports', 'views_ui.reports_plugins', '', 'a:0:{}', '', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:13:"Views plugins";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:38:"Overview of plugins used in all views.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 'Drupal\\Core\\Menu\\MenuLinkDefault', 'a:0:{}', 'views_ui', 1, 1, 0, 0, 'a:0:{}', 0, 3, 6, 51, 57, 0, 0, 0, 0, 0, 0, 'Drupal\\Core\\Menu\\Form\\MenuLinkDefaultForm'), ('admin', 58, 'entity.user.collection', 'system.admin', 'entity.user.collection', '', 'a:0:{}', '', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:6:"People";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:45:"Manage user accounts, roles, and permissions.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 'Drupal\\Core\\Menu\\MenuLinkDefault', 'a:0:{}', 'user', 1, 1, 0, 4, 'a:0:{}', 0, 2, 6, 58, 0, 0, 0, 0, 0, 0, 0, 'Drupal\\Core\\Menu\\Form\\MenuLinkDefaultForm'), ('account', 59, 'user.page', '', 'user.page', '', 'a:0:{}', '', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:10:"My account";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 's:0:"";', 'Drupal\\Core\\Menu\\MenuLinkDefault', 'a:0:{}', 'user', 1, 1, 0, -10, 'a:0:{}', 0, 1, 59, 0, 0, 0, 0, 0, 0, 0, 0, 'Drupal\\Core\\Menu\\Form\\MenuLinkDefaultForm'), ('account', 60, 'user.logout', '', '', '', 'a:0:{}', '', 's:0:"";', 's:0:"";', 'Drupal\\user\\Plugin\\Menu\\LoginLogoutMenuLink', 'a:0:{}', 'user', 1, 1, 0, 10, 'a:0:{}', 0, 1, 60, 0, 0, 0, 0, 0, 0, 0, 0, 'Drupal\\Core\\Menu\\Form\\MenuLinkDefaultForm'), ('content', 61, 'navigation.create', '', 'entity.node.add_page', '', 'a:0:{}', '', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:6:"Create";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 's:0:"";', 'Drupal\\Core\\Menu\\MenuLinkDefault', 'a:0:{}', 'navigation', 1, 1, 0, -10, 'a:0:{}', 0, 1, 61, 0, 0, 0, 0, 0, 0, 0, 0, 'Drupal\\Core\\Menu\\Form\\MenuLinkDefaultForm'), ('content', 62, 'navigation.content', '', 'system.admin_content', '', 'a:0:{}', '', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:7:"Content";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 's:0:"";', 'Drupal\\Core\\Menu\\MenuLinkDefault', 'a:0:{}', 'navigation', 1, 1, 0, 0, 'a:0:{}', 0, 1, 62, 0, 0, 0, 0, 0, 0, 0, 0, 'Drupal\\Core\\Menu\\Form\\MenuLinkDefaultForm'), ('content', 63, 'navigation.files', '', 'view.files.page_1', '', 'a:0:{}', '', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:5:"Files";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 's:0:"";', 'Drupal\\Core\\Menu\\MenuLinkDefault', 'a:0:{}', 'navigation', 1, 1, 0, 0, 'a:0:{}', 0, 1, 63, 0, 0, 0, 0, 0, 0, 0, 0, 'Drupal\\Core\\Menu\\Form\\MenuLinkDefaultForm'), ('content', 64, 'navigation.blocks', '', 'entity.block_content.collection', '', 'a:0:{}', '', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:6:"Blocks";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 's:0:"";', 'Drupal\\Core\\Menu\\MenuLinkDefault', 'a:0:{}', 'navigation', 1, 1, 0, 0, 'a:0:{}', 0, 1, 64, 0, 0, 0, 0, 0, 0, 0, 0, 'Drupal\\Core\\Menu\\Form\\MenuLinkDefaultForm'), ('admin', 65, 'update.status', 'system.admin_reports', 'update.status', '', 'a:0:{}', '', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:17:"Available updates";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 'O:48:"Drupal\\Core\\StringTranslation\\TranslatableMarkup":3:{s:9:"\0*\0string";s:82:"Get a status report about available updates for your installed modules and themes.";s:12:"\0*\0arguments";a:0:{}s:10:"\0*\0options";a:0:{}}', 'Drupal\\Core\\Menu\\MenuLinkDefault', 'a:0:{}', 'update', 1, 1, 0, -50, 'a:0:{}', 0, 3, 6, 51, 65, 0, 0, 0, 0, 0, 0, 'Drupal\\Core\\Menu\\Form\\MenuLinkDefaultForm'); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]node` -- CREATE TABLE `[[dbprefix]]node` ( `nid` int unsigned NOT NULL AUTO_INCREMENT, `vid` int unsigned DEFAULT NULL, `type` varchar(32) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL COMMENT 'The ID of the target entity.', `uuid` varchar(128) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL, `langcode` varchar(12) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL, PRIMARY KEY (`nid`), UNIQUE KEY `node_field__uuid__value` (`uuid`), UNIQUE KEY `node__vid` (`vid`), KEY `node_field__type__target_id` (`type`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='The base table for node entities.'; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]node_access` -- CREATE TABLE `[[dbprefix]]node_access` ( `nid` int unsigned NOT NULL DEFAULT '0' COMMENT 'The "[[dbprefix]]node".nid this record affects.', `langcode` varchar(12) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL DEFAULT '' COMMENT 'The "[[dbprefix]]language".langcode of this node.', `fallback` tinyint unsigned NOT NULL DEFAULT '1' COMMENT 'Boolean indicating whether this record should be used as a fallback if a language condition is not provided.', `gid` int unsigned NOT NULL DEFAULT '0' COMMENT 'The grant ID a user must possess in the specified realm to gain this row''s privileges on the node.', `realm` varchar(255) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL DEFAULT '' COMMENT 'The realm in which the user must possess the grant ID. Modules can define one or more realms by implementing hook_node_grants().', `grant_view` tinyint unsigned NOT NULL DEFAULT '0' COMMENT 'Boolean indicating whether a user with the realm/grant pair can view this node.', `grant_update` tinyint unsigned NOT NULL DEFAULT '0' COMMENT 'Boolean indicating whether a user with the realm/grant pair can edit this node.', `grant_delete` tinyint unsigned NOT NULL DEFAULT '0' COMMENT 'Boolean indicating whether a user with the realm/grant pair can delete this node.', PRIMARY KEY (`nid`,`gid`,`realm`,`langcode`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Identifies which realm/grant pairs a user must possess in…'; -- -- Dumping data for table `[[dbprefix]]node_access` -- INSERT INTO `[[dbprefix]]node_access` VALUES (0, '', 1, 0, 'all', 1, 0, 0); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]node_field_data` -- CREATE TABLE `[[dbprefix]]node_field_data` ( `nid` int unsigned NOT NULL, `vid` int unsigned NOT NULL, `type` varchar(32) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL COMMENT 'The ID of the target entity.', `langcode` varchar(12) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL, `status` tinyint NOT NULL, `uid` int unsigned NOT NULL COMMENT 'The ID of the target entity.', `title` varchar(255) NOT NULL, `created` int NOT NULL, `changed` int NOT NULL, `promote` tinyint NOT NULL, `sticky` tinyint NOT NULL, `default_langcode` tinyint NOT NULL, `revision_translation_affected` tinyint DEFAULT NULL, PRIMARY KEY (`nid`,`langcode`), KEY `node__id__default_langcode__langcode` (`nid`,`default_langcode`,`langcode`), KEY `node__vid` (`vid`), KEY `node_field__type__target_id` (`type`), KEY `node_field__uid__target_id` (`uid`), KEY `node_field__created` (`created`), KEY `node_field__changed` (`changed`), KEY `node__status_type` (`status`,`type`,`nid`), KEY `node__frontpage` (`promote`,`status`,`sticky`,`created`), KEY `node__title_type` (`title`(191),`type`(4)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='The data table for node entities.'; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]node_field_revision` -- CREATE TABLE `[[dbprefix]]node_field_revision` ( `nid` int unsigned NOT NULL, `vid` int unsigned NOT NULL, `langcode` varchar(12) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL, `status` tinyint NOT NULL, `uid` int unsigned NOT NULL COMMENT 'The ID of the target entity.', `title` varchar(255) DEFAULT NULL, `created` int DEFAULT NULL, `changed` int DEFAULT NULL, `promote` tinyint DEFAULT NULL, `sticky` tinyint DEFAULT NULL, `default_langcode` tinyint NOT NULL, `revision_translation_affected` tinyint DEFAULT NULL, PRIMARY KEY (`vid`,`langcode`), KEY `node__id__default_langcode__langcode` (`nid`,`default_langcode`,`langcode`), KEY `node_field__uid__target_id` (`uid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='The revision data table for node entities.'; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]node_revision` -- CREATE TABLE `[[dbprefix]]node_revision` ( `nid` int unsigned NOT NULL, `vid` int unsigned NOT NULL AUTO_INCREMENT, `langcode` varchar(12) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL, `revision_uid` int unsigned DEFAULT NULL COMMENT 'The ID of the target entity.', `revision_timestamp` int DEFAULT NULL, `revision_log` longtext, `revision_default` tinyint DEFAULT NULL, PRIMARY KEY (`vid`), KEY `node__nid` (`nid`), KEY `node_field__langcode` (`langcode`), KEY `node_field__revision_uid__target_id` (`revision_uid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='The revision table for node entities.'; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]path_alias` -- CREATE TABLE `[[dbprefix]]path_alias` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `revision_id` int unsigned DEFAULT NULL, `uuid` varchar(128) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL, `langcode` varchar(12) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL, `path` varchar(255) DEFAULT NULL, `alias` varchar(255) DEFAULT NULL, `status` tinyint NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `path_alias_field__uuid__value` (`uuid`), UNIQUE KEY `path_alias__revision_id` (`revision_id`), KEY `path_alias__alias_langcode_id_status` (`alias`(191),`langcode`,`id`,`status`), KEY `path_alias__path_langcode_id_status` (`path`(191),`langcode`,`id`,`status`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='The base table for path_alias entities.' AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]path_alias_revision` -- CREATE TABLE `[[dbprefix]]path_alias_revision` ( `id` int unsigned NOT NULL, `revision_id` int unsigned NOT NULL AUTO_INCREMENT, `langcode` varchar(12) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL, `path` varchar(255) DEFAULT NULL, `alias` varchar(255) DEFAULT NULL, `status` tinyint NOT NULL, `revision_default` tinyint DEFAULT NULL, PRIMARY KEY (`revision_id`), KEY `path_alias__id` (`id`), KEY `path_alias_revision__alias_langcode_id_status` (`alias`(191),`langcode`,`id`,`status`), KEY `path_alias_revision__path_langcode_id_status` (`path`(191),`langcode`,`id`,`status`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='The revision table for path_alias entities.'; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]queue` -- CREATE TABLE `[[dbprefix]]queue` ( `item_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Primary Key: Unique item ID.', `name` varchar(255) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL DEFAULT '' COMMENT 'The queue name.', `data` longblob COMMENT 'The arbitrary data for the item.', `expire` bigint NOT NULL DEFAULT '0' COMMENT 'Timestamp when the claim lease expires on the item.', `created` bigint NOT NULL DEFAULT '0' COMMENT 'Timestamp when the item was created.', PRIMARY KEY (`item_id`), KEY `name_created` (`name`,`created`), KEY `expire` (`expire`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Stores items in queues.' AUTO_INCREMENT=4 ; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]router` -- CREATE TABLE `[[dbprefix]]router` ( `name` varchar(255) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL DEFAULT '' COMMENT 'Primary Key: Machine name of this route', `path` varchar(255) NOT NULL DEFAULT '' COMMENT 'The path for this URI', `pattern_outline` varchar(255) NOT NULL DEFAULT '' COMMENT 'The pattern', `fit` int NOT NULL DEFAULT '0' COMMENT 'A numeric representation of how specific the path is.', `route` longblob COMMENT 'A serialized Route object', `number_parts` smallint NOT NULL DEFAULT '0' COMMENT 'Number of parts in this router path.', `alias` varchar(255) CHARACTER SET ascii COLLATE ascii_general_ci DEFAULT NULL COMMENT 'The alias of the route, if applicable.', PRIMARY KEY (`name`), KEY `pattern_outline_parts` (`pattern_outline`(191),`number_parts`), KEY `alias` (`alias`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Maps paths to various callbacks (access, page and title)'; -- -- Dumping data for table `[[dbprefix]]router` -- INSERT INTO `[[dbprefix]]router` VALUES ('