From f1ac9b6c2a2efc93e59bcbd14c8ed25b44753ab4 Mon Sep 17 00:00:00 2001
From: Alex Pott <alex.a.pott@googlemail.com>
Date: Sun, 21 Apr 2024 09:44:04 +0100
Subject: [PATCH] Issue #3261653 by Spokje, catch, larowlan, quietone,
 kim.pepper, smustgrave, andypost, lauriii: Remove Forum module

---
 core/.cspell.json                             |     2 -
 core/.phpstan-baseline.php                    |    10 -
 core/MAINTAINERS.txt                          |     3 -
 .../forum/config/install/forum.settings.yml   |    10 -
 .../optional/comment.type.comment_forum.yml   |    10 -
 ...base_field_override.node.forum.promote.yml |    21 -
 ...e.base_field_override.node.forum.title.yml |    17 -
 ..._display.comment.comment_forum.default.yml |    33 -
 ...entity_form_display.node.forum.default.yml |    84 -
 ...m_display.taxonomy_term.forums.default.yml |    36 -
 ..._display.comment.comment_forum.default.yml |    24 -
 ...entity_view_display.node.forum.default.yml |    46 -
 ....entity_view_display.node.forum.teaser.yml |    38 -
 ...w_display.taxonomy_term.forums.default.yml |    22 -
 ...eld.comment.comment_forum.comment_body.yml |    21 -
 .../optional/field.field.node.forum.body.yml  |    23 -
 .../field.field.node.forum.comment_forum.yml  |    32 -
 ...field.field.node.forum.taxonomy_forums.yml |    26 -
 ...d.taxonomy_term.forums.forum_container.yml |    22 -
 .../field.storage.node.comment_forum.yml      |    19 -
 .../field.storage.node.taxonomy_forums.yml    |    19 -
 ....storage.taxonomy_term.forum_container.yml |    17 -
 .../forum/config/optional/node.type.forum.yml |    13 -
 .../optional/taxonomy.vocabulary.forums.yml   |    11 -
 .../forum/config/schema/forum.schema.yml      |    66 -
 core/modules/forum/forum.info.yml             |    14 -
 core/modules/forum/forum.install              |   187 -
 core/modules/forum/forum.links.action.yml     |    11 -
 core/modules/forum/forum.links.menu.yml       |     9 -
 core/modules/forum/forum.links.task.yml       |     9 -
 core/modules/forum/forum.module               |   760 -
 core/modules/forum/forum.permissions.yml      |     2 -
 core/modules/forum/forum.post_update.php      |    15 -
 core/modules/forum/forum.routing.yml          |    72 -
 core/modules/forum/forum.services.yml         |    30 -
 core/modules/forum/forum.views.inc            |   156 -
 .../forum/help_topics/forum.concept.html.twig |    17 -
 .../help_topics/forum.configuring.html.twig   |    26 -
 .../forum/help_topics/forum.locking.html.twig |    17 -
 .../forum/help_topics/forum.moving.html.twig  |    18 -
 .../help_topics/forum.starting.html.twig      |    16 -
 .../forum/migrations/d6_forum_settings.yml    |    31 -
 .../forum/migrations/d7_forum_settings.yml    |    31 -
 .../migrations/state/forum.migrate_drupal.yml |     5 -
 .../Breadcrumb/ForumBreadcrumbBuilderBase.php |    90 -
 .../ForumListingBreadcrumbBuilder.php         |    48 -
 .../Breadcrumb/ForumNodeBreadcrumbBuilder.php |    45 -
 .../forum/src/Controller/ForumController.php  |   348 -
 core/modules/forum/src/Form/ContainerForm.php |    47 -
 core/modules/forum/src/Form/DeleteForm.php    |    71 -
 core/modules/forum/src/Form/ForumForm.php     |   170 -
 core/modules/forum/src/Form/Overview.php      |    80 -
 core/modules/forum/src/ForumIndexStorage.php  |   164 -
 .../forum/src/ForumIndexStorageInterface.php  |    90 -
 core/modules/forum/src/ForumManager.php       |   525 -
 .../forum/src/ForumManagerInterface.php       |    80 -
 core/modules/forum/src/ForumSettingsForm.php  |    81 -
 .../forum/src/ForumUninstallValidator.php     |   130 -
 .../src/Plugin/Block/ActiveTopicsBlock.php    |    31 -
 .../forum/src/Plugin/Block/ForumBlockBase.php |    96 -
 .../forum/src/Plugin/Block/NewTopicsBlock.php |    31 -
 .../Constraint/ForumLeafConstraint.php        |    21 -
 .../ForumLeafConstraintValidator.php          |    33 -
 .../migrate/process/ForumVocabulary.php       |    44 -
 .../ProxyClass/ForumUninstallValidator.php    |    88 -
 .../forum/templates/forum-icon.html.twig      |    26 -
 .../forum/templates/forum-list.html.twig      |    77 -
 .../forum/templates/forum-submitted.html.twig |    23 -
 .../forum/templates/forum-topic.html.twig     |    18 -
 core/modules/forum/templates/forums.html.twig |    24 -
 core/modules/forum/tests/fixtures/drupal6.php | 19786 ----------
 core/modules/forum/tests/fixtures/drupal7.php | 30598 ----------------
 .../forum_test_views.info.yml                 |     8 -
 .../views.view.test_forum_index.yml           |   148 -
 .../forum_url_alter_test.info.yml             |     5 -
 .../forum_url_alter_test.services.yml         |     6 -
 .../src/PathProcessorTest.php                 |    31 -
 .../tests/src/Functional/ForumBlockTest.php   |   192 -
 .../tests/src/Functional/ForumIndexTest.php   |   104 -
 .../src/Functional/ForumNodeAccessTest.php    |   110 -
 .../src/Functional/ForumTermAccessTest.php    |    96 -
 .../forum/tests/src/Functional/ForumTest.php  |   753 -
 .../src/Functional/ForumUninstallTest.php     |   195 -
 .../tests/src/Functional/GenericTest.php      |    26 -
 .../src/Functional/Module/DependencyTest.php  |    62 -
 .../src/Functional/NodeAccessPagerTest.php    |    79 -
 .../src/Functional/UrlAlterFunctionalTest.php |    87 -
 .../Functional/Views/ForumIntegrationTest.php |   102 -
 .../d6/NoMultilingualReviewPageTest.php       |    77 -
 .../migrate_drupal/d6/Upgrade6Test.php        |   155 -
 .../migrate_drupal/d6/files/test.txt          |     1 -
 .../d7/NoMultilingualReviewPageTest.php       |    79 -
 .../migrate_drupal/d7/Upgrade7Test.php        |   172 -
 .../migrate_drupal/d7/files/test.txt          |     1 -
 .../forum/tests/src/Kernel/ForumIndexTest.php |    56 -
 .../tests/src/Kernel/ForumValidationTest.php  |    74 -
 .../src/Kernel/Migrate/MigrateTestTrait.php   |   105 -
 .../Kernel/Migrate/d6/MigrateBlockTest.php    |   132 -
 .../Migrate/d6/MigrateForumConfigsTest.php    |    57 -
 .../Kernel/Migrate/d6/MigrateForumTest.php    |    87 -
 .../Migrate/d6/MigrateTaxonomyTermTest.php    |    52 -
 .../d6/MigrateTaxonomyVocabularyTest.php      |    65 -
 .../d6/MigrateVocabularyEntityDisplayTest.php |   116 -
 ...MigrateVocabularyEntityFormDisplayTest.php |    99 -
 .../d6/MigrateVocabularyFieldInstanceTest.php |   126 -
 .../Migrate/d6/MigrateVocabularyFieldTest.php |    87 -
 .../Migrate/d7/MigrateForumSettingsTest.php   |    63 -
 ...eContentTaxonomyVocabularySettingsTest.php |    32 -
 .../Migrate/d7/MigrateTaxonomyTermTest.php    |    86 -
 .../d7/MigrateTaxonomyTermTranslationTest.php |    43 -
 .../d7/MigrateTaxonomyVocabularyTest.php      |    39 -
 .../ForumBreadcrumbBuilderBaseTest.php        |   149 -
 .../ForumListingBreadcrumbBuilderTest.php     |   218 -
 .../ForumNodeBreadcrumbBuilderTest.php        |   222 -
 .../forum/tests/src/Unit/ForumManagerTest.php |    93 -
 .../src/Unit/ForumUninstallValidatorTest.php  |   241 -
 .../Kernel/Plugin/MigrationPluginListTest.php |     2 -
 .../tests/src/Kernel/StateFileExistsTest.php  |     2 -
 .../Kernel/d6/MigrateDrupal6AuditIdsTest.php  |     2 -
 .../Kernel/d7/MigrateDrupal7AuditIdsTest.php  |     2 -
 .../src/Kernel/Handler/HandlerAllTest.php     |     2 -
 .../umami/css/classy/components/forum.css     |    46 -
 .../umami/images/classy/icons/forum-icons.png |    10 -
 .../classy/dataset/forum-icon.html.twig       |    30 -
 .../classy/dataset/forum-list.html.twig       |    79 -
 .../templates/classy/dataset/forums.html.twig |    24 -
 .../classy/user/forum-submitted.html.twig     |    21 -
 .../themes/umami/umami.libraries.yml          |     6 -
 core/themes/claro/claro.libraries.yml         |     6 -
 .../claro/css/classy/components/forum.css     |    46 -
 .../claro/images/classy/icons/forum-icons.png |    10 -
 .../classy/dataset/forum-icon.html.twig       |    30 -
 .../classy/dataset/forum-list.html.twig       |    79 -
 .../templates/classy/dataset/forums.html.twig |    24 -
 .../classy/user/forum-submitted.html.twig     |    21 -
 core/themes/olivero/css/components/forum.css  |    22 -
 .../olivero/css/components/forum.pcss.css     |    19 -
 core/themes/olivero/css/components/table.css  |    17 +-
 .../olivero/css/components/table.pcss.css     |     1 -
 core/themes/olivero/olivero.libraries.yml     |     6 -
 .../templates/dataset/forum-list.html.twig    |    79 -
 .../templates/dataset/forums.html.twig        |    24 -
 .../templates/dataset/forum-icon.html.twig    |    24 -
 .../templates/dataset/forum-list.html.twig    |    75 -
 .../templates/dataset/forum-topic.html.twig   |    18 -
 .../templates/dataset/forums.html.twig        |    22 -
 .../templates/user/forum-submitted.html.twig  |    21 -
 147 files changed, 8 insertions(+), 60409 deletions(-)
 delete mode 100644 core/modules/forum/config/install/forum.settings.yml
 delete mode 100644 core/modules/forum/config/optional/comment.type.comment_forum.yml
 delete mode 100644 core/modules/forum/config/optional/core.base_field_override.node.forum.promote.yml
 delete mode 100644 core/modules/forum/config/optional/core.base_field_override.node.forum.title.yml
 delete mode 100644 core/modules/forum/config/optional/core.entity_form_display.comment.comment_forum.default.yml
 delete mode 100644 core/modules/forum/config/optional/core.entity_form_display.node.forum.default.yml
 delete mode 100644 core/modules/forum/config/optional/core.entity_form_display.taxonomy_term.forums.default.yml
 delete mode 100644 core/modules/forum/config/optional/core.entity_view_display.comment.comment_forum.default.yml
 delete mode 100644 core/modules/forum/config/optional/core.entity_view_display.node.forum.default.yml
 delete mode 100644 core/modules/forum/config/optional/core.entity_view_display.node.forum.teaser.yml
 delete mode 100644 core/modules/forum/config/optional/core.entity_view_display.taxonomy_term.forums.default.yml
 delete mode 100644 core/modules/forum/config/optional/field.field.comment.comment_forum.comment_body.yml
 delete mode 100644 core/modules/forum/config/optional/field.field.node.forum.body.yml
 delete mode 100644 core/modules/forum/config/optional/field.field.node.forum.comment_forum.yml
 delete mode 100644 core/modules/forum/config/optional/field.field.node.forum.taxonomy_forums.yml
 delete mode 100644 core/modules/forum/config/optional/field.field.taxonomy_term.forums.forum_container.yml
 delete mode 100644 core/modules/forum/config/optional/field.storage.node.comment_forum.yml
 delete mode 100644 core/modules/forum/config/optional/field.storage.node.taxonomy_forums.yml
 delete mode 100644 core/modules/forum/config/optional/field.storage.taxonomy_term.forum_container.yml
 delete mode 100644 core/modules/forum/config/optional/node.type.forum.yml
 delete mode 100644 core/modules/forum/config/optional/taxonomy.vocabulary.forums.yml
 delete mode 100644 core/modules/forum/config/schema/forum.schema.yml
 delete mode 100644 core/modules/forum/forum.info.yml
 delete mode 100644 core/modules/forum/forum.install
 delete mode 100644 core/modules/forum/forum.links.action.yml
 delete mode 100644 core/modules/forum/forum.links.menu.yml
 delete mode 100644 core/modules/forum/forum.links.task.yml
 delete mode 100644 core/modules/forum/forum.module
 delete mode 100644 core/modules/forum/forum.permissions.yml
 delete mode 100644 core/modules/forum/forum.post_update.php
 delete mode 100644 core/modules/forum/forum.routing.yml
 delete mode 100644 core/modules/forum/forum.services.yml
 delete mode 100644 core/modules/forum/forum.views.inc
 delete mode 100644 core/modules/forum/help_topics/forum.concept.html.twig
 delete mode 100644 core/modules/forum/help_topics/forum.configuring.html.twig
 delete mode 100644 core/modules/forum/help_topics/forum.locking.html.twig
 delete mode 100644 core/modules/forum/help_topics/forum.moving.html.twig
 delete mode 100644 core/modules/forum/help_topics/forum.starting.html.twig
 delete mode 100644 core/modules/forum/migrations/d6_forum_settings.yml
 delete mode 100644 core/modules/forum/migrations/d7_forum_settings.yml
 delete mode 100644 core/modules/forum/migrations/state/forum.migrate_drupal.yml
 delete mode 100644 core/modules/forum/src/Breadcrumb/ForumBreadcrumbBuilderBase.php
 delete mode 100644 core/modules/forum/src/Breadcrumb/ForumListingBreadcrumbBuilder.php
 delete mode 100644 core/modules/forum/src/Breadcrumb/ForumNodeBreadcrumbBuilder.php
 delete mode 100644 core/modules/forum/src/Controller/ForumController.php
 delete mode 100644 core/modules/forum/src/Form/ContainerForm.php
 delete mode 100644 core/modules/forum/src/Form/DeleteForm.php
 delete mode 100644 core/modules/forum/src/Form/ForumForm.php
 delete mode 100644 core/modules/forum/src/Form/Overview.php
 delete mode 100644 core/modules/forum/src/ForumIndexStorage.php
 delete mode 100644 core/modules/forum/src/ForumIndexStorageInterface.php
 delete mode 100644 core/modules/forum/src/ForumManager.php
 delete mode 100644 core/modules/forum/src/ForumManagerInterface.php
 delete mode 100644 core/modules/forum/src/ForumSettingsForm.php
 delete mode 100644 core/modules/forum/src/ForumUninstallValidator.php
 delete mode 100644 core/modules/forum/src/Plugin/Block/ActiveTopicsBlock.php
 delete mode 100644 core/modules/forum/src/Plugin/Block/ForumBlockBase.php
 delete mode 100644 core/modules/forum/src/Plugin/Block/NewTopicsBlock.php
 delete mode 100644 core/modules/forum/src/Plugin/Validation/Constraint/ForumLeafConstraint.php
 delete mode 100644 core/modules/forum/src/Plugin/Validation/Constraint/ForumLeafConstraintValidator.php
 delete mode 100644 core/modules/forum/src/Plugin/migrate/process/ForumVocabulary.php
 delete mode 100644 core/modules/forum/src/ProxyClass/ForumUninstallValidator.php
 delete mode 100644 core/modules/forum/templates/forum-icon.html.twig
 delete mode 100644 core/modules/forum/templates/forum-list.html.twig
 delete mode 100644 core/modules/forum/templates/forum-submitted.html.twig
 delete mode 100644 core/modules/forum/templates/forum-topic.html.twig
 delete mode 100644 core/modules/forum/templates/forums.html.twig
 delete mode 100644 core/modules/forum/tests/fixtures/drupal6.php
 delete mode 100644 core/modules/forum/tests/fixtures/drupal7.php
 delete mode 100644 core/modules/forum/tests/modules/forum_test_views/forum_test_views.info.yml
 delete mode 100644 core/modules/forum/tests/modules/forum_test_views/test_views/views.view.test_forum_index.yml
 delete mode 100644 core/modules/forum/tests/modules/forum_url_alter_test/forum_url_alter_test.info.yml
 delete mode 100644 core/modules/forum/tests/modules/forum_url_alter_test/forum_url_alter_test.services.yml
 delete mode 100644 core/modules/forum/tests/modules/forum_url_alter_test/src/PathProcessorTest.php
 delete mode 100644 core/modules/forum/tests/src/Functional/ForumBlockTest.php
 delete mode 100644 core/modules/forum/tests/src/Functional/ForumIndexTest.php
 delete mode 100644 core/modules/forum/tests/src/Functional/ForumNodeAccessTest.php
 delete mode 100644 core/modules/forum/tests/src/Functional/ForumTermAccessTest.php
 delete mode 100644 core/modules/forum/tests/src/Functional/ForumTest.php
 delete mode 100644 core/modules/forum/tests/src/Functional/ForumUninstallTest.php
 delete mode 100644 core/modules/forum/tests/src/Functional/GenericTest.php
 delete mode 100644 core/modules/forum/tests/src/Functional/Module/DependencyTest.php
 delete mode 100644 core/modules/forum/tests/src/Functional/NodeAccessPagerTest.php
 delete mode 100644 core/modules/forum/tests/src/Functional/UrlAlterFunctionalTest.php
 delete mode 100644 core/modules/forum/tests/src/Functional/Views/ForumIntegrationTest.php
 delete mode 100644 core/modules/forum/tests/src/Functional/migrate_drupal/d6/NoMultilingualReviewPageTest.php
 delete mode 100644 core/modules/forum/tests/src/Functional/migrate_drupal/d6/Upgrade6Test.php
 delete mode 100644 core/modules/forum/tests/src/Functional/migrate_drupal/d6/files/test.txt
 delete mode 100644 core/modules/forum/tests/src/Functional/migrate_drupal/d7/NoMultilingualReviewPageTest.php
 delete mode 100644 core/modules/forum/tests/src/Functional/migrate_drupal/d7/Upgrade7Test.php
 delete mode 100644 core/modules/forum/tests/src/Functional/migrate_drupal/d7/files/test.txt
 delete mode 100644 core/modules/forum/tests/src/Kernel/ForumIndexTest.php
 delete mode 100644 core/modules/forum/tests/src/Kernel/ForumValidationTest.php
 delete mode 100644 core/modules/forum/tests/src/Kernel/Migrate/MigrateTestTrait.php
 delete mode 100644 core/modules/forum/tests/src/Kernel/Migrate/d6/MigrateBlockTest.php
 delete mode 100644 core/modules/forum/tests/src/Kernel/Migrate/d6/MigrateForumConfigsTest.php
 delete mode 100644 core/modules/forum/tests/src/Kernel/Migrate/d6/MigrateForumTest.php
 delete mode 100644 core/modules/forum/tests/src/Kernel/Migrate/d6/MigrateTaxonomyTermTest.php
 delete mode 100644 core/modules/forum/tests/src/Kernel/Migrate/d6/MigrateTaxonomyVocabularyTest.php
 delete mode 100644 core/modules/forum/tests/src/Kernel/Migrate/d6/MigrateVocabularyEntityDisplayTest.php
 delete mode 100644 core/modules/forum/tests/src/Kernel/Migrate/d6/MigrateVocabularyEntityFormDisplayTest.php
 delete mode 100644 core/modules/forum/tests/src/Kernel/Migrate/d6/MigrateVocabularyFieldInstanceTest.php
 delete mode 100644 core/modules/forum/tests/src/Kernel/Migrate/d6/MigrateVocabularyFieldTest.php
 delete mode 100644 core/modules/forum/tests/src/Kernel/Migrate/d7/MigrateForumSettingsTest.php
 delete mode 100644 core/modules/forum/tests/src/Kernel/Migrate/d7/MigrateLanguageContentTaxonomyVocabularySettingsTest.php
 delete mode 100644 core/modules/forum/tests/src/Kernel/Migrate/d7/MigrateTaxonomyTermTest.php
 delete mode 100644 core/modules/forum/tests/src/Kernel/Migrate/d7/MigrateTaxonomyTermTranslationTest.php
 delete mode 100644 core/modules/forum/tests/src/Kernel/Migrate/d7/MigrateTaxonomyVocabularyTest.php
 delete mode 100644 core/modules/forum/tests/src/Unit/Breadcrumb/ForumBreadcrumbBuilderBaseTest.php
 delete mode 100644 core/modules/forum/tests/src/Unit/Breadcrumb/ForumListingBreadcrumbBuilderTest.php
 delete mode 100644 core/modules/forum/tests/src/Unit/Breadcrumb/ForumNodeBreadcrumbBuilderTest.php
 delete mode 100644 core/modules/forum/tests/src/Unit/ForumManagerTest.php
 delete mode 100644 core/modules/forum/tests/src/Unit/ForumUninstallValidatorTest.php
 delete mode 100644 core/profiles/demo_umami/themes/umami/css/classy/components/forum.css
 delete mode 100644 core/profiles/demo_umami/themes/umami/images/classy/icons/forum-icons.png
 delete mode 100644 core/profiles/demo_umami/themes/umami/templates/classy/dataset/forum-icon.html.twig
 delete mode 100644 core/profiles/demo_umami/themes/umami/templates/classy/dataset/forum-list.html.twig
 delete mode 100644 core/profiles/demo_umami/themes/umami/templates/classy/dataset/forums.html.twig
 delete mode 100644 core/profiles/demo_umami/themes/umami/templates/classy/user/forum-submitted.html.twig
 delete mode 100644 core/themes/claro/css/classy/components/forum.css
 delete mode 100644 core/themes/claro/images/classy/icons/forum-icons.png
 delete mode 100644 core/themes/claro/templates/classy/dataset/forum-icon.html.twig
 delete mode 100644 core/themes/claro/templates/classy/dataset/forum-list.html.twig
 delete mode 100644 core/themes/claro/templates/classy/dataset/forums.html.twig
 delete mode 100644 core/themes/claro/templates/classy/user/forum-submitted.html.twig
 delete mode 100644 core/themes/olivero/css/components/forum.css
 delete mode 100644 core/themes/olivero/css/components/forum.pcss.css
 delete mode 100644 core/themes/olivero/templates/dataset/forum-list.html.twig
 delete mode 100644 core/themes/olivero/templates/dataset/forums.html.twig
 delete mode 100644 core/themes/stable9/templates/dataset/forum-icon.html.twig
 delete mode 100644 core/themes/stable9/templates/dataset/forum-list.html.twig
 delete mode 100644 core/themes/stable9/templates/dataset/forum-topic.html.twig
 delete mode 100644 core/themes/stable9/templates/dataset/forums.html.twig
 delete mode 100644 core/themes/stable9/templates/user/forum-submitted.html.twig

diff --git a/core/.cspell.json b/core/.cspell.json
index e3ed44afbcb7..64bf98534eb5 100644
--- a/core/.cspell.json
+++ b/core/.cspell.json
@@ -18,8 +18,6 @@
       "modules/book/tests/fixtures/drupal6.php",
       "modules/book/tests/fixtures/drupal7.php",
       "modules/ckeditor5/js/build/*",
-      "modules/forum/tests/fixtures/drupal6.php",
-      "modules/forum/tests/fixtures/drupal7.php",
       "modules/media/tests/fixtures/oembed/*",
       "modules/migrate_drupal/tests/fixtures/drupal6.php",
       "modules/migrate_drupal/tests/fixtures/drupal7.php",
diff --git a/core/.phpstan-baseline.php b/core/.phpstan-baseline.php
index 3b5796557a70..90a0c9169c30 100644
--- a/core/.phpstan-baseline.php
+++ b/core/.phpstan-baseline.php
@@ -866,16 +866,6 @@
 	'count' => 1,
 	'path' => __DIR__ . '/modules/filter/src/Plugin/Filter/FilterHtml.php',
 ];
-$ignoreErrors[] = [
-	'message' => '#^Method Drupal\\\\forum\\\\ForumManager\\:\\:getTopicOrder\\(\\) should return array but return statement is missing\\.$#',
-	'count' => 1,
-	'path' => __DIR__ . '/modules/forum/src/ForumManager.php',
-];
-$ignoreErrors[] = [
-	'message' => '#^Variable \\$vocabulary in empty\\(\\) always exists and is not falsy\\.$#',
-	'count' => 1,
-	'path' => __DIR__ . '/modules/forum/src/ForumUninstallValidator.php',
-];
 $ignoreErrors[] = [
 	'message' => '#^Method Drupal\\\\history\\\\Plugin\\\\views\\\\field\\\\HistoryUserTimestamp\\:\\:render\\(\\) should return Drupal\\\\Component\\\\Render\\\\MarkupInterface\\|string but return statement is missing\\.$#',
 	'count' => 1,
diff --git a/core/MAINTAINERS.txt b/core/MAINTAINERS.txt
index bf39b43399f5..bd228a481529 100644
--- a/core/MAINTAINERS.txt
+++ b/core/MAINTAINERS.txt
@@ -217,9 +217,6 @@ File
 Filter
 - ?
 
-Forum
-- Lee Rowlands 'larowlan' https://www.drupal.org/u/larowlan
-
 Form API
 - Alex Bronstein 'effulgentsia' https://www.drupal.org/u/effulgentsia
 - Tim Plunkett 'tim.plunkett' https://www.drupal.org/u/tim.plunkett
diff --git a/core/modules/forum/config/install/forum.settings.yml b/core/modules/forum/config/install/forum.settings.yml
deleted file mode 100644
index 2be9d12dba4b..000000000000
--- a/core/modules/forum/config/install/forum.settings.yml
+++ /dev/null
@@ -1,10 +0,0 @@
-block:
-  active:
-    limit: 5
-  new:
-    limit: 5
-topics:
-  hot_threshold: 15
-  order: 1
-  page_limit: 25
-vocabulary: forums
diff --git a/core/modules/forum/config/optional/comment.type.comment_forum.yml b/core/modules/forum/config/optional/comment.type.comment_forum.yml
deleted file mode 100644
index 44a2d6516ff4..000000000000
--- a/core/modules/forum/config/optional/comment.type.comment_forum.yml
+++ /dev/null
@@ -1,10 +0,0 @@
-langcode: en
-status: true
-dependencies:
-  enforced:
-    module:
-      - forum
-id: comment_forum
-label: Comment_forum
-target_entity_type_id: node
-description: 'Default comment field'
diff --git a/core/modules/forum/config/optional/core.base_field_override.node.forum.promote.yml b/core/modules/forum/config/optional/core.base_field_override.node.forum.promote.yml
deleted file mode 100644
index be6e1a338df9..000000000000
--- a/core/modules/forum/config/optional/core.base_field_override.node.forum.promote.yml
+++ /dev/null
@@ -1,21 +0,0 @@
-langcode: en
-status: true
-dependencies:
-  config:
-    - node.type.forum
-id: node.forum.promote
-field_name: promote
-entity_type: node
-bundle: forum
-label: 'Promoted to front page'
-description: ''
-required: false
-translatable: true
-default_value:
-  -
-    value: 0
-default_value_callback: ''
-settings:
-  on_label: 'On'
-  off_label: 'Off'
-field_type: boolean
diff --git a/core/modules/forum/config/optional/core.base_field_override.node.forum.title.yml b/core/modules/forum/config/optional/core.base_field_override.node.forum.title.yml
deleted file mode 100644
index 71c5835d3147..000000000000
--- a/core/modules/forum/config/optional/core.base_field_override.node.forum.title.yml
+++ /dev/null
@@ -1,17 +0,0 @@
-langcode: en
-status: true
-dependencies:
-  config:
-    - node.type.forum
-id: node.forum.title
-field_name: title
-entity_type: node
-bundle: forum
-label: Subject
-description: ''
-required: true
-translatable: true
-default_value: {  }
-default_value_callback: ''
-settings: {  }
-field_type: string
diff --git a/core/modules/forum/config/optional/core.entity_form_display.comment.comment_forum.default.yml b/core/modules/forum/config/optional/core.entity_form_display.comment.comment_forum.default.yml
deleted file mode 100644
index 4738bbb43a48..000000000000
--- a/core/modules/forum/config/optional/core.entity_form_display.comment.comment_forum.default.yml
+++ /dev/null
@@ -1,33 +0,0 @@
-langcode: en
-status: true
-dependencies:
-  config:
-    - comment.type.comment_forum
-    - field.field.comment.comment_forum.comment_body
-  module:
-    - text
-id: comment.comment_forum.default
-targetEntityType: comment
-bundle: comment_forum
-mode: default
-content:
-  author:
-    weight: -2
-    region: content
-  comment_body:
-    type: text_textarea
-    weight: 11
-    region: content
-    settings:
-      rows: 5
-      placeholder: ''
-    third_party_settings: {  }
-  subject:
-    type: string_textfield
-    weight: 10
-    region: content
-    settings:
-      size: 60
-      placeholder: ''
-    third_party_settings: {  }
-hidden: {  }
diff --git a/core/modules/forum/config/optional/core.entity_form_display.node.forum.default.yml b/core/modules/forum/config/optional/core.entity_form_display.node.forum.default.yml
deleted file mode 100644
index 7cffa6e7b507..000000000000
--- a/core/modules/forum/config/optional/core.entity_form_display.node.forum.default.yml
+++ /dev/null
@@ -1,84 +0,0 @@
-langcode: en
-status: true
-dependencies:
-  config:
-    - field.field.node.forum.body
-    - field.field.node.forum.comment_forum
-    - field.field.node.forum.taxonomy_forums
-    - node.type.forum
-  module:
-    - comment
-    - text
-id: node.forum.default
-targetEntityType: node
-bundle: forum
-mode: default
-content:
-  body:
-    type: text_textarea_with_summary
-    weight: 27
-    region: content
-    settings:
-      rows: 9
-      summary_rows: 3
-      placeholder: ''
-      show_summary: false
-    third_party_settings: {  }
-  comment_forum:
-    type: comment_default
-    weight: 20
-    region: content
-    settings: {  }
-    third_party_settings: {  }
-  created:
-    type: datetime_timestamp
-    weight: 10
-    region: content
-    settings: {  }
-    third_party_settings: {  }
-  promote:
-    type: boolean_checkbox
-    weight: 15
-    region: content
-    settings:
-      display_label: true
-    third_party_settings: {  }
-  status:
-    type: boolean_checkbox
-    weight: 120
-    region: content
-    settings:
-      display_label: true
-    third_party_settings: {  }
-  sticky:
-    type: boolean_checkbox
-    weight: 16
-    region: content
-    settings:
-      display_label: true
-    third_party_settings: {  }
-  taxonomy_forums:
-    type: options_select
-    weight: 26
-    region: content
-    settings: {  }
-    third_party_settings: {  }
-  title:
-    type: string_textfield
-    weight: -5
-    region: content
-    settings:
-      size: 60
-      placeholder: ''
-    third_party_settings: {  }
-  uid:
-    type: entity_reference_autocomplete
-    weight: 5
-    region: content
-    settings:
-      match_operator: CONTAINS
-      match_limit: 10
-      size: 60
-      placeholder: ''
-    third_party_settings: {  }
-hidden: {  }
diff --git a/core/modules/forum/config/optional/core.entity_form_display.taxonomy_term.forums.default.yml b/core/modules/forum/config/optional/core.entity_form_display.taxonomy_term.forums.default.yml
deleted file mode 100644
index 77d5c7f3835f..000000000000
--- a/core/modules/forum/config/optional/core.entity_form_display.taxonomy_term.forums.default.yml
+++ /dev/null
@@ -1,36 +0,0 @@
-langcode: en
-status: true
-dependencies:
-  config:
-    - field.field.taxonomy_term.forums.forum_container
-    - taxonomy.vocabulary.forums
-  module:
-    - text
-id: taxonomy_term.forums.default
-targetEntityType: taxonomy_term
-bundle: forums
-mode: default
-content:
-  description:
-    type: text_textfield
-    weight: 0
-    region: content
-    settings: {  }
-    third_party_settings: {  }
-  name:
-    type: string_textfield
-    weight: -5
-    region: content
-    settings:
-      size: 60
-      placeholder: ''
-    third_party_settings: {  }
-  status:
-    type: boolean_checkbox
-    weight: 100
-    region: content
-    settings:
-      display_label: true
-    third_party_settings: {  }
-hidden:
-  forum_container: true
diff --git a/core/modules/forum/config/optional/core.entity_view_display.comment.comment_forum.default.yml b/core/modules/forum/config/optional/core.entity_view_display.comment.comment_forum.default.yml
deleted file mode 100644
index 5ea4c3e2ccfd..000000000000
--- a/core/modules/forum/config/optional/core.entity_view_display.comment.comment_forum.default.yml
+++ /dev/null
@@ -1,24 +0,0 @@
-langcode: en
-status: true
-dependencies:
-  config:
-    - comment.type.comment_forum
-    - field.field.comment.comment_forum.comment_body
-  module:
-    - text
-id: comment.comment_forum.default
-targetEntityType: comment
-bundle: comment_forum
-mode: default
-content:
-  comment_body:
-    type: text_default
-    label: hidden
-    settings: {  }
-    third_party_settings: {  }
-    weight: 0
-    region: content
-  links:
-    weight: 100
-    region: content
-hidden: {  }
diff --git a/core/modules/forum/config/optional/core.entity_view_display.node.forum.default.yml b/core/modules/forum/config/optional/core.entity_view_display.node.forum.default.yml
deleted file mode 100644
index cef22c474afc..000000000000
--- a/core/modules/forum/config/optional/core.entity_view_display.node.forum.default.yml
+++ /dev/null
@@ -1,46 +0,0 @@
-langcode: en
-status: true
-dependencies:
-  config:
-    - core.entity_view_display.comment.comment_forum.default
-    - field.field.node.forum.body
-    - field.field.node.forum.comment_forum
-    - field.field.node.forum.taxonomy_forums
-    - node.type.forum
-  module:
-    - comment
-    - text
-    - user
-id: node.forum.default
-targetEntityType: node
-bundle: forum
-mode: default
-content:
-  body:
-    type: text_default
-    label: hidden
-    settings: {  }
-    third_party_settings: {  }
-    weight: 0
-    region: content
-  comment_forum:
-    type: comment_default
-    label: hidden
-    settings:
-      view_mode: default
-      pager_id: 0
-    third_party_settings: {  }
-    weight: 20
-    region: content
-  links:
-    weight: 100
-    region: content
-  taxonomy_forums:
-    type: entity_reference_label
-    label: above
-    settings:
-      link: true
-    third_party_settings: {  }
-    weight: -1
-    region: content
-hidden: {  }
diff --git a/core/modules/forum/config/optional/core.entity_view_display.node.forum.teaser.yml b/core/modules/forum/config/optional/core.entity_view_display.node.forum.teaser.yml
deleted file mode 100644
index dead32ab200a..000000000000
--- a/core/modules/forum/config/optional/core.entity_view_display.node.forum.teaser.yml
+++ /dev/null
@@ -1,38 +0,0 @@
-langcode: en
-status: true
-dependencies:
-  config:
-    - core.entity_view_mode.node.teaser
-    - field.field.node.forum.body
-    - field.field.node.forum.comment_forum
-    - field.field.node.forum.taxonomy_forums
-    - node.type.forum
-  module:
-    - text
-    - user
-id: node.forum.teaser
-targetEntityType: node
-bundle: forum
-mode: teaser
-content:
-  body:
-    type: text_summary_or_trimmed
-    label: hidden
-    settings:
-      trim_length: 600
-    third_party_settings: {  }
-    weight: 100
-    region: content
-  links:
-    weight: 101
-    region: content
-  taxonomy_forums:
-    type: entity_reference_label
-    label: above
-    settings:
-      link: true
-    third_party_settings: {  }
-    weight: 10
-    region: content
-hidden:
-  comment_forum: true
diff --git a/core/modules/forum/config/optional/core.entity_view_display.taxonomy_term.forums.default.yml b/core/modules/forum/config/optional/core.entity_view_display.taxonomy_term.forums.default.yml
deleted file mode 100644
index 256291dac2f1..000000000000
--- a/core/modules/forum/config/optional/core.entity_view_display.taxonomy_term.forums.default.yml
+++ /dev/null
@@ -1,22 +0,0 @@
-langcode: en
-status: true
-dependencies:
-  config:
-    - field.field.taxonomy_term.forums.forum_container
-    - taxonomy.vocabulary.forums
-  module:
-    - text
-id: taxonomy_term.forums.default
-targetEntityType: taxonomy_term
-bundle: forums
-mode: default
-content:
-  description:
-    type: text_default
-    label: above
-    settings: {  }
-    third_party_settings: {  }
-    weight: 0
-    region: content
-hidden:
-  forum_container: true
diff --git a/core/modules/forum/config/optional/field.field.comment.comment_forum.comment_body.yml b/core/modules/forum/config/optional/field.field.comment.comment_forum.comment_body.yml
deleted file mode 100644
index 8c6fa4c571c8..000000000000
--- a/core/modules/forum/config/optional/field.field.comment.comment_forum.comment_body.yml
+++ /dev/null
@@ -1,21 +0,0 @@
-langcode: en
-status: true
-dependencies:
-  config:
-    - comment.type.comment_forum
-    - field.storage.comment.comment_body
-  module:
-    - text
-id: comment.comment_forum.comment_body
-field_name: comment_body
-entity_type: comment
-bundle: comment_forum
-label: Comment
-description: ''
-required: true
-translatable: true
-default_value: {  }
-default_value_callback: ''
-settings:
-  allowed_formats: {  }
-field_type: text_long
diff --git a/core/modules/forum/config/optional/field.field.node.forum.body.yml b/core/modules/forum/config/optional/field.field.node.forum.body.yml
deleted file mode 100644
index ac1fa82a5d7c..000000000000
--- a/core/modules/forum/config/optional/field.field.node.forum.body.yml
+++ /dev/null
@@ -1,23 +0,0 @@
-langcode: en
-status: true
-dependencies:
-  config:
-    - field.storage.node.body
-    - node.type.forum
-  module:
-    - text
-id: node.forum.body
-field_name: body
-entity_type: node
-bundle: forum
-label: Body
-description: ''
-required: false
-translatable: true
-default_value: {  }
-default_value_callback: ''
-settings:
-  display_summary: true
-  required_summary: false
-  allowed_formats: {  }
-field_type: text_with_summary
diff --git a/core/modules/forum/config/optional/field.field.node.forum.comment_forum.yml b/core/modules/forum/config/optional/field.field.node.forum.comment_forum.yml
deleted file mode 100644
index e5edd7e086c6..000000000000
--- a/core/modules/forum/config/optional/field.field.node.forum.comment_forum.yml
+++ /dev/null
@@ -1,32 +0,0 @@
-langcode: en
-status: true
-dependencies:
-  config:
-    - field.storage.node.comment_forum
-    - node.type.forum
-  module:
-    - comment
-id: node.forum.comment_forum
-field_name: comment_forum
-entity_type: node
-bundle: forum
-label: Comments
-description: ''
-required: true
-translatable: true
-default_value:
-  -
-    status: 2
-    cid: 0
-    last_comment_timestamp: 0
-    last_comment_name: null
-    last_comment_uid: 0
-    comment_count: 0
-default_value_callback: ''
-settings:
-  default_mode: 0
-  per_page: 50
-  anonymous: 0
-  form_location: true
-  preview: 1
-field_type: comment
diff --git a/core/modules/forum/config/optional/field.field.node.forum.taxonomy_forums.yml b/core/modules/forum/config/optional/field.field.node.forum.taxonomy_forums.yml
deleted file mode 100644
index f2a30f2fc782..000000000000
--- a/core/modules/forum/config/optional/field.field.node.forum.taxonomy_forums.yml
+++ /dev/null
@@ -1,26 +0,0 @@
-langcode: en
-status: true
-dependencies:
-  config:
-    - field.storage.node.taxonomy_forums
-    - node.type.forum
-    - taxonomy.vocabulary.forums
-id: node.forum.taxonomy_forums
-field_name: taxonomy_forums
-entity_type: node
-bundle: forum
-label: Forums
-description: ''
-required: true
-translatable: true
-default_value: {  }
-default_value_callback: ''
-settings:
-  handler: 'default:taxonomy_term'
-  handler_settings:
-    target_bundles:
-      forums: forums
-    sort:
-      field: _none
-    auto_create: true
-field_type: entity_reference
diff --git a/core/modules/forum/config/optional/field.field.taxonomy_term.forums.forum_container.yml b/core/modules/forum/config/optional/field.field.taxonomy_term.forums.forum_container.yml
deleted file mode 100644
index 4cf3e8333b34..000000000000
--- a/core/modules/forum/config/optional/field.field.taxonomy_term.forums.forum_container.yml
+++ /dev/null
@@ -1,22 +0,0 @@
-langcode: en
-status: true
-dependencies:
-  config:
-    - field.storage.taxonomy_term.forum_container
-    - taxonomy.vocabulary.forums
-id: taxonomy_term.forums.forum_container
-field_name: forum_container
-entity_type: taxonomy_term
-bundle: forums
-label: Container
-description: ''
-required: true
-translatable: true
-default_value:
-  -
-    value: 0
-default_value_callback: ''
-settings:
-  on_label: 'Yes'
-  off_label: 'No'
-field_type: boolean
diff --git a/core/modules/forum/config/optional/field.storage.node.comment_forum.yml b/core/modules/forum/config/optional/field.storage.node.comment_forum.yml
deleted file mode 100644
index df8d24373e03..000000000000
--- a/core/modules/forum/config/optional/field.storage.node.comment_forum.yml
+++ /dev/null
@@ -1,19 +0,0 @@
-langcode: en
-status: true
-dependencies:
-  module:
-    - comment
-    - node
-id: node.comment_forum
-field_name: comment_forum
-entity_type: node
-type: comment
-settings:
-  comment_type: comment_forum
-module: comment
-locked: false
-cardinality: 1
-translatable: true
-indexes: {  }
-persist_with_no_fields: false
-custom_storage: false
diff --git a/core/modules/forum/config/optional/field.storage.node.taxonomy_forums.yml b/core/modules/forum/config/optional/field.storage.node.taxonomy_forums.yml
deleted file mode 100644
index f37ea9e2607d..000000000000
--- a/core/modules/forum/config/optional/field.storage.node.taxonomy_forums.yml
+++ /dev/null
@@ -1,19 +0,0 @@
-langcode: en
-status: true
-dependencies:
-  module:
-    - node
-    - taxonomy
-id: node.taxonomy_forums
-field_name: taxonomy_forums
-entity_type: node
-type: entity_reference
-settings:
-  target_type: taxonomy_term
-module: core
-locked: false
-cardinality: 1
-translatable: true
-indexes: {  }
-persist_with_no_fields: false
-custom_storage: false
diff --git a/core/modules/forum/config/optional/field.storage.taxonomy_term.forum_container.yml b/core/modules/forum/config/optional/field.storage.taxonomy_term.forum_container.yml
deleted file mode 100644
index 786e53dc9b00..000000000000
--- a/core/modules/forum/config/optional/field.storage.taxonomy_term.forum_container.yml
+++ /dev/null
@@ -1,17 +0,0 @@
-langcode: en
-status: true
-dependencies:
-  module:
-    - taxonomy
-id: taxonomy_term.forum_container
-field_name: forum_container
-entity_type: taxonomy_term
-type: boolean
-settings: {  }
-module: core
-locked: true
-cardinality: 1
-translatable: false
-indexes: {  }
-persist_with_no_fields: false
-custom_storage: false
diff --git a/core/modules/forum/config/optional/node.type.forum.yml b/core/modules/forum/config/optional/node.type.forum.yml
deleted file mode 100644
index 2bb8ed367c41..000000000000
--- a/core/modules/forum/config/optional/node.type.forum.yml
+++ /dev/null
@@ -1,13 +0,0 @@
-langcode: en
-status: true
-dependencies:
-  enforced:
-    module:
-      - forum
-name: 'Forum topic'
-type: forum
-description: 'A <em>forum topic</em> starts a new discussion thread within a forum.'
-help: null
-new_revision: false
-preview_mode: 1
-display_submitted: true
diff --git a/core/modules/forum/config/optional/taxonomy.vocabulary.forums.yml b/core/modules/forum/config/optional/taxonomy.vocabulary.forums.yml
deleted file mode 100644
index 9999eb23f19a..000000000000
--- a/core/modules/forum/config/optional/taxonomy.vocabulary.forums.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-langcode: en
-status: true
-dependencies:
-  enforced:
-    module:
-      - forum
-name: Forums
-vid: forums
-description: 'Forum navigation vocabulary'
-weight: -10
-new_revision: false
diff --git a/core/modules/forum/config/schema/forum.schema.yml b/core/modules/forum/config/schema/forum.schema.yml
deleted file mode 100644
index dbe44fc91fe6..000000000000
--- a/core/modules/forum/config/schema/forum.schema.yml
+++ /dev/null
@@ -1,66 +0,0 @@
-# Schema for the configuration files of the Forum module.
-
-forum.settings:
-  type: config_object
-  label: 'Forum settings'
-  mapping:
-    block:
-      type: mapping
-      label: 'Forum blocks'
-      mapping:
-        active:
-          type: mapping
-          label: 'Active forum block'
-          mapping:
-            limit:
-              type: integer
-              label: 'Active forum Count'
-        new:
-          type: mapping
-          label: 'New forum topics'
-          mapping:
-            limit:
-              type: integer
-              label: 'New forum Count'
-    topics:
-      type: mapping
-      label: 'Forum topics block'
-      mapping:
-        hot_threshold:
-          type: integer
-          label: 'Hot topic threshold'
-        order:
-          type: integer
-          label: 'Forum default topic order'
-        page_limit:
-          type: integer
-          label: 'Topics per page'
-    vocabulary:
-      type: string
-      label: 'Forum vocabulary ID'
-
-block.settings.forum_active_block:
-  type: block_settings
-  label: 'Active forum topics block'
-  mapping:
-    properties:
-      type: sequence
-      label: 'Properties'
-      sequence:
-        type: string
-    block_count:
-      type: integer
-      label: 'Block count'
-
-block.settings.forum_new_block:
-  type: block_settings
-  label: 'New forum topics block'
-  mapping:
-    properties:
-      type: sequence
-      label: 'Properties'
-      sequence:
-        type: string
-    block_count:
-      type: integer
-      label: 'Block count'
diff --git a/core/modules/forum/forum.info.yml b/core/modules/forum/forum.info.yml
deleted file mode 100644
index 6aa532a208ac..000000000000
--- a/core/modules/forum/forum.info.yml
+++ /dev/null
@@ -1,14 +0,0 @@
-name: Forum
-type: module
-description: 'Provides discussion forums.'
-dependencies:
-  - drupal:node
-  - drupal:history
-  - drupal:taxonomy
-  - drupal:comment
-  - drupal:options
-package: Core
-version: VERSION
-configure: forum.overview
-lifecycle: deprecated
-lifecycle_link: "https://www.drupal.org/node/3223395#s-forum"
diff --git a/core/modules/forum/forum.install b/core/modules/forum/forum.install
deleted file mode 100644
index 9e7bf35c583f..000000000000
--- a/core/modules/forum/forum.install
+++ /dev/null
@@ -1,187 +0,0 @@
-<?php
-
-/**
- * @file
- * Install, update, and uninstall functions for the Forum module.
- */
-
-use Drupal\field\Entity\FieldStorageConfig;
-use Drupal\taxonomy\Entity\Term;
-
-/**
- * Implements hook_install().
- */
-function forum_install($is_syncing) {
-  // Set the weight of the forum.module to 1 so it is loaded after the taxonomy.module.
-  module_set_weight('forum', 1);
-  // Do not allow to delete the forum's node type machine name.
-  $locked = \Drupal::state()->get('node.type.locked');
-  $locked['forum'] = 'forum';
-  \Drupal::state()->set('node.type.locked', $locked);
-
-  if (!$is_syncing) {
-    // Create a default forum so forum posts can be created.
-    $term = Term::create([
-      'name' => t('General discussion'),
-      'description' => '',
-      'parent' => [0],
-      'vid' => 'forums',
-      'forum_container' => 0,
-    ]);
-    $term->save();
-  }
-}
-
-/**
- * Implements hook_uninstall().
- */
-function forum_uninstall() {
-  if ($field_storage = FieldStorageConfig::loadByName('node', 'taxonomy_forums')) {
-    $field_storage->delete();
-  }
-
-  if ($field_storage = FieldStorageConfig::loadByName('node', 'comment_forum')) {
-    $field_storage->delete();
-  }
-
-  if ($field_storage = FieldStorageConfig::loadByName('taxonomy_term', 'forum_container')) {
-    $field_storage->delete();
-  }
-
-  // Purge field data now to allow taxonomy and options module to be uninstalled
-  // if this is the only field remaining.
-  field_purge_batch(10);
-  // Allow to delete a forum's node type.
-  $locked = \Drupal::state()->get('node.type.locked');
-  unset($locked['forum']);
-  \Drupal::state()->set('node.type.locked', $locked);
-}
-
-/**
- * Implements hook_schema().
- */
-function forum_schema() {
-  $schema['forum'] = [
-    'description' => 'Stores the relationship of nodes to forum terms.',
-    'fields' => [
-      'nid' => [
-        'type' => 'int',
-        'unsigned' => TRUE,
-        'not null' => TRUE,
-        'default' => 0,
-        'description' => 'The {node}.nid of the node.',
-      ],
-      'vid' => [
-        'type' => 'int',
-        'unsigned' => TRUE,
-        'not null' => TRUE,
-        'default' => 0,
-        'description' => 'Primary Key: The {node}.vid of the node.',
-      ],
-      'tid' => [
-        'type' => 'int',
-        'unsigned' => TRUE,
-        'not null' => TRUE,
-        'default' => 0,
-        'description' => 'The {taxonomy_term_data}.tid of the forum term assigned to the node.',
-      ],
-    ],
-    'indexes' => [
-      'forum_topic' => ['nid', 'tid'],
-      'tid' => ['tid'],
-    ],
-    'primary key' => ['vid'],
-    'foreign keys' => [
-      'forum_node' => [
-        'table' => 'node',
-        'columns' => [
-          'nid' => 'nid',
-          'vid' => 'vid',
-        ],
-      ],
-    ],
-  ];
-
-  $schema['forum_index'] = [
-    'description' => 'Maintains denormalized information about node/term relationships.',
-    'fields' => [
-      'nid' => [
-        'description' => 'The {node}.nid this record tracks.',
-        'type' => 'int',
-        'unsigned' => TRUE,
-        'not null' => TRUE,
-        'default' => 0,
-      ],
-      'title' => [
-        'description' => 'The node title.',
-        'type' => 'varchar',
-        'length' => 255,
-        'not null' => TRUE,
-        'default' => '',
-      ],
-      'tid' => [
-        'description' => 'The term ID.',
-        'type' => 'int',
-        'unsigned' => TRUE,
-        'not null' => TRUE,
-        'default' => 0,
-      ],
-      'sticky' => [
-        'description' => 'Boolean indicating whether the node is sticky.',
-        'type' => 'int',
-        'not null' => FALSE,
-        'default' => 0,
-        'size' => 'tiny',
-      ],
-      'created' => [
-        'description' => 'The Unix timestamp when the node was created.',
-        'type' => 'int',
-        'unsigned' => TRUE,
-        'not null' => TRUE,
-        'default' => 0,
-        'size' => 'big',
-      ],
-      'last_comment_timestamp' => [
-        'type' => 'int',
-        'not null' => TRUE,
-        'default' => 0,
-        'description' => 'The Unix timestamp of the last comment that was posted within this node, from {comment}.timestamp.',
-        'size' => 'big',
-      ],
-      'comment_count' => [
-        'type' => 'int',
-        'unsigned' => TRUE,
-        'not null' => TRUE,
-        'default' => 0,
-        'description' => 'The total number of comments on this node.',
-      ],
-    ],
-    'indexes' => [
-      'forum_topics' => ['nid', 'tid', 'sticky', 'last_comment_timestamp'],
-      'created' => ['created'],
-      'last_comment_timestamp' => ['last_comment_timestamp'],
-    ],
-    'primary key' => ['nid', 'tid'],
-    'foreign keys' => [
-      'tracked_node' => [
-        'table' => 'node',
-        'columns' => ['nid' => 'nid'],
-      ],
-      'term' => [
-        'table' => 'taxonomy_term_data',
-        'columns' => [
-          'tid' => 'tid',
-        ],
-      ],
-    ],
-  ];
-
-  return $schema;
-}
-
-/**
- * Implements hook_update_last_removed().
- */
-function forum_update_last_removed() {
-  return 10102;
-}
diff --git a/core/modules/forum/forum.links.action.yml b/core/modules/forum/forum.links.action.yml
deleted file mode 100644
index 512b9d572d35..000000000000
--- a/core/modules/forum/forum.links.action.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-forum_add_forum_local_action:
-  route_name: forum.add_forum
-  title: 'Add forum'
-  appears_on:
-    - forum.overview
-
-forum_add_container_local_action:
-  route_name: forum.add_container
-  title: 'Add container'
-  appears_on:
-    - forum.overview
diff --git a/core/modules/forum/forum.links.menu.yml b/core/modules/forum/forum.links.menu.yml
deleted file mode 100644
index 4586a1202afd..000000000000
--- a/core/modules/forum/forum.links.menu.yml
+++ /dev/null
@@ -1,9 +0,0 @@
-forum.index:
-  title: Forums
-  route_name: forum.index
-  menu_name: tools
-forum.overview:
-  title: Forums
-  parent: system.admin_structure
-  description: 'Control forum hierarchy settings.'
-  route_name: forum.overview
diff --git a/core/modules/forum/forum.links.task.yml b/core/modules/forum/forum.links.task.yml
deleted file mode 100644
index 10a8f41d87ea..000000000000
--- a/core/modules/forum/forum.links.task.yml
+++ /dev/null
@@ -1,9 +0,0 @@
-forum.overview:
-  route_name: forum.overview
-  base_route: forum.overview
-  title: List
-forum.settings:
-  route_name: forum.settings
-  base_route: forum.overview
-  title: Settings
-  weight: 100
diff --git a/core/modules/forum/forum.module b/core/modules/forum/forum.module
deleted file mode 100644
index 6ac1986835dc..000000000000
--- a/core/modules/forum/forum.module
+++ /dev/null
@@ -1,760 +0,0 @@
-<?php
-
-/**
- * @file
- * Provides discussion forums.
- */
-
-use Drupal\comment\CommentInterface;
-use Drupal\comment\Plugin\Field\FieldType\CommentItemInterface;
-use Drupal\Core\Entity\EntityInterface;
-use Drupal\Core\Entity\EntityTypeInterface;
-use Drupal\Core\Link;
-use Drupal\Core\Url;
-use Drupal\Core\Form\FormStateInterface;
-use Drupal\Core\Routing\RouteMatchInterface;
-use Drupal\language\Plugin\migrate\source\d7\LanguageContentSettingsTaxonomyVocabulary as D7LanguageContentSettingsTaxonomyVocabulary;
-use Drupal\migrate\Plugin\MigrateSourceInterface;
-use Drupal\migrate\Plugin\MigrationInterface;
-use Drupal\migrate\Row;
-use Drupal\taxonomy\Plugin\migrate\source\d6\Term as D6Term;
-use Drupal\taxonomy\Plugin\migrate\source\d6\Vocabulary as D6Vocabulary;
-use Drupal\taxonomy\Plugin\migrate\source\d6\VocabularyPerType as D6VocabularyPerType;
-use Drupal\taxonomy\Plugin\migrate\source\d7\Term as D7Term;
-use Drupal\taxonomy\Plugin\migrate\source\d7\TermEntityTranslation;
-use Drupal\taxonomy\Plugin\migrate\source\d7\Vocabulary as D7Vocabulary;
-use Drupal\taxonomy\Plugin\migrate\source\d7\VocabularyTranslation as D7VocabularyTranslation;
-use Drupal\taxonomy\VocabularyInterface;
-use Drupal\user\Entity\User;
-
-/**
- * Implements hook_help().
- */
-function forum_help($route_name, RouteMatchInterface $route_match) {
-  switch ($route_name) {
-    case 'help.page.forum':
-      $output = '';
-      $output .= '<h2>' . t('About') . '</h2>';
-      $output .= '<p>' . t('The Forum module lets you create threaded discussion forums with functionality similar to other message board systems. In a forum, users post topics and threads in nested hierarchies, allowing discussions to be categorized and grouped.') . '</p>';
-      $output .= '<p>' . t('The Forum module adds and uses a content type called <em>Forum topic</em>. For background information on content types, see the <a href=":node_help">Node module help page</a>.', [':node_help' => Url::fromRoute('help.page', ['name' => 'node'])->toString()]) . '</p>';
-      $output .= '<p>' . t('A forum is represented by a hierarchical structure, consisting of:');
-      $output .= '<ul>';
-      $output .= '<li>' . t('<em>Forums</em> (for example, <em>Recipes for cooking vegetables</em>)') . '</li>';
-      $output .= '<li>' . t('<em>Forum topics</em> submitted by users (for example, <em>How to cook potatoes</em>), which start discussions.') . '</li>';
-      $output .= '<li>' . t('Threaded <em>comments</em> submitted by users (for example, <em>You wash the potatoes first and then...</em>).') . '</li>';
-      $output .= '<li>' . t('Optional <em>containers</em>, used to group similar forums. Forums can be placed inside containers, and vice versa.') . '</li>';
-      $output .= '</ul>';
-      $output .= '</p>';
-      $output .= '<p>' . t('For more information, see the <a href=":forum">online documentation for the Forum module</a>.', [':forum' => 'https://www.drupal.org/documentation/modules/forum']) . '</p>';
-      $output .= '<h2>' . t('Uses') . '</h2>';
-      $output .= '<dl>';
-      $output .= '<dt>' . t('Setting up the forum structure') . '</dt>';
-      $output .= '<dd>' . t('Visit the <a href=":forums">Forums page</a> to set up containers and forums to hold your discussion topics.', [':forums' => Url::fromRoute('forum.overview')->toString()]) . '</dd>';
-      $output .= '<dt>' . t('Starting a discussion') . '</dt>';
-      $output .= '<dd>' . t('The <a href=":create-topic">Forum topic</a> link on the <a href=":content-add">Add content</a> page creates the first post of a new threaded discussion, or thread.', [':create-topic' => Url::fromRoute('node.add', ['node_type' => 'forum'])->toString(), ':content-add' => Url::fromRoute('node.add_page')->toString()]) . '</dd>';
-      $output .= '<dt>' . t('Navigating in the forum') . '</dt>';
-      $output .= '<dd>' . t('Installing the Forum module provides a default <em>Forums</em> menu link in the Tools menu that links to the <a href=":forums">Forums page</a>.', [':forums' => Url::fromRoute('forum.index')->toString()]) . '</dd>';
-      $output .= '<dt>' . t('Moving forum topics') . '</dt>';
-      $output .= '<dd>' . t('A forum topic (and all of its comments) may be moved between forums by selecting a different forum while editing a forum topic. When moving a forum topic between forums, the <em>Leave shadow copy</em> option creates a link in the original forum pointing to the new location.') . '</dd>';
-      $output .= '<dt>' . t('Locking and disabling comments') . '</dt>';
-      $output .= '<dd>' . t('Selecting <em>Closed</em> under <em>Comment settings</em> while editing a forum topic will lock (prevent new comments on) the thread. Selecting <em>Hidden</em> under <em>Comment settings</em> while editing a forum topic will hide all existing comments on the thread, and prevent new ones.') . '</dd>';
-      $output .= '</dl>';
-      return $output;
-
-    case 'forum.overview':
-      $output = '<p>' . t('Forums contain forum topics. Use containers to group related forums.') . '</p>';
-      $more_help_link = [
-        '#type' => 'link',
-        '#url' => Url::fromRoute('help.page', ['name' => 'forum']),
-        '#title' => t('More help'),
-        '#attributes' => [
-          'class' => ['icon-help'],
-        ],
-      ];
-      $container = [
-        '#theme' => 'container',
-        '#children' => $more_help_link,
-        '#attributes' => [
-          'class' => ['more-link'],
-        ],
-      ];
-      $output .= \Drupal::service('renderer')->renderInIsolation($container);
-      return $output;
-
-    case 'forum.add_container':
-      return '<p>' . t('Use containers to group related forums.') . '</p>';
-
-    case 'forum.add_forum':
-      return '<p>' . t('A forum holds related forum topics.') . '</p>';
-
-    case 'forum.settings':
-      return '<p>' . t('Adjust the display of your forum topics. Organize the forums on the <a href=":forum-structure">forum structure page</a>.', [':forum-structure' => Url::fromRoute('forum.overview')->toString()]) . '</p>';
-  }
-}
-
-/**
- * Implements hook_theme().
- */
-function forum_theme() {
-  return [
-    'forums' => [
-      'variables' => ['forums' => [], 'topics' => [], 'topics_pager' => [], 'parents' => NULL, 'term' => NULL, 'sortby' => NULL, 'forum_per_page' => NULL, 'header' => []],
-    ],
-    'forum_list' => [
-      'variables' => ['forums' => NULL, 'parents' => NULL, 'tid' => NULL],
-    ],
-    'forum_icon' => [
-      'variables' => ['new_posts' => NULL, 'num_posts' => 0, 'comment_mode' => 0, 'sticky' => 0, 'first_new' => FALSE],
-    ],
-    'forum_submitted' => [
-      'variables' => ['topic' => NULL],
-    ],
-    'forum_topic' => [
-      'variables' => ['title_link' => NULL, 'submitted' => NULL],
-    ],
-  ];
-}
-
-/**
- * Implements hook_entity_type_build().
- */
-function forum_entity_type_build(array &$entity_types) {
-  /** @var \Drupal\Core\Entity\EntityTypeInterface[] $entity_types */
-  // Register forum specific forms.
-  $entity_types['taxonomy_term']
-    ->setFormClass('forum', 'Drupal\forum\Form\ForumForm')
-    ->setFormClass('container', 'Drupal\forum\Form\ContainerForm')
-    ->setLinkTemplate('forum-edit-container-form', '/admin/structure/forum/edit/container/{taxonomy_term}')
-    ->setLinkTemplate('forum-delete-form', '/admin/structure/forum/delete/forum/{taxonomy_term}')
-    ->setLinkTemplate('forum-edit-form', '/admin/structure/forum/edit/forum/{taxonomy_term}');
-}
-
-/**
- * Implements hook_entity_bundle_info_alter().
- */
-function forum_entity_bundle_info_alter(&$bundles) {
-  // Take over URI construction for taxonomy terms that are forums.
-  if ($vid = \Drupal::config('forum.settings')->get('vocabulary')) {
-    if (isset($bundles['taxonomy_term'][$vid])) {
-      $bundles['taxonomy_term'][$vid]['uri_callback'] = 'forum_uri';
-    }
-  }
-}
-
-/**
- * Entity URI callback used in forum_entity_bundle_info_alter().
- */
-function forum_uri($forum) {
-  return Url::fromRoute('forum.page', ['taxonomy_term' => $forum->id()]);
-}
-
-/**
- * Implements hook_entity_bundle_field_info_alter().
- */
-function forum_entity_bundle_field_info_alter(&$fields, EntityTypeInterface $entity_type, $bundle) {
-  if ($entity_type->id() == 'node'  && !empty($fields['taxonomy_forums'])) {
-    $fields['taxonomy_forums']->addConstraint('ForumLeaf', []);
-  }
-}
-
-/**
- * Implements hook_ENTITY_TYPE_presave() for node entities.
- *
- * Assigns the forum taxonomy when adding a topic from within a forum.
- */
-function forum_node_presave(EntityInterface $node) {
-  if (\Drupal::service('forum_manager')->checkNodeType($node)) {
-    // Make sure all fields are set properly:
-    $node->icon = !empty($node->icon) ? $node->icon : '';
-    if (!$node->taxonomy_forums->isEmpty()) {
-      $node->forum_tid = $node->taxonomy_forums->target_id;
-      // Only do a shadow copy check if this is not a new node.
-      if (!$node->isNew()) {
-        $old_tid = \Drupal::service('forum.index_storage')->getOriginalTermId($node);
-        if ($old_tid && isset($node->forum_tid) && ($node->forum_tid != $old_tid) && !empty($node->shadow)) {
-          // A shadow copy needs to be created. Retain new term and add old term.
-          $node->taxonomy_forums[count($node->taxonomy_forums)] = ['target_id' => $old_tid];
-        }
-      }
-    }
-  }
-}
-
-/**
- * Implements hook_ENTITY_TYPE_update() for node entities.
- */
-function forum_node_update(EntityInterface $node) {
-  if (\Drupal::service('forum_manager')->checkNodeType($node)) {
-    // If this is not a new revision and does exist, update the forum record,
-    // otherwise insert a new one.
-    /** @var \Drupal\forum\ForumIndexStorageInterface $forum_index_storage */
-    $forum_index_storage = \Drupal::service('forum.index_storage');
-    if ($node->getRevisionId() == $node->original->getRevisionId() && $forum_index_storage->getOriginalTermId($node)) {
-      if (!empty($node->forum_tid)) {
-        $forum_index_storage->update($node);
-      }
-      // The node is removed from the forum.
-      else {
-        $forum_index_storage->delete($node);
-      }
-    }
-    else {
-      if (!empty($node->forum_tid)) {
-        $forum_index_storage->create($node);
-      }
-    }
-    // If the node has a shadow forum topic, update the record for this
-    // revision.
-    if (!empty($node->shadow)) {
-      $forum_index_storage->deleteRevision($node);
-      $forum_index_storage->create($node);
-    }
-
-    // If the node is published, update the forum index.
-    if ($node->isPublished()) {
-      $forum_index_storage->deleteIndex($node);
-      $forum_index_storage->createIndex($node);
-    }
-    // When a forum node is unpublished, remove it from the forum_index table.
-    else {
-      $forum_index_storage->deleteIndex($node);
-    }
-  }
-}
-
-/**
- * Implements hook_ENTITY_TYPE_insert() for node entities.
- */
-function forum_node_insert(EntityInterface $node) {
-  if (\Drupal::service('forum_manager')->checkNodeType($node)) {
-    /** @var \Drupal\forum\ForumIndexStorageInterface $forum_index_storage */
-    $forum_index_storage = \Drupal::service('forum.index_storage');
-    if (!empty($node->forum_tid)) {
-      $forum_index_storage->create($node);
-    }
-
-    // If the node is published, update the forum index.
-    if ($node->isPublished()) {
-      $forum_index_storage->createIndex($node);
-    }
-  }
-}
-
-/**
- * Implements hook_ENTITY_TYPE_predelete() for node entities.
- */
-function forum_node_predelete(EntityInterface $node) {
-  if (\Drupal::service('forum_manager')->checkNodeType($node)) {
-    /** @var \Drupal\forum\ForumIndexStorageInterface $forum_index_storage */
-    $forum_index_storage = \Drupal::service('forum.index_storage');
-    $forum_index_storage->delete($node);
-    $forum_index_storage->deleteIndex($node);
-  }
-}
-
-/**
- * Implements hook_ENTITY_TYPE_storage_load() for node entities.
- */
-function forum_node_storage_load($nodes) {
-  $node_vids = [];
-  foreach ($nodes as $node) {
-    if (\Drupal::service('forum_manager')->checkNodeType($node)) {
-      $node_vids[] = $node->getRevisionId();
-    }
-  }
-  if (!empty($node_vids)) {
-    $result = \Drupal::service('forum.index_storage')->read($node_vids);
-    foreach ($result as $record) {
-      $nodes[$record->nid]->forum_tid = $record->tid;
-    }
-  }
-}
-
-/**
- * Implements hook_ENTITY_TYPE_update() for comment entities.
- */
-function forum_comment_update(CommentInterface $comment) {
-  if ($comment->getCommentedEntityTypeId() == 'node') {
-    \Drupal::service('forum.index_storage')->updateIndex($comment->getCommentedEntity());
-  }
-}
-
-/**
- * Implements hook_ENTITY_TYPE_insert() for comment entities.
- */
-function forum_comment_insert(CommentInterface $comment) {
-  if ($comment->getCommentedEntityTypeId() == 'node') {
-    \Drupal::service('forum.index_storage')->updateIndex($comment->getCommentedEntity());
-  }
-}
-
-/**
- * Implements hook_ENTITY_TYPE_delete() for comment entities.
- */
-function forum_comment_delete(CommentInterface $comment) {
-  if ($comment->getCommentedEntityTypeId() == 'node') {
-    \Drupal::service('forum.index_storage')->updateIndex($comment->getCommentedEntity());
-  }
-}
-
-/**
- * Implements hook_form_BASE_FORM_ID_alter() for \Drupal\taxonomy\VocabularyForm.
- */
-function forum_form_taxonomy_vocabulary_form_alter(&$form, FormStateInterface $form_state, $form_id) {
-  $vid = \Drupal::config('forum.settings')->get('vocabulary');
-  $vocabulary = $form_state->getFormObject()->getEntity();
-  if ($vid == $vocabulary->id()) {
-    $form['help_forum_vocab'] = [
-      '#markup' => t('This is the designated forum vocabulary. Some of the normal vocabulary options have been removed.'),
-      '#weight' => -1,
-    ];
-    // Forum's vocabulary always has single hierarchy. Forums and containers
-    // have only one parent or no parent for root items. By default this value
-    // is 0.
-    $form['hierarchy']['#value'] = VocabularyInterface::HIERARCHY_SINGLE;
-    // Do not allow to delete forum's vocabulary.
-    $form['actions']['delete']['#access'] = FALSE;
-    // Do not allow to change a vid of forum's vocabulary.
-    $form['vid']['#disabled'] = TRUE;
-  }
-}
-
-/**
- * Implements hook_form_FORM_ID_alter() for \Drupal\taxonomy\TermForm.
- */
-function forum_form_taxonomy_term_form_alter(&$form, FormStateInterface $form_state, $form_id) {
-  $vid = \Drupal::config('forum.settings')->get('vocabulary');
-  if (isset($form['vid']['#value']) && $form['vid']['#value'] == $vid) {
-    // Hide multiple parents select from forum terms.
-    $form['relations']['parent']['#access'] = FALSE;
-  }
-}
-
-/**
- * Implements hook_form_BASE_FORM_ID_alter() for \Drupal\node\NodeForm.
- */
-function forum_form_node_form_alter(&$form, FormStateInterface $form_state, $form_id) {
-  $node = $form_state->getFormObject()->getEntity();
-  if (isset($node->taxonomy_forums) && !$node->isNew()) {
-    $forum_terms = $node->taxonomy_forums;
-    // If editing, give option to leave shadows.
-    $shadow = (count($forum_terms) > 1);
-    $form['shadow'] = [
-      '#type' => 'checkbox',
-      '#title' => t('Leave shadow copy'),
-      '#default_value' => $shadow,
-      '#description' => t('If you move this topic, you can leave a link in the old forum to the new forum.'),
-    ];
-    $form['forum_tid'] = ['#type' => 'value', '#value' => $node->forum_tid];
-  }
-
-  if (isset($form['taxonomy_forums'])) {
-    $widget =& $form['taxonomy_forums']['widget'];
-    $widget['#multiple'] = FALSE;
-    if (empty($widget['#default_value'])) {
-      // If there is no default forum already selected, try to get the forum
-      // ID from the URL (e.g., if we are on a page like node/add/forum/2, we
-      // expect "2" to be the ID of the forum that was requested).
-      $requested_forum_id = \Drupal::request()->query->get('forum_id');
-      $widget['#default_value'] = is_numeric($requested_forum_id) ? $requested_forum_id : '';
-    }
-  }
-}
-
-/**
- * Implements hook_preprocess_HOOK() for block templates.
- */
-function forum_preprocess_block(&$variables) {
-  if ($variables['configuration']['provider'] == 'forum') {
-    $variables['attributes']['role'] = 'navigation';
-  }
-}
-
-/**
- * Implements hook_theme_suggestions_HOOK().
- */
-function forum_theme_suggestions_forums(array $variables) {
-  $suggestions = [];
-  $tid = $variables['term']->id();
-
-  // Provide separate template suggestions based on what's being output. Topic
-  // ID is also accounted for. Check both variables to be safe then the inverse.
-  // Forums with topic IDs take precedence.
-  if ($variables['forums'] && !$variables['topics']) {
-    $suggestions[] = 'forums__containers';
-    $suggestions[] = 'forums__' . $tid;
-    $suggestions[] = 'forums__containers__' . $tid;
-  }
-  elseif (!$variables['forums'] && $variables['topics']) {
-    $suggestions[] = 'forums__topics';
-    $suggestions[] = 'forums__' . $tid;
-    $suggestions[] = 'forums__topics__' . $tid;
-  }
-  else {
-    $suggestions[] = 'forums__' . $tid;
-  }
-
-  return $suggestions;
-}
-
-/**
- * Prepares variables for forums templates.
- *
- * Default template: forums.html.twig.
- *
- * @param array $variables
- *   An array containing the following elements:
- *   - forums: An array of all forum objects to display for the given taxonomy
- *     term ID. If tid = 0 then all the top-level forums are displayed.
- *   - topics: An array of all the topics in the current forum.
- *   - parents: An array of taxonomy term objects that are ancestors of the
- *     current term ID.
- *   - term: Taxonomy term of the current forum.
- *   - sortby: One of the following integers indicating the sort criteria:
- *     - 1: Date - newest first.
- *     - 2: Date - oldest first.
- *     - 3: Posts with the most comments first.
- *     - 4: Posts with the least comments first.
- *   - forum_per_page: The maximum number of topics to display per page.
- */
-function template_preprocess_forums(&$variables) {
-  $variables['tid'] = $variables['term']->id();
-  if ($variables['forums_defined'] = count($variables['forums']) || count($variables['parents'])) {
-    if (!empty($variables['forums'])) {
-      $variables['forums'] = [
-        '#theme' => 'forum_list',
-        '#forums' => $variables['forums'],
-        '#parents' => $variables['parents'],
-        '#tid' => $variables['tid'],
-      ];
-    }
-
-    if ($variables['term'] && empty($variables['term']->forum_container->value) && !empty($variables['topics'])) {
-      $forum_topic_list_header = $variables['header'];
-
-      $table = [
-        '#theme' => 'table__forum_topic_list',
-        '#responsive' => FALSE,
-        '#attributes' => ['id' => 'forum-topic-' . $variables['tid']],
-        '#header' => [],
-        '#rows' => [],
-      ];
-
-      if (!empty($forum_topic_list_header)) {
-        $table['#header'] = $forum_topic_list_header;
-      }
-
-      /** @var \Drupal\node\NodeInterface $topic */
-      foreach ($variables['topics'] as $id => $topic) {
-        $variables['topics'][$id]->icon = [
-          '#theme' => 'forum_icon',
-          '#new_posts' => $topic->new,
-          '#num_posts' => $topic->comment_count,
-          '#comment_mode' => $topic->comment_mode,
-          '#sticky' => $topic->isSticky(),
-          '#first_new' => $topic->first_new,
-        ];
-
-        // We keep the actual tid in forum table, if it's different from the
-        // current tid then it means the topic appears in two forums, one of
-        // them is a shadow copy.
-        if ($variables['tid'] != $topic->forum_tid) {
-          $variables['topics'][$id]->moved = TRUE;
-          $variables['topics'][$id]->title = $topic->getTitle();
-          $variables['topics'][$id]->message = Link::fromTextAndUrl(t('This topic has been moved'), Url::fromRoute('forum.page', ['taxonomy_term' => $topic->forum_tid]))->toString();
-        }
-        else {
-          $variables['topics'][$id]->moved = FALSE;
-          $variables['topics'][$id]->title_link = Link::fromTextAndUrl($topic->getTitle(), $topic->toUrl())->toString();
-          $variables['topics'][$id]->message = '';
-        }
-        $forum_submitted = [
-          '#theme' => 'forum_submitted',
-          '#topic' => (object) [
-            'uid' => $topic->getOwnerId(),
-            'name' => $topic->getOwner()->getDisplayName(),
-            'created' => $topic->getCreatedTime(),
-          ],
-        ];
-        $variables['topics'][$id]->submitted = \Drupal::service('renderer')->render($forum_submitted);
-        $forum_submitted = [
-          '#theme' => 'forum_submitted',
-          '#topic' => $topic->last_reply ?? NULL,
-        ];
-        $variables['topics'][$id]->last_reply = \Drupal::service('renderer')->render($forum_submitted);
-
-        $variables['topics'][$id]->new_text = '';
-        $variables['topics'][$id]->new_url = '';
-
-        if ($topic->new_replies) {
-          $page_number = \Drupal::entityTypeManager()->getStorage('comment')
-            ->getNewCommentPageNumber($topic->comment_count, $topic->new_replies, $topic, 'comment_forum');
-          $query = $page_number ? ['page' => $page_number] : NULL;
-          $variables['topics'][$id]->new_text = \Drupal::translation()->formatPlural($topic->new_replies, '1 new post<span class="visually-hidden"> in topic %title</span>', '@count new posts<span class="visually-hidden"> in topic %title</span>', ['%title' => $variables['topics'][$id]->label()]);
-          $variables['topics'][$id]->new_url = Url::fromRoute('entity.node.canonical', ['node' => $topic->id()], ['query' => $query, 'fragment' => 'new'])->toString();
-        }
-
-        // Build table rows from topics.
-        $row = [];
-        $row[] = [
-          'data' => [
-            $topic->icon,
-            [
-              '#theme' => 'forum_topic',
-              '#title_link' => $topic->title_link,
-              '#submitted' => $topic->submitted,
-            ],
-          ],
-          'class' => ['forum__topic'],
-        ];
-
-        if ($topic->moved) {
-          $row[] = [
-            'data' => $topic->message,
-            'colspan' => '2',
-          ];
-        }
-        else {
-          $new_replies = '';
-          if ($topic->new_replies) {
-            $new_replies = '<br /><a href="' . $topic->new_url . '">' . $topic->new_text . '</a>';
-          }
-
-          $row[] = [
-            'data' => [
-              [
-                '#prefix' => $topic->comment_count,
-                '#markup' => $new_replies,
-              ],
-            ],
-            'class' => ['forum__replies'],
-          ];
-          $row[] = [
-            'data' => $topic->last_reply,
-            'class' => ['forum__last-reply'],
-          ];
-        }
-        $table['#rows'][] = $row;
-      }
-
-      $variables['topics_original'] = $variables['topics'];
-      $variables['topics'] = $table;
-      $variables['topics_pager'] = [
-        '#type' => 'pager',
-      ];
-    }
-  }
-}
-
-/**
- * Prepares variables for forum list templates.
- *
- * Default template: forum-list.html.twig.
- *
- * @param array $variables
- *   An array containing the following elements:
- *   - forums: An array of all forum objects to display for the given taxonomy
- *     term ID. If tid = 0 then all the top-level forums are displayed.
- *   - parents: An array of taxonomy term objects that are ancestors of the
- *     current term ID.
- *   - tid: Taxonomy term ID of the current forum.
- */
-function template_preprocess_forum_list(&$variables) {
-  $user = \Drupal::currentUser();
-  $row = 0;
-  // Sanitize each forum so that the template can safely print the data.
-  foreach ($variables['forums'] as $id => $forum) {
-    $variables['forums'][$id]->description = ['#markup' => $forum->description->value];
-    $variables['forums'][$id]->link = forum_uri($forum);
-    $variables['forums'][$id]->name = $forum->label();
-    $variables['forums'][$id]->is_container = !empty($forum->forum_container->value);
-    $variables['forums'][$id]->zebra = $row % 2 == 0 ? 'odd' : 'even';
-    $row++;
-
-    $variables['forums'][$id]->new_text = '';
-    $variables['forums'][$id]->new_url = '';
-    $variables['forums'][$id]->new_topics = 0;
-    $variables['forums'][$id]->old_topics = $forum->num_topics;
-    $variables['forums'][$id]->icon_class = 'default';
-    $variables['forums'][$id]->icon_title = t('No new posts');
-    if ($user->isAuthenticated()) {
-      $variables['forums'][$id]->new_topics = \Drupal::service('forum_manager')->unreadTopics($forum->id(), $user->id());
-      if ($variables['forums'][$id]->new_topics) {
-        $variables['forums'][$id]->new_text = \Drupal::translation()->formatPlural($variables['forums'][$id]->new_topics, '1 new post<span class="visually-hidden"> in forum %title</span>', '@count new posts<span class="visually-hidden"> in forum %title</span>', ['%title' => $variables['forums'][$id]->label()]);
-        $variables['forums'][$id]->new_url = Url::fromRoute('forum.page', ['taxonomy_term' => $forum->id()], ['fragment' => 'new'])->toString();
-        $variables['forums'][$id]->icon_class = 'new';
-        $variables['forums'][$id]->icon_title = t('New posts');
-      }
-      $variables['forums'][$id]->old_topics = $forum->num_topics - $variables['forums'][$id]->new_topics;
-    }
-    $forum_submitted = ['#theme' => 'forum_submitted', '#topic' => $forum->last_post];
-    $variables['forums'][$id]->last_reply = \Drupal::service('renderer')->render($forum_submitted);
-  }
-
-  $variables['pager'] = [
-    '#type' => 'pager',
-  ];
-
-  // Give meaning to $tid for themers. $tid actually stands for term ID.
-  $variables['forum_id'] = $variables['tid'];
-  unset($variables['tid']);
-}
-
-/**
- * Prepares variables for forum icon templates.
- *
- * Default template: forum-icon.html.twig.
- *
- * @param array $variables
- *   An array containing the following elements:
- *   - new_posts: Indicates whether or not the topic contains new posts.
- *   - num_posts: The total number of posts in all topics.
- *   - comment_mode: An integer indicating whether comments are open, closed,
- *     or hidden.
- *   - sticky: Indicates whether the topic is sticky.
- *   - first_new: Indicates whether this is the first topic with new posts.
- */
-function template_preprocess_forum_icon(&$variables) {
-  $variables['hot_threshold'] = \Drupal::config('forum.settings')->get('topics.hot_threshold');
-
-  if ($variables['num_posts'] > $variables['hot_threshold']) {
-    $variables['icon_status'] = $variables['new_posts'] ? 'hot-new' : 'hot';
-    $variables['icon_title'] = $variables['new_posts'] ? t('Hot topic, new comments') : t('Hot topic');
-  }
-  else {
-    $variables['icon_status'] = $variables['new_posts'] ? 'new' : 'default';
-    $variables['icon_title'] = $variables['new_posts'] ? t('New comments') : t('Normal topic');
-  }
-
-  if ($variables['comment_mode'] == CommentItemInterface::CLOSED || $variables['comment_mode'] == CommentItemInterface::HIDDEN) {
-    $variables['icon_status'] = 'closed';
-    $variables['icon_title'] = t('Closed topic');
-  }
-
-  if ($variables['sticky'] == 1) {
-    $variables['icon_status'] = 'sticky';
-    $variables['icon_title'] = t('Sticky topic');
-  }
-
-  $variables['attributes']['title'] = $variables['icon_title'];
-}
-
-/**
- * Prepares variables for forum submission information templates.
- *
- * The submission information will be displayed in the forum list and topic
- * list.
- *
- * Default template: forum-submitted.html.twig.
- *
- * @param array $variables
- *   An array containing the following elements:
- *   - topic: The topic object.
- */
-function template_preprocess_forum_submitted(&$variables) {
-  $variables['author'] = '';
-  if (isset($variables['topic']->uid)) {
-    $username = ['#theme' => 'username', '#account' => User::load($variables['topic']->uid)];
-    $variables['author'] = \Drupal::service('renderer')->render($username);
-  }
-  $variables['time'] = isset($variables['topic']->created) ? \Drupal::service('date.formatter')->formatTimeDiffSince($variables['topic']->created) : '';
-}
-
-/**
- * Implements hook_migrate_prepare_row().
- */
-function forum_migrate_prepare_row(Row $row, MigrateSourceInterface $source, MigrationInterface $migration) {
-  $source_plugin = $migration->getSourcePlugin();
-  if (is_a($source_plugin, D6Term::class) || is_a($source_plugin, D7Term::class) || is_a($source_plugin, TermEntityTranslation::class)) {
-    $connection = $source_plugin->getDatabase();
-    if ($connection) {
-      if ($connection->schema()->tableExists('variable')) {
-        $query = $connection->select('variable', 'v')
-          ->fields('v', ['value'])
-          ->condition('name', 'forum_containers');
-        $result = $query->execute()->fetchCol();
-        if ($result) {
-          $forum_container_tids = unserialize($result[0], ['allowed_classes' => FALSE]);
-          $current_tid = $row->getSourceProperty('tid');
-          $row->setSourceProperty('is_container', in_array($current_tid, $forum_container_tids));
-        }
-      }
-    }
-  }
-}
-
-/**
- * Implements hook_migrate_MIGRATION_ID_prepare_row().
- */
-function forum_migrate_d7_taxonomy_vocabulary_prepare_row(Row $row, MigrateSourceInterface $source, MigrationInterface $migration) {
-  // If the vocabulary being migrated is the one defined in the
-  // 'forum_nav_vocabulary' variable, set the 'forum_vocabulary' source
-  // property to true so we know this is the vocabulary used by Forum.
-  $connection = $migration->getSourcePlugin()->getDatabase();
-  if ($connection) {
-    if ($connection->schema()->tableExists('variable')) {
-      $query = $connection->select('variable', 'v')
-        ->fields('v', ['value'])
-        ->condition('name', 'forum_nav_vocabulary');
-      $result = $query->execute()->fetchCol();
-      if ($result) {
-        $forum_nav_vocabulary = unserialize($result[0], ['allowed_classes' => FALSE]);
-        if ($forum_nav_vocabulary == $row->getSourceProperty('vid')) {
-          $row->setSourceProperty('forum_vocabulary', TRUE);
-        }
-      }
-    }
-  }
-}
-
-/**
- * Implements hook_migration_plugins_alter().
- */
-function forum_migration_plugins_alter(array &$migrations) {
-  // Function to append the forum_vocabulary process plugin.
-  $merge_forum_vocabulary = function ($process) {
-    $process[] = [
-      'plugin' => 'forum_vocabulary',
-      'machine_name' => 'forums',
-    ];
-    return $process;
-  };
-  $merge_forum_field_name = function ($process) {
-    $process[] = [
-      'plugin' => 'forum_vocabulary',
-      'machine_name' => 'taxonomy_forums',
-    ];
-    return $process;
-  };
-  foreach ($migrations as $migration_id => $migration) {
-    // Add process for forum_nav_vocabulary.
-    /** @var \Drupal\migrate\Plugin\migrate\source\SqlBase $source_plugin */
-    $source_plugin = \Drupal::service('plugin.manager.migration')
-      ->createStubMigration($migration)
-      ->getSourcePlugin();
-    if (is_a($source_plugin, D6Vocabulary::class)
-      || is_a($source_plugin, D6VocabularyPerType::class)) {
-      if (isset($migration['process']['vid'])) {
-        $migrations[$migration_id]['process']['vid'] = $merge_forum_vocabulary($migration['process']['vid']);
-      }
-      if (isset($migration['process']['field_name'])) {
-        $migrations[$migration_id]['process']['field_name'] = $merge_forum_field_name($migration['process']['field_name']);
-      }
-    }
-
-    if (is_a($source_plugin, D7Vocabulary::class)
-      && !is_a($source_plugin, D7VocabularyTranslation::class)
-      && !is_a($source_plugin, D7LanguageContentSettingsTaxonomyVocabulary::class)) {
-      if (isset($migration['process']['vid'])) {
-        $process[] = $migrations[$migration_id]['process']['vid'];
-        $migrations[$migration_id]['process']['vid'] = $merge_forum_vocabulary($process);
-      }
-    }
-    // Add process for forum_container.
-    if (is_a($source_plugin, D6Term::class)
-      || is_a($source_plugin, D7Term::class)
-      || is_a($source_plugin, TermEntityTranslation::class)) {
-      $migrations[$migration_id]['process']['forum_container'] = 'is_container';
-    }
-  }
-}
diff --git a/core/modules/forum/forum.permissions.yml b/core/modules/forum/forum.permissions.yml
deleted file mode 100644
index ed8ddb4614d1..000000000000
--- a/core/modules/forum/forum.permissions.yml
+++ /dev/null
@@ -1,2 +0,0 @@
-administer forums:
-  title: 'Administer forums'
diff --git a/core/modules/forum/forum.post_update.php b/core/modules/forum/forum.post_update.php
deleted file mode 100644
index 0866c5e71957..000000000000
--- a/core/modules/forum/forum.post_update.php
+++ /dev/null
@@ -1,15 +0,0 @@
-<?php
-
-/**
- * @file
- * Contains post update functions.
- */
-
-/**
- * Implements hook_removed_post_updates().
- */
-function forum_removed_post_updates() {
-  return [
-    'forum_post_update_recreate_forum_index_rows' => '11.0.0',
-  ];
-}
diff --git a/core/modules/forum/forum.routing.yml b/core/modules/forum/forum.routing.yml
deleted file mode 100644
index 798acbb473cf..000000000000
--- a/core/modules/forum/forum.routing.yml
+++ /dev/null
@@ -1,72 +0,0 @@
-entity.taxonomy_term.forum_delete_form:
-  path: '/admin/structure/forum/delete/forum/{taxonomy_term}'
-  defaults:
-    _form: '\Drupal\forum\Form\DeleteForm'
-    _title: 'Delete forum'
-  requirements:
-    _permission: 'administer forums'
-
-forum.settings:
-  path: '/admin/structure/forum/settings'
-  defaults:
-    _form: '\Drupal\forum\ForumSettingsForm'
-    _title: 'Forums'
-  requirements:
-    _permission: 'administer forums'
-
-forum.index:
-  path: '/forum'
-  defaults:
-    _controller: '\Drupal\forum\Controller\ForumController::forumIndex'
-    _title: 'Forums'
-  requirements:
-    _permission: 'access content'
-
-forum.page:
-  path: '/forum/{taxonomy_term}'
-  defaults:
-    _controller: '\Drupal\forum\Controller\ForumController::forumPage'
-    _title_callback: '\Drupal\taxonomy\Controller\TaxonomyController::termTitle'
-  requirements:
-    _permission: 'access content'
-    _entity_access: 'taxonomy_term.view'
-
-forum.add_container:
-  path: '/admin/structure/forum/add/container'
-  defaults:
-    _controller: '\Drupal\forum\Controller\ForumController::addContainer'
-    _title: 'Add container'
-  requirements:
-    _permission: 'administer forums'
-
-forum.add_forum:
-  path: '/admin/structure/forum/add/forum'
-  defaults:
-    _controller: '\Drupal\forum\Controller\ForumController::addForum'
-    _title: 'Add forum'
-  requirements:
-    _permission: 'administer forums'
-
-entity.taxonomy_term.forum_edit_container_form:
-  path: '/admin/structure/forum/edit/container/{taxonomy_term}'
-  defaults:
-    _entity_form: 'taxonomy_term.container'
-    _title: 'Edit container'
-  requirements:
-    _permission: 'administer forums'
-
-entity.taxonomy_term.forum_edit_form:
-  path: '/admin/structure/forum/edit/forum/{taxonomy_term}'
-  defaults:
-    _entity_form: 'taxonomy_term.forum'
-    _title: 'Edit forum'
-  requirements:
-    _permission: 'administer forums'
-
-forum.overview:
-  path: '/admin/structure/forum'
-  defaults:
-    _form: '\Drupal\forum\Form\Overview'
-    _title: 'Forums'
-  requirements:
-    _permission: 'administer forums'
diff --git a/core/modules/forum/forum.services.yml b/core/modules/forum/forum.services.yml
deleted file mode 100644
index 15caa41b925b..000000000000
--- a/core/modules/forum/forum.services.yml
+++ /dev/null
@@ -1,30 +0,0 @@
-services:
-  forum_manager:
-    class: Drupal\forum\ForumManager
-    arguments: ['@config.factory', '@entity_type.manager', '@database', '@string_translation', '@comment.manager', '@entity_field.manager']
-    tags:
-      - { name: backend_overridable }
-  Drupal\forum\ForumManagerInterface: '@forum_manager'
-  forum.breadcrumb.node:
-    class: Drupal\forum\Breadcrumb\ForumNodeBreadcrumbBuilder
-    arguments: ['@entity_type.manager', '@config.factory', '@forum_manager', '@string_translation']
-    tags:
-      - { name: breadcrumb_builder, priority: 1001 }
-  forum.breadcrumb.listing:
-    class: Drupal\forum\Breadcrumb\ForumListingBreadcrumbBuilder
-    arguments: ['@entity_type.manager', '@config.factory', '@forum_manager', '@string_translation']
-    tags:
-      - { name: breadcrumb_builder, priority: 1001 }
-  forum.index_storage:
-    class: Drupal\forum\ForumIndexStorage
-    arguments: ['@database']
-    tags:
-      - { name: backend_overridable }
-  Drupal\forum\ForumIndexStorageInterface: '@forum.index_storage'
-
-  forum.uninstall_validator:
-    class: Drupal\forum\ForumUninstallValidator
-    tags:
-      - { name: module_install.uninstall_validator }
-    arguments: ['@entity_type.manager', '@config.factory', '@string_translation']
-    lazy: true
diff --git a/core/modules/forum/forum.views.inc b/core/modules/forum/forum.views.inc
deleted file mode 100644
index 1058153067c4..000000000000
--- a/core/modules/forum/forum.views.inc
+++ /dev/null
@@ -1,156 +0,0 @@
-<?php
-
-/**
- * @file
- * Provide views data for forum.module.
- */
-
-/**
- * Implements hook_views_data().
- */
-function forum_views_data() {
-
-  $data['forum_index']['table']['group'] = t('Forum');
-  $data['forum_index']['table']['base'] = [
-    'field' => 'nid',
-    'title' => t('Forum content'),
-    'access query tag' => 'node_access',
-  ];
-
-  $data['forum_index']['nid'] = [
-    'title' => t('Nid'),
-    'help' => t('The content ID of the forum index entry.'),
-    'field' => [
-      'id' => 'numeric',
-    ],
-    'filter' => [
-      'id' => 'numeric',
-    ],
-    'argument' => [
-      'id' => 'numeric',
-    ],
-    'sort' => [
-      'id' => 'standard',
-    ],
-    'relationship' => [
-      'base' => 'node',
-      'base field' => 'nid',
-      'label' => t('Node'),
-    ],
-  ];
-
-  $data['forum_index']['title'] = [
-    'title' => t('Title'),
-    'help' => t('The content title.'),
-    'field' => [
-      'id' => 'standard',
-      'link_to_node default' => TRUE,
-    ],
-    'sort' => [
-      'id' => 'standard',
-    ],
-    'filter' => [
-      'id' => 'string',
-    ],
-    'argument' => [
-      'id' => 'string',
-    ],
-  ];
-
-  $data['forum_index']['tid'] = [
-    'title' => t('Has taxonomy term ID'),
-    'help' => t('Display content if it has the selected taxonomy terms.'),
-    'argument' => [
-      'id' => 'taxonomy_index_tid',
-      'name table' => 'taxonomy_term_data',
-      'name field' => 'name',
-      'empty field name' => t('Uncategorized'),
-      'numeric' => TRUE,
-      'skip base' => 'taxonomy_term_data',
-    ],
-    'field' => [
-      'id' => 'numeric',
-    ],
-    'filter' => [
-      'title' => t('Has taxonomy term'),
-      'id' => 'taxonomy_index_tid',
-      'hierarchy table' => 'taxonomy_term__parent',
-      'numeric' => TRUE,
-      'skip base' => 'taxonomy_term_data',
-      'allow empty' => TRUE,
-    ],
-    'relationship' => [
-      'base' => 'taxonomy_term',
-      'base field' => 'tid',
-      'label' => t('Term'),
-    ],
-  ];
-
-  $data['forum_index']['created'] = [
-    'title' => t('Post date'),
-    'help' => t('The date the content was posted.'),
-    'field' => [
-      'id' => 'date',
-    ],
-    'sort' => [
-      'id' => 'date',
-    ],
-    'filter' => [
-      'id' => 'date',
-    ],
-  ];
-
-  $data['forum_index']['sticky'] = [
-    'title' => t('Sticky'),
-    'help' => t('Whether or not the content is sticky.'),
-    'field' => [
-      'id' => 'boolean',
-      'click sortable' => TRUE,
-      'output formats' => [
-        'sticky' => [t('Sticky'), t('Not sticky')],
-      ],
-    ],
-    'filter' => [
-      'id' => 'boolean',
-      'label' => t('Sticky'),
-      'type' => 'yes-no',
-    ],
-    'sort' => [
-      'id' => 'standard',
-      'help' => t('Whether or not the content is sticky. To list sticky content first, set this to descending.'),
-    ],
-  ];
-
-  $data['forum_index']['last_comment_timestamp'] = [
-    'title' => t('Last comment time'),
-    'help' => t('Date and time of when the last comment was posted.'),
-    'field' => [
-      'id' => 'comment_last_timestamp',
-    ],
-    'sort' => [
-      'id' => 'date',
-    ],
-    'filter' => [
-      'id' => 'date',
-    ],
-  ];
-
-  $data['forum_index']['comment_count'] = [
-    'title' => t('Comment count'),
-    'help' => t('The number of comments a node has.'),
-    'field' => [
-      'id' => 'numeric',
-    ],
-    'filter' => [
-      'id' => 'numeric',
-    ],
-    'sort' => [
-      'id' => 'standard',
-    ],
-    'argument' => [
-      'id' => 'standard',
-    ],
-  ];
-
-  return $data;
-}
diff --git a/core/modules/forum/help_topics/forum.concept.html.twig b/core/modules/forum/help_topics/forum.concept.html.twig
deleted file mode 100644
index de6b0a5a4681..000000000000
--- a/core/modules/forum/help_topics/forum.concept.html.twig
+++ /dev/null
@@ -1,17 +0,0 @@
----
-label: 'Creating threaded discussion forums'
-top_level: true
----
-<h2>{% trans %}What is a forum?{% endtrans %}</h2>
-<p>{% trans %}A forum is nested hierarchy of discussions, where users post topics and comment on them.{% endtrans %}</p>
-<h2>{% trans %}What is the forum hierarchy?{% endtrans %}</h2>
-<p>{% trans %}The forum hierarchy consists of:{% endtrans %}</p>
-<ul>
-    <li>{% trans %}<em>Forums</em> (for example, <em>Recipes for cooking vegetables</em>){% endtrans %}</li>
-    <li>{% trans %}Optional <em>containers</em> can be used to group similar forums (for example, <em>Recipes</em>). Forums can be inside containers and vice versa.{% endtrans %}</li>
-    <li>{% trans %}<em>Forum topics</em> submitted by users (for example, <em>How to cook potatoes</em>), which start discussions.{% endtrans %}</li>
-    <li>{% trans %}<em>Comments</em> submitted by users (for example, <em>You wash the potatoes first and then...</em>).{% endtrans %}</li>
-</ul>
-<p>{% trans %}The <em>forums</em> and <em>containers</em> in the hierarchy are implemented as terms in a hierarchical taxonomy vocabulary. The topics are content items posted in forums (not in containers), and replies are comments on each topic item. Deeply nested hierarchies of forums and containers are generally difficult for users to understand and navigate, so it is recommended to keep your hierarchy simple.{% endtrans %}</p>
-<h2>{% trans %}Managing and using forums overview{% endtrans %}</h2>
-<p>{% trans %}The core Forum module supplies a content type called <em>Forum topic</em>, along with associated comment type and taxonomy vocabulary. As with other comment types, you can configure comments on forum topics to be threaded or unthreaded. See the related topics listed below for specific tasks.{% endtrans %}</p>
diff --git a/core/modules/forum/help_topics/forum.configuring.html.twig b/core/modules/forum/help_topics/forum.configuring.html.twig
deleted file mode 100644
index b6b91ea775f3..000000000000
--- a/core/modules/forum/help_topics/forum.configuring.html.twig
+++ /dev/null
@@ -1,26 +0,0 @@
----
-label: 'Configuring forums'
-related:
-  - forum.concept
----
-{% set forum_concept_topic = render_var(help_topic_link('forum.concept')) %}
-{% set settings_link_text %}{% trans %}Settings{% endtrans %}{% endset %}
-{% set settings_link = render_var(help_route_link(settings_link_text, 'forum.settings')) %}
-{% set overview_link_text %}{% trans %}Forums{% endtrans %}{% endset %}
-{% set overview_link = render_var(help_route_link(overview_link_text, 'forum.overview')) %}
-{% set index_link_text %}{% trans %}Forums{% endtrans %}{% endset %}
-{% set index_link = render_var(help_route_link(index_link_text, 'forum.index')) %}
-<h2>{% trans %}Goal{% endtrans %}</h2>
-<p>{% trans %}Configure settings for forums, and set up forum structure.{% endtrans %}</p>
-<h2>{% trans %}Steps{% endtrans %}</h2>
-<ol>
-  <li>{% trans %}In the <em>Manage</em> administrative menu, navigate to <em>Structure</em> &gt; <em>Forums</em> &gt; <em>{{ settings_link }}</em>.{% endtrans %}</li>
-  <li>{% trans %}Choose the desired settings for <em>Hot topic threshold</em>, <em>Topics per page</em>, and <em>Default order</em>. Click <em>Save configuration</em> if you have made any changes.{% endtrans %}</li>
-  <li>{% trans %}In the <em>Manage</em> administrative menu, navigate to <em>Structure</em> &gt; <em>{{ overview_link }}</em>.{% endtrans %}</li>
-  <li>{% trans %}Decide on the hierarchy of containers and forums you want for your site; see {{ forum_concept_topic }} for an overview of forum hierarchy.{% endtrans %}</li>
-  <li>{% trans %}Create the containers that you want in your forum hierarchy, starting at the top level, if any. To create a container, click <em>Add container</em>, enter the container name and optionally other settings, and click <em>Save</em>.{% endtrans %}</li>
-  <li>{% trans %}Create the forums that you want in your forum hierarchy, starting at the top level. To create a forum, click <em>Add forum</em> and enter the forum name. If your hierarchy has this forum inside a container or another forum, select the parent forum/container in the <em>Parent</em> field. Review and/or edit the other settings, and click <em>Save</em>.{% endtrans %}</li>
-  <li>{% trans %}Optionally, delete the provided <em>General discussion</em> forum, if you do not want this forum to be available on your site.{% endtrans %}</li>
-  <li>{% trans %}Review and/or edit the permissions related to forums. The administrative permission for editing the forum settings is in the <em>Forum</em> module section of the permissions page, and administrative permissions for editing the forum hierarchy are in the <em>Taxonomy</em> module section. The user permissions for creating forum topics are in the <em>Node</em> module section, and for commenting on topics are in the <em>Comment</em> module section.{% endtrans %}</li>
-  <li>{% trans %}Add links to the main <em>{{ index_link }}</em> page (path: <em>/forum</em>), and optionally to individual forum pages, to navigation menus on your site, so that users can find the forums.{% endtrans %}</li>
-</ol>
diff --git a/core/modules/forum/help_topics/forum.locking.html.twig b/core/modules/forum/help_topics/forum.locking.html.twig
deleted file mode 100644
index 38a7e9c4e691..000000000000
--- a/core/modules/forum/help_topics/forum.locking.html.twig
+++ /dev/null
@@ -1,17 +0,0 @@
----
-label: 'Locking a forum topic'
-related:
-  - forum.concept
----
-{% set index_link_text %}{% trans %}Forums{% endtrans %}{% endset %}
-{% set index_link = render_var(help_route_link(index_link_text, 'forum.index')) %}
-<h2>{% trans %}Goal{% endtrans %}</h2>
-<p>{% trans %}Lock a topic to prevent users from making any more comments.{% endtrans %}</p>
-<h2>{% trans %}Steps{% endtrans %}</h2>
-<ol>
-  <li>{% trans %}Starting from {{ index_link }} (path: <em>/forums</em>), navigate to the forum that currently contains the topic.{% endtrans %}</li>
-  <li>{% trans %}Locate the topic within the forum, and click on the title to view the topic.{% endtrans %}</li>
-  <li>{% trans %}Click <em>Edit</em>.{% endtrans %}</li>
-  <li>{% trans %}Under <em>Comment settings</em>, check <em>Closed</em>.{% endtrans %}</li>
-  <li>{% trans %}Click <em>Save</em>.{% endtrans %}</li>
-</ol>
diff --git a/core/modules/forum/help_topics/forum.moving.html.twig b/core/modules/forum/help_topics/forum.moving.html.twig
deleted file mode 100644
index 918daabeb359..000000000000
--- a/core/modules/forum/help_topics/forum.moving.html.twig
+++ /dev/null
@@ -1,18 +0,0 @@
----
-label: 'Moving a topic to a new forum'
-related:
-  - forum.concept
----
-{% set index_link_text %}{% trans %}Forums{% endtrans %}{% endset %}
-{% set index_link = render_var(help_route_link(index_link_text, 'forum.index')) %}
-<h2>{% trans %}Goal{% endtrans %}</h2>
-<p>{% trans %}Move a forum topic and all of its comments to a new forum. {% endtrans %}</p>
-<h2>{% trans %}Steps{% endtrans %}</h2>
-<ol>
-  <li>{% trans %}Starting from {{ index_link }} (path: <em>/forums</em>), navigate to the forum that currently contains the topic.{% endtrans %}</li>
-  <li>{% trans %}Locate the topic within the forum, and click on the title to view the topic.{% endtrans %}</li>
-  <li>{% trans %}Click <em>Edit</em>.{% endtrans %}</li>
-  <li>{% trans %}In the <em>Forums</em> field, select the new forum that you want the topic to move to.{% endtrans %}</li>
-  <li>{% trans %}Check <em>Leave shadow copy</em> to create a link in the original forum pointing to the new location.{% endtrans %}</li>
-  <li>{% trans %}Click <em>Save</em>.{% endtrans %}</li>
-</ol>
diff --git a/core/modules/forum/help_topics/forum.starting.html.twig b/core/modules/forum/help_topics/forum.starting.html.twig
deleted file mode 100644
index a939748051ae..000000000000
--- a/core/modules/forum/help_topics/forum.starting.html.twig
+++ /dev/null
@@ -1,16 +0,0 @@
----
-label: 'Starting a forum discussion'
-related:
-  - forum.concept
----
-{% set index_link_text %}{% trans %}Forums{% endtrans %}{% endset %}
-{% set index_link = render_var(help_route_link(index_link_text, 'forum.index')) %}
-<h2>{% trans %}Goal{% endtrans %}</h2>
-<p>{% trans %}Post a new topic in a forum to start a discussion.{% endtrans %}</p>
-<h2>{% trans %}Steps{% endtrans %}</h2>
-<ol>
-  <li>{% trans %}Starting from {{ index_link }} (path: <em>/forums</em>), navigate to the forum that currently contains the topic.{% endtrans %}</li>
-  <li>{% trans %}Click <em>Add new Forum topic</em>.{% endtrans %}</li>
-  <li>{% trans %}Enter the topic's <em>Subject</em> and <em>Body</em>.{% endtrans %}</li>
-  <li>{% trans %}Click <em>Save</em>.{% endtrans %}</li>
-</ol>
diff --git a/core/modules/forum/migrations/d6_forum_settings.yml b/core/modules/forum/migrations/d6_forum_settings.yml
deleted file mode 100644
index 4d4e2d7c2ec9..000000000000
--- a/core/modules/forum/migrations/d6_forum_settings.yml
+++ /dev/null
@@ -1,31 +0,0 @@
-id: d6_forum_settings
-label: Forum configuration
-migration_tags:
-  - Drupal 6
-  - Configuration
-source:
-  plugin: variable
-  variables:
-    - forum_hot_topic
-    - forum_per_page
-    - forum_order
-    - forum_block_num_0
-    - forum_block_num_1
-    - forum_nav_vocabulary
-  source_module: forum
-process:
-  'block/active/limit': forum_block_num_0
-  'block/new/limit': forum_block_num_1
-  'topics/hot_threshold': forum_hot_topic
-  'topics/page_limit': forum_per_page
-  'topics/order': forum_order
-  vocabulary:
-    plugin: migration_lookup
-    migration: d6_taxonomy_vocabulary
-    source: forum_nav_vocabulary
-destination:
-  plugin: config
-  config_name: forum.settings
-migration_dependencies:
-  required:
-    - d6_taxonomy_vocabulary
diff --git a/core/modules/forum/migrations/d7_forum_settings.yml b/core/modules/forum/migrations/d7_forum_settings.yml
deleted file mode 100644
index 8618b4f47797..000000000000
--- a/core/modules/forum/migrations/d7_forum_settings.yml
+++ /dev/null
@@ -1,31 +0,0 @@
-id: d7_forum_settings
-label: Forum configuration
-migration_tags:
-  - Drupal 7
-  - Configuration
-source:
-  plugin: variable
-  variables:
-    - forum_hot_topic
-    - forum_per_page
-    - forum_order
-    - forum_block_num_active
-    - forum_block_num_new
-    - forum_nav_vocabulary
-  source_module: forum
-process:
-  'block/active/limit': forum_block_num_active
-  'block/new/limit': forum_block_num_new
-  'topics/hot_threshold': forum_hot_topic
-  'topics/page_limit': forum_per_page
-  'topics/order': forum_order
-  vocabulary:
-    plugin: migration_lookup
-    migration: d7_taxonomy_vocabulary
-    source: forum_nav_vocabulary
-destination:
-  plugin: config
-  config_name: forum.settings
-migration_dependencies:
-  required:
-    - d7_taxonomy_vocabulary
diff --git a/core/modules/forum/migrations/state/forum.migrate_drupal.yml b/core/modules/forum/migrations/state/forum.migrate_drupal.yml
deleted file mode 100644
index 5b917545414b..000000000000
--- a/core/modules/forum/migrations/state/forum.migrate_drupal.yml
+++ /dev/null
@@ -1,5 +0,0 @@
-finished:
-  6:
-    forum: forum
-  7:
-    forum: forum
diff --git a/core/modules/forum/src/Breadcrumb/ForumBreadcrumbBuilderBase.php b/core/modules/forum/src/Breadcrumb/ForumBreadcrumbBuilderBase.php
deleted file mode 100644
index 72a9579730d5..000000000000
--- a/core/modules/forum/src/Breadcrumb/ForumBreadcrumbBuilderBase.php
+++ /dev/null
@@ -1,90 +0,0 @@
-<?php
-
-namespace Drupal\forum\Breadcrumb;
-
-use Drupal\Core\Breadcrumb\BreadcrumbBuilderInterface;
-use Drupal\Core\Breadcrumb\Breadcrumb;
-use Drupal\Core\Config\ConfigFactoryInterface;
-use Drupal\Core\Entity\EntityTypeManagerInterface;
-use Drupal\Core\Link;
-use Drupal\Core\Routing\RouteMatchInterface;
-use Drupal\Core\StringTranslation\StringTranslationTrait;
-use Drupal\Core\StringTranslation\TranslationInterface;
-use Drupal\forum\ForumManagerInterface;
-
-/**
- * Provides a forum breadcrumb base class.
- *
- * This just holds the dependency-injected config, entity type manager, and
- * forum manager objects.
- */
-abstract class ForumBreadcrumbBuilderBase implements BreadcrumbBuilderInterface {
-  use StringTranslationTrait;
-
-  /**
-   * Configuration object for this builder.
-   *
-   * @var \Drupal\Core\Config\Config
-   */
-  protected $config;
-
-  /**
-   * The entity type manager.
-   *
-   * @var \Drupal\Core\Entity\EntityTypeManagerInterface
-   */
-  protected $entityTypeManager;
-
-  /**
-   * The forum manager service.
-   *
-   * @var \Drupal\forum\ForumManagerInterface
-   */
-  protected $forumManager;
-
-  /**
-   * The taxonomy term storage.
-   *
-   * @var \Drupal\taxonomy\TermStorageInterface
-   */
-  protected $termStorage;
-
-  /**
-   * Constructs a forum breadcrumb builder object.
-   *
-   * @param \Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager
-   *   The entity type manager.
-   * @param \Drupal\Core\Config\ConfigFactoryInterface $config_factory
-   *   The configuration factory.
-   * @param \Drupal\forum\ForumManagerInterface $forum_manager
-   *   The forum manager service.
-   * @param \Drupal\Core\StringTranslation\TranslationInterface $string_translation
-   *   The string translation service.
-   */
-  public function __construct(EntityTypeManagerInterface $entity_type_manager, ConfigFactoryInterface $config_factory, ForumManagerInterface $forum_manager, TranslationInterface $string_translation) {
-    $this->entityTypeManager = $entity_type_manager;
-    $this->config = $config_factory->get('forum.settings');
-    $this->forumManager = $forum_manager;
-    $this->setStringTranslation($string_translation);
-    $this->termStorage = $entity_type_manager->getStorage('taxonomy_term');
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  public function build(RouteMatchInterface $route_match) {
-    $breadcrumb = new Breadcrumb();
-    $breadcrumb->addCacheContexts(['route']);
-
-    $links[] = Link::createFromRoute($this->t('Home'), '<front>');
-
-    $vocabulary = $this->entityTypeManager
-      ->getStorage('taxonomy_vocabulary')
-      ->load($this->config->get('vocabulary'));
-    $breadcrumb->addCacheableDependency($vocabulary);
-    $links[] = Link::createFromRoute($vocabulary->label(), 'forum.index');
-
-    return $breadcrumb->setLinks($links);
-  }
-
-}
diff --git a/core/modules/forum/src/Breadcrumb/ForumListingBreadcrumbBuilder.php b/core/modules/forum/src/Breadcrumb/ForumListingBreadcrumbBuilder.php
deleted file mode 100644
index cb3bd89f893a..000000000000
--- a/core/modules/forum/src/Breadcrumb/ForumListingBreadcrumbBuilder.php
+++ /dev/null
@@ -1,48 +0,0 @@
-<?php
-
-namespace Drupal\forum\Breadcrumb;
-
-use Drupal\Core\Link;
-use Drupal\Core\Routing\RouteMatchInterface;
-
-/**
- * Provides a breadcrumb builder base class for forum listing pages.
- */
-class ForumListingBreadcrumbBuilder extends ForumBreadcrumbBuilderBase {
-
-  /**
-   * {@inheritdoc}
-   */
-  public function applies(RouteMatchInterface $route_match) {
-    return $route_match->getRouteName() == 'forum.page' && $route_match->getParameter('taxonomy_term');
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  public function build(RouteMatchInterface $route_match) {
-    $breadcrumb = parent::build($route_match);
-    $breadcrumb->addCacheContexts(['route']);
-
-    // Add all parent forums to breadcrumbs.
-    /** @var \Drupal\taxonomy\TermInterface $term */
-    $term = $route_match->getParameter('taxonomy_term');
-    $term_id = $term->id();
-    $breadcrumb->addCacheableDependency($term);
-
-    $parents = $this->termStorage->loadAllParents($term_id);
-    if ($parents) {
-      foreach (array_reverse($parents) as $parent) {
-        if ($parent->id() != $term_id) {
-          $breadcrumb->addCacheableDependency($parent);
-          $breadcrumb->addLink(Link::createFromRoute($parent->label(), 'forum.page', [
-            'taxonomy_term' => $parent->id(),
-          ]));
-        }
-      }
-    }
-
-    return $breadcrumb;
-  }
-
-}
diff --git a/core/modules/forum/src/Breadcrumb/ForumNodeBreadcrumbBuilder.php b/core/modules/forum/src/Breadcrumb/ForumNodeBreadcrumbBuilder.php
deleted file mode 100644
index 007fb9a63c73..000000000000
--- a/core/modules/forum/src/Breadcrumb/ForumNodeBreadcrumbBuilder.php
+++ /dev/null
@@ -1,45 +0,0 @@
-<?php
-
-namespace Drupal\forum\Breadcrumb;
-
-use Drupal\Core\Link;
-use Drupal\Core\Routing\RouteMatchInterface;
-
-/**
- * Breadcrumb builder for forum nodes.
- */
-class ForumNodeBreadcrumbBuilder extends ForumBreadcrumbBuilderBase {
-
-  /**
-   * {@inheritdoc}
-   */
-  public function applies(RouteMatchInterface $route_match) {
-    return $route_match->getRouteName() == 'entity.node.canonical'
-      && $route_match->getParameter('node')
-      && $this->forumManager->checkNodeType($route_match->getParameter('node'));
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  public function build(RouteMatchInterface $route_match) {
-    $breadcrumb = parent::build($route_match);
-    $breadcrumb->addCacheContexts(['route']);
-
-    $parents = $this->termStorage->loadAllParents($route_match->getParameter('node')->forum_tid);
-    if ($parents) {
-      $parents = array_reverse($parents);
-      foreach ($parents as $parent) {
-        $breadcrumb->addCacheableDependency($parent);
-        $breadcrumb->addLink(Link::createFromRoute($parent->label(), 'forum.page',
-          [
-            'taxonomy_term' => $parent->id(),
-          ]
-        ));
-      }
-    }
-
-    return $breadcrumb;
-  }
-
-}
diff --git a/core/modules/forum/src/Controller/ForumController.php b/core/modules/forum/src/Controller/ForumController.php
deleted file mode 100644
index de4df1410088..000000000000
--- a/core/modules/forum/src/Controller/ForumController.php
+++ /dev/null
@@ -1,348 +0,0 @@
-<?php
-
-namespace Drupal\forum\Controller;
-
-use Drupal\Core\Cache\Cache;
-use Drupal\Core\Controller\ControllerBase;
-use Drupal\Core\Entity\EntityAccessControlHandlerInterface;
-use Drupal\Core\Entity\EntityStorageInterface;
-use Drupal\Core\Entity\EntityTypeInterface;
-use Drupal\Core\Render\RendererInterface;
-use Drupal\Core\Session\AccountInterface;
-use Drupal\Core\Url;
-use Drupal\forum\ForumManagerInterface;
-use Drupal\taxonomy\TermInterface;
-use Drupal\taxonomy\TermStorageInterface;
-use Drupal\taxonomy\VocabularyStorageInterface;
-use Symfony\Component\DependencyInjection\ContainerInterface;
-
-/**
- * Controller routines for forum routes.
- */
-class ForumController extends ControllerBase {
-
-  /**
-   * Forum manager service.
-   *
-   * @var \Drupal\forum\ForumManagerInterface
-   */
-  protected $forumManager;
-
-  /**
-   * Vocabulary storage.
-   *
-   * @var \Drupal\taxonomy\VocabularyStorageInterface
-   */
-  protected $vocabularyStorage;
-
-  /**
-   * Term storage.
-   *
-   * @var \Drupal\taxonomy\TermStorageInterface
-   */
-  protected $termStorage;
-
-  /**
-   * Node access control handler.
-   *
-   * @var \Drupal\Core\Entity\EntityAccessControlHandlerInterface
-   */
-  protected $nodeAccess;
-
-  /**
-   * Field map of existing fields on the site.
-   *
-   * @var array
-   */
-  protected $fieldMap;
-
-  /**
-   * Node type storage handler.
-   *
-   * @var \Drupal\Core\Entity\EntityStorageInterface
-   */
-  protected $nodeTypeStorage;
-
-  /**
-   * The renderer.
-   *
-   * @var \Drupal\Core\Render\RendererInterface
-   */
-  protected $renderer;
-
-  /**
-   * Node entity type, we need to get cache tags from here.
-   *
-   * @var \Drupal\Core\Entity\EntityTypeInterface
-   */
-  protected $nodeEntityTypeDefinition;
-
-  /**
-   * Comment entity type, we need to get cache tags from here.
-   *
-   * @var \Drupal\Core\Entity\EntityTypeInterface
-   */
-  protected $commentEntityTypeDefinition;
-
-  /**
-   * Constructs a ForumController object.
-   *
-   * @param \Drupal\forum\ForumManagerInterface $forum_manager
-   *   The forum manager service.
-   * @param \Drupal\taxonomy\VocabularyStorageInterface $vocabulary_storage
-   *   Vocabulary storage.
-   * @param \Drupal\taxonomy\TermStorageInterface $term_storage
-   *   Term storage.
-   * @param \Drupal\Core\Session\AccountInterface $current_user
-   *   The current logged in user.
-   * @param \Drupal\Core\Entity\EntityAccessControlHandlerInterface $node_access
-   *   Node access control handler.
-   * @param array $field_map
-   *   Array of active fields on the site.
-   * @param \Drupal\Core\Entity\EntityStorageInterface $node_type_storage
-   *   Node type storage handler.
-   * @param \Drupal\Core\Render\RendererInterface $renderer
-   *   The renderer.
-   * @param \Drupal\Core\Entity\EntityTypeInterface $node_entity_type_definition
-   *   Node entity type definition object
-   * @param \Drupal\Core\Entity\EntityTypeInterface $comment_entity_type_definition
-   *   Comment entity type definition object
-   */
-  public function __construct(ForumManagerInterface $forum_manager, VocabularyStorageInterface $vocabulary_storage, TermStorageInterface $term_storage, AccountInterface $current_user, EntityAccessControlHandlerInterface $node_access, array $field_map, EntityStorageInterface $node_type_storage, RendererInterface $renderer, EntityTypeInterface $node_entity_type_definition, EntityTypeInterface $comment_entity_type_definition) {
-    $this->forumManager = $forum_manager;
-    $this->vocabularyStorage = $vocabulary_storage;
-    $this->termStorage = $term_storage;
-    $this->currentUser = $current_user;
-    $this->nodeAccess = $node_access;
-    $this->fieldMap = $field_map;
-    $this->nodeTypeStorage = $node_type_storage;
-    $this->renderer = $renderer;
-    $this->nodeEntityTypeDefinition = $node_entity_type_definition;
-    $this->commentEntityTypeDefinition = $comment_entity_type_definition;
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  public static function create(ContainerInterface $container) {
-    /** @var \Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager */
-    $entity_type_manager = $container->get('entity_type.manager');
-
-    return new static(
-      $container->get('forum_manager'),
-      $entity_type_manager->getStorage('taxonomy_vocabulary'),
-      $entity_type_manager->getStorage('taxonomy_term'),
-      $container->get('current_user'),
-      $entity_type_manager->getAccessControlHandler('node'),
-      $container->get('entity_field.manager')->getFieldMap(),
-      $entity_type_manager->getStorage('node_type'),
-      $container->get('renderer'),
-      $entity_type_manager->getDefinition('node'),
-      $entity_type_manager->getDefinition('comment')
-    );
-  }
-
-  /**
-   * Returns forum page for a given forum.
-   *
-   * @param \Drupal\taxonomy\TermInterface $taxonomy_term
-   *   The forum to render the page for.
-   *
-   * @return array
-   *   A render array.
-   */
-  public function forumPage(TermInterface $taxonomy_term) {
-    // Get forum details.
-    $taxonomy_term->forums = $this->forumManager->getChildren($this->config('forum.settings')->get('vocabulary'), $taxonomy_term->id());
-    $taxonomy_term->parents = $this->termStorage->loadAllParents($taxonomy_term->id());
-
-    if (empty($taxonomy_term->forum_container->value)) {
-      $build = $this->forumManager->getTopics($taxonomy_term->id(), $this->currentUser());
-      $topics = $build['topics'];
-      $header = $build['header'];
-    }
-    else {
-      $topics = [];
-      $header = [];
-    }
-    return $this->build($taxonomy_term->forums, $taxonomy_term, $topics, $taxonomy_term->parents, $header);
-  }
-
-  /**
-   * Returns forum index page.
-   *
-   * @return array
-   *   A render array.
-   */
-  public function forumIndex() {
-    $vocabulary = $this->vocabularyStorage->load($this->config('forum.settings')->get('vocabulary'));
-    $index = $this->forumManager->getIndex();
-    $build = $this->build($index->forums, $index);
-    if (empty($index->forums)) {
-      // Root of empty forum.
-      $build['#title'] = $this->t('No forums defined');
-    }
-    else {
-      // Set the page title to forum's vocabulary name.
-      $build['#title'] = $vocabulary->label();
-      $this->renderer->addCacheableDependency($build, $vocabulary);
-    }
-    return $build;
-  }
-
-  /**
-   * Returns a renderable forum index page array.
-   *
-   * @param array $forums
-   *   A list of forums.
-   * @param \Drupal\taxonomy\TermInterface $term
-   *   The taxonomy term of the forum.
-   * @param array $topics
-   *   The topics of this forum.
-   * @param array $parents
-   *   The parent forums in relation this forum.
-   * @param array $header
-   *   Array of header cells.
-   *
-   * @return array
-   *   A render array.
-   */
-  protected function build($forums, TermInterface $term, $topics = [], $parents = [], $header = []) {
-    $config = $this->config('forum.settings');
-    $build = [
-      '#theme' => 'forums',
-      '#forums' => $forums,
-      '#topics' => $topics,
-      '#parents' => $parents,
-      '#header' => $header,
-      '#term' => $term,
-      '#sortby' => $config->get('topics.order'),
-      '#forums_per_page' => $config->get('topics.page_limit'),
-    ];
-    if (empty($term->forum_container->value)) {
-      $build['#attached']['feed'][] = ['taxonomy/term/' . $term->id() . '/feed', 'RSS - ' . $term->getName()];
-    }
-    $this->renderer->addCacheableDependency($build, $config);
-
-    foreach ($forums as $forum) {
-      $this->renderer->addCacheableDependency($build, $forum);
-    }
-    foreach ($topics as $topic) {
-      $this->renderer->addCacheableDependency($build, $topic);
-    }
-    foreach ($parents as $parent) {
-      $this->renderer->addCacheableDependency($build, $parent);
-    }
-    $this->renderer->addCacheableDependency($build, $term);
-
-    $is_forum = empty($term->forum_container->value);
-    return [
-      'action' => ($is_forum) ? $this->buildActionLinks($config->get('vocabulary'), $term) : [],
-      'forum' => $build,
-      '#cache' => [
-        'tags' => Cache::mergeTags($this->nodeEntityTypeDefinition->getListCacheTags(), $this->commentEntityTypeDefinition->getListCacheTags()),
-      ],
-    ];
-  }
-
-  /**
-   * Returns add forum entity form.
-   *
-   * @return array
-   *   Render array for the add form.
-   */
-  public function addForum() {
-    $vid = $this->config('forum.settings')->get('vocabulary');
-    $taxonomy_term = $this->termStorage->create([
-      'vid' => $vid,
-    ]);
-    return $this->entityFormBuilder()->getForm($taxonomy_term, 'forum');
-  }
-
-  /**
-   * Returns add container entity form.
-   *
-   * @return array
-   *   Render array for the add form.
-   */
-  public function addContainer() {
-    $vid = $this->config('forum.settings')->get('vocabulary');
-    $taxonomy_term = $this->termStorage->create([
-      'vid' => $vid,
-      'forum_container' => 1,
-    ]);
-    return $this->entityFormBuilder()->getForm($taxonomy_term, 'container');
-  }
-
-  /**
-   * Generates an action link to display at the top of the forum listing.
-   *
-   * @param string $vid
-   *   Vocabulary ID.
-   * @param \Drupal\taxonomy\TermInterface $forum_term
-   *   The term for which the links are to be built.
-   *
-   * @return array
-   *   Render array containing the links.
-   */
-  protected function buildActionLinks($vid, TermInterface $forum_term = NULL) {
-    $user = $this->currentUser();
-
-    $links = [];
-    // Loop through all bundles for forum taxonomy vocabulary field.
-    foreach ($this->fieldMap['node']['taxonomy_forums']['bundles'] as $type) {
-      if ($this->nodeAccess->createAccess($type)) {
-        $node_type = $this->nodeTypeStorage->load($type);
-        $links[$type] = [
-          '#theme' => 'menu_local_action',
-          '#link' => [
-            'title' => $this->t('Add new @node_type', [
-              '@node_type' => $this->nodeTypeStorage->load($type)->label(),
-            ]),
-            'url' => Url::fromRoute('node.add', ['node_type' => $type]),
-          ],
-          '#cache' => [
-            'tags' => $node_type->getCacheTags(),
-          ],
-        ];
-        if ($forum_term && $forum_term->bundle() == $vid) {
-          // We are viewing a forum term (specific forum), append the tid to
-          // the URL.
-          $links[$type]['#link']['localized_options']['query']['forum_id'] = $forum_term->id();
-        }
-      }
-    }
-    if (empty($links)) {
-      // Authenticated user does not have access to create new topics.
-      if ($user->isAuthenticated()) {
-        $links['disallowed'] = [
-          '#markup' => $this->t('You are not allowed to post new content in the forum.'),
-        ];
-      }
-      // Anonymous user does not have access to create new topics.
-      else {
-        $links['login'] = [
-          '#theme' => 'menu_local_action',
-          '#link' => [
-            'title' => $this->t('Log in to post new content in the forum.'),
-            'url' => Url::fromRoute('user.login', [], ['query' => $this->getDestinationArray()]),
-          ],
-          // Without this workaround, the action links will be rendered as <li>
-          // with no wrapping <ul> element.
-          // @todo Find a better way for this in https://www.drupal.org/node/3181052.
-          '#prefix' => '<ul class="action-links">',
-          '#suffix' => '</ul>',
-        ];
-      }
-    }
-    else {
-      // Without this workaround, the action links will be rendered as <li> with
-      // no wrapping <ul> element.
-      // @todo Find a better way for this in https://www.drupal.org/node/3181052.
-      $links['#prefix'] = '<ul class="action-links">';
-      $links['#suffix'] = '</ul>';
-    }
-    return $links;
-  }
-
-}
diff --git a/core/modules/forum/src/Form/ContainerForm.php b/core/modules/forum/src/Form/ContainerForm.php
deleted file mode 100644
index 1e4c1f3411ab..000000000000
--- a/core/modules/forum/src/Form/ContainerForm.php
+++ /dev/null
@@ -1,47 +0,0 @@
-<?php
-
-namespace Drupal\forum\Form;
-
-use Drupal\Core\Form\FormStateInterface;
-
-/**
- * Base form for container term edit forms.
- *
- * @internal
- */
-class ContainerForm extends ForumForm {
-
-  /**
-   * Reusable URL stub to use in watchdog messages.
-   *
-   * @var string
-   */
-  protected $urlStub = 'container';
-
-  /**
-   * {@inheritdoc}
-   */
-  public function form(array $form, FormStateInterface $form_state) {
-    // Build the bulk of the form from the parent forum form.
-    $form = parent::form($form, $form_state);
-
-    // Set the title and description of the name field.
-    $form['name']['#title'] = $this->t('Container name');
-    $form['name']['#description'] = $this->t('Short but meaningful name for this collection of related forums.');
-
-    // Alternate description for the container parent.
-    $form['parent'][0]['#description'] = $this->t('Containers are usually placed at the top (root) level, but may also be placed inside another container or forum.');
-    $this->forumFormType = $this->t('forum container');
-    return $form;
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  public function buildEntity(array $form, FormStateInterface $form_state) {
-    $entity = parent::buildEntity($form, $form_state);
-    $entity->forum_container = TRUE;
-    return $entity;
-  }
-
-}
diff --git a/core/modules/forum/src/Form/DeleteForm.php b/core/modules/forum/src/Form/DeleteForm.php
deleted file mode 100644
index 4cf56c328329..000000000000
--- a/core/modules/forum/src/Form/DeleteForm.php
+++ /dev/null
@@ -1,71 +0,0 @@
-<?php
-
-namespace Drupal\forum\Form;
-
-use Drupal\Core\Form\ConfirmFormBase;
-use Drupal\Core\Form\FormStateInterface;
-use Drupal\Core\Url;
-use Drupal\taxonomy\TermInterface;
-
-/**
- * Builds the form to delete a forum term.
- *
- * @internal
- */
-class DeleteForm extends ConfirmFormBase {
-
-  /**
-   * The taxonomy term being deleted.
-   *
-   * @var \Drupal\taxonomy\TermInterface
-   */
-  protected $taxonomyTerm;
-
-  /**
-   * {@inheritdoc}
-   */
-  public function getFormId() {
-    return 'forum_confirm_delete';
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  public function getQuestion() {
-    return $this->t('Are you sure you want to delete the forum %label?', ['%label' => $this->taxonomyTerm->label()]);
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  public function getCancelUrl() {
-    return new Url('forum.overview');
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  public function getConfirmText() {
-    return $this->t('Delete');
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  public function buildForm(array $form, FormStateInterface $form_state, TermInterface $taxonomy_term = NULL) {
-    $this->taxonomyTerm = $taxonomy_term;
-
-    return parent::buildForm($form, $form_state);
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  public function submitForm(array &$form, FormStateInterface $form_state) {
-    $this->taxonomyTerm->delete();
-    $this->messenger()->addStatus($this->t('The forum %label and all sub-forums have been deleted.', ['%label' => $this->taxonomyTerm->label()]));
-    $this->logger('forum')->notice('forum: deleted %label and all its sub-forums.', ['%label' => $this->taxonomyTerm->label()]);
-    $form_state->setRedirectUrl($this->getCancelUrl());
-  }
-
-}
diff --git a/core/modules/forum/src/Form/ForumForm.php b/core/modules/forum/src/Form/ForumForm.php
deleted file mode 100644
index 339dd265c44b..000000000000
--- a/core/modules/forum/src/Form/ForumForm.php
+++ /dev/null
@@ -1,170 +0,0 @@
-<?php
-
-namespace Drupal\forum\Form;
-
-use Drupal\Core\Form\FormStateInterface;
-use Drupal\Core\Link;
-use Drupal\Core\Url;
-use Drupal\taxonomy\TermForm;
-
-/**
- * Base form for forum term edit forms.
- *
- * @internal
- */
-class ForumForm extends TermForm {
-
-  /**
-   * Reusable type field to use in status messages.
-   *
-   * @var string
-   */
-  protected $forumFormType;
-
-  /**
-   * Reusable URL stub to use in watchdog messages.
-   *
-   * @var string
-   */
-  protected $urlStub = 'forum';
-
-  /**
-   * {@inheritdoc}
-   */
-  public function form(array $form, FormStateInterface $form_state) {
-    // Build the bulk of the form from the parent taxonomy term form.
-    $form = parent::form($form, $form_state);
-
-    // Set the title and description of the name field.
-    $form['name']['#title'] = $this->t('Forum name');
-    $form['name']['#description'] = $this->t('Short but meaningful name for this collection of threaded discussions.');
-
-    // Change the description.
-    $form['description']['#description'] = $this->t('Description and guidelines for discussions within this forum.');
-
-    // Re-use the weight field.
-    $form['weight'] = $form['relations']['weight'];
-
-    // Remove the remaining relations fields.
-    unset($form['relations']);
-
-    // Our parent field is different to the taxonomy term.
-    $form['parent']['#tree'] = TRUE;
-    $form['parent'][0] = $this->forumParentSelect($this->entity->id(), $this->t('Parent'));
-
-    $form['#theme_wrappers'] = ['form__forum'];
-    $this->forumFormType = $this->t('forum');
-    return $form;
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  public function buildEntity(array $form, FormStateInterface $form_state) {
-    $term = parent::buildEntity($form, $form_state);
-
-    // Assign parents from forum parent select field.
-    $term->parent = [$form_state->getValue(['parent', 0])];
-
-    return $term;
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  public function save(array $form, FormStateInterface $form_state) {
-    $term = $this->entity;
-    $term_storage = $this->entityTypeManager->getStorage('taxonomy_term');
-    $status = $term_storage->save($term);
-
-    $route_name = $this->urlStub == 'container' ? 'entity.taxonomy_term.forum_edit_container_form' : 'entity.taxonomy_term.forum_edit_form';
-    $route_parameters = ['taxonomy_term' => $term->id()];
-    $link = Link::fromTextAndUrl($this->t('Edit'), new Url($route_name, $route_parameters))->toString();
-    $view_link = $term->toLink($term->getName())->toString();
-    switch ($status) {
-      case SAVED_NEW:
-        $this->messenger()->addStatus($this->t('Created new @type %term.', ['%term' => $view_link, '@type' => $this->forumFormType]));
-        $this->logger('forum')->notice('Created new @type %term.', ['%term' => $term->getName(), '@type' => $this->forumFormType, 'link' => $link]);
-        $form_state->setValue('tid', $term->id());
-        break;
-
-      case SAVED_UPDATED:
-        $this->messenger()->addStatus($this->t('The @type %term has been updated.', ['%term' => $term->getName(), '@type' => $this->forumFormType]));
-        $this->logger('forum')->notice('Updated @type %term.', ['%term' => $term->getName(), '@type' => $this->forumFormType, 'link' => $link]);
-        break;
-    }
-
-    $form_state->setRedirect('forum.overview');
-    return $term;
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  protected function actions(array $form, FormStateInterface $form_state) {
-    $actions = parent::actions($form, $form_state);
-
-    if (!$this->entity->isNew() && $this->entity->hasLinkTemplate('forum-delete-form')) {
-      $actions['delete']['#url'] = $this->entity->toUrl('forum-delete-form');
-    }
-    else {
-      unset($actions['delete']);
-    }
-
-    return $actions;
-  }
-
-  /**
-   * Returns a select box for available parent terms.
-   *
-   * @param int $tid
-   *   ID of the term that is being added or edited.
-   * @param string $title
-   *   Title for the select box.
-   *
-   * @return array
-   *   A select form element.
-   */
-  protected function forumParentSelect($tid, $title) {
-    $taxonomy_storage = $this->entityTypeManager->getStorage('taxonomy_term');
-    $parents = $taxonomy_storage->loadParents($tid);
-    if ($parents) {
-      $parent = array_shift($parents);
-      $parent = $parent->id();
-    }
-    else {
-      $parent = 0;
-    }
-
-    $vid = $this->config('forum.settings')->get('vocabulary');
-    $children = $taxonomy_storage->loadTree($vid, $tid, NULL, TRUE);
-
-    // A term can't be the child of itself, nor of its children.
-    foreach ($children as $child) {
-      $exclude[] = $child->tid;
-    }
-    $exclude[] = $tid;
-
-    $tree = $taxonomy_storage->loadTree($vid, 0, NULL, TRUE);
-    $options[0] = '<' . $this->t('root') . '>';
-    if ($tree) {
-      foreach ($tree as $term) {
-        if (!in_array($term->id(), $exclude)) {
-          $options[$term->id()] = str_repeat(' -- ', $term->depth) . $term->getName();
-        }
-      }
-    }
-
-    $description = $this->t('Forums may be placed at the top (root) level, or inside another container or forum.');
-
-    return [
-      '#type' => 'select',
-      '#title' => $title,
-      '#default_value' => $parent,
-      '#options' => $options,
-      '#description' => $description,
-      '#required' => TRUE,
-    ];
-  }
-
-}
diff --git a/core/modules/forum/src/Form/Overview.php b/core/modules/forum/src/Form/Overview.php
deleted file mode 100644
index 2158170da82e..000000000000
--- a/core/modules/forum/src/Form/Overview.php
+++ /dev/null
@@ -1,80 +0,0 @@
-<?php
-
-namespace Drupal\forum\Form;
-
-use Drupal\Core\Form\FormStateInterface;
-use Drupal\Core\Render\Element;
-use Drupal\Core\Url;
-use Drupal\taxonomy\Form\OverviewTerms;
-use Drupal\taxonomy\VocabularyInterface;
-use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
-
-/**
- * Provides forum overview form for the forum vocabulary.
- *
- * @internal
- */
-class Overview extends OverviewTerms {
-
-  /**
-   * {@inheritdoc}
-   */
-  public function getFormId() {
-    return 'forum_overview';
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  public function buildForm(array $form, FormStateInterface $form_state, VocabularyInterface $taxonomy_vocabulary = NULL) {
-    $forum_config = $this->config('forum.settings');
-    $vid = $forum_config->get('vocabulary');
-    $vocabulary = $this->entityTypeManager->getStorage('taxonomy_vocabulary')->load($vid);
-    if (!$vocabulary) {
-      throw new NotFoundHttpException();
-    }
-
-    // Build base taxonomy term overview.
-    $form = parent::buildForm($form, $form_state, $vocabulary);
-
-    foreach (Element::children($form['terms']) as $key) {
-      if (isset($form['terms'][$key]['#term'])) {
-        /** @var \Drupal\taxonomy\TermInterface $term */
-        $term = $form['terms'][$key]['#term'];
-        $form['terms'][$key]['term']['#url'] = Url::fromRoute('forum.page', ['taxonomy_term' => $term->id()]);
-
-        if (!empty($term->forum_container->value)) {
-          $title = $this->t('edit container');
-          $url = Url::fromRoute('entity.taxonomy_term.forum_edit_container_form', ['taxonomy_term' => $term->id()]);
-        }
-        else {
-          $title = $this->t('edit forum');
-          $url = Url::fromRoute('entity.taxonomy_term.forum_edit_form', ['taxonomy_term' => $term->id()]);
-        }
-
-        // Re-create the operations column and add only the edit link.
-        $form['terms'][$key]['operations'] = [
-          '#type' => 'operations',
-          '#links' => [
-            'edit' => [
-              'title' => $title,
-              'url' => $url,
-            ],
-          ],
-        ];
-
-      }
-    }
-
-    // Remove the alphabetical reset.
-    unset($form['actions']['reset_alphabetical']);
-
-    // Use the existing taxonomy overview submit handler.
-    $form['terms']['#empty'] = $this->t('No containers or forums available. <a href=":container">Add container</a> or <a href=":forum">Add forum</a>.', [
-      ':container' => Url::fromRoute('forum.add_container')->toString(),
-      ':forum' => Url::fromRoute('forum.add_forum')->toString(),
-    ]);
-    return $form;
-  }
-
-}
diff --git a/core/modules/forum/src/ForumIndexStorage.php b/core/modules/forum/src/ForumIndexStorage.php
deleted file mode 100644
index 23459dc5073c..000000000000
--- a/core/modules/forum/src/ForumIndexStorage.php
+++ /dev/null
@@ -1,164 +0,0 @@
-<?php
-
-namespace Drupal\forum;
-
-use Drupal\comment\CommentInterface;
-use Drupal\Core\Database\Connection;
-use Drupal\node\NodeInterface;
-
-/**
- * Handles CRUD operations to {forum_index} table.
- */
-class ForumIndexStorage implements ForumIndexStorageInterface {
-
-  /**
-   * The active database connection.
-   *
-   * @var \Drupal\Core\Database\Connection
-   */
-  protected $database;
-
-  /**
-   * Constructs a ForumIndexStorage object.
-   *
-   * @param \Drupal\Core\Database\Connection $database
-   *   The current database connection.
-   */
-  public function __construct(Connection $database) {
-    $this->database = $database;
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  public function getOriginalTermId(NodeInterface $node) {
-    return $this->database->queryRange("SELECT [f].[tid] FROM {forum} [f] INNER JOIN {node} [n] ON [f].[vid] = [n].[vid] WHERE [n].[nid] = :nid ORDER BY [f].[vid] DESC", 0, 1, [':nid' => $node->id()])->fetchField();
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  public function create(NodeInterface $node) {
-    $this->database->insert('forum')
-      ->fields([
-        'tid' => $node->forum_tid,
-        'vid' => $node->getRevisionId(),
-        'nid' => $node->id(),
-      ])
-      ->execute();
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  public function read(array $vids) {
-    return $this->database->select('forum', 'f')
-      ->fields('f', ['nid', 'tid'])
-      ->condition('f.vid', $vids, 'IN')
-      ->execute();
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  public function delete(NodeInterface $node) {
-    $this->database->delete('forum')
-      ->condition('nid', $node->id())
-      ->execute();
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  public function deleteRevision(NodeInterface $node) {
-    $this->database->delete('forum')
-      ->condition('nid', $node->id())
-      ->condition('vid', $node->getRevisionId())
-      ->execute();
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  public function update(NodeInterface $node) {
-    $this->database->update('forum')
-      ->fields(['tid' => $node->forum_tid])
-      ->condition('vid', $node->getRevisionId())
-      ->execute();
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  public function updateIndex(NodeInterface $node) {
-    $nid = $node->id();
-    $count = $this->database->query("SELECT COUNT([cid]) FROM {comment_field_data} [c] INNER JOIN {forum_index} [i] ON [c].[entity_id] = [i].[nid] WHERE [c].[entity_id] = :nid AND [c].[field_name] = 'comment_forum' AND [c].[entity_type] = 'node' AND [c].[status] = :status AND [c].[default_langcode] = 1", [
-      ':nid' => $nid,
-      ':status' => CommentInterface::PUBLISHED,
-    ])->fetchField();
-
-    if ($count > 0) {
-      // Comments exist.
-      $last_reply = $this->database->queryRange("SELECT [cid], [name], [created], [uid] FROM {comment_field_data} WHERE [entity_id] = :nid AND [field_name] = 'comment_forum' AND [entity_type] = 'node' AND [status] = :status AND [default_langcode] = 1 ORDER BY [cid] DESC", 0, 1, [
-        ':nid' => $nid,
-        ':status' => CommentInterface::PUBLISHED,
-      ])->fetchObject();
-      $this->database->update('forum_index')
-        ->fields([
-          'comment_count' => $count,
-          'last_comment_timestamp' => $last_reply->created,
-        ])
-        ->condition('nid', $nid)
-        ->execute();
-    }
-    else {
-      // Comments do not exist.
-      // @todo This should be actually filtering on the desired node language
-      $this->database->update('forum_index')
-        ->fields([
-          'comment_count' => 0,
-          'last_comment_timestamp' => $node->getCreatedTime(),
-        ])
-        ->condition('nid', $nid)
-        ->execute();
-    }
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  public function createIndex(NodeInterface $node) {
-    $query = $this->database->insert('forum_index')
-      ->fields(['nid', 'title', 'tid', 'sticky', 'created', 'comment_count', 'last_comment_timestamp']);
-    foreach ($node->getTranslationLanguages() as $langcode => $language) {
-      $translation = $node->getTranslation($langcode);
-      foreach ($translation->taxonomy_forums as $item) {
-        $query->values([
-          'nid' => $node->id(),
-          'title' => $translation->label(),
-          'tid' => $item->target_id,
-          'sticky' => (int) $node->isSticky(),
-          'created' => $node->getCreatedTime(),
-          'comment_count' => 0,
-          'last_comment_timestamp' => $node->getCreatedTime(),
-        ]);
-      }
-    }
-    $query->execute();
-    // The logic for determining last_comment_count is fairly complex, so
-    // update the index too.
-    if ($node->isNew()) {
-      $this->updateIndex($node);
-    }
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  public function deleteIndex(NodeInterface $node) {
-    $this->database->delete('forum_index')
-      ->condition('nid', $node->id())
-      ->execute();
-  }
-
-}
diff --git a/core/modules/forum/src/ForumIndexStorageInterface.php b/core/modules/forum/src/ForumIndexStorageInterface.php
deleted file mode 100644
index 3461e162b450..000000000000
--- a/core/modules/forum/src/ForumIndexStorageInterface.php
+++ /dev/null
@@ -1,90 +0,0 @@
-<?php
-
-namespace Drupal\forum;
-
-use Drupal\node\NodeInterface;
-
-/**
- * Handles CRUD operations to {forum_index} table.
- */
-interface ForumIndexStorageInterface {
-
-  /**
-   * Returns the forum term id associated with an existing forum node.
-   *
-   * @param \Drupal\node\NodeInterface $node
-   *   The existing forum node.
-   *
-   * @return int
-   *   The forum term id currently associated with the node.
-   */
-  public function getOriginalTermId(NodeInterface $node);
-
-  /**
-   * Creates a record in {forum} table for the given node.
-   *
-   * @param \Drupal\node\NodeInterface $node
-   *   The node for which the record is to be created.
-   */
-  public function create(NodeInterface $node);
-
-  /**
-   * Reads an array of {forum} records for the given revision ids.
-   *
-   * @param array $vids
-   *   An array of node revision ids.
-   *
-   * @return \Drupal\Core\Database\StatementInterface
-   *   The records from {forum} for the given vids.
-   */
-  public function read(array $vids);
-
-  /**
-   * Updates the {forum} table for the given node.
-   *
-   * @param \Drupal\node\NodeInterface $node
-   *   The node for which the record is to be updated.
-   */
-  public function update(NodeInterface $node);
-
-  /**
-   * Deletes the records in {forum} table for the given node.
-   *
-   * @param \Drupal\node\NodeInterface $node
-   *   The node for which the records are to be deleted.
-   */
-  public function delete(NodeInterface $node);
-
-  /**
-   * Deletes the records in {forum} table for a given node revision.
-   *
-   * @param \Drupal\node\NodeInterface $node
-   *   The node revision for which the records are to be deleted.
-   */
-  public function deleteRevision(NodeInterface $node);
-
-  /**
-   * Creates a {forum_index} entry for the given node.
-   *
-   * @param \Drupal\node\NodeInterface $node
-   *   The node for which the index records are to be created.
-   */
-  public function createIndex(NodeInterface $node);
-
-  /**
-   * Updates the {forum_index} records for a given node.
-   *
-   * @param \Drupal\node\NodeInterface $node
-   *   The node for which the index records are to be updated.
-   */
-  public function updateIndex(NodeInterface $node);
-
-  /**
-   * Deletes the {forum_index} records for a given node.
-   *
-   * @param \Drupal\node\NodeInterface $node
-   *   The node for which the index records are to be deleted.
-   */
-  public function deleteIndex(NodeInterface $node);
-
-}
diff --git a/core/modules/forum/src/ForumManager.php b/core/modules/forum/src/ForumManager.php
deleted file mode 100644
index aee4409d2423..000000000000
--- a/core/modules/forum/src/ForumManager.php
+++ /dev/null
@@ -1,525 +0,0 @@
-<?php
-
-namespace Drupal\forum;
-
-use Drupal\Core\Config\ConfigFactoryInterface;
-use Drupal\Core\Database\Connection;
-use Drupal\Core\Database\Query\PagerSelectExtender;
-use Drupal\Core\Database\Query\TableSortExtender;
-use Drupal\Core\DependencyInjection\DependencySerializationTrait;
-use Drupal\Core\Entity\EntityFieldManagerInterface;
-use Drupal\Core\Entity\EntityTypeManagerInterface;
-use Drupal\Core\Session\AccountInterface;
-use Drupal\Core\StringTranslation\TranslationInterface;
-use Drupal\Core\StringTranslation\StringTranslationTrait;
-use Drupal\comment\CommentManagerInterface;
-use Drupal\node\NodeInterface;
-
-/**
- * Provides forum manager service.
- */
-class ForumManager implements ForumManagerInterface {
-  use StringTranslationTrait;
-  use DependencySerializationTrait {
-    __wakeup as defaultWakeup;
-    __sleep as defaultSleep;
-  }
-
-  /**
-   * Forum sort order, newest first.
-   */
-  const NEWEST_FIRST = 1;
-
-  /**
-   * Forum sort order, oldest first.
-   */
-  const OLDEST_FIRST = 2;
-
-  /**
-   * Forum sort order, posts with most comments first.
-   */
-  const MOST_POPULAR_FIRST = 3;
-
-  /**
-   * Forum sort order, posts with the least comments first.
-   */
-  const LEAST_POPULAR_FIRST = 4;
-
-  /**
-   * Forum settings config object.
-   *
-   * @var \Drupal\Core\Config\ConfigFactoryInterface
-   */
-  protected $configFactory;
-
-  /**
-   * Entity field manager.
-   *
-   * @var \Drupal\Core\Entity\EntityFieldManagerInterface
-   */
-  protected $entityFieldManager;
-
-  /**
-   * Entity type manager.
-   *
-   * @var \Drupal\Core\Entity\EntityTypeManagerInterface
-   */
-  protected $entityTypeManager;
-
-  /**
-   * Database connection.
-   *
-   * @var \Drupal\Core\Database\Connection
-   */
-  protected $connection;
-
-  /**
-   * The comment manager service.
-   *
-   * @var \Drupal\comment\CommentManagerInterface
-   */
-  protected $commentManager;
-
-  /**
-   * Array of last post information keyed by forum (term) id.
-   *
-   * @var array
-   */
-  protected $lastPostData = [];
-
-  /**
-   * Array of forum statistics keyed by forum (term) id.
-   *
-   * @var array
-   */
-  protected $forumStatistics = [];
-
-  /**
-   * Array of forum children keyed by parent forum (term) id.
-   *
-   * @var array
-   */
-  protected $forumChildren = [];
-
-  /**
-   * Array of history keyed by nid.
-   *
-   * @var array
-   */
-  protected $history = [];
-
-  /**
-   * Cached forum index.
-   *
-   * @var \Drupal\taxonomy\TermInterface
-   */
-  protected $index;
-
-  /**
-   * Constructs the forum manager service.
-   *
-   * @param \Drupal\Core\Config\ConfigFactoryInterface $config_factory
-   *   The config factory service.
-   * @param \Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager
-   *   The entity type manager.
-   * @param \Drupal\Core\Database\Connection $connection
-   *   The current database connection.
-   * @param \Drupal\Core\StringTranslation\TranslationInterface $string_translation
-   *   The translation manager service.
-   * @param \Drupal\comment\CommentManagerInterface $comment_manager
-   *   The comment manager service.
-   * @param \Drupal\Core\Entity\EntityFieldManagerInterface $entity_field_manager
-   *   The entity field manager.
-   */
-  public function __construct(ConfigFactoryInterface $config_factory, EntityTypeManagerInterface $entity_type_manager, Connection $connection, TranslationInterface $string_translation, CommentManagerInterface $comment_manager, EntityFieldManagerInterface $entity_field_manager) {
-    $this->configFactory = $config_factory;
-    $this->entityTypeManager = $entity_type_manager;
-    $this->connection = $connection;
-    $this->stringTranslation = $string_translation;
-    $this->commentManager = $comment_manager;
-    $this->entityFieldManager = $entity_field_manager;
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  public function getTopics($tid, AccountInterface $account) {
-    $config = $this->configFactory->get('forum.settings');
-    $forum_per_page = $config->get('topics.page_limit');
-    $sortby = $config->get('topics.order');
-
-    $header = [
-      ['data' => $this->t('Topic'), 'field' => 'f.title'],
-      ['data' => $this->t('Replies'), 'field' => 'f.comment_count'],
-      ['data' => $this->t('Last reply'), 'field' => 'f.last_comment_timestamp'],
-    ];
-
-    $order = $this->getTopicOrder($sortby);
-    for ($i = 0; $i < count($header); $i++) {
-      if ($header[$i]['field'] == $order['field']) {
-        $header[$i]['sort'] = $order['sort'];
-      }
-    }
-
-    $query = $this->connection->select('forum_index', 'f')
-      ->extend(PagerSelectExtender::class)
-      ->extend(TableSortExtender::class);
-    $query->fields('f');
-    $query
-      ->condition('f.tid', $tid)
-      ->addTag('node_access')
-      ->addMetaData('base_table', 'forum_index')
-      ->orderBy('f.sticky', 'DESC')
-      ->orderByHeader($header)
-      ->limit($forum_per_page);
-
-    $count_query = $this->connection->select('forum_index', 'f');
-    $count_query->condition('f.tid', $tid);
-    $count_query->addExpression('COUNT(*)');
-    $count_query->addTag('node_access');
-    $count_query->addMetaData('base_table', 'forum_index');
-
-    $query->setCountQuery($count_query);
-    $result = $query->execute();
-    $nids = [];
-    foreach ($result as $record) {
-      $nids[] = $record->nid;
-    }
-    if ($nids) {
-      $nodes = $this->entityTypeManager->getStorage('node')->loadMultiple($nids);
-
-      $query = $this->connection->select('node_field_data', 'n')
-        ->extend(TableSortExtender::class);
-      $query->fields('n', ['nid']);
-
-      $query->join('comment_entity_statistics', 'ces', "[n].[nid] = [ces].[entity_id] AND [ces].[field_name] = 'comment_forum' AND [ces].[entity_type] = 'node'");
-      $query->fields('ces', [
-        'cid',
-        'last_comment_uid',
-        'last_comment_timestamp',
-        'comment_count',
-      ]);
-
-      $query->join('forum_index', 'f', '[f].[nid] = [n].[nid]');
-      $query->addField('f', 'tid', 'forum_tid');
-
-      $query->join('users_field_data', 'u', '[n].[uid] = [u].[uid] AND [u].[default_langcode] = 1');
-      $query->addField('u', 'name');
-
-      $query->join('users_field_data', 'u2', '[ces].[last_comment_uid] = [u2].[uid] AND [u].[default_langcode] = 1');
-
-      $query->addExpression('CASE [ces].[last_comment_uid] WHEN 0 THEN [ces].[last_comment_name] ELSE [u2].[name] END', 'last_comment_name');
-
-      $query
-        ->orderBy('f.sticky', 'DESC')
-        ->orderByHeader($header)
-        ->condition('n.nid', $nids, 'IN')
-        // @todo This should be actually filtering on the desired node language
-        //   and just fall back to the default language.
-        ->condition('n.default_langcode', 1);
-
-      $result = [];
-      foreach ($query->execute() as $row) {
-        $topic = $nodes[$row->nid];
-        $topic->comment_mode = $topic->comment_forum->status;
-
-        foreach ($row as $key => $value) {
-          $topic->{$key} = $value;
-        }
-        $result[] = $topic;
-      }
-    }
-    else {
-      $result = [];
-    }
-
-    $topics = [];
-    $first_new_found = FALSE;
-    foreach ($result as $topic) {
-      if ($account->isAuthenticated()) {
-        // A forum is new if the topic is new, or if there are new comments since
-        // the user's last visit.
-        if ($topic->forum_tid != $tid) {
-          $topic->new = 0;
-        }
-        else {
-          $history = $this->lastVisit($topic->id(), $account);
-          $topic->new_replies = $this->commentManager->getCountNewComments($topic, 'comment_forum', $history);
-          $topic->new = $topic->new_replies || ($topic->last_comment_timestamp > $history);
-        }
-      }
-      else {
-        // Do not track "new replies" status for topics if the user is anonymous.
-        $topic->new_replies = 0;
-        $topic->new = 0;
-      }
-
-      // Make sure only one topic is indicated as the first new topic.
-      $topic->first_new = FALSE;
-      if ($topic->new != 0 && !$first_new_found) {
-        $topic->first_new = TRUE;
-        $first_new_found = TRUE;
-      }
-
-      if ($topic->comment_count > 0) {
-        $last_reply = new \stdClass();
-        $last_reply->created = $topic->last_comment_timestamp;
-        $last_reply->name = $topic->last_comment_name;
-        $last_reply->uid = $topic->last_comment_uid;
-        $topic->last_reply = $last_reply;
-      }
-      $topics[$topic->id()] = $topic;
-    }
-
-    return ['topics' => $topics, 'header' => $header];
-
-  }
-
-  /**
-   * Gets topic sorting information based on an integer code.
-   *
-   * @param int $sortby
-   *   One of the following integers indicating the sort criteria:
-   *   - ForumManager::NEWEST_FIRST: Date - newest first.
-   *   - ForumManager::OLDEST_FIRST: Date - oldest first.
-   *   - ForumManager::MOST_POPULAR_FIRST: Posts with the most comments first.
-   *   - ForumManager::LEAST_POPULAR_FIRST: Posts with the least comments first.
-   *
-   * @return array
-   *   An array with the following values:
-   *   - field: A field for an SQL query.
-   *   - sort: 'asc' or 'desc'.
-   */
-  protected function getTopicOrder($sortby) {
-    switch ($sortby) {
-      case static::NEWEST_FIRST:
-        return ['field' => 'f.last_comment_timestamp', 'sort' => 'desc'];
-
-      case static::OLDEST_FIRST:
-        return ['field' => 'f.last_comment_timestamp', 'sort' => 'asc'];
-
-      case static::MOST_POPULAR_FIRST:
-        return ['field' => 'f.comment_count', 'sort' => 'desc'];
-
-      case static::LEAST_POPULAR_FIRST:
-        return ['field' => 'f.comment_count', 'sort' => 'asc'];
-
-    }
-  }
-
-  /**
-   * Gets the last time the user viewed a node.
-   *
-   * @param int $nid
-   *   The node ID.
-   * @param \Drupal\Core\Session\AccountInterface $account
-   *   Account to fetch last time for.
-   *
-   * @return int
-   *   The timestamp when the user last viewed this node, if the user has
-   *   previously viewed the node; otherwise HISTORY_READ_LIMIT.
-   */
-  protected function lastVisit($nid, AccountInterface $account) {
-    if (empty($this->history[$nid])) {
-      $result = $this->connection->select('history', 'h')
-        ->fields('h', ['nid', 'timestamp'])
-        ->condition('uid', $account->id())
-        ->execute();
-      foreach ($result as $t) {
-        $this->history[$t->nid] = $t->timestamp > HISTORY_READ_LIMIT ? $t->timestamp : HISTORY_READ_LIMIT;
-      }
-    }
-    return $this->history[$nid] ?? HISTORY_READ_LIMIT;
-  }
-
-  /**
-   * Provides the last post information for the given forum tid.
-   *
-   * @param int $tid
-   *   The forum tid.
-   *
-   * @return object
-   *   The last post for the given forum.
-   */
-  protected function getLastPost($tid) {
-    if (!empty($this->lastPostData[$tid])) {
-      return $this->lastPostData[$tid];
-    }
-    // Query "Last Post" information for this forum.
-    $query = $this->connection->select('node_field_data', 'n');
-    $query->join('forum', 'f', '[n].[vid] = [f].[vid] AND [f].[tid] = :tid', [':tid' => $tid]);
-    $query->join('comment_entity_statistics', 'ces', "[n].[nid] = [ces].[entity_id] AND [ces].[field_name] = 'comment_forum' AND [ces].[entity_type] = 'node'");
-    $query->join('users_field_data', 'u', '[ces].[last_comment_uid] = [u].[uid] AND [u].[default_langcode] = 1');
-    $query->addExpression('CASE [ces].[last_comment_uid] WHEN 0 THEN [ces].[last_comment_name] ELSE [u].[name] END', 'last_comment_name');
-
-    $topic = $query
-      ->fields('ces', ['last_comment_timestamp', 'last_comment_uid'])
-      ->condition('n.status', 1)
-      ->orderBy('last_comment_timestamp', 'DESC')
-      ->range(0, 1)
-      ->addTag('node_access')
-      ->execute()
-      ->fetchObject();
-
-    // Build the last post information.
-    $last_post = new \stdClass();
-    if (!empty($topic->last_comment_timestamp)) {
-      $last_post->created = $topic->last_comment_timestamp;
-      $last_post->name = $topic->last_comment_name;
-      $last_post->uid = $topic->last_comment_uid;
-    }
-
-    $this->lastPostData[$tid] = $last_post;
-    return $last_post;
-  }
-
-  /**
-   * Provides statistics for a forum.
-   *
-   * @param int $tid
-   *   The forum tid.
-   *
-   * @return object|null
-   *   Statistics for the given forum if statistics exist, else NULL.
-   */
-  protected function getForumStatistics($tid) {
-    if (empty($this->forumStatistics)) {
-      // Prime the statistics.
-      $query = $this->connection->select('node_field_data', 'n');
-      $query->join('comment_entity_statistics', 'ces', "[n].[nid] = [ces].[entity_id] AND [ces].[field_name] = 'comment_forum' AND [ces].[entity_type] = 'node'");
-      $query->join('forum', 'f', '[n].[vid] = [f].[vid]');
-      $query->addExpression('COUNT([n].[nid])', 'topic_count');
-      $query->addExpression('SUM([ces].[comment_count])', 'comment_count');
-      $this->forumStatistics = $query
-        ->fields('f', ['tid'])
-        ->condition('n.status', 1)
-        ->condition('n.default_langcode', 1)
-        ->groupBy('tid')
-        ->addTag('node_access')
-        ->execute()
-        ->fetchAllAssoc('tid');
-    }
-
-    if (!empty($this->forumStatistics[$tid])) {
-      return $this->forumStatistics[$tid];
-    }
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  public function getChildren($vid, $tid) {
-    if (!empty($this->forumChildren[$tid])) {
-      return $this->forumChildren[$tid];
-    }
-    $forums = [];
-    $_forums = $this->entityTypeManager->getStorage('taxonomy_term')->loadTree($vid, $tid, NULL, TRUE);
-    foreach ($_forums as $forum) {
-      if (!$forum->access('view')) {
-        continue;
-      }
-      // Merge in the topic and post counters.
-      if (($count = $this->getForumStatistics($forum->id()))) {
-        $forum->num_topics = $count->topic_count;
-        $forum->num_posts = $count->topic_count + $count->comment_count;
-      }
-      else {
-        $forum->num_topics = 0;
-        $forum->num_posts = 0;
-      }
-
-      // Merge in last post details.
-      $forum->last_post = $this->getLastPost($forum->id());
-      $forums[$forum->id()] = $forum;
-    }
-
-    $this->forumChildren[$tid] = $forums;
-    return $forums;
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  public function getIndex() {
-    if ($this->index) {
-      return $this->index;
-    }
-
-    $vid = $this->configFactory->get('forum.settings')->get('vocabulary');
-    $index = $this->entityTypeManager->getStorage('taxonomy_term')->create([
-      'tid' => 0,
-      'container' => 1,
-      'parents' => [],
-      'isIndex' => TRUE,
-      'vid' => $vid,
-    ]);
-
-    // Load the tree below.
-    $index->forums = $this->getChildren($vid, 0);
-    $this->index = $index;
-    return $index;
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  public function resetCache() {
-    // Reset the index.
-    $this->index = NULL;
-    // Reset history.
-    $this->history = [];
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  public function checkNodeType(NodeInterface $node) {
-    // Fetch information about the forum field.
-    $field_definitions = $this->entityFieldManager->getFieldDefinitions('node', $node->bundle());
-    return !empty($field_definitions['taxonomy_forums']);
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  public function unreadTopics($term, $uid) {
-    $query = $this->connection->select('node_field_data', 'n');
-    $query->join('forum', 'f', '[n].[vid] = [f].[vid] AND [f].[tid] = :tid', [':tid' => $term]);
-    $query->leftJoin('history', 'h', '[n].[nid] = [h].[nid] AND [h].[uid] = :uid', [':uid' => $uid]);
-    $query->addExpression('COUNT([n].[nid])', 'count');
-    return $query
-      ->condition('status', 1)
-      // @todo This should be actually filtering on the desired node status
-      //   field language and just fall back to the default language.
-      ->condition('n.default_langcode', 1)
-      ->condition('n.created', HISTORY_READ_LIMIT, '>')
-      ->isNull('h.nid')
-      ->addTag('node_access')
-      ->execute()
-      ->fetchField();
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  public function __sleep(): array {
-    $vars = $this->defaultSleep();
-    // Do not serialize static cache.
-    unset($vars['history'], $vars['index'], $vars['lastPostData'], $vars['forumChildren'], $vars['forumStatistics']);
-    return $vars;
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  public function __wakeup(): void {
-    $this->defaultWakeup();
-    // Initialize static cache.
-    $this->history = [];
-    $this->lastPostData = [];
-    $this->forumChildren = [];
-    $this->forumStatistics = [];
-    $this->index = NULL;
-  }
-
-}
diff --git a/core/modules/forum/src/ForumManagerInterface.php b/core/modules/forum/src/ForumManagerInterface.php
deleted file mode 100644
index 8730d15ab909..000000000000
--- a/core/modules/forum/src/ForumManagerInterface.php
+++ /dev/null
@@ -1,80 +0,0 @@
-<?php
-
-namespace Drupal\forum;
-
-use Drupal\Core\Session\AccountInterface;
-use Drupal\node\NodeInterface;
-
-/**
- * Provides forum manager interface.
- */
-interface ForumManagerInterface {
-
-  /**
-   * Gets list of forum topics.
-   *
-   * @param int $tid
-   *   Term ID.
-   * @param \Drupal\Core\Session\AccountInterface $account
-   *   Account to fetch topics for.
-   *
-   * @return array
-   *   Array with keys 'topics' and 'header'.
-   */
-  public function getTopics($tid, AccountInterface $account);
-
-  /**
-   * Utility method to fetch the child forums for a given forum.
-   *
-   * @param int $vid
-   *   The forum vocabulary ID.
-   * @param int $tid
-   *   The forum ID to fetch the children for.
-   *
-   * @return array
-   *   Array of children.
-   */
-  public function getChildren($vid, $tid);
-
-  /**
-   * Generates and returns the forum index.
-   *
-   * The forum index is a pseudo term that provides an overview of all forums.
-   *
-   * @return \Drupal\taxonomy\TermInterface
-   *   A pseudo term representing the overview of all forums.
-   */
-  public function getIndex();
-
-  /**
-   * Resets the ForumManager index and history.
-   */
-  public function resetCache();
-
-  /**
-   * Checks whether a node can be used in a forum, based on its content type.
-   *
-   * @param \Drupal\node\NodeInterface $node
-   *   A node entity.
-   *
-   * @return bool
-   *   Boolean indicating if the node can be assigned to a forum.
-   */
-  public function checkNodeType(NodeInterface $node);
-
-  /**
-   * Calculates the number of new posts in a forum that the user has not yet read.
-   *
-   * Nodes are new if they are newer than HISTORY_READ_LIMIT.
-   *
-   * @param int $term
-   *   The term ID of the forum.
-   * @param int $uid
-   *   The user ID.
-   *
-   * @return int
-   *   The number of new posts in the forum that have not been read by the user.
-   */
-  public function unreadTopics($term, $uid);
-
-}
diff --git a/core/modules/forum/src/ForumSettingsForm.php b/core/modules/forum/src/ForumSettingsForm.php
deleted file mode 100644
index 67650d770531..000000000000
--- a/core/modules/forum/src/ForumSettingsForm.php
+++ /dev/null
@@ -1,81 +0,0 @@
-<?php
-
-namespace Drupal\forum;
-
-use Drupal\Core\Form\ConfigFormBase;
-use Drupal\Core\Form\FormStateInterface;
-
-/**
- * Configure forum settings for this site.
- *
- * @internal
- */
-class ForumSettingsForm extends ConfigFormBase {
-
-  /**
-   * {@inheritdoc}
-   */
-  public function getFormId() {
-    return 'forum_admin_settings';
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  protected function getEditableConfigNames() {
-    return ['forum.settings'];
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  public function buildForm(array $form, FormStateInterface $form_state) {
-    $config = $this->config('forum.settings');
-
-    $options = [5, 10, 15, 20, 25, 30, 35, 40, 50, 60, 80, 100, 150, 200, 250, 300, 350, 400, 500];
-    $form['forum_hot_topic'] = [
-      '#type' => 'select',
-      '#title' => $this->t('Hot topic threshold'),
-      '#default_value' => $config->get('topics.hot_threshold'),
-      '#options' => array_combine($options, $options),
-      '#description' => $this->t('The number of replies a topic must have to be considered "hot".'),
-    ];
-    $options = [10, 25, 50, 75, 100];
-    $form['forum_per_page'] = [
-      '#type' => 'select',
-      '#title' => $this->t('Topics per page'),
-      '#default_value' => $config->get('topics.page_limit'),
-      '#options' => array_combine($options, $options),
-      '#description' => $this->t('Default number of forum topics displayed per page.'),
-    ];
-    $order = [
-      1 => $this->t('Date - newest first'),
-      2 => $this->t('Date - oldest first'),
-      3 => $this->t('Posts - most active first'),
-      4 => $this->t('Posts - least active first'),
-    ];
-    $form['forum_order'] = [
-      '#type' => 'radios',
-      '#title' => $this->t('Default order'),
-      '#default_value' => $config->get('topics.order'),
-      '#options' => $order,
-      '#description' => $this->t('Default display order for topics.'),
-    ];
-
-    return parent::buildForm($form, $form_state);
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  public function submitForm(array &$form, FormStateInterface $form_state) {
-    $this->config('forum.settings')
-      ->set('topics.hot_threshold', $form_state->getValue('forum_hot_topic'))
-      ->set('topics.page_limit', $form_state->getValue('forum_per_page'))
-      ->set('topics.order', $form_state->getValue('forum_order'))
-      ->save();
-
-    parent::submitForm($form, $form_state);
-  }
-
-}
diff --git a/core/modules/forum/src/ForumUninstallValidator.php b/core/modules/forum/src/ForumUninstallValidator.php
deleted file mode 100644
index 7f1d68738c32..000000000000
--- a/core/modules/forum/src/ForumUninstallValidator.php
+++ /dev/null
@@ -1,130 +0,0 @@
-<?php
-
-namespace Drupal\forum;
-
-use Drupal\Core\Config\ConfigFactoryInterface;
-use Drupal\Core\Entity\EntityTypeManagerInterface;
-use Drupal\Core\Extension\ModuleUninstallValidatorInterface;
-use Drupal\Core\StringTranslation\StringTranslationTrait;
-use Drupal\Core\StringTranslation\TranslationInterface;
-use Drupal\taxonomy\VocabularyInterface;
-
-/**
- * Prevents forum module from being uninstalled under certain conditions.
- *
- * These conditions are when any forum nodes exist or there are any terms in the
- * forum vocabulary.
- */
-class ForumUninstallValidator implements ModuleUninstallValidatorInterface {
-
-  use StringTranslationTrait;
-
-  /**
-   * The entity type manager.
-   *
-   * @var \Drupal\Core\Entity\EntityTypeManagerInterface
-   */
-  protected $entityTypeManager;
-
-  /**
-   * The config factory.
-   *
-   * @var \Drupal\Core\Config\ConfigFactoryInterface
-   */
-  protected $configFactory;
-
-  /**
-   * Constructs a new ForumUninstallValidator.
-   *
-   * @param \Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager
-   *   The entity type manager.
-   * @param \Drupal\Core\Config\ConfigFactoryInterface $config_factory
-   *   The config factory.
-   * @param \Drupal\Core\StringTranslation\TranslationInterface $string_translation
-   *   The string translation service.
-   */
-  public function __construct(EntityTypeManagerInterface $entity_type_manager, ConfigFactoryInterface $config_factory, TranslationInterface $string_translation) {
-    $this->entityTypeManager = $entity_type_manager;
-    $this->configFactory = $config_factory;
-    $this->stringTranslation = $string_translation;
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  public function validate($module) {
-    $reasons = [];
-    if ($module == 'forum') {
-      if ($this->hasForumNodes()) {
-        $reasons[] = $this->t('To uninstall Forum, first delete all <em>Forum</em> content');
-      }
-
-      $vocabulary = $this->getForumVocabulary();
-      if (!empty($vocabulary) && $this->hasTermsForVocabulary($vocabulary)) {
-        if ($vocabulary->access('view')) {
-          $reasons[] = $this->t('To uninstall Forum, first delete all <a href=":url">%vocabulary</a> terms', [
-            '%vocabulary' => $vocabulary->label(),
-            ':url' => $vocabulary->toUrl('overview-form')->toString(),
-          ]);
-        }
-        else {
-          $reasons[] = $this->t('To uninstall Forum, first delete all %vocabulary terms', [
-            '%vocabulary' => $vocabulary->label(),
-          ]);
-        }
-      }
-    }
-
-    return $reasons;
-  }
-
-  /**
-   * Determines if there are any forum nodes or not.
-   *
-   * @return bool
-   *   TRUE if there are forum nodes, FALSE otherwise.
-   */
-  protected function hasForumNodes() {
-    $nodes = $this->entityTypeManager->getStorage('node')->getQuery()
-      ->condition('type', 'forum')
-      ->accessCheck(FALSE)
-      ->range(0, 1)
-      ->execute();
-    return !empty($nodes);
-  }
-
-  /**
-   * Determines if there are any taxonomy terms for a specified vocabulary.
-   *
-   * @param \Drupal\taxonomy\VocabularyInterface $vocabulary
-   *   The vocabulary to check for terms.
-   *
-   * @return bool
-   *   TRUE if there are terms for this vocabulary, FALSE otherwise.
-   */
-  protected function hasTermsForVocabulary(VocabularyInterface $vocabulary) {
-    $terms = $this->entityTypeManager->getStorage('taxonomy_term')->getQuery()
-      ->condition('vid', $vocabulary->id())
-      ->accessCheck(FALSE)
-      ->range(0, 1)
-      ->execute();
-    return !empty($terms);
-  }
-
-  /**
-   * Returns the vocabulary configured for forums.
-   *
-   * @return \Drupal\taxonomy\VocabularyInterface
-   *   The vocabulary entity for forums.
-   */
-  protected function getForumVocabulary() {
-    $vid = $this->configFactory->get('forum.settings')->get('vocabulary');
-    if (!empty($vid)) {
-      return $this->entityTypeManager->getStorage('taxonomy_vocabulary')->load($vid);
-    }
-    else {
-      return NULL;
-    }
-  }
-
-}
diff --git a/core/modules/forum/src/Plugin/Block/ActiveTopicsBlock.php b/core/modules/forum/src/Plugin/Block/ActiveTopicsBlock.php
deleted file mode 100644
index c4b4bf0ef212..000000000000
--- a/core/modules/forum/src/Plugin/Block/ActiveTopicsBlock.php
+++ /dev/null
@@ -1,31 +0,0 @@
-<?php
-
-namespace Drupal\forum\Plugin\Block;
-
-use Drupal\Core\Block\Attribute\Block;
-use Drupal\Core\Database\Database;
-use Drupal\Core\StringTranslation\TranslatableMarkup;
-
-/**
- * Provides an 'Active forum topics' block.
- */
-#[Block(
-  id: "forum_active_block",
-  admin_label: new TranslatableMarkup("Active forum topics"),
-  category: new TranslatableMarkup("Lists (Views)")
-)]
-class ActiveTopicsBlock extends ForumBlockBase {
-
-  /**
-   * {@inheritdoc}
-   */
-  protected function buildForumQuery() {
-    return Database::getConnection()->select('forum_index', 'f')
-      ->fields('f')
-      ->addTag('node_access')
-      ->addMetaData('base_table', 'forum_index')
-      ->orderBy('f.last_comment_timestamp', 'DESC')
-      ->range(0, $this->configuration['block_count']);
-  }
-
-}
diff --git a/core/modules/forum/src/Plugin/Block/ForumBlockBase.php b/core/modules/forum/src/Plugin/Block/ForumBlockBase.php
deleted file mode 100644
index 8095ceffb8e0..000000000000
--- a/core/modules/forum/src/Plugin/Block/ForumBlockBase.php
+++ /dev/null
@@ -1,96 +0,0 @@
-<?php
-
-namespace Drupal\forum\Plugin\Block;
-
-use Drupal\Core\Access\AccessResult;
-use Drupal\Core\Block\BlockBase;
-use Drupal\Core\Cache\Cache;
-use Drupal\Core\Form\FormStateInterface;
-use Drupal\Core\Session\AccountInterface;
-use Drupal\Core\Url;
-
-/**
- * Provides a base class for Forum blocks.
- */
-abstract class ForumBlockBase extends BlockBase {
-
-  /**
-   * {@inheritdoc}
-   */
-  public function build() {
-    $result = $this->buildForumQuery()->execute();
-    $elements = [];
-    if ($node_title_list = node_title_list($result)) {
-      $elements['forum_list'] = $node_title_list;
-      $elements['forum_more'] = [
-        '#type' => 'more_link',
-        '#url' => Url::fromRoute('forum.index'),
-        '#attributes' => ['title' => $this->t('Read the latest forum topics.')],
-      ];
-    }
-    return $elements;
-  }
-
-  /**
-   * Builds the select query to use for this forum block.
-   *
-   * @return \Drupal\Core\Database\Query\Select
-   *   A Select object.
-   */
-  abstract protected function buildForumQuery();
-
-  /**
-   * {@inheritdoc}
-   */
-  public function defaultConfiguration() {
-    return [
-      'properties' => [
-        'administrative' => TRUE,
-      ],
-      'block_count' => 5,
-    ];
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  protected function blockAccess(AccountInterface $account) {
-    return AccessResult::allowedIfHasPermission($account, 'access content');
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  public function blockForm($form, FormStateInterface $form_state) {
-    $range = range(2, 20);
-    $form['block_count'] = [
-      '#type' => 'select',
-      '#title' => $this->t('Number of topics'),
-      '#default_value' => $this->configuration['block_count'],
-      '#options' => array_combine($range, $range),
-    ];
-    return $form;
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  public function blockSubmit($form, FormStateInterface $form_state) {
-    $this->configuration['block_count'] = $form_state->getValue('block_count');
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  public function getCacheContexts() {
-    return Cache::mergeContexts(parent::getCacheContexts(), ['user.node_grants:view']);
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  public function getCacheTags() {
-    return Cache::mergeTags(parent::getCacheTags(), ['node_list']);
-  }
-
-}
diff --git a/core/modules/forum/src/Plugin/Block/NewTopicsBlock.php b/core/modules/forum/src/Plugin/Block/NewTopicsBlock.php
deleted file mode 100644
index 13d3bf0dc03e..000000000000
--- a/core/modules/forum/src/Plugin/Block/NewTopicsBlock.php
+++ /dev/null
@@ -1,31 +0,0 @@
-<?php
-
-namespace Drupal\forum\Plugin\Block;
-
-use Drupal\Core\Block\Attribute\Block;
-use Drupal\Core\Database\Database;
-use Drupal\Core\StringTranslation\TranslatableMarkup;
-
-/**
- * Provides a 'New forum topics' block.
- */
-#[Block(
-  id: "forum_new_block",
-  admin_label: new TranslatableMarkup("New forum topics"),
-  category: new TranslatableMarkup("Lists (Views)")
-)]
-class NewTopicsBlock extends ForumBlockBase {
-
-  /**
-   * {@inheritdoc}
-   */
-  protected function buildForumQuery() {
-    return Database::getConnection()->select('forum_index', 'f')
-      ->fields('f')
-      ->addTag('node_access')
-      ->addMetaData('base_table', 'forum_index')
-      ->orderBy('f.created', 'DESC')
-      ->range(0, $this->configuration['block_count']);
-  }
-
-}
diff --git a/core/modules/forum/src/Plugin/Validation/Constraint/ForumLeafConstraint.php b/core/modules/forum/src/Plugin/Validation/Constraint/ForumLeafConstraint.php
deleted file mode 100644
index 7d5a774a72ac..000000000000
--- a/core/modules/forum/src/Plugin/Validation/Constraint/ForumLeafConstraint.php
+++ /dev/null
@@ -1,21 +0,0 @@
-<?php
-
-namespace Drupal\forum\Plugin\Validation\Constraint;
-
-use Drupal\Core\StringTranslation\TranslatableMarkup;
-use Drupal\Core\Validation\Attribute\Constraint;
-use Symfony\Component\Validator\Constraint as SymfonyConstraint;
-
-/**
- * Checks that the node is assigned only a "leaf" term in the forum taxonomy.
- */
-#[Constraint(
-  id: 'ForumLeaf',
-  label: new TranslatableMarkup('Forum leaf', [], ['context' => 'Validation'])
-)]
-class ForumLeafConstraint extends SymfonyConstraint {
-
-  public $selectForum = 'Select a forum.';
-  public $noLeafMessage = 'The item %forum is a forum container, not a forum. Select one of the forums below instead.';
-
-}
diff --git a/core/modules/forum/src/Plugin/Validation/Constraint/ForumLeafConstraintValidator.php b/core/modules/forum/src/Plugin/Validation/Constraint/ForumLeafConstraintValidator.php
deleted file mode 100644
index a79f760e99bc..000000000000
--- a/core/modules/forum/src/Plugin/Validation/Constraint/ForumLeafConstraintValidator.php
+++ /dev/null
@@ -1,33 +0,0 @@
-<?php
-
-namespace Drupal\forum\Plugin\Validation\Constraint;
-
-use Symfony\Component\Validator\Constraint;
-use Symfony\Component\Validator\ConstraintValidator;
-
-/**
- * Validates the ForumLeaf constraint.
- */
-class ForumLeafConstraintValidator extends ConstraintValidator {
-
-  /**
-   * {@inheritdoc}
-   */
-  public function validate($items, Constraint $constraint): void {
-    $item = $items->first();
-    if (!isset($item)) {
-      return;
-    }
-
-    // Verify that a term has been selected.
-    if (!$item->entity) {
-      $this->context->addViolation($constraint->selectForum);
-    }
-
-    // The forum_container flag must not be set.
-    if (!empty($item->entity->forum_container->value)) {
-      $this->context->addViolation($constraint->noLeafMessage, ['%forum' => $item->entity->getName()]);
-    }
-  }
-
-}
diff --git a/core/modules/forum/src/Plugin/migrate/process/ForumVocabulary.php b/core/modules/forum/src/Plugin/migrate/process/ForumVocabulary.php
deleted file mode 100644
index e97c73f86655..000000000000
--- a/core/modules/forum/src/Plugin/migrate/process/ForumVocabulary.php
+++ /dev/null
@@ -1,44 +0,0 @@
-<?php
-
-namespace Drupal\forum\Plugin\migrate\process;
-
-use Drupal\migrate\Attribute\MigrateProcess;
-use Drupal\migrate\MigrateExecutableInterface;
-use Drupal\migrate\ProcessPluginBase;
-use Drupal\migrate\Row;
-
-/**
- * Checks if the vocabulary being migrated is the one used for forums.
- *
- * Drupal 8 Forum is expecting specific machine names for its field and
- * vocabulary names. This process plugin forces a given machine name to the
- * field or vocabulary that is being migrated.
- *
- * The 'forum_vocabulary' source property is evaluated in the
- * d6_taxonomy_vocabulary or d7_taxonomy_vocabulary source plugins and is set to
- * true if the vocabulary vid being migrated is the same as the one in the
- * 'forum_nav_vocabulary' variable on the source site.
- *
- * Example:
- *
- * @code
- * process:
- *   field_name:
- *     plugin: forum_vocabulary
- *     machine_name: taxonomy_forums
- * @endcode
- */
-#[MigrateProcess('forum_vocabulary')]
-class ForumVocabulary extends ProcessPluginBase {
-
-  /**
-   * {@inheritdoc}
-   */
-  public function transform($value, MigrateExecutableInterface $migrate_executable, Row $row, $destination_property) {
-    if ($row->getSourceProperty('forum_vocabulary') && !empty($this->configuration['machine_name'])) {
-      $value = $this->configuration['machine_name'];
-    }
-    return $value;
-  }
-
-}
diff --git a/core/modules/forum/src/ProxyClass/ForumUninstallValidator.php b/core/modules/forum/src/ProxyClass/ForumUninstallValidator.php
deleted file mode 100644
index 7d9469e19f3b..000000000000
--- a/core/modules/forum/src/ProxyClass/ForumUninstallValidator.php
+++ /dev/null
@@ -1,88 +0,0 @@
-<?php
-// phpcs:ignoreFile
-
-/**
- * This file was generated via php core/scripts/generate-proxy-class.php 'Drupal\forum\ForumUninstallValidator' "core/modules/forum/src".
- */
-
-namespace Drupal\forum\ProxyClass {
-
-    /**
-     * Provides a proxy class for \Drupal\forum\ForumUninstallValidator.
-     *
-     * @see \Drupal\Component\ProxyBuilder
-     */
-    class ForumUninstallValidator implements \Drupal\Core\Extension\ModuleUninstallValidatorInterface
-    {
-
-        use \Drupal\Core\DependencyInjection\DependencySerializationTrait;
-
-        /**
-         * The id of the original proxied service.
-         *
-         * @var string
-         */
-        protected $drupalProxyOriginalServiceId;
-
-        /**
-         * The real proxied service, after it was lazy loaded.
-         *
-         * @var \Drupal\forum\ForumUninstallValidator
-         */
-        protected $service;
-
-        /**
-         * The service container.
-         *
-         * @var \Symfony\Component\DependencyInjection\ContainerInterface
-         */
-        protected $container;
-
-        /**
-         * Constructs a ProxyClass Drupal proxy object.
-         *
-         * @param \Symfony\Component\DependencyInjection\ContainerInterface $container
-         *   The container.
-         * @param string $drupal_proxy_original_service_id
-         *   The service ID of the original service.
-         */
-        public function __construct(\Symfony\Component\DependencyInjection\ContainerInterface $container, $drupal_proxy_original_service_id)
-        {
-            $this->container = $container;
-            $this->drupalProxyOriginalServiceId = $drupal_proxy_original_service_id;
-        }
-
-        /**
-         * Lazy loads the real service from the container.
-         *
-         * @return object
-         *   Returns the constructed real service.
-         */
-        protected function lazyLoadItself()
-        {
-            if (!isset($this->service)) {
-                $this->service = $this->container->get($this->drupalProxyOriginalServiceId);
-            }
-
-            return $this->service;
-        }
-
-        /**
-         * {@inheritdoc}
-         */
-        public function validate($module)
-        {
-            return $this->lazyLoadItself()->validate($module);
-        }
-
-        /**
-         * {@inheritdoc}
-         */
-        public function setStringTranslation(\Drupal\Core\StringTranslation\TranslationInterface $translation)
-        {
-            return $this->lazyLoadItself()->setStringTranslation($translation);
-        }
-
-    }
-
-}
diff --git a/core/modules/forum/templates/forum-icon.html.twig b/core/modules/forum/templates/forum-icon.html.twig
deleted file mode 100644
index 8a5e325c4f34..000000000000
--- a/core/modules/forum/templates/forum-icon.html.twig
+++ /dev/null
@@ -1,26 +0,0 @@
-{#
-/**
- * @file
- * Default theme implementation to display a status icon for a forum post.
- *
- * Available variables:
- * - attributes: HTML attributes to be applied to the wrapper element.
- *   - class: HTML classes that determine which icon to display. May be one of
- *     'hot', 'hot-new', 'new', 'default', 'closed', or 'sticky'.
- *   - title: Text alternative for the forum icon.
- * - icon_title: Text alternative for the forum icon, same as above.
- * - new_posts: '1' when this topic contains new posts, otherwise '0'.
- * - first_new: '1' when this is the first topic with new posts, otherwise '0'.
- * - icon_status: Indicates which status icon should be used.
- *
- * @see template_preprocess_forum_icon()
- *
- * @ingroup themeable
- */
-#}
-<div{{ attributes }}>
-  {% if first_new -%}
-    <a id="new"></a>
-  {%- endif %}
-  <span class="visually-hidden">{{ icon_title }}</span>
-</div>
diff --git a/core/modules/forum/templates/forum-list.html.twig b/core/modules/forum/templates/forum-list.html.twig
deleted file mode 100644
index 6bf4220b827a..000000000000
--- a/core/modules/forum/templates/forum-list.html.twig
+++ /dev/null
@@ -1,77 +0,0 @@
-{#
-/**
- * @file
- * Default theme implementation to display a list of forums and containers.
- *
- * Available variables:
- * - forums: A collection of forums and containers to display. It is keyed to
- *   the numeric IDs of all child forums and containers. Each forum in forums
- *   contains:
- *   - is_container: A flag indicating if the forum can contain other
- *     forums. Otherwise, the forum can only contain topics.
- *   - depth: How deep the forum is in the current hierarchy.
- *   - zebra: 'even' or 'odd', used for row class.
- *   - icon_class: 'default' or 'new', used for forum icon class.
- *   - icon_title: Text alternative for the forum icon.
- *   - name: The name of the forum.
- *   - link: The URL to link to this forum.
- *   - description: The description field for the forum, containing:
- *     - value: The descriptive text for the forum.
- *   - new_topics: A flag indicating if the forum contains unread posts.
- *   - new_url: A URL to the forum's unread posts.
- *   - new_text: Text for the above URL, which tells how many new posts.
- *   - old_topics: A count of posts that have already been read.
- *   - num_posts: The total number of posts in the forum.
- *   - last_reply: Text representing the last time a forum was posted or
- *     commented in.
- * - forum_id: Forum ID for the current forum. Parent to all items within the
- *   forums array.
- *
- * @see template_preprocess_forum_list()
- *
- * @ingroup themeable
- */
-#}
-<table>
-  <thead>
-    <tr>
-      <th>{{ 'Forum'|t }}</th>
-      <th>{{ 'Topics'|t }}</th>
-      <th>{{ 'Posts'|t }}</th>
-      <th>{{ 'Last post'|t }}</th>
-    </tr>
-  </thead>
-  <tbody>
-  {% for child_id, forum in forums %}
-    <tr>
-      <td{% if forum.is_container == true %} colspan="4"{% endif %}>
-        {#
-          Enclose the contents of this cell with X divs, where X is the
-          depth this forum resides at. This will allow us to use CSS
-          left-margin for indenting.
-        #}
-        {% if forum.depth > 0 %}{% for i in 1..forum.depth %}<div class="indent">{% endfor %}{% endif %}
-          <div title="{{ forum.icon_title }}">
-            <span class="visually-hidden">{{ forum.icon_title }}</span>
-          </div>
-          <div><a href="{{ forum.link }}">{{ forum.label }}</a></div>
-          {% if forum.description.value %}
-            <div>{{ forum.description.value }}</div>
-          {% endif %}
-        {% if forum.depth > 0 %}{% for i in 1..forum.depth %}</div>{% endfor %}{% endif %}
-      </td>
-      {% if forum.is_container == false %}
-        <td>
-          {{ forum.num_topics }}
-          {% if forum.new_topics == true %}
-            <br />
-            <a href="{{ forum.new_url }}">{{ forum.new_text }}</a>
-          {% endif %}
-        </td>
-        <td>{{ forum.num_posts }}</td>
-        <td>{{ forum.last_reply }}</td>
-      {% endif %}
-    </tr>
-  {% endfor %}
-  </tbody>
-</table>
diff --git a/core/modules/forum/templates/forum-submitted.html.twig b/core/modules/forum/templates/forum-submitted.html.twig
deleted file mode 100644
index 2cc992a2fd72..000000000000
--- a/core/modules/forum/templates/forum-submitted.html.twig
+++ /dev/null
@@ -1,23 +0,0 @@
-{#
-/**
- * @file
- * Default theme implementation for a forum post submission string.
- *
- * The submission string indicates when and by whom a topic was submitted.
- *
- * Available variables:
- * - author: The author of the post.
- * - time: How long ago the post was created.
- * - topic: An object with the raw data of the post. Potentially unsafe. Be
- *   sure to clean this data before printing.
- *
- * @see template_preprocess_forum_submitted()
- *
- * @ingroup themeable
- */
-#}
-{% if time %}
-  <span>{% trans %}By {{ author }} {{ time }} ago{% endtrans %}</span>
-{% else %}
-  {{ 'n/a'|t }}
-{% endif %}
diff --git a/core/modules/forum/templates/forum-topic.html.twig b/core/modules/forum/templates/forum-topic.html.twig
deleted file mode 100644
index b6f45f2303b4..000000000000
--- a/core/modules/forum/templates/forum-topic.html.twig
+++ /dev/null
@@ -1,18 +0,0 @@
-{#
-/**
- * @file
- * Default theme implementation to display a forum topic.
- *
- * Available variables:
- * - title_link: The forum title link to display.
- * - submitted: Indicates when and by whom a topic was submitted.
- *
- * @see template_preprocess_forums()
- *
- * @ingroup themeable
- */
-#}
-<div class="forum__title">
-  <div>{{ title_link }}</div>
-  <div>{{ submitted }}</div>
-</div>
diff --git a/core/modules/forum/templates/forums.html.twig b/core/modules/forum/templates/forums.html.twig
deleted file mode 100644
index 640686c93e58..000000000000
--- a/core/modules/forum/templates/forums.html.twig
+++ /dev/null
@@ -1,24 +0,0 @@
-{#
-/**
- * @file
- * Default theme implementation to display a forum.
- *
- * May contain forum containers as well as forum topics.
- *
- * Available variables:
- * - forums: The forums to display (as processed by forum-list.html.twig).
- * - topics: The topics to display.
- * - topics_original: Original topics data before modification.
- * - topics_pager: The topics pager.
- * - forums_defined: A flag to indicate that the forums are configured.
- *
- * @see template_preprocess_forums()
- *
- * @ingroup themeable
- */
-#}
-{% if forums_defined %}
-  {{ forums }}
-  {{ topics }}
-  {{ topics_pager }}
-{% endif %}
diff --git a/core/modules/forum/tests/fixtures/drupal6.php b/core/modules/forum/tests/fixtures/drupal6.php
deleted file mode 100644
index b9cd499e015a..000000000000
--- a/core/modules/forum/tests/fixtures/drupal6.php
+++ /dev/null
@@ -1,19786 +0,0 @@
-<?php
-// phpcs:ignoreFile
-/**
- * @file
- * A database agnostic dump for testing purposes.
- *
- * This file was generated by the Drupal 11.0-dev db-tools.php script.
- */
-
-use Drupal\Core\Database\Database;
-
-$connection = Database::getConnection();
-// Ensure any tables with a serial column with a value of 0 are created as
-// expected.
-if ($connection->databaseType() === 'mysql') {
-  $sql_mode = $connection->query("SELECT @@sql_mode;")->fetchField();
-  $connection->query("SET sql_mode = '$sql_mode,NO_AUTO_VALUE_ON_ZERO'");
-}
-
-$connection->schema()->createTable('access', array(
-  'fields' => array(
-    'aid' => array(
-      'type' => 'serial',
-      'not null' => TRUE,
-      'size' => 'normal',
-    ),
-    'mask' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'type' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'status' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-  ),
-  'primary key' => array(
-    'aid',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->schema()->createTable('actions', array(
-  'fields' => array(
-    'aid' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '0',
-    ),
-    'type' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '32',
-      'default' => '',
-    ),
-    'callback' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'parameters' => array(
-      'type' => 'text',
-      'not null' => TRUE,
-      'size' => 'normal',
-    ),
-    'description' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '0',
-    ),
-  ),
-  'primary key' => array(
-    'aid',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->insert('actions')
-->fields(array(
-  'aid',
-  'type',
-  'callback',
-  'parameters',
-  'description',
-))
-->values(array(
-  'aid' => '1',
-  'type' => 'comment',
-  'callback' => 'comment_unpublish_by_keyword_action',
-  'parameters' => 'a:1:{s:8:"keywords";a:1:{i:0;s:6:"drupal";}}',
-  'description' => 'Unpublish comment containing keyword(s)',
-))
-->values(array(
-  'aid' => '2',
-  'type' => 'node',
-  'callback' => 'node_assign_owner_action',
-  'parameters' => 'a:1:{s:9:"owner_uid";s:1:"2";}',
-  'description' => 'Change the author of a post',
-))
-->values(array(
-  'aid' => '3',
-  'type' => 'node',
-  'callback' => 'node_unpublish_by_keyword_action',
-  'parameters' => 'a:1:{s:8:"keywords";a:1:{i:0;s:6:"drupal";}}',
-  'description' => 'Unpublish post containing keyword(s)',
-))
-->values(array(
-  'aid' => '4',
-  'type' => 'system',
-  'callback' => 'system_message_action',
-  'parameters' => 'a:1:{s:7:"message";s:21:"Drupal migration test";}',
-  'description' => 'Display a message to the user',
-))
-->values(array(
-  'aid' => '5',
-  'type' => 'system',
-  'callback' => 'system_send_email_action',
-  'parameters' => 'a:3:{s:9:"recipient";s:16:"test@example.com";s:7:"subject";s:21:"Drupal migration test";s:7:"message";s:21:"Drupal migration test";}',
-  'description' => 'Send e-mail',
-))
-->values(array(
-  'aid' => '6',
-  'type' => 'system',
-  'callback' => 'system_goto_action',
-  'parameters' => 'a:1:{s:3:"url";s:22:"https://www.drupal.org";}',
-  'description' => 'Redirect to URL',
-))
-->values(array(
-  'aid' => 'comment_publish_action',
-  'type' => 'comment',
-  'callback' => 'comment_publish_action',
-  'parameters' => '',
-  'description' => 'Publish comment',
-))
-->values(array(
-  'aid' => 'comment_unpublish_action',
-  'type' => 'comment',
-  'callback' => 'comment_unpublish_action',
-  'parameters' => '',
-  'description' => 'Unpublish comment',
-))
-->values(array(
-  'aid' => 'imagecache_flush_action',
-  'type' => 'node',
-  'callback' => 'imagecache_flush_action',
-  'parameters' => '',
-  'description' => "ImageCache: Flush ALL presets for this node's filefield images",
-))
-->values(array(
-  'aid' => 'imagecache_generate_all_action',
-  'type' => 'node',
-  'callback' => 'imagecache_generate_all_action',
-  'parameters' => '',
-  'description' => "ImageCache: Generate ALL presets for this node's filefield images",
-))
-->values(array(
-  'aid' => 'node_make_sticky_action',
-  'type' => 'node',
-  'callback' => 'node_make_sticky_action',
-  'parameters' => '',
-  'description' => 'Make post sticky',
-))
-->values(array(
-  'aid' => 'node_make_unsticky_action',
-  'type' => 'node',
-  'callback' => 'node_make_unsticky_action',
-  'parameters' => '',
-  'description' => 'Make post unsticky',
-))
-->values(array(
-  'aid' => 'node_promote_action',
-  'type' => 'node',
-  'callback' => 'node_promote_action',
-  'parameters' => '',
-  'description' => 'Promote post to front page',
-))
-->values(array(
-  'aid' => 'node_publish_action',
-  'type' => 'node',
-  'callback' => 'node_publish_action',
-  'parameters' => '',
-  'description' => 'Publish post',
-))
-->values(array(
-  'aid' => 'node_save_action',
-  'type' => 'node',
-  'callback' => 'node_save_action',
-  'parameters' => '',
-  'description' => 'Save post',
-))
-->values(array(
-  'aid' => 'node_unpromote_action',
-  'type' => 'node',
-  'callback' => 'node_unpromote_action',
-  'parameters' => '',
-  'description' => 'Remove post from front page',
-))
-->values(array(
-  'aid' => 'node_unpublish_action',
-  'type' => 'node',
-  'callback' => 'node_unpublish_action',
-  'parameters' => '',
-  'description' => 'Unpublish post',
-))
-->values(array(
-  'aid' => 'user_block_ip_action',
-  'type' => 'user',
-  'callback' => 'user_block_ip_action',
-  'parameters' => '',
-  'description' => 'Ban IP address of current user',
-))
-->values(array(
-  'aid' => 'user_block_user_action',
-  'type' => 'user',
-  'callback' => 'user_block_user_action',
-  'parameters' => '',
-  'description' => 'Block current user',
-))
-->execute();
-$connection->schema()->createTable('actions_aid', array(
-  'fields' => array(
-    'aid' => array(
-      'type' => 'serial',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-  ),
-  'primary key' => array(
-    'aid',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->insert('actions_aid')
-->fields(array(
-  'aid',
-))
-->values(array(
-  'aid' => '1',
-))
-->values(array(
-  'aid' => '2',
-))
-->values(array(
-  'aid' => '3',
-))
-->values(array(
-  'aid' => '4',
-))
-->values(array(
-  'aid' => '5',
-))
-->values(array(
-  'aid' => '6',
-))
-->execute();
-$connection->schema()->createTable('aggregator_category', array(
-  'fields' => array(
-    'cid' => array(
-      'type' => 'serial',
-      'not null' => TRUE,
-      'size' => 'normal',
-    ),
-    'title' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'description' => array(
-      'type' => 'text',
-      'not null' => TRUE,
-      'size' => 'big',
-    ),
-    'block' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'tiny',
-      'default' => '0',
-    ),
-  ),
-  'primary key' => array(
-    'cid',
-  ),
-  'unique keys' => array(
-    'title' => array(
-      'title',
-    ),
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->schema()->createTable('aggregator_category_feed', array(
-  'fields' => array(
-    'fid' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'cid' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-  ),
-  'primary key' => array(
-    'cid',
-    'fid',
-  ),
-  'indexes' => array(
-    'fid' => array(
-      'fid',
-    ),
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->schema()->createTable('aggregator_category_item', array(
-  'fields' => array(
-    'iid' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'cid' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-  ),
-  'primary key' => array(
-    'cid',
-    'iid',
-  ),
-  'indexes' => array(
-    'iid' => array(
-      'iid',
-    ),
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->schema()->createTable('aggregator_feed', array(
-  'fields' => array(
-    'fid' => array(
-      'type' => 'serial',
-      'not null' => TRUE,
-      'size' => 'normal',
-    ),
-    'title' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'url' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'refresh' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'checked' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'link' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'description' => array(
-      'type' => 'text',
-      'not null' => TRUE,
-      'size' => 'big',
-    ),
-    'image' => array(
-      'type' => 'text',
-      'not null' => TRUE,
-      'size' => 'big',
-    ),
-    'etag' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'modified' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'block' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'tiny',
-      'default' => '0',
-    ),
-  ),
-  'primary key' => array(
-    'fid',
-  ),
-  'unique keys' => array(
-    'url' => array(
-      'url',
-    ),
-    'title' => array(
-      'title',
-    ),
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->schema()->createTable('aggregator_item', array(
-  'fields' => array(
-    'iid' => array(
-      'type' => 'serial',
-      'not null' => TRUE,
-      'size' => 'normal',
-    ),
-    'fid' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'title' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'link' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'author' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'description' => array(
-      'type' => 'text',
-      'not null' => TRUE,
-      'size' => 'big',
-    ),
-    'timestamp' => array(
-      'type' => 'int',
-      'not null' => FALSE,
-      'size' => 'normal',
-    ),
-    'guid' => array(
-      'type' => 'varchar',
-      'not null' => FALSE,
-      'length' => '255',
-    ),
-  ),
-  'primary key' => array(
-    'iid',
-  ),
-  'indexes' => array(
-    'fid' => array(
-      'fid',
-    ),
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->schema()->createTable('authmap', array(
-  'fields' => array(
-    'aid' => array(
-      'type' => 'serial',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-    'uid' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'authname' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '128',
-      'default' => '',
-    ),
-    'module' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '128',
-      'default' => '',
-    ),
-  ),
-  'primary key' => array(
-    'aid',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->schema()->createTable('batch', array(
-  'fields' => array(
-    'bid' => array(
-      'type' => 'serial',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-    'token' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '64',
-    ),
-    'timestamp' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-    ),
-    'batch' => array(
-      'type' => 'text',
-      'not null' => FALSE,
-      'size' => 'normal',
-    ),
-  ),
-  'primary key' => array(
-    'bid',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->schema()->createTable('blocks', array(
-  'fields' => array(
-    'bid' => array(
-      'type' => 'serial',
-      'not null' => TRUE,
-      'size' => 'normal',
-    ),
-    'module' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '64',
-      'default' => '',
-    ),
-    'delta' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '32',
-      'default' => '0',
-    ),
-    'theme' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '64',
-      'default' => '',
-    ),
-    'status' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'weight' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'region' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '64',
-      'default' => '',
-    ),
-    'custom' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'throttle' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'visibility' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'pages' => array(
-      'type' => 'text',
-      'not null' => TRUE,
-      'size' => 'normal',
-    ),
-    'title' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '64',
-      'default' => '',
-    ),
-    'cache' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '1',
-    ),
-  ),
-  'primary key' => array(
-    'bid',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->insert('blocks')
-->fields(array(
-  'bid',
-  'module',
-  'delta',
-  'theme',
-  'status',
-  'weight',
-  'region',
-  'custom',
-  'throttle',
-  'visibility',
-  'pages',
-  'title',
-  'cache',
-))
-->values(array(
-  'bid' => '1',
-  'module' => 'user',
-  'delta' => '0',
-  'theme' => 'garland',
-  'status' => '1',
-  'weight' => '-10',
-  'region' => 'left',
-  'custom' => '0',
-  'throttle' => '0',
-  'visibility' => '0',
-  'pages' => "<front>\r\nnode/1\nblog/*",
-  'title' => '',
-  'cache' => '-1',
-))
-->values(array(
-  'bid' => '2',
-  'module' => 'user',
-  'delta' => '1',
-  'theme' => 'garland',
-  'status' => '1',
-  'weight' => '-11',
-  'region' => 'left',
-  'custom' => '0',
-  'throttle' => '0',
-  'visibility' => '0',
-  'pages' => '',
-  'title' => 'zu - Navigation',
-  'cache' => '-1',
-))
-->values(array(
-  'bid' => '3',
-  'module' => 'system',
-  'delta' => '0',
-  'theme' => 'garland',
-  'status' => '1',
-  'weight' => '-5',
-  'region' => 'footer',
-  'custom' => '0',
-  'throttle' => '0',
-  'visibility' => '0',
-  'pages' => 'node/1',
-  'title' => '',
-  'cache' => '-1',
-))
-->values(array(
-  'bid' => '4',
-  'module' => 'comment',
-  'delta' => '0',
-  'theme' => 'garland',
-  'status' => '0',
-  'weight' => '-9',
-  'region' => '',
-  'custom' => '0',
-  'throttle' => '0',
-  'visibility' => '0',
-  'pages' => '',
-  'title' => '',
-  'cache' => '1',
-))
-->values(array(
-  'bid' => '5',
-  'module' => 'menu',
-  'delta' => 'primary-links',
-  'theme' => 'garland',
-  'status' => '1',
-  'weight' => '-5',
-  'region' => 'header',
-  'custom' => '0',
-  'throttle' => '0',
-  'visibility' => '0',
-  'pages' => '',
-  'title' => '',
-  'cache' => '-1',
-))
-->values(array(
-  'bid' => '6',
-  'module' => 'menu',
-  'delta' => 'secondary-links',
-  'theme' => 'garland',
-  'status' => '0',
-  'weight' => '-8',
-  'region' => '',
-  'custom' => '0',
-  'throttle' => '0',
-  'visibility' => '0',
-  'pages' => '',
-  'title' => '',
-  'cache' => '-1',
-))
-->values(array(
-  'bid' => '7',
-  'module' => 'node',
-  'delta' => '0',
-  'theme' => 'garland',
-  'status' => '0',
-  'weight' => '-7',
-  'region' => '',
-  'custom' => '0',
-  'throttle' => '0',
-  'visibility' => '0',
-  'pages' => '',
-  'title' => '',
-  'cache' => '-1',
-))
-->values(array(
-  'bid' => '8',
-  'module' => 'user',
-  'delta' => '2',
-  'theme' => 'garland',
-  'status' => '1',
-  'weight' => '-11',
-  'region' => 'right',
-  'custom' => '0',
-  'throttle' => '0',
-  'visibility' => '0',
-  'pages' => '',
-  'title' => '',
-  'cache' => '1',
-))
-->values(array(
-  'bid' => '9',
-  'module' => 'user',
-  'delta' => '3',
-  'theme' => 'garland',
-  'status' => '1',
-  'weight' => '-10',
-  'region' => 'right',
-  'custom' => '0',
-  'throttle' => '0',
-  'visibility' => '0',
-  'pages' => '',
-  'title' => '',
-  'cache' => '-1',
-))
-->values(array(
-  'bid' => '16',
-  'module' => 'profile',
-  'delta' => '0',
-  'theme' => 'garland',
-  'status' => '0',
-  'weight' => '-5',
-  'region' => '',
-  'custom' => '0',
-  'throttle' => '0',
-  'visibility' => '0',
-  'pages' => '',
-  'title' => '',
-  'cache' => '5',
-))
-->values(array(
-  'bid' => '17',
-  'module' => 'event',
-  'delta' => '0',
-  'theme' => 'garland',
-  'status' => '0',
-  'weight' => '-3',
-  'region' => '',
-  'custom' => '0',
-  'throttle' => '0',
-  'visibility' => '0',
-  'pages' => '',
-  'title' => '',
-  'cache' => '1',
-))
-->values(array(
-  'bid' => '18',
-  'module' => 'event',
-  'delta' => '1',
-  'theme' => 'garland',
-  'status' => '0',
-  'weight' => '0',
-  'region' => '',
-  'custom' => '0',
-  'throttle' => '0',
-  'visibility' => '0',
-  'pages' => '',
-  'title' => '',
-  'cache' => '1',
-))
-->values(array(
-  'bid' => '19',
-  'module' => 'event',
-  'delta' => 'event-upcoming-event',
-  'theme' => 'garland',
-  'status' => '0',
-  'weight' => '-1',
-  'region' => '',
-  'custom' => '0',
-  'throttle' => '0',
-  'visibility' => '0',
-  'pages' => '',
-  'title' => '',
-  'cache' => '1',
-))
-->values(array(
-  'bid' => '20',
-  'module' => 'book',
-  'delta' => '0',
-  'theme' => 'garland',
-  'status' => '1',
-  'weight' => '-4',
-  'region' => 'right',
-  'custom' => '0',
-  'throttle' => '0',
-  'visibility' => '0',
-  'pages' => '',
-  'title' => '',
-  'cache' => '5',
-))
-->values(array(
-  'bid' => '21',
-  'module' => 'locale',
-  'delta' => '0',
-  'theme' => 'garland',
-  'status' => '0',
-  'weight' => '0',
-  'region' => '',
-  'custom' => '0',
-  'throttle' => '0',
-  'visibility' => '0',
-  'pages' => '',
-  'title' => '',
-  'cache' => '-1',
-))
-->values(array(
-  'bid' => '22',
-  'module' => 'forum',
-  'delta' => '0',
-  'theme' => 'garland',
-  'status' => '1',
-  'weight' => '-8',
-  'region' => 'left',
-  'custom' => '0',
-  'throttle' => '0',
-  'visibility' => '0',
-  'pages' => '',
-  'title' => '',
-  'cache' => '1',
-))
-->values(array(
-  'bid' => '23',
-  'module' => 'forum',
-  'delta' => '1',
-  'theme' => 'garland',
-  'status' => '1',
-  'weight' => '-9',
-  'region' => 'left',
-  'custom' => '0',
-  'throttle' => '0',
-  'visibility' => '0',
-  'pages' => '',
-  'title' => '',
-  'cache' => '1',
-))
-->values(array(
-  'bid' => '24',
-  'module' => 'statistics',
-  'delta' => '0',
-  'theme' => 'garland',
-  'status' => '1',
-  'weight' => '0',
-  'region' => 'right',
-  'custom' => '0',
-  'throttle' => '0',
-  'visibility' => '0',
-  'pages' => '',
-  'title' => '',
-  'cache' => '-1',
-))
-->values(array(
-  'bid' => '25',
-  'module' => 'search',
-  'delta' => '0',
-  'theme' => 'garland',
-  'status' => '0',
-  'weight' => '0',
-  'region' => '',
-  'custom' => '0',
-  'throttle' => '0',
-  'visibility' => '0',
-  'pages' => '',
-  'title' => '',
-  'cache' => '-1',
-))
-->execute();
-$connection->schema()->createTable('blocks_roles', array(
-  'fields' => array(
-    'module' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '64',
-    ),
-    'delta' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '32',
-    ),
-    'rid' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-  ),
-  'primary key' => array(
-    'module',
-    'delta',
-    'rid',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->insert('blocks_roles')
-->fields(array(
-  'module',
-  'delta',
-  'rid',
-))
-->values(array(
-  'module' => 'user',
-  'delta' => '2',
-  'rid' => '2',
-))
-->values(array(
-  'module' => 'user',
-  'delta' => '3',
-  'rid' => '3',
-))
-->execute();
-$connection->schema()->createTable('boxes', array(
-  'fields' => array(
-    'bid' => array(
-      'type' => 'serial',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-    'body' => array(
-      'type' => 'text',
-      'not null' => FALSE,
-      'size' => 'normal',
-    ),
-    'info' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '128',
-      'default' => '',
-    ),
-    'format' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-  ),
-  'primary key' => array(
-    'bid',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->schema()->createTable('cache', array(
-  'fields' => array(
-    'cid' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'data' => array(
-      'type' => 'blob',
-      'not null' => FALSE,
-      'size' => 'big',
-    ),
-    'expire' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'created' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'headers' => array(
-      'type' => 'text',
-      'not null' => FALSE,
-      'size' => 'normal',
-    ),
-    'serialized' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-  ),
-  'primary key' => array(
-    'cid',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->schema()->createTable('cache_block', array(
-  'fields' => array(
-    'cid' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'data' => array(
-      'type' => 'blob',
-      'not null' => FALSE,
-      'size' => 'big',
-    ),
-    'expire' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'created' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'headers' => array(
-      'type' => 'text',
-      'not null' => FALSE,
-      'size' => 'normal',
-    ),
-    'serialized' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-  ),
-  'primary key' => array(
-    'cid',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->schema()->createTable('cache_bootstrap', array(
-  'fields' => array(
-    'cid' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'data' => array(
-      'type' => 'blob',
-      'not null' => FALSE,
-      'size' => 'big',
-    ),
-    'expire' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'created' => array(
-      'type' => 'numeric',
-      'not null' => TRUE,
-      'precision' => '14',
-      'scale' => '3',
-      'default' => '0.000',
-    ),
-    'serialized' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'tags' => array(
-      'type' => 'text',
-      'not null' => FALSE,
-      'size' => 'normal',
-    ),
-    'checksum_invalidations' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'checksum_deletions' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-  ),
-  'primary key' => array(
-    'cid',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->schema()->createTable('cache_config', array(
-  'fields' => array(
-    'cid' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'data' => array(
-      'type' => 'blob',
-      'not null' => FALSE,
-      'size' => 'big',
-    ),
-    'expire' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'created' => array(
-      'type' => 'numeric',
-      'not null' => TRUE,
-      'precision' => '14',
-      'scale' => '3',
-      'default' => '0.000',
-    ),
-    'serialized' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'tags' => array(
-      'type' => 'text',
-      'not null' => FALSE,
-      'size' => 'normal',
-    ),
-    'checksum_invalidations' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'checksum_deletions' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-  ),
-  'primary key' => array(
-    'cid',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->schema()->createTable('cache_content', array(
-  'fields' => array(
-    'cid' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'data' => array(
-      'type' => 'blob',
-      'not null' => FALSE,
-      'size' => 'big',
-    ),
-    'expire' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'created' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'headers' => array(
-      'type' => 'text',
-      'not null' => FALSE,
-      'size' => 'normal',
-    ),
-    'serialized' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-  ),
-  'primary key' => array(
-    'cid',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->schema()->createTable('cache_discovery', array(
-  'fields' => array(
-    'cid' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'data' => array(
-      'type' => 'blob',
-      'not null' => FALSE,
-      'size' => 'big',
-    ),
-    'expire' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'created' => array(
-      'type' => 'numeric',
-      'not null' => TRUE,
-      'precision' => '14',
-      'scale' => '3',
-      'default' => '0.000',
-    ),
-    'serialized' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'tags' => array(
-      'type' => 'text',
-      'not null' => FALSE,
-      'size' => 'normal',
-    ),
-    'checksum_invalidations' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'checksum_deletions' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-  ),
-  'primary key' => array(
-    'cid',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->schema()->createTable('cache_filter', array(
-  'fields' => array(
-    'cid' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'data' => array(
-      'type' => 'blob',
-      'not null' => FALSE,
-      'size' => 'big',
-    ),
-    'expire' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'created' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'headers' => array(
-      'type' => 'text',
-      'not null' => FALSE,
-      'size' => 'normal',
-    ),
-    'serialized' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-  ),
-  'primary key' => array(
-    'cid',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->schema()->createTable('cache_form', array(
-  'fields' => array(
-    'cid' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'data' => array(
-      'type' => 'blob',
-      'not null' => FALSE,
-      'size' => 'big',
-    ),
-    'expire' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'created' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'headers' => array(
-      'type' => 'text',
-      'not null' => FALSE,
-      'size' => 'normal',
-    ),
-    'serialized' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-  ),
-  'primary key' => array(
-    'cid',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->schema()->createTable('cache_menu', array(
-  'fields' => array(
-    'cid' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'data' => array(
-      'type' => 'blob',
-      'not null' => FALSE,
-      'size' => 'big',
-    ),
-    'expire' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'created' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'headers' => array(
-      'type' => 'text',
-      'not null' => FALSE,
-      'size' => 'normal',
-    ),
-    'serialized' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-  ),
-  'primary key' => array(
-    'cid',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->schema()->createTable('cache_page', array(
-  'fields' => array(
-    'cid' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'data' => array(
-      'type' => 'blob',
-      'not null' => FALSE,
-      'size' => 'big',
-    ),
-    'expire' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'created' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'headers' => array(
-      'type' => 'text',
-      'not null' => FALSE,
-      'size' => 'normal',
-    ),
-    'serialized' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-  ),
-  'primary key' => array(
-    'cid',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->schema()->createTable('cachetags', array(
-  'fields' => array(
-    'tag' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'invalidations' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'deletions' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-  ),
-  'primary key' => array(
-    'tag',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->schema()->createTable('comments', array(
-  'fields' => array(
-    'cid' => array(
-      'type' => 'serial',
-      'not null' => TRUE,
-      'size' => 'normal',
-    ),
-    'pid' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'nid' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'uid' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'subject' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '64',
-      'default' => '',
-    ),
-    'comment' => array(
-      'type' => 'text',
-      'not null' => TRUE,
-      'size' => 'normal',
-    ),
-    'hostname' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '128',
-      'default' => '',
-    ),
-    'timestamp' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'status' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-    'format' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'thread' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-    ),
-    'name' => array(
-      'type' => 'varchar',
-      'not null' => FALSE,
-      'length' => '60',
-    ),
-    'mail' => array(
-      'type' => 'varchar',
-      'not null' => FALSE,
-      'length' => '64',
-    ),
-    'homepage' => array(
-      'type' => 'varchar',
-      'not null' => FALSE,
-      'length' => '255',
-    ),
-  ),
-  'primary key' => array(
-    'cid',
-  ),
-  'indexes' => array(
-    'pid' => array(
-      'pid',
-    ),
-    'comment_uid' => array(
-      'uid',
-    ),
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->insert('comments')
-->fields(array(
-  'cid',
-  'pid',
-  'nid',
-  'uid',
-  'subject',
-  'comment',
-  'hostname',
-  'timestamp',
-  'status',
-  'format',
-  'thread',
-  'name',
-  'mail',
-  'homepage',
-))
-->values(array(
-  'cid' => '4',
-  'pid' => '0',
-  'nid' => '19',
-  'uid' => '1',
-  'subject' => 'Subject 1',
-  'comment' => 'Comment 1',
-  'hostname' => '127.0.0.1',
-  'timestamp' => '1501955780',
-  'status' => '0',
-  'format' => '1',
-  'thread' => '01/',
-  'name' => 'root',
-  'mail' => '',
-  'homepage' => '',
-))
-->values(array(
-  'cid' => '5',
-  'pid' => '4',
-  'nid' => '19',
-  'uid' => '1',
-  'subject' => 'Subject 2',
-  'comment' => 'Comment 2',
-  'hostname' => '127.0.0.1',
-  'timestamp' => '1501955792',
-  'status' => '0',
-  'format' => '1',
-  'thread' => '01.00/',
-  'name' => 'root',
-  'mail' => '',
-  'homepage' => '',
-))
-->values(array(
-  'cid' => '6',
-  'pid' => '5',
-  'nid' => '19',
-  'uid' => '1',
-  'subject' => 'Subject 3',
-  'comment' => 'Comment 3',
-  'hostname' => '127.0.0.1',
-  'timestamp' => '1501955803',
-  'status' => '0',
-  'format' => '1',
-  'thread' => '01.00.00/',
-  'name' => 'root',
-  'mail' => '',
-  'homepage' => '',
-))
-->execute();
-$connection->schema()->createTable('config', array(
-  'fields' => array(
-    'collection' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'name' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'data' => array(
-      'type' => 'blob',
-      'not null' => FALSE,
-      'size' => 'normal',
-    ),
-  ),
-  'primary key' => array(
-    'collection',
-    'name',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->insert('config')
-->fields(array(
-  'collection',
-  'name',
-  'data',
-))
-->values(array(
-  'collection' => '',
-  'name' => 'system.file',
-  'data' => 'a:1:{s:4:"path";a:1:{s:9:"temporary";s:4:"/tmp";}}',
-))
-->execute();
-$connection->schema()->createTable('content_field_company', array(
-  'fields' => array(
-    'vid' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-    'nid' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-    'delta' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-    'field_company_nid' => array(
-      'type' => 'int',
-      'not null' => FALSE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-  ),
-  'primary key' => array(
-    'vid',
-    'delta',
-  ),
-  'indexes' => array(
-    'nid' => array(
-      'nid',
-    ),
-    'field_company_nid' => array(
-      'field_company_nid',
-    ),
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->schema()->createTable('content_field_image', array(
-  'fields' => array(
-    'vid' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-    'nid' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-    'field_image_fid' => array(
-      'type' => 'int',
-      'not null' => FALSE,
-      'size' => 'normal',
-    ),
-    'field_image_list' => array(
-      'type' => 'int',
-      'not null' => FALSE,
-      'size' => 'normal',
-    ),
-    'field_image_data' => array(
-      'type' => 'text',
-      'not null' => FALSE,
-      'size' => 'normal',
-    ),
-  ),
-  'primary key' => array(
-    'vid',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->insert('content_field_image')
-->fields(array(
-  'vid',
-  'nid',
-  'field_image_fid',
-  'field_image_list',
-  'field_image_data',
-))
-->values(array(
-  'vid' => '1',
-  'nid' => '1',
-  'field_image_fid' => '2',
-  'field_image_list' => '1',
-  'field_image_data' => 'a:2:{s:3:"alt";s:0:"";s:5:"title";s:0:"";}',
-))
-->values(array(
-  'vid' => '2',
-  'nid' => '2',
-  'field_image_fid' => NULL,
-  'field_image_list' => NULL,
-  'field_image_data' => NULL,
-))
-->values(array(
-  'vid' => '3',
-  'nid' => '1',
-  'field_image_fid' => '2',
-  'field_image_list' => '1',
-  'field_image_data' => 'a:2:{s:3:"alt";s:0:"";s:5:"title";s:0:"";}',
-))
-->values(array(
-  'vid' => '5',
-  'nid' => '1',
-  'field_image_fid' => '2',
-  'field_image_list' => '1',
-  'field_image_data' => 'a:2:{s:3:"alt";s:0:"";s:5:"title";s:0:"";}',
-))
-->values(array(
-  'vid' => '2001',
-  'nid' => '1',
-  'field_image_fid' => '2',
-  'field_image_list' => '1',
-  'field_image_data' => 'a:2:{s:3:"alt";s:0:"";s:5:"title";s:0:"";}',
-))
-->execute();
-$connection->schema()->createTable('content_group', array(
-  'fields' => array(
-    'group_type' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '32',
-      'default' => 'standard',
-    ),
-    'type_name' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '32',
-      'default' => '',
-    ),
-    'group_name' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '32',
-      'default' => '',
-    ),
-    'label' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'settings' => array(
-      'type' => 'text',
-      'not null' => TRUE,
-      'size' => 'normal',
-    ),
-    'weight' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-  ),
-  'primary key' => array(
-    'type_name',
-    'group_name',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->schema()->createTable('content_group_fields', array(
-  'fields' => array(
-    'type_name' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '32',
-      'default' => '',
-    ),
-    'group_name' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '32',
-      'default' => '',
-    ),
-    'field_name' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '32',
-      'default' => '',
-    ),
-  ),
-  'primary key' => array(
-    'type_name',
-    'group_name',
-    'field_name',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->schema()->createTable('content_node_field', array(
-  'fields' => array(
-    'field_name' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '32',
-      'default' => '',
-    ),
-    'type' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '127',
-      'default' => '',
-    ),
-    'global_settings' => array(
-      'type' => 'text',
-      'not null' => TRUE,
-      'size' => 'normal',
-    ),
-    'required' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'multiple' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'db_storage' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '1',
-    ),
-    'module' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '127',
-      'default' => '',
-    ),
-    'db_columns' => array(
-      'type' => 'text',
-      'not null' => TRUE,
-      'size' => 'normal',
-    ),
-    'active' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'locked' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'tiny',
-      'default' => '0',
-    ),
-  ),
-  'primary key' => array(
-    'field_name',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->insert('content_node_field')
-->fields(array(
-  'field_name',
-  'type',
-  'global_settings',
-  'required',
-  'multiple',
-  'db_storage',
-  'module',
-  'db_columns',
-  'active',
-  'locked',
-))
-->values(array(
-  'field_name' => 'field_commander',
-  'type' => 'userreference',
-  'global_settings' => 'a:2:{s:19:"referenceable_roles";a:4:{i:2;i:2;i:3;i:0;i:4;i:0;i:5;i:0;}s:20:"referenceable_status";s:0:"";}',
-  'required' => '0',
-  'multiple' => '0',
-  'db_storage' => '1',
-  'module' => 'userreference',
-  'db_columns' => 'a:1:{s:3:"uid";a:4:{s:4:"type";s:3:"int";s:8:"unsigned";b:1;s:8:"not null";b:0;s:5:"index";b:1;}}',
-  'active' => '0',
-  'locked' => '0',
-))
-->values(array(
-  'field_name' => 'field_company',
-  'type' => 'nodereference',
-  'global_settings' => 'a:1:{s:19:"referenceable_types";a:10:{s:7:"company";s:7:"company";s:7:"article";i:0;s:8:"employee";i:0;s:5:"forum";i:0;s:10:"test_event";i:0;s:9:"test_page";i:0;s:11:"test_planet";i:0;s:10:"test_story";i:0;s:7:"sponsor";i:0;s:5:"story";i:0;}}',
-  'required' => '0',
-  'multiple' => '1',
-  'db_storage' => '0',
-  'module' => 'nodereference',
-  'db_columns' => 'a:1:{s:3:"nid";a:4:{s:4:"type";s:3:"int";s:8:"unsigned";b:1;s:8:"not null";b:0;s:5:"index";b:1;}}',
-  'active' => '0',
-  'locked' => '0',
-))
-->values(array(
-  'field_name' => 'field_company_2',
-  'type' => 'nodereference',
-  'global_settings' => 'a:1:{s:19:"referenceable_types";a:10:{s:7:"company";s:7:"company";s:7:"article";i:0;s:8:"employee";i:0;s:5:"forum";i:0;s:10:"test_event";i:0;s:9:"test_page";i:0;s:11:"test_planet";i:0;s:10:"test_story";i:0;s:7:"sponsor";i:0;s:5:"story";i:0;}}',
-  'required' => '0',
-  'multiple' => '0',
-  'db_storage' => '1',
-  'module' => 'nodereference',
-  'db_columns' => 'a:1:{s:3:"nid";a:4:{s:4:"type";s:3:"int";s:8:"unsigned";b:1;s:8:"not null";b:0;s:5:"index";b:1;}}',
-  'active' => '0',
-  'locked' => '0',
-))
-->values(array(
-  'field_name' => 'field_company_3',
-  'type' => 'nodereference',
-  'global_settings' => 'a:1:{s:19:"referenceable_types";a:10:{s:7:"company";s:7:"company";s:7:"article";i:0;s:8:"employee";i:0;s:5:"forum";i:0;s:10:"test_event";i:0;s:9:"test_page";i:0;s:11:"test_planet";i:0;s:10:"test_story";i:0;s:7:"sponsor";i:0;s:5:"story";i:0;}}',
-  'required' => '0',
-  'multiple' => '0',
-  'db_storage' => '1',
-  'module' => 'nodereference',
-  'db_columns' => 'a:1:{s:3:"nid";a:4:{s:4:"type";s:3:"int";s:8:"unsigned";b:1;s:8:"not null";b:0;s:5:"index";b:1;}}',
-  'active' => '0',
-  'locked' => '0',
-))
-->values(array(
-  'field_name' => 'field_forums',
-  'type' => 'text',
-  'global_settings' => 'a:4:{s:15:"text_processing";s:1:"0";s:10:"max_length";s:0:"";s:14:"allowed_values";s:0:"";s:18:"allowed_values_php";s:0:"";}',
-  'required' => '0',
-  'multiple' => '0',
-  'db_storage' => '1',
-  'module' => 'text',
-  'db_columns' => 'a:1:{s:5:"value";a:5:{s:4:"type";s:4:"text";s:4:"size";s:3:"big";s:8:"not null";b:0;s:8:"sortable";b:1;s:5:"views";b:1;}}',
-  'active' => '1',
-  'locked' => '0',
-))
-->values(array(
-  'field_name' => 'field_sync',
-  'type' => 'email',
-  'global_settings' => 'a:0:{}',
-  'required' => '0',
-  'multiple' => '0',
-  'db_storage' => '1',
-  'module' => 'email',
-  'db_columns' => 'a:1:{s:5:"email";a:4:{s:4:"type";s:7:"varchar";s:6:"length";i:255;s:8:"not null";b:0;s:8:"sortable";b:1;}}',
-  'active' => '1',
-  'locked' => '0',
-))
-->execute();
-$connection->schema()->createTable('content_node_field_instance', array(
-  'fields' => array(
-    'field_name' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '32',
-      'default' => '',
-    ),
-    'type_name' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '32',
-      'default' => '',
-    ),
-    'weight' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'label' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'widget_type' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '32',
-      'default' => '',
-    ),
-    'widget_settings' => array(
-      'type' => 'text',
-      'not null' => TRUE,
-      'size' => 'normal',
-    ),
-    'display_settings' => array(
-      'type' => 'text',
-      'not null' => TRUE,
-      'size' => 'normal',
-    ),
-    'description' => array(
-      'type' => 'text',
-      'not null' => TRUE,
-      'size' => 'normal',
-    ),
-    'widget_module' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '127',
-      'default' => '',
-    ),
-    'widget_active' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-  ),
-  'primary key' => array(
-    'field_name',
-    'type_name',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->insert('content_node_field_instance')
-->fields(array(
-  'field_name',
-  'type_name',
-  'weight',
-  'label',
-  'widget_type',
-  'widget_settings',
-  'display_settings',
-  'description',
-  'widget_module',
-  'widget_active',
-))
-->values(array(
-  'field_name' => 'field_commander',
-  'type_name' => 'employee',
-  'weight' => '32',
-  'label' => 'Commanding Officer',
-  'widget_type' => 'userreference_select',
-  'widget_settings' => 'a:5:{s:18:"autocomplete_match";s:8:"contains";s:4:"size";i:60;s:12:"reverse_link";i:0;s:13:"default_value";a:1:{i:0;a:1:{s:3:"uid";s:0:"";}}s:17:"default_value_php";N;}',
-  'display_settings' => 'a:5:{s:5:"label";a:2:{s:6:"format";s:5:"above";s:7:"exclude";i:0;}i:5;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:6:"teaser";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:4:"full";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}i:4;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}}',
-  'description' => '',
-  'widget_module' => 'userreference',
-  'widget_active' => '0',
-))
-->values(array(
-  'field_name' => 'field_company',
-  'type_name' => 'employee',
-  'weight' => '31',
-  'label' => 'Company',
-  'widget_type' => 'nodereference_select',
-  'widget_settings' => 'a:4:{s:18:"autocomplete_match";s:8:"contains";s:4:"size";i:60;s:13:"default_value";a:1:{i:0;a:1:{s:3:"nid";s:0:"";}}s:17:"default_value_php";N;}',
-  'display_settings' => 'a:5:{s:5:"label";a:2:{s:6:"format";s:5:"above";s:7:"exclude";i:0;}i:5;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:6:"teaser";a:2:{s:6:"format";s:5:"plain";s:7:"exclude";i:0;}s:4:"full";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}i:4;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}}',
-  'description' => '',
-  'widget_module' => 'nodereference',
-  'widget_active' => '0',
-))
-->values(array(
-  'field_name' => 'field_company_2',
-  'type_name' => 'employee',
-  'weight' => '33',
-  'label' => 'Company 2',
-  'widget_type' => 'nodereference_buttons',
-  'widget_settings' => 'a:4:{s:18:"autocomplete_match";s:8:"contains";s:4:"size";i:60;s:13:"default_value";a:1:{i:0;a:1:{s:3:"nid";s:0:"";}}s:17:"default_value_php";N;}',
-  'display_settings' => 'a:5:{s:5:"label";a:2:{s:6:"format";s:5:"above";s:7:"exclude";i:0;}i:5;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:6:"teaser";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:4:"full";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}i:4;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}}',
-  'description' => '',
-  'widget_module' => 'nodereference',
-  'widget_active' => '0',
-))
-->values(array(
-  'field_name' => 'field_company_3',
-  'type_name' => 'employee',
-  'weight' => '34',
-  'label' => 'Company 3',
-  'widget_type' => 'nodereference_autocomplete',
-  'widget_settings' => 'a:4:{s:18:"autocomplete_match";s:8:"contains";s:4:"size";s:2:"60";s:13:"default_value";a:1:{i:0;a:2:{s:3:"nid";N;s:14:"_error_element";s:50:"default_value_widget][field_company_3][0][nid][nid";}}s:17:"default_value_php";N;}',
-  'display_settings' => 'a:5:{s:5:"label";a:2:{s:6:"format";s:5:"above";s:7:"exclude";i:0;}i:5;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:6:"teaser";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:4:"full";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}i:4;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}}',
-  'description' => '',
-  'widget_module' => 'nodereference',
-  'widget_active' => '0',
-))
-->values(array(
-  'field_name' => 'field_forums',
-  'type_name' => 'forum',
-  'weight' => '31',
-  'label' => 'forums',
-  'widget_type' => 'text_textfield',
-  'widget_settings' => 'a:4:{s:4:"rows";i:5;s:4:"size";s:2:"60";s:13:"default_value";a:1:{i:0;a:2:{s:5:"value";s:0:"";s:14:"_error_element";s:44:"default_value_widget][field_forums][0][value";}}s:17:"default_value_php";N;}',
-  'display_settings' => 'a:6:{s:5:"label";a:2:{s:6:"format";s:5:"above";s:7:"exclude";i:0;}s:6:"teaser";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:4:"full";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}i:4;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}i:2;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}i:3;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}}',
-  'description' => '',
-  'widget_module' => 'text',
-  'widget_active' => '1',
-))
-->values(array(
-  'field_name' => 'field_sync',
-  'type_name' => 'employee',
-  'weight' => '35',
-  'label' => 'email_sync',
-  'widget_type' => 'email_textfield',
-  'widget_settings' => 'a:3:{s:4:"size";s:2:"60";s:13:"default_value";a:1:{i:0;a:1:{s:5:"email";s:0:"";}}s:17:"default_value_php";N;}',
-  'display_settings' => 'a:7:{s:5:"label";a:2:{s:6:"format";s:5:"above";s:7:"exclude";i:0;}i:5;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:6:"teaser";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:4:"full";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}i:4;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}i:2;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}i:3;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}}',
-  'description' => '',
-  'widget_module' => 'email',
-  'widget_active' => '1',
-))
-->execute();
-$connection->schema()->createTable('content_type_employee', array(
-  'fields' => array(
-    'vid' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-    'nid' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-    'field_commander_uid' => array(
-      'type' => 'int',
-      'not null' => FALSE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-    'field_company_2_nid' => array(
-      'type' => 'int',
-      'not null' => FALSE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-    'field_company_3_nid' => array(
-      'type' => 'int',
-      'not null' => FALSE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-    'field_sync_email' => array(
-      'type' => 'varchar',
-      'not null' => FALSE,
-      'length' => '255',
-    ),
-  ),
-  'primary key' => array(
-    'vid',
-  ),
-  'indexes' => array(
-    'nid' => array(
-      'nid',
-    ),
-    'field_commander_uid' => array(
-      'field_commander_uid',
-    ),
-    'field_company_2_nid' => array(
-      'field_company_2_nid',
-    ),
-    'field_company_3_nid' => array(
-      'field_company_3_nid',
-    ),
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->schema()->createTable('content_type_forum', array(
-  'fields' => array(
-    'vid' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-    'nid' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-    'field_forums_value' => array(
-      'type' => 'text',
-      'not null' => FALSE,
-      'size' => 'big',
-    ),
-  ),
-  'primary key' => array(
-    'vid',
-  ),
-  'indexes' => array(
-    'nid' => array(
-      'nid',
-    ),
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->insert('content_type_forum')
-->fields(array(
-  'vid',
-  'nid',
-  'field_forums_value',
-))
-->values(array(
-  'vid' => '23',
-  'nid' => '20',
-  'field_forums_value' => 'green',
-))
-->execute();
-$connection->schema()->createTable('date_format_locale', array(
-  'fields' => array(
-    'format' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '100',
-    ),
-    'type' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '200',
-    ),
-    'language' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '12',
-    ),
-  ),
-  'primary key' => array(
-    'type',
-    'language',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->schema()->createTable('date_format_types', array(
-  'fields' => array(
-    'type' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '200',
-    ),
-    'title' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-    ),
-    'locked' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-  ),
-  'primary key' => array(
-    'type',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->insert('date_format_types')
-->fields(array(
-  'type',
-  'title',
-  'locked',
-))
-->values(array(
-  'type' => 'long',
-  'title' => 'Long',
-  'locked' => '1',
-))
-->values(array(
-  'type' => 'medium',
-  'title' => 'Medium',
-  'locked' => '1',
-))
-->values(array(
-  'type' => 'short',
-  'title' => 'Short',
-  'locked' => '1',
-))
-->execute();
-$connection->schema()->createTable('date_formats', array(
-  'fields' => array(
-    'dfid' => array(
-      'type' => 'serial',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-    'format' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '100',
-    ),
-    'type' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '200',
-    ),
-    'locked' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-  ),
-  'primary key' => array(
-    'dfid',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->insert('date_formats')
-->fields(array(
-  'dfid',
-  'format',
-  'type',
-  'locked',
-))
-->values(array(
-  'dfid' => '1',
-  'format' => 'Y-m-d H:i',
-  'type' => 'short',
-  'locked' => '1',
-))
-->values(array(
-  'dfid' => '2',
-  'format' => 'm/d/Y - H:i',
-  'type' => 'short',
-  'locked' => '1',
-))
-->values(array(
-  'dfid' => '3',
-  'format' => 'd/m/Y - H:i',
-  'type' => 'short',
-  'locked' => '1',
-))
-->values(array(
-  'dfid' => '4',
-  'format' => 'Y/m/d - H:i',
-  'type' => 'short',
-  'locked' => '1',
-))
-->values(array(
-  'dfid' => '5',
-  'format' => 'd.m.Y - H:i',
-  'type' => 'short',
-  'locked' => '1',
-))
-->values(array(
-  'dfid' => '6',
-  'format' => 'm/d/Y - g:ia',
-  'type' => 'short',
-  'locked' => '1',
-))
-->values(array(
-  'dfid' => '7',
-  'format' => 'd/m/Y - g:ia',
-  'type' => 'short',
-  'locked' => '1',
-))
-->values(array(
-  'dfid' => '8',
-  'format' => 'Y/m/d - g:ia',
-  'type' => 'short',
-  'locked' => '1',
-))
-->values(array(
-  'dfid' => '9',
-  'format' => 'M j Y - H:i',
-  'type' => 'short',
-  'locked' => '1',
-))
-->values(array(
-  'dfid' => '10',
-  'format' => 'j M Y - H:i',
-  'type' => 'short',
-  'locked' => '1',
-))
-->values(array(
-  'dfid' => '11',
-  'format' => 'Y M j - H:i',
-  'type' => 'short',
-  'locked' => '1',
-))
-->values(array(
-  'dfid' => '12',
-  'format' => 'M j Y - g:ia',
-  'type' => 'short',
-  'locked' => '1',
-))
-->values(array(
-  'dfid' => '13',
-  'format' => 'j M Y - g:ia',
-  'type' => 'short',
-  'locked' => '1',
-))
-->values(array(
-  'dfid' => '14',
-  'format' => 'Y M j - g:ia',
-  'type' => 'short',
-  'locked' => '1',
-))
-->values(array(
-  'dfid' => '15',
-  'format' => 'D, Y-m-d H:i',
-  'type' => 'medium',
-  'locked' => '1',
-))
-->values(array(
-  'dfid' => '16',
-  'format' => 'D, m/d/Y - H:i',
-  'type' => 'medium',
-  'locked' => '1',
-))
-->values(array(
-  'dfid' => '17',
-  'format' => 'D, d/m/Y - H:i',
-  'type' => 'medium',
-  'locked' => '1',
-))
-->values(array(
-  'dfid' => '18',
-  'format' => 'D, Y/m/d - H:i',
-  'type' => 'medium',
-  'locked' => '1',
-))
-->values(array(
-  'dfid' => '19',
-  'format' => 'F j, Y - H:i',
-  'type' => 'medium',
-  'locked' => '1',
-))
-->values(array(
-  'dfid' => '20',
-  'format' => 'j F, Y - H:i',
-  'type' => 'medium',
-  'locked' => '1',
-))
-->values(array(
-  'dfid' => '21',
-  'format' => 'Y, F j - H:i',
-  'type' => 'medium',
-  'locked' => '1',
-))
-->values(array(
-  'dfid' => '22',
-  'format' => 'D, m/d/Y - g:ia',
-  'type' => 'medium',
-  'locked' => '1',
-))
-->values(array(
-  'dfid' => '23',
-  'format' => 'D, d/m/Y - g:ia',
-  'type' => 'medium',
-  'locked' => '1',
-))
-->values(array(
-  'dfid' => '24',
-  'format' => 'D, Y/m/d - g:ia',
-  'type' => 'medium',
-  'locked' => '1',
-))
-->values(array(
-  'dfid' => '25',
-  'format' => 'F j, Y - g:ia',
-  'type' => 'medium',
-  'locked' => '1',
-))
-->values(array(
-  'dfid' => '26',
-  'format' => 'j F Y - g:ia',
-  'type' => 'medium',
-  'locked' => '1',
-))
-->values(array(
-  'dfid' => '27',
-  'format' => 'Y, F j - g:ia',
-  'type' => 'medium',
-  'locked' => '1',
-))
-->values(array(
-  'dfid' => '28',
-  'format' => 'j. F Y - G:i',
-  'type' => 'medium',
-  'locked' => '1',
-))
-->values(array(
-  'dfid' => '29',
-  'format' => 'l, F j, Y - H:i',
-  'type' => 'long',
-  'locked' => '1',
-))
-->values(array(
-  'dfid' => '30',
-  'format' => 'l, j F, Y - H:i',
-  'type' => 'long',
-  'locked' => '1',
-))
-->values(array(
-  'dfid' => '31',
-  'format' => 'l, Y,  F j - H:i',
-  'type' => 'long',
-  'locked' => '1',
-))
-->values(array(
-  'dfid' => '32',
-  'format' => 'l, F j, Y - g:ia',
-  'type' => 'long',
-  'locked' => '1',
-))
-->values(array(
-  'dfid' => '33',
-  'format' => 'l, j F Y - g:ia',
-  'type' => 'long',
-  'locked' => '1',
-))
-->values(array(
-  'dfid' => '34',
-  'format' => 'l, Y,  F j - g:ia',
-  'type' => 'long',
-  'locked' => '1',
-))
-->values(array(
-  'dfid' => '35',
-  'format' => 'l, j. F Y - G:i',
-  'type' => 'long',
-  'locked' => '1',
-))
-->execute();
-$connection->schema()->createTable('event', array(
-  'fields' => array(
-    'nid' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-    'event_start' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '100',
-    ),
-    'event_end' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '100',
-    ),
-    'timezone' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'start_in_dst' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'end_in_dst' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'has_time' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '1',
-    ),
-    'has_end_date' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '1',
-    ),
-  ),
-  'primary key' => array(
-    'nid',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->schema()->createTable('event_timezones', array(
-  'fields' => array(
-    'timezone' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'name' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'offset' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '100',
-      'default' => '00:00:00',
-    ),
-    'offset_dst' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '100',
-      'default' => '00:00:00',
-    ),
-    'dst_region' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'is_dst' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-  ),
-  'primary key' => array(
-    'timezone',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->insert('event_timezones')
-->fields(array(
-  'timezone',
-  'name',
-  'offset',
-  'offset_dst',
-  'dst_region',
-  'is_dst',
-))
-->values(array(
-  'timezone' => '1',
-  'name' => 'Africa/Addis Ababa',
-  'offset' => '03:00:00',
-  'offset_dst' => '03:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '2',
-  'name' => 'Africa/Algiers',
-  'offset' => '01:00:00',
-  'offset_dst' => '01:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '3',
-  'name' => 'Africa/Asmera',
-  'offset' => '03:00:00',
-  'offset_dst' => '03:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '4',
-  'name' => 'Africa/Bangui',
-  'offset' => '01:00:00',
-  'offset_dst' => '01:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '5',
-  'name' => 'Africa/Blantyre',
-  'offset' => '02:00:00',
-  'offset_dst' => '02:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '6',
-  'name' => 'Africa/Brazzaville',
-  'offset' => '01:00:00',
-  'offset_dst' => '01:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '7',
-  'name' => 'Africa/Bujumbura',
-  'offset' => '02:00:00',
-  'offset_dst' => '02:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '8',
-  'name' => 'Africa/Cairo',
-  'offset' => '02:00:00',
-  'offset_dst' => '03:00:00',
-  'dst_region' => '1',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '9',
-  'name' => 'Africa/Ceuta',
-  'offset' => '01:00:00',
-  'offset_dst' => '02:00:00',
-  'dst_region' => '1',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '10',
-  'name' => 'Africa/Dar es Salaam',
-  'offset' => '03:00:00',
-  'offset_dst' => '03:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '11',
-  'name' => 'Africa/Djibouti',
-  'offset' => '03:00:00',
-  'offset_dst' => '03:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '12',
-  'name' => 'Africa/Douala',
-  'offset' => '01:00:00',
-  'offset_dst' => '01:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '13',
-  'name' => 'Africa/Gaborone',
-  'offset' => '02:00:00',
-  'offset_dst' => '02:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '14',
-  'name' => 'Africa/Harare',
-  'offset' => '02:00:00',
-  'offset_dst' => '02:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '15',
-  'name' => 'Africa/Johannesburg',
-  'offset' => '02:00:00',
-  'offset_dst' => '02:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '16',
-  'name' => 'Africa/Kampala',
-  'offset' => '03:00:00',
-  'offset_dst' => '03:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '17',
-  'name' => 'Africa/Khartoum',
-  'offset' => '03:00:00',
-  'offset_dst' => '03:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '18',
-  'name' => 'Africa/Kigali',
-  'offset' => '02:00:00',
-  'offset_dst' => '02:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '19',
-  'name' => 'Africa/Kinshasa',
-  'offset' => '01:00:00',
-  'offset_dst' => '01:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '20',
-  'name' => 'Africa/Lagos',
-  'offset' => '01:00:00',
-  'offset_dst' => '01:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '21',
-  'name' => 'Africa/Libreville',
-  'offset' => '01:00:00',
-  'offset_dst' => '01:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '22',
-  'name' => 'Africa/Luanda',
-  'offset' => '01:00:00',
-  'offset_dst' => '01:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '23',
-  'name' => 'Africa/Lubumbashi',
-  'offset' => '02:00:00',
-  'offset_dst' => '02:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '24',
-  'name' => 'Africa/Lusaka',
-  'offset' => '02:00:00',
-  'offset_dst' => '02:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '25',
-  'name' => 'Africa/Malabo',
-  'offset' => '01:00:00',
-  'offset_dst' => '01:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '26',
-  'name' => 'Africa/Maputo',
-  'offset' => '02:00:00',
-  'offset_dst' => '02:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '27',
-  'name' => 'Africa/Maseru',
-  'offset' => '02:00:00',
-  'offset_dst' => '02:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '28',
-  'name' => 'Africa/Mbabane',
-  'offset' => '02:00:00',
-  'offset_dst' => '02:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '29',
-  'name' => 'Africa/Mogadishu',
-  'offset' => '03:00:00',
-  'offset_dst' => '03:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '30',
-  'name' => 'Africa/Nairobi',
-  'offset' => '03:00:00',
-  'offset_dst' => '03:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '31',
-  'name' => 'Africa/Ndjamena',
-  'offset' => '01:00:00',
-  'offset_dst' => '01:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '32',
-  'name' => 'Africa/Niamey',
-  'offset' => '01:00:00',
-  'offset_dst' => '01:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '33',
-  'name' => 'Africa/Porto-Novo',
-  'offset' => '01:00:00',
-  'offset_dst' => '01:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '34',
-  'name' => 'Africa/Tripoli',
-  'offset' => '02:00:00',
-  'offset_dst' => '02:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '35',
-  'name' => 'Africa/Tunis',
-  'offset' => '01:00:00',
-  'offset_dst' => '01:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '36',
-  'name' => 'Africa/Windhoek',
-  'offset' => '02:00:00',
-  'offset_dst' => '01:00:00',
-  'dst_region' => '2',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '37',
-  'name' => 'America/Adak',
-  'offset' => '-10:00:00',
-  'offset_dst' => '-09:00:00',
-  'dst_region' => '15',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '38',
-  'name' => 'America/Anchorage',
-  'offset' => '-09:00:00',
-  'offset_dst' => '-08:00:00',
-  'dst_region' => '15',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '39',
-  'name' => 'America/Anguilla',
-  'offset' => '-04:00:00',
-  'offset_dst' => '-04:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '40',
-  'name' => 'America/Antigua',
-  'offset' => '-04:00:00',
-  'offset_dst' => '-04:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '41',
-  'name' => 'America/Araguaina',
-  'offset' => '-02:00:00',
-  'offset_dst' => '-03:00:00',
-  'dst_region' => '17',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '42',
-  'name' => 'America/Aruba',
-  'offset' => '-04:00:00',
-  'offset_dst' => '-04:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '43',
-  'name' => 'America/Asuncion',
-  'offset' => '-03:00:00',
-  'offset_dst' => '-04:00:00',
-  'dst_region' => '20',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '44',
-  'name' => 'America/Atka',
-  'offset' => '-10:00:00',
-  'offset_dst' => '-09:00:00',
-  'dst_region' => '15',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '45',
-  'name' => 'America/Barbados',
-  'offset' => '-04:00:00',
-  'offset_dst' => '-04:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '46',
-  'name' => 'America/Belem',
-  'offset' => '-03:00:00',
-  'offset_dst' => '-03:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '47',
-  'name' => 'America/Belize',
-  'offset' => '-06:00:00',
-  'offset_dst' => '-06:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '48',
-  'name' => 'America/Boa Vista',
-  'offset' => '-04:00:00',
-  'offset_dst' => '-04:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '49',
-  'name' => 'America/Bogota',
-  'offset' => '-05:00:00',
-  'offset_dst' => '-05:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '50',
-  'name' => 'America/Boise',
-  'offset' => '-07:00:00',
-  'offset_dst' => '-06:00:00',
-  'dst_region' => '15',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '51',
-  'name' => 'America/Buenos Aires',
-  'offset' => '-03:00:00',
-  'offset_dst' => '-03:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '52',
-  'name' => 'America/Cambridge Bay',
-  'offset' => '-07:00:00',
-  'offset_dst' => '-06:00:00',
-  'dst_region' => '15',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '53',
-  'name' => 'America/Cancun',
-  'offset' => '-06:00:00',
-  'offset_dst' => '-05:00:00',
-  'dst_region' => '15',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '54',
-  'name' => 'America/Caracas',
-  'offset' => '-04:00:00',
-  'offset_dst' => '-04:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '55',
-  'name' => 'America/Catamarca',
-  'offset' => '-03:00:00',
-  'offset_dst' => '-03:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '56',
-  'name' => 'America/Cayenne',
-  'offset' => '-03:00:00',
-  'offset_dst' => '-03:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '57',
-  'name' => 'America/Cayman',
-  'offset' => '-05:00:00',
-  'offset_dst' => '-05:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '58',
-  'name' => 'America/Chicago',
-  'offset' => '-06:00:00',
-  'offset_dst' => '-05:00:00',
-  'dst_region' => '15',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '59',
-  'name' => 'America/Chihuahua',
-  'offset' => '-07:00:00',
-  'offset_dst' => '-06:00:00',
-  'dst_region' => '15',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '60',
-  'name' => 'America/Cordoba',
-  'offset' => '-03:00:00',
-  'offset_dst' => '-03:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '61',
-  'name' => 'America/Costa Rica',
-  'offset' => '-06:00:00',
-  'offset_dst' => '-06:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '62',
-  'name' => 'America/Cuiaba',
-  'offset' => '-03:00:00',
-  'offset_dst' => '-04:00:00',
-  'dst_region' => '17',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '63',
-  'name' => 'America/Curacao',
-  'offset' => '-04:00:00',
-  'offset_dst' => '-04:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '64',
-  'name' => 'America/Dawson',
-  'offset' => '-08:00:00',
-  'offset_dst' => '-07:00:00',
-  'dst_region' => '15',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '65',
-  'name' => 'America/Dawson Creek',
-  'offset' => '-07:00:00',
-  'offset_dst' => '-07:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '66',
-  'name' => 'America/Denver',
-  'offset' => '-07:00:00',
-  'offset_dst' => '-06:00:00',
-  'dst_region' => '15',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '67',
-  'name' => 'America/Detroit',
-  'offset' => '-05:00:00',
-  'offset_dst' => '-04:00:00',
-  'dst_region' => '15',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '68',
-  'name' => 'America/Dominica',
-  'offset' => '-04:00:00',
-  'offset_dst' => '-04:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '69',
-  'name' => 'America/Edmonton',
-  'offset' => '-07:00:00',
-  'offset_dst' => '-06:00:00',
-  'dst_region' => '15',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '70',
-  'name' => 'America/Eirunepe',
-  'offset' => '-05:00:00',
-  'offset_dst' => '-05:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '71',
-  'name' => 'America/El Salvador',
-  'offset' => '-06:00:00',
-  'offset_dst' => '-06:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '72',
-  'name' => 'America/Ensenada',
-  'offset' => '-08:00:00',
-  'offset_dst' => '-07:00:00',
-  'dst_region' => '15',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '73',
-  'name' => 'America/Fort Wayne',
-  'offset' => '-05:00:00',
-  'offset_dst' => '-05:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '74',
-  'name' => 'America/Fortaleza',
-  'offset' => '-03:00:00',
-  'offset_dst' => '-03:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '75',
-  'name' => 'America/Glace Bay',
-  'offset' => '-04:00:00',
-  'offset_dst' => '-03:00:00',
-  'dst_region' => '15',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '76',
-  'name' => 'America/Godthab',
-  'offset' => '-03:00:00',
-  'offset_dst' => '-02:00:00',
-  'dst_region' => '15',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '77',
-  'name' => 'America/Goose Bay',
-  'offset' => '-04:00:00',
-  'offset_dst' => '-03:00:00',
-  'dst_region' => '15',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '78',
-  'name' => 'America/Grand Turk',
-  'offset' => '-05:00:00',
-  'offset_dst' => '-04:00:00',
-  'dst_region' => '16',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '79',
-  'name' => 'America/Grenada',
-  'offset' => '-04:00:00',
-  'offset_dst' => '-04:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '80',
-  'name' => 'America/Guadeloupe',
-  'offset' => '-04:00:00',
-  'offset_dst' => '-04:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '81',
-  'name' => 'America/Guatemala',
-  'offset' => '-06:00:00',
-  'offset_dst' => '-06:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '82',
-  'name' => 'America/Guayaquil',
-  'offset' => '-05:00:00',
-  'offset_dst' => '-05:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '83',
-  'name' => 'America/Guyana',
-  'offset' => '-04:00:00',
-  'offset_dst' => '-04:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '84',
-  'name' => 'America/Halifax',
-  'offset' => '-04:00:00',
-  'offset_dst' => '-03:00:00',
-  'dst_region' => '15',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '85',
-  'name' => 'America/Havana',
-  'offset' => '-05:00:00',
-  'offset_dst' => '-04:00:00',
-  'dst_region' => '16',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '86',
-  'name' => 'America/Hermosillo',
-  'offset' => '-07:00:00',
-  'offset_dst' => '-07:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '87',
-  'name' => 'America/Indiana/Indianapolis',
-  'offset' => '-05:00:00',
-  'offset_dst' => '-05:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '88',
-  'name' => 'America/Indiana/Knox',
-  'offset' => '-05:00:00',
-  'offset_dst' => '-05:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '89',
-  'name' => 'America/Indiana/Marengo',
-  'offset' => '-05:00:00',
-  'offset_dst' => '-05:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '90',
-  'name' => 'America/Indiana/Vevay',
-  'offset' => '-05:00:00',
-  'offset_dst' => '-05:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '91',
-  'name' => 'America/Indianapolis',
-  'offset' => '-05:00:00',
-  'offset_dst' => '-05:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '92',
-  'name' => 'America/Inuvik',
-  'offset' => '-07:00:00',
-  'offset_dst' => '-06:00:00',
-  'dst_region' => '15',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '93',
-  'name' => 'America/Iqaluit',
-  'offset' => '-05:00:00',
-  'offset_dst' => '-04:00:00',
-  'dst_region' => '15',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '94',
-  'name' => 'America/Jamaica',
-  'offset' => '-05:00:00',
-  'offset_dst' => '-05:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '95',
-  'name' => 'America/Jujuy',
-  'offset' => '-03:00:00',
-  'offset_dst' => '-03:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '96',
-  'name' => 'America/Juneau',
-  'offset' => '-09:00:00',
-  'offset_dst' => '-08:00:00',
-  'dst_region' => '15',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '97',
-  'name' => 'America/Kentucky/Louisville',
-  'offset' => '-05:00:00',
-  'offset_dst' => '-04:00:00',
-  'dst_region' => '15',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '98',
-  'name' => 'America/Kentucky/Monticello',
-  'offset' => '-05:00:00',
-  'offset_dst' => '-04:00:00',
-  'dst_region' => '15',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '99',
-  'name' => 'America/Knox IN',
-  'offset' => '-05:00:00',
-  'offset_dst' => '-05:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '100',
-  'name' => 'America/La Paz',
-  'offset' => '-04:00:00',
-  'offset_dst' => '-04:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '101',
-  'name' => 'America/Lima',
-  'offset' => '-05:00:00',
-  'offset_dst' => '-05:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '102',
-  'name' => 'America/Los Angeles',
-  'offset' => '-08:00:00',
-  'offset_dst' => '-07:00:00',
-  'dst_region' => '15',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '103',
-  'name' => 'America/Louisville',
-  'offset' => '-05:00:00',
-  'offset_dst' => '-04:00:00',
-  'dst_region' => '15',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '104',
-  'name' => 'America/Maceio',
-  'offset' => '-03:00:00',
-  'offset_dst' => '-03:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '105',
-  'name' => 'America/Managua',
-  'offset' => '-06:00:00',
-  'offset_dst' => '-06:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '106',
-  'name' => 'America/Manaus',
-  'offset' => '-04:00:00',
-  'offset_dst' => '-04:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '107',
-  'name' => 'America/Martinique',
-  'offset' => '-04:00:00',
-  'offset_dst' => '-04:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '108',
-  'name' => 'America/Mazatlan',
-  'offset' => '-07:00:00',
-  'offset_dst' => '-06:00:00',
-  'dst_region' => '15',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '109',
-  'name' => 'America/Mendoza',
-  'offset' => '-03:00:00',
-  'offset_dst' => '-03:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '110',
-  'name' => 'America/Menominee',
-  'offset' => '-06:00:00',
-  'offset_dst' => '-05:00:00',
-  'dst_region' => '15',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '111',
-  'name' => 'America/Merida',
-  'offset' => '-06:00:00',
-  'offset_dst' => '-05:00:00',
-  'dst_region' => '15',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '112',
-  'name' => 'America/Mexico City',
-  'offset' => '-06:00:00',
-  'offset_dst' => '-05:00:00',
-  'dst_region' => '15',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '113',
-  'name' => 'America/Miquelon',
-  'offset' => '-03:00:00',
-  'offset_dst' => '-02:00:00',
-  'dst_region' => '15',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '114',
-  'name' => 'America/Monterrey',
-  'offset' => '-06:00:00',
-  'offset_dst' => '-05:00:00',
-  'dst_region' => '15',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '115',
-  'name' => 'America/Montevideo',
-  'offset' => '-03:00:00',
-  'offset_dst' => '-03:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '116',
-  'name' => 'America/Montreal',
-  'offset' => '-05:00:00',
-  'offset_dst' => '-04:00:00',
-  'dst_region' => '15',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '117',
-  'name' => 'America/Montserrat',
-  'offset' => '-04:00:00',
-  'offset_dst' => '-04:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '118',
-  'name' => 'America/Nassau',
-  'offset' => '-05:00:00',
-  'offset_dst' => '-04:00:00',
-  'dst_region' => '15',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '119',
-  'name' => 'America/New York',
-  'offset' => '-05:00:00',
-  'offset_dst' => '-04:00:00',
-  'dst_region' => '15',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '120',
-  'name' => 'America/Nipigon',
-  'offset' => '-05:00:00',
-  'offset_dst' => '-04:00:00',
-  'dst_region' => '15',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '121',
-  'name' => 'America/Nome',
-  'offset' => '-09:00:00',
-  'offset_dst' => '-08:00:00',
-  'dst_region' => '15',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '122',
-  'name' => 'America/Noronha',
-  'offset' => '-02:00:00',
-  'offset_dst' => '-02:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '123',
-  'name' => 'America/Panama',
-  'offset' => '-05:00:00',
-  'offset_dst' => '-05:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '124',
-  'name' => 'America/Pangnirtung',
-  'offset' => '-05:00:00',
-  'offset_dst' => '-04:00:00',
-  'dst_region' => '15',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '125',
-  'name' => 'America/Paramaribo',
-  'offset' => '-03:00:00',
-  'offset_dst' => '-03:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '126',
-  'name' => 'America/Phoenix',
-  'offset' => '-07:00:00',
-  'offset_dst' => '-07:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '127',
-  'name' => 'America/Port-au-Prince',
-  'offset' => '-05:00:00',
-  'offset_dst' => '-05:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '128',
-  'name' => 'America/Port of Spain',
-  'offset' => '-04:00:00',
-  'offset_dst' => '-04:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '129',
-  'name' => 'America/Porto Acre',
-  'offset' => '-05:00:00',
-  'offset_dst' => '-05:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '130',
-  'name' => 'America/Porto Velho',
-  'offset' => '-04:00:00',
-  'offset_dst' => '-04:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '131',
-  'name' => 'America/Puerto Rico',
-  'offset' => '-04:00:00',
-  'offset_dst' => '-04:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '132',
-  'name' => 'America/Rainy River',
-  'offset' => '-06:00:00',
-  'offset_dst' => '-05:00:00',
-  'dst_region' => '15',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '133',
-  'name' => 'America/Rankin Inlet',
-  'offset' => '-06:00:00',
-  'offset_dst' => '-05:00:00',
-  'dst_region' => '15',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '134',
-  'name' => 'America/Recife',
-  'offset' => '-03:00:00',
-  'offset_dst' => '-03:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '135',
-  'name' => 'America/Regina',
-  'offset' => '-06:00:00',
-  'offset_dst' => '-06:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '136',
-  'name' => 'America/Rio Branco',
-  'offset' => '-05:00:00',
-  'offset_dst' => '-05:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '137',
-  'name' => 'America/Rosario',
-  'offset' => '-03:00:00',
-  'offset_dst' => '-03:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '138',
-  'name' => 'America/Santiago',
-  'offset' => '-03:00:00',
-  'offset_dst' => '-04:00:00',
-  'dst_region' => '15',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '139',
-  'name' => 'America/Santo Domingo',
-  'offset' => '-04:00:00',
-  'offset_dst' => '-04:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '140',
-  'name' => 'America/Sao Paulo',
-  'offset' => '-02:00:00',
-  'offset_dst' => '-03:00:00',
-  'dst_region' => '15',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '141',
-  'name' => 'America/Scoresbysund',
-  'offset' => '-01:00:00',
-  'offset_dst' => '00:00:00',
-  'dst_region' => '15',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '142',
-  'name' => 'America/Shiprock',
-  'offset' => '-07:00:00',
-  'offset_dst' => '-06:00:00',
-  'dst_region' => '15',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '143',
-  'name' => 'America/St Johns',
-  'offset' => '-03:30:00',
-  'offset_dst' => '-02:30:00',
-  'dst_region' => '15',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '144',
-  'name' => 'America/St Kitts',
-  'offset' => '-04:00:00',
-  'offset_dst' => '-04:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '145',
-  'name' => 'America/St Lucia',
-  'offset' => '-04:00:00',
-  'offset_dst' => '-04:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '146',
-  'name' => 'America/St Thomas',
-  'offset' => '-04:00:00',
-  'offset_dst' => '-04:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '147',
-  'name' => 'America/St Vincent',
-  'offset' => '-04:00:00',
-  'offset_dst' => '-04:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '148',
-  'name' => 'America/Swift Current',
-  'offset' => '-06:00:00',
-  'offset_dst' => '-06:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '149',
-  'name' => 'America/Tegucigalpa',
-  'offset' => '-06:00:00',
-  'offset_dst' => '-06:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '150',
-  'name' => 'America/Thule',
-  'offset' => '-04:00:00',
-  'offset_dst' => '-03:00:00',
-  'dst_region' => '15',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '151',
-  'name' => 'America/Thunder Bay',
-  'offset' => '-05:00:00',
-  'offset_dst' => '-04:00:00',
-  'dst_region' => '15',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '152',
-  'name' => 'America/Tijuana',
-  'offset' => '-08:00:00',
-  'offset_dst' => '-07:00:00',
-  'dst_region' => '15',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '153',
-  'name' => 'America/Tortola',
-  'offset' => '-04:00:00',
-  'offset_dst' => '-04:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '154',
-  'name' => 'America/Vancouver',
-  'offset' => '-08:00:00',
-  'offset_dst' => '-07:00:00',
-  'dst_region' => '15',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '155',
-  'name' => 'America/Virgin',
-  'offset' => '-04:00:00',
-  'offset_dst' => '-04:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '156',
-  'name' => 'America/Whitehorse',
-  'offset' => '-08:00:00',
-  'offset_dst' => '-07:00:00',
-  'dst_region' => '15',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '157',
-  'name' => 'America/Winnipeg',
-  'offset' => '-06:00:00',
-  'offset_dst' => '-05:00:00',
-  'dst_region' => '15',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '158',
-  'name' => 'America/Yakutat',
-  'offset' => '-09:00:00',
-  'offset_dst' => '-08:00:00',
-  'dst_region' => '15',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '159',
-  'name' => 'America/Yellowknife',
-  'offset' => '-07:00:00',
-  'offset_dst' => '-06:00:00',
-  'dst_region' => '15',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '160',
-  'name' => 'Antarctica/Casey',
-  'offset' => '08:00:00',
-  'offset_dst' => '08:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '161',
-  'name' => 'Antarctica/Davis',
-  'offset' => '07:00:00',
-  'offset_dst' => '07:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '162',
-  'name' => 'Antarctica/DumontDUrville',
-  'offset' => '10:00:00',
-  'offset_dst' => '10:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '163',
-  'name' => 'Antarctica/Mawson',
-  'offset' => '06:00:00',
-  'offset_dst' => '06:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '164',
-  'name' => 'Antarctica/McMurdo',
-  'offset' => '13:00:00',
-  'offset_dst' => '12:00:00',
-  'dst_region' => '11',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '165',
-  'name' => 'Antarctica/Palmer',
-  'offset' => '-03:00:00',
-  'offset_dst' => '-04:00:00',
-  'dst_region' => '18',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '166',
-  'name' => 'Antarctica/South Pole',
-  'offset' => '13:00:00',
-  'offset_dst' => '12:00:00',
-  'dst_region' => '11',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '167',
-  'name' => 'Antarctica/Syowa',
-  'offset' => '03:00:00',
-  'offset_dst' => '03:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '168',
-  'name' => 'Antarctica/Vostok',
-  'offset' => '06:00:00',
-  'offset_dst' => '06:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '169',
-  'name' => 'Arctic/Longyearbyen',
-  'offset' => '01:00:00',
-  'offset_dst' => '02:00:00',
-  'dst_region' => '14',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '170',
-  'name' => 'Asia/Aden',
-  'offset' => '03:00:00',
-  'offset_dst' => '03:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '171',
-  'name' => 'Asia/Almaty',
-  'offset' => '06:00:00',
-  'offset_dst' => '06:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '172',
-  'name' => 'Asia/Amman',
-  'offset' => '02:00:00',
-  'offset_dst' => '03:00:00',
-  'dst_region' => '8',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '173',
-  'name' => 'Asia/Anadyr',
-  'offset' => '12:00:00',
-  'offset_dst' => '13:00:00',
-  'dst_region' => '3',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '174',
-  'name' => 'Asia/Aqtau',
-  'offset' => '04:00:00',
-  'offset_dst' => '05:00:00',
-  'dst_region' => '3',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '175',
-  'name' => 'Asia/Aqtobe',
-  'offset' => '05:00:00',
-  'offset_dst' => '06:00:00',
-  'dst_region' => '3',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '176',
-  'name' => 'Asia/Ashgabat',
-  'offset' => '05:00:00',
-  'offset_dst' => '05:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '177',
-  'name' => 'Asia/Ashkhabad',
-  'offset' => '05:00:00',
-  'offset_dst' => '05:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '178',
-  'name' => 'Asia/Baghdad',
-  'offset' => '03:00:00',
-  'offset_dst' => '04:00:00',
-  'dst_region' => '4',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '179',
-  'name' => 'Asia/Bahrain',
-  'offset' => '03:00:00',
-  'offset_dst' => '03:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '180',
-  'name' => 'Asia/Baku',
-  'offset' => '04:00:00',
-  'offset_dst' => '05:00:00',
-  'dst_region' => '3',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '181',
-  'name' => 'Asia/Bangkok',
-  'offset' => '07:00:00',
-  'offset_dst' => '07:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '182',
-  'name' => 'Asia/Beirut',
-  'offset' => '02:00:00',
-  'offset_dst' => '03:00:00',
-  'dst_region' => '6',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '183',
-  'name' => 'Asia/Bishkek',
-  'offset' => '05:00:00',
-  'offset_dst' => '06:00:00',
-  'dst_region' => '6',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '184',
-  'name' => 'Asia/Brunei',
-  'offset' => '08:00:00',
-  'offset_dst' => '08:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '185',
-  'name' => 'Asia/Calcutta',
-  'offset' => '05:30:00',
-  'offset_dst' => '05:30:30',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '186',
-  'name' => 'Asia/Chungking',
-  'offset' => '08:00:00',
-  'offset_dst' => '08:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '187',
-  'name' => 'Asia/Colombo',
-  'offset' => '06:00:00',
-  'offset_dst' => '06:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '188',
-  'name' => 'Asia/Dacca',
-  'offset' => '06:00:00',
-  'offset_dst' => '06:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '189',
-  'name' => 'Asia/Damascus',
-  'offset' => '02:00:00',
-  'offset_dst' => '03:00:00',
-  'dst_region' => '4',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '190',
-  'name' => 'Asia/Dhaka',
-  'offset' => '06:00:00',
-  'offset_dst' => '06:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '191',
-  'name' => 'Asia/Dili',
-  'offset' => '09:00:00',
-  'offset_dst' => '09:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '192',
-  'name' => 'Asia/Dubai',
-  'offset' => '04:00:00',
-  'offset_dst' => '04:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '193',
-  'name' => 'Asia/Dushanbe',
-  'offset' => '05:00:00',
-  'offset_dst' => '05:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '194',
-  'name' => 'Asia/Gaza',
-  'offset' => '02:00:00',
-  'offset_dst' => '03:00:00',
-  'dst_region' => '7',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '195',
-  'name' => 'Asia/Harbin',
-  'offset' => '08:00:00',
-  'offset_dst' => '08:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '196',
-  'name' => 'Asia/Hong Kong',
-  'offset' => '08:00:00',
-  'offset_dst' => '08:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '197',
-  'name' => 'Asia/Hovd',
-  'offset' => '07:00:00',
-  'offset_dst' => '07:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '198',
-  'name' => 'Asia/Irkutsk',
-  'offset' => '08:00:00',
-  'offset_dst' => '09:00:00',
-  'dst_region' => '3',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '199',
-  'name' => 'Asia/Istanbul',
-  'offset' => '02:00:00',
-  'offset_dst' => '03:00:00',
-  'dst_region' => '3',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '200',
-  'name' => 'Asia/Jakarta',
-  'offset' => '07:00:00',
-  'offset_dst' => '07:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '201',
-  'name' => 'Asia/Jayapura',
-  'offset' => '09:00:00',
-  'offset_dst' => '09:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '202',
-  'name' => 'Asia/Jerusalem',
-  'offset' => '02:00:00',
-  'offset_dst' => '03:00:00',
-  'dst_region' => '5',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '203',
-  'name' => 'Asia/Kabul',
-  'offset' => '04:30:00',
-  'offset_dst' => '04:30:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '204',
-  'name' => 'Asia/Kamchatka',
-  'offset' => '12:00:00',
-  'offset_dst' => '13:00:00',
-  'dst_region' => '3',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '205',
-  'name' => 'Asia/Karachi',
-  'offset' => '05:00:00',
-  'offset_dst' => '05:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '206',
-  'name' => 'Asia/Kashgar',
-  'offset' => '08:00:00',
-  'offset_dst' => '08:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '207',
-  'name' => 'Asia/Katmandu',
-  'offset' => '05:45:00',
-  'offset_dst' => '05:45:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '208',
-  'name' => 'Asia/Krasnoyarsk',
-  'offset' => '07:00:00',
-  'offset_dst' => '08:00:00',
-  'dst_region' => '3',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '209',
-  'name' => 'Asia/Kuala Lumpur',
-  'offset' => '08:00:00',
-  'offset_dst' => '08:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '210',
-  'name' => 'Asia/Kuching',
-  'offset' => '08:00:00',
-  'offset_dst' => '08:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '211',
-  'name' => 'Asia/Kuwait',
-  'offset' => '03:00:00',
-  'offset_dst' => '03:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '212',
-  'name' => 'Asia/Macao',
-  'offset' => '08:00:00',
-  'offset_dst' => '08:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '213',
-  'name' => 'Asia/Magadan',
-  'offset' => '11:00:00',
-  'offset_dst' => '12:00:00',
-  'dst_region' => '3',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '214',
-  'name' => 'Asia/Manila',
-  'offset' => '08:00:00',
-  'offset_dst' => '08:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '215',
-  'name' => 'Asia/Muscat',
-  'offset' => '04:00:00',
-  'offset_dst' => '04:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '216',
-  'name' => 'Asia/Nicosia',
-  'offset' => '02:00:00',
-  'offset_dst' => '03:00:00',
-  'dst_region' => '3',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '217',
-  'name' => 'Asia/Novosibirsk',
-  'offset' => '06:00:00',
-  'offset_dst' => '07:00:00',
-  'dst_region' => '3',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '218',
-  'name' => 'Asia/Omsk',
-  'offset' => '06:00:00',
-  'offset_dst' => '07:00:00',
-  'dst_region' => '3',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '219',
-  'name' => 'Asia/Phnom Penh',
-  'offset' => '07:00:00',
-  'offset_dst' => '07:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '220',
-  'name' => 'Asia/Pyongyang',
-  'offset' => '09:00:00',
-  'offset_dst' => '09:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '221',
-  'name' => 'Asia/Qatar',
-  'offset' => '03:00:00',
-  'offset_dst' => '03:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '222',
-  'name' => 'Asia/Rangoon',
-  'offset' => '06:30:00',
-  'offset_dst' => '06:30:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '223',
-  'name' => 'Asia/Riyadh',
-  'offset' => '03:00:00',
-  'offset_dst' => '03:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '224',
-  'name' => 'Asia/Riyadh87',
-  'offset' => '03:07:04',
-  'offset_dst' => '03:07:04',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '225',
-  'name' => 'Asia/Riyadh88',
-  'offset' => '03:07:04',
-  'offset_dst' => '03:07:04',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '226',
-  'name' => 'Asia/Riyadh89',
-  'offset' => '03:07:04',
-  'offset_dst' => '03:07:04',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '227',
-  'name' => 'Asia/Saigon',
-  'offset' => '07:00:00',
-  'offset_dst' => '07:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '228',
-  'name' => 'Asia/Samarkand',
-  'offset' => '05:00:00',
-  'offset_dst' => '05:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '229',
-  'name' => 'Asia/Seoul',
-  'offset' => '09:00:00',
-  'offset_dst' => '09:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '230',
-  'name' => 'Asia/Shanghai',
-  'offset' => '08:00:00',
-  'offset_dst' => '08:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '231',
-  'name' => 'Asia/Singapore',
-  'offset' => '08:00:00',
-  'offset_dst' => '08:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '232',
-  'name' => 'Asia/Taipei',
-  'offset' => '08:00:00',
-  'offset_dst' => '08:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '233',
-  'name' => 'Asia/Tashkent',
-  'offset' => '05:00:00',
-  'offset_dst' => '05:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '234',
-  'name' => 'Asia/Tbilisi',
-  'offset' => '04:00:00',
-  'offset_dst' => '05:00:00',
-  'dst_region' => '3',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '235',
-  'name' => 'Asia/Tehran',
-  'offset' => '03:30:00',
-  'offset_dst' => '04:30:00',
-  'dst_region' => '8',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '236',
-  'name' => 'Asia/Tel Aviv',
-  'offset' => '02:00:00',
-  'offset_dst' => '03:00:00',
-  'dst_region' => '5',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '237',
-  'name' => 'Asia/Thimbu',
-  'offset' => '06:00:00',
-  'offset_dst' => '06:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '238',
-  'name' => 'Asia/Thimphu',
-  'offset' => '06:00:00',
-  'offset_dst' => '06:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '239',
-  'name' => 'Asia/Tokyo',
-  'offset' => '09:00:00',
-  'offset_dst' => '09:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '240',
-  'name' => 'Asia/Ujung Pandang',
-  'offset' => '08:00:00',
-  'offset_dst' => '08:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '241',
-  'name' => 'Asia/Ulaanbaatar',
-  'offset' => '08:00:00',
-  'offset_dst' => '08:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '242',
-  'name' => 'Asia/Ulan Bator',
-  'offset' => '08:00:00',
-  'offset_dst' => '08:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '243',
-  'name' => 'Asia/Urumqi',
-  'offset' => '08:00:00',
-  'offset_dst' => '08:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '244',
-  'name' => 'Asia/Vientiane',
-  'offset' => '07:00:00',
-  'offset_dst' => '07:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '245',
-  'name' => 'Asia/Vladivostok',
-  'offset' => '10:00:00',
-  'offset_dst' => '11:00:00',
-  'dst_region' => '3',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '246',
-  'name' => 'Asia/Yakutsk',
-  'offset' => '09:00:00',
-  'offset_dst' => '10:00:00',
-  'dst_region' => '3',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '247',
-  'name' => 'Asia/Yekaterinburg',
-  'offset' => '05:00:00',
-  'offset_dst' => '06:00:00',
-  'dst_region' => '3',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '248',
-  'name' => 'Asia/Yerevan',
-  'offset' => '04:00:00',
-  'offset_dst' => '05:00:00',
-  'dst_region' => '3',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '249',
-  'name' => 'Atlantic/Azores',
-  'offset' => '-01:00:00',
-  'offset_dst' => '00:00:00',
-  'dst_region' => '13',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '250',
-  'name' => 'Atlantic/Bermuda',
-  'offset' => '-04:00:00',
-  'offset_dst' => '-03:00:00',
-  'dst_region' => '15',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '251',
-  'name' => 'Atlantic/Canary',
-  'offset' => '00:00:00',
-  'offset_dst' => '01:00:00',
-  'dst_region' => '15',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '252',
-  'name' => 'Atlantic/Cape Verde',
-  'offset' => '-01:00:00',
-  'offset_dst' => '-01:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '253',
-  'name' => 'Atlantic/Faeroe',
-  'offset' => '00:00:00',
-  'offset_dst' => '01:00:00',
-  'dst_region' => '13',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '254',
-  'name' => 'Atlantic/Jan Mayen',
-  'offset' => '-01:00:00',
-  'offset_dst' => '-01:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '255',
-  'name' => 'Atlantic/Madeira',
-  'offset' => '00:00:00',
-  'offset_dst' => '01:00:00',
-  'dst_region' => '13',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '256',
-  'name' => 'Atlantic/South Georgia',
-  'offset' => '-02:00:00',
-  'offset_dst' => '-02:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '257',
-  'name' => 'Atlantic/Stanley',
-  'offset' => '-03:00:00',
-  'offset_dst' => '-04:00:00',
-  'dst_region' => '19',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '258',
-  'name' => 'Australia/ACT',
-  'offset' => '10:00:00',
-  'offset_dst' => '11:00:00',
-  'dst_region' => '9',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '259',
-  'name' => 'Australia/Adelaide',
-  'offset' => '10:30:00',
-  'offset_dst' => '09:30:00',
-  'dst_region' => '9',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '260',
-  'name' => 'Australia/Brisbane',
-  'offset' => '10:00:00',
-  'offset_dst' => '10:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '261',
-  'name' => 'Australia/Broken Hill',
-  'offset' => '10:30:00',
-  'offset_dst' => '09:30:00',
-  'dst_region' => '9',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '262',
-  'name' => 'Australia/Canberra',
-  'offset' => '11:00:00',
-  'offset_dst' => '10:00:00',
-  'dst_region' => '9',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '263',
-  'name' => 'Australia/Darwin',
-  'offset' => '09:30:00',
-  'offset_dst' => '09:30:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '264',
-  'name' => 'Australia/Hobart',
-  'offset' => '11:00:00',
-  'offset_dst' => '10:00:00',
-  'dst_region' => '10',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '265',
-  'name' => 'Australia/LHI',
-  'offset' => '11:00:00',
-  'offset_dst' => '10:30:00',
-  'dst_region' => '9',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '266',
-  'name' => 'Australia/Lindeman',
-  'offset' => '10:00:00',
-  'offset_dst' => '10:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '267',
-  'name' => 'Australia/Lord Howe',
-  'offset' => '11:00:00',
-  'offset_dst' => '10:30:00',
-  'dst_region' => '9',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '268',
-  'name' => 'Australia/Melbourne',
-  'offset' => '10:00:00',
-  'offset_dst' => '11:00:00',
-  'dst_region' => '10',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '269',
-  'name' => 'Australia/NSW',
-  'offset' => '10:00:00',
-  'offset_dst' => '11:00:00',
-  'dst_region' => '9',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '270',
-  'name' => 'Australia/North',
-  'offset' => '09:30:00',
-  'offset_dst' => '09:30:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '271',
-  'name' => 'Australia/Perth',
-  'offset' => '08:00:00',
-  'offset_dst' => '08:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '272',
-  'name' => 'Australia/Queensland',
-  'offset' => '10:00:00',
-  'offset_dst' => '10:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '273',
-  'name' => 'Australia/South',
-  'offset' => '10:30:00',
-  'offset_dst' => '09:30:00',
-  'dst_region' => '9',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '274',
-  'name' => 'Australia/Sydney',
-  'offset' => '10:00:00',
-  'offset_dst' => '11:00:00',
-  'dst_region' => '10',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '275',
-  'name' => 'Australia/Tasmania',
-  'offset' => '10:00:00',
-  'offset_dst' => '11:00:00',
-  'dst_region' => '9',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '276',
-  'name' => 'Australia/Victoria',
-  'offset' => '10:00:00',
-  'offset_dst' => '11:00:00',
-  'dst_region' => '9',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '277',
-  'name' => 'Australia/West',
-  'offset' => '08:00:00',
-  'offset_dst' => '08:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '278',
-  'name' => 'Australia/Yancowinna',
-  'offset' => '10:30:00',
-  'offset_dst' => '09:30:00',
-  'dst_region' => '10',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '279',
-  'name' => 'Brazil/Acre',
-  'offset' => '-05:00:00',
-  'offset_dst' => '-05:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '280',
-  'name' => 'Brazil/DeNoronha',
-  'offset' => '-02:00:00',
-  'offset_dst' => '-02:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '281',
-  'name' => 'Brazil/East',
-  'offset' => '-02:00:00',
-  'offset_dst' => '-03:00:00',
-  'dst_region' => '17',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '282',
-  'name' => 'Brazil/West',
-  'offset' => '-04:00:00',
-  'offset_dst' => '-04:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '285',
-  'name' => 'Canada/Atlantic',
-  'offset' => '-04:00:00',
-  'offset_dst' => '-03:00:00',
-  'dst_region' => '15',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '286',
-  'name' => 'Canada/Central',
-  'offset' => '-06:00:00',
-  'offset_dst' => '-05:00:00',
-  'dst_region' => '15',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '287',
-  'name' => 'Canada/Central-Saskatchewan',
-  'offset' => '-06:00:00',
-  'offset_dst' => '-06:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '288',
-  'name' => 'Canada/Eastern',
-  'offset' => '-05:00:00',
-  'offset_dst' => '-04:00:00',
-  'dst_region' => '15',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '289',
-  'name' => 'Canada/Mountain',
-  'offset' => '-07:00:00',
-  'offset_dst' => '-06:00:00',
-  'dst_region' => '15',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '290',
-  'name' => 'Canada/Newfoundland',
-  'offset' => '-03:30:00',
-  'offset_dst' => '-02:30:00',
-  'dst_region' => '15',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '291',
-  'name' => 'Canada/Pacific',
-  'offset' => '-08:00:00',
-  'offset_dst' => '-07:00:00',
-  'dst_region' => '15',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '292',
-  'name' => 'Canada/Saskatchewan',
-  'offset' => '-06:00:00',
-  'offset_dst' => '-06:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '293',
-  'name' => 'Canada/Yukon',
-  'offset' => '-08:00:00',
-  'offset_dst' => '-07:00:00',
-  'dst_region' => '15',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '294',
-  'name' => 'Chile/Continental',
-  'offset' => '-03:00:00',
-  'offset_dst' => '-04:00:00',
-  'dst_region' => '18',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '295',
-  'name' => 'Chile/EasterIsland',
-  'offset' => '-05:00:00',
-  'offset_dst' => '-06:00:00',
-  'dst_region' => '18',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '296',
-  'name' => 'Cuba',
-  'offset' => '-05:00:00',
-  'offset_dst' => '-04:00:00',
-  'dst_region' => '16',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '298',
-  'name' => 'EST',
-  'offset' => '-05:00:00',
-  'offset_dst' => '-05:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '300',
-  'name' => 'Egypt',
-  'offset' => '02:00:00',
-  'offset_dst' => '03:00:00',
-  'dst_region' => '1',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '301',
-  'name' => 'Eire',
-  'offset' => '00:00:00',
-  'offset_dst' => '01:00:00',
-  'dst_region' => '13',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '302',
-  'name' => 'Etc/GMT-1',
-  'offset' => '-01:00:00',
-  'offset_dst' => '-01:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '303',
-  'name' => 'Etc/GMT-10',
-  'offset' => '-10:00:00',
-  'offset_dst' => '-10:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '304',
-  'name' => 'Etc/GMT-11',
-  'offset' => '-11:00:00',
-  'offset_dst' => '-11:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '305',
-  'name' => 'Etc/GMT-12',
-  'offset' => '-12:00:00',
-  'offset_dst' => '-12:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '306',
-  'name' => 'Etc/GMT-2',
-  'offset' => '-02:00:00',
-  'offset_dst' => '-02:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '307',
-  'name' => 'Etc/GMT-3',
-  'offset' => '-03:00:00',
-  'offset_dst' => '-03:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '308',
-  'name' => 'Etc/GMT-4',
-  'offset' => '-04:00:00',
-  'offset_dst' => '-04:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '309',
-  'name' => 'Etc/GMT-5',
-  'offset' => '-05:00:00',
-  'offset_dst' => '-05:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '310',
-  'name' => 'Etc/GMT-6',
-  'offset' => '-06:00:00',
-  'offset_dst' => '-06:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '311',
-  'name' => 'Etc/GMT-7',
-  'offset' => '-07:00:00',
-  'offset_dst' => '-07:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '312',
-  'name' => 'Etc/GMT-8',
-  'offset' => '-08:00:00',
-  'offset_dst' => '-08:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '313',
-  'name' => 'Etc/GMT-9',
-  'offset' => '-09:00:00',
-  'offset_dst' => '-09:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '314',
-  'name' => 'Etc/GMT+1',
-  'offset' => '01:00:00',
-  'offset_dst' => '01:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '315',
-  'name' => 'Etc/GMT+10',
-  'offset' => '10:00:00',
-  'offset_dst' => '10:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '316',
-  'name' => 'Etc/GMT+11',
-  'offset' => '11:00:00',
-  'offset_dst' => '11:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '317',
-  'name' => 'Etc/GMT+12',
-  'offset' => '12:00:00',
-  'offset_dst' => '12:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '318',
-  'name' => 'Etc/GMT+13',
-  'offset' => '13:00:00',
-  'offset_dst' => '13:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '319',
-  'name' => 'Etc/GMT+14',
-  'offset' => '14:00:00',
-  'offset_dst' => '14:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '320',
-  'name' => 'Etc/GMT+2',
-  'offset' => '02:00:00',
-  'offset_dst' => '02:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '321',
-  'name' => 'Etc/GMT+3',
-  'offset' => '03:00:00',
-  'offset_dst' => '03:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '322',
-  'name' => 'Etc/GMT+4',
-  'offset' => '04:00:00',
-  'offset_dst' => '04:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '323',
-  'name' => 'Etc/GMT+5',
-  'offset' => '05:00:00',
-  'offset_dst' => '05:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '324',
-  'name' => 'Etc/GMT+6',
-  'offset' => '06:00:00',
-  'offset_dst' => '06:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '325',
-  'name' => 'Etc/GMT+7',
-  'offset' => '07:00:00',
-  'offset_dst' => '07:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '326',
-  'name' => 'Etc/GMT+8',
-  'offset' => '08:00:00',
-  'offset_dst' => '08:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '327',
-  'name' => 'Etc/GMT+9',
-  'offset' => '09:00:00',
-  'offset_dst' => '09:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '328',
-  'name' => 'Europe/Amsterdam',
-  'offset' => '01:00:00',
-  'offset_dst' => '02:00:00',
-  'dst_region' => '13',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '329',
-  'name' => 'Europe/Andorra',
-  'offset' => '01:00:00',
-  'offset_dst' => '02:00:00',
-  'dst_region' => '13',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '330',
-  'name' => 'Europe/Athens',
-  'offset' => '02:00:00',
-  'offset_dst' => '03:00:00',
-  'dst_region' => '13',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '331',
-  'name' => 'Europe/Belfast',
-  'offset' => '00:00:00',
-  'offset_dst' => '01:00:00',
-  'dst_region' => '13',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '332',
-  'name' => 'Europe/Belgrade',
-  'offset' => '01:00:00',
-  'offset_dst' => '02:00:00',
-  'dst_region' => '13',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '333',
-  'name' => 'Europe/Berlin',
-  'offset' => '01:00:00',
-  'offset_dst' => '02:00:00',
-  'dst_region' => '13',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '334',
-  'name' => 'Europe/Bratislava',
-  'offset' => '01:00:00',
-  'offset_dst' => '02:00:00',
-  'dst_region' => '13',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '335',
-  'name' => 'Europe/Brussels',
-  'offset' => '01:00:00',
-  'offset_dst' => '02:00:00',
-  'dst_region' => '13',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '336',
-  'name' => 'Europe/Bucharest',
-  'offset' => '02:00:00',
-  'offset_dst' => '03:00:00',
-  'dst_region' => '13',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '337',
-  'name' => 'Europe/Budapest',
-  'offset' => '01:00:00',
-  'offset_dst' => '02:00:00',
-  'dst_region' => '13',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '338',
-  'name' => 'Europe/Chisinau',
-  'offset' => '02:00:00',
-  'offset_dst' => '03:00:00',
-  'dst_region' => '13',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '339',
-  'name' => 'Europe/Copenhagen',
-  'offset' => '01:00:00',
-  'offset_dst' => '02:00:00',
-  'dst_region' => '13',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '340',
-  'name' => 'Europe/Dublin',
-  'offset' => '00:00:00',
-  'offset_dst' => '01:00:00',
-  'dst_region' => '13',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '341',
-  'name' => 'Europe/Gibraltar',
-  'offset' => '01:00:00',
-  'offset_dst' => '02:00:00',
-  'dst_region' => '13',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '342',
-  'name' => 'Europe/Helsinki',
-  'offset' => '02:00:00',
-  'offset_dst' => '03:00:00',
-  'dst_region' => '13',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '343',
-  'name' => 'Europe/Istanbul',
-  'offset' => '02:00:00',
-  'offset_dst' => '03:00:00',
-  'dst_region' => '13',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '344',
-  'name' => 'Europe/Kaliningrad',
-  'offset' => '02:00:00',
-  'offset_dst' => '03:00:00',
-  'dst_region' => '13',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '345',
-  'name' => 'Europe/Kiev',
-  'offset' => '02:00:00',
-  'offset_dst' => '03:00:00',
-  'dst_region' => '13',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '346',
-  'name' => 'Europe/Lisbon',
-  'offset' => '00:00:00',
-  'offset_dst' => '01:00:00',
-  'dst_region' => '13',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '347',
-  'name' => 'Europe/Ljubljana',
-  'offset' => '01:00:00',
-  'offset_dst' => '02:00:00',
-  'dst_region' => '13',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '348',
-  'name' => 'Europe/London',
-  'offset' => '00:00:00',
-  'offset_dst' => '01:00:00',
-  'dst_region' => '13',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '349',
-  'name' => 'Europe/Luxembourg',
-  'offset' => '01:00:00',
-  'offset_dst' => '02:00:00',
-  'dst_region' => '13',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '350',
-  'name' => 'Europe/Madrid',
-  'offset' => '01:00:00',
-  'offset_dst' => '02:00:00',
-  'dst_region' => '13',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '351',
-  'name' => 'Europe/Malta',
-  'offset' => '01:00:00',
-  'offset_dst' => '02:00:00',
-  'dst_region' => '13',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '352',
-  'name' => 'Europe/Minsk',
-  'offset' => '02:00:00',
-  'offset_dst' => '03:00:00',
-  'dst_region' => '13',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '353',
-  'name' => 'Europe/Monaco',
-  'offset' => '01:00:00',
-  'offset_dst' => '02:00:00',
-  'dst_region' => '13',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '354',
-  'name' => 'Europe/Moscow',
-  'offset' => '03:00:00',
-  'offset_dst' => '04:00:00',
-  'dst_region' => '14',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '355',
-  'name' => 'Europe/Nicosia',
-  'offset' => '02:00:00',
-  'offset_dst' => '03:00:00',
-  'dst_region' => '13',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '356',
-  'name' => 'Europe/Oslo',
-  'offset' => '01:00:00',
-  'offset_dst' => '02:00:00',
-  'dst_region' => '13',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '357',
-  'name' => 'Europe/Paris',
-  'offset' => '01:00:00',
-  'offset_dst' => '02:00:00',
-  'dst_region' => '13',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '358',
-  'name' => 'Europe/Prague',
-  'offset' => '01:00:00',
-  'offset_dst' => '02:00:00',
-  'dst_region' => '13',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '359',
-  'name' => 'Europe/Riga',
-  'offset' => '02:00:00',
-  'offset_dst' => '03:00:00',
-  'dst_region' => '13',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '360',
-  'name' => 'Europe/Rome',
-  'offset' => '01:00:00',
-  'offset_dst' => '02:00:00',
-  'dst_region' => '13',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '361',
-  'name' => 'Europe/Samara',
-  'offset' => '04:00:00',
-  'offset_dst' => '05:00:00',
-  'dst_region' => '13',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '362',
-  'name' => 'Europe/San Marino',
-  'offset' => '01:00:00',
-  'offset_dst' => '02:00:00',
-  'dst_region' => '13',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '363',
-  'name' => 'Europe/Sarajevo',
-  'offset' => '01:00:00',
-  'offset_dst' => '02:00:00',
-  'dst_region' => '13',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '364',
-  'name' => 'Europe/Simferopol',
-  'offset' => '02:00:00',
-  'offset_dst' => '03:00:00',
-  'dst_region' => '13',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '365',
-  'name' => 'Europe/Skopje',
-  'offset' => '01:00:00',
-  'offset_dst' => '02:00:00',
-  'dst_region' => '13',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '366',
-  'name' => 'Europe/Sofia',
-  'offset' => '02:00:00',
-  'offset_dst' => '03:00:00',
-  'dst_region' => '13',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '367',
-  'name' => 'Europe/Stockholm',
-  'offset' => '01:00:00',
-  'offset_dst' => '02:00:00',
-  'dst_region' => '13',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '368',
-  'name' => 'Europe/Tallinn',
-  'offset' => '02:00:00',
-  'offset_dst' => '02:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '369',
-  'name' => 'Europe/Tirane',
-  'offset' => '01:00:00',
-  'offset_dst' => '02:00:00',
-  'dst_region' => '13',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '370',
-  'name' => 'Europe/Tiraspol',
-  'offset' => '02:00:00',
-  'offset_dst' => '03:00:00',
-  'dst_region' => '13',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '371',
-  'name' => 'Europe/Uzhgorod',
-  'offset' => '02:00:00',
-  'offset_dst' => '03:00:00',
-  'dst_region' => '13',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '372',
-  'name' => 'Europe/Vaduz',
-  'offset' => '01:00:00',
-  'offset_dst' => '02:00:00',
-  'dst_region' => '13',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '373',
-  'name' => 'Europe/Vatican',
-  'offset' => '01:00:00',
-  'offset_dst' => '02:00:00',
-  'dst_region' => '13',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '374',
-  'name' => 'Europe/Vienna',
-  'offset' => '01:00:00',
-  'offset_dst' => '02:00:00',
-  'dst_region' => '13',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '375',
-  'name' => 'Europe/Vilnius',
-  'offset' => '02:00:00',
-  'offset_dst' => '02:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '376',
-  'name' => 'Europe/Warsaw',
-  'offset' => '01:00:00',
-  'offset_dst' => '02:00:00',
-  'dst_region' => '13',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '377',
-  'name' => 'Europe/Zagreb',
-  'offset' => '01:00:00',
-  'offset_dst' => '02:00:00',
-  'dst_region' => '13',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '378',
-  'name' => 'Europe/Zaporozhye',
-  'offset' => '02:00:00',
-  'offset_dst' => '03:00:00',
-  'dst_region' => '13',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '379',
-  'name' => 'Europe/Zurich',
-  'offset' => '01:00:00',
-  'offset_dst' => '02:00:00',
-  'dst_region' => '13',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '380',
-  'name' => 'GB',
-  'offset' => '00:00:00',
-  'offset_dst' => '01:00:00',
-  'dst_region' => '13',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '381',
-  'name' => 'GB-Eire',
-  'offset' => '00:00:00',
-  'offset_dst' => '01:00:00',
-  'dst_region' => '13',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '383',
-  'name' => 'Hongkong',
-  'offset' => '08:00:00',
-  'offset_dst' => '08:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '384',
-  'name' => 'Indian/Antananarivo',
-  'offset' => '03:00:00',
-  'offset_dst' => '03:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '385',
-  'name' => 'Indian/Chagos',
-  'offset' => '05:00:00',
-  'offset_dst' => '05:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '386',
-  'name' => 'Indian/Christmas',
-  'offset' => '07:00:00',
-  'offset_dst' => '07:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '387',
-  'name' => 'Indian/Cocos',
-  'offset' => '06:30:00',
-  'offset_dst' => '06:30:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '388',
-  'name' => 'Indian/Comoro',
-  'offset' => '03:00:00',
-  'offset_dst' => '03:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '389',
-  'name' => 'Indian/Kerguelen',
-  'offset' => '05:00:00',
-  'offset_dst' => '05:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '390',
-  'name' => 'Indian/Mahe',
-  'offset' => '04:00:00',
-  'offset_dst' => '04:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '391',
-  'name' => 'Indian/Maldives',
-  'offset' => '05:00:00',
-  'offset_dst' => '05:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '392',
-  'name' => 'Indian/Mauritius',
-  'offset' => '04:00:00',
-  'offset_dst' => '04:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '393',
-  'name' => 'Indian/Mayotte',
-  'offset' => '03:00:00',
-  'offset_dst' => '03:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '394',
-  'name' => 'Indian/Reunion',
-  'offset' => '04:00:00',
-  'offset_dst' => '04:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '395',
-  'name' => 'Iran',
-  'offset' => '03:30:00',
-  'offset_dst' => '04:30:00',
-  'dst_region' => '8',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '396',
-  'name' => 'Israel',
-  'offset' => '02:00:00',
-  'offset_dst' => '03:00:00',
-  'dst_region' => '5',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '397',
-  'name' => 'Jamaica',
-  'offset' => '-05:00:00',
-  'offset_dst' => '-05:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '398',
-  'name' => 'Japan',
-  'offset' => '09:00:00',
-  'offset_dst' => '09:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '399',
-  'name' => 'Kwajalein',
-  'offset' => '12:00:00',
-  'offset_dst' => '12:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '400',
-  'name' => 'Libya',
-  'offset' => '02:00:00',
-  'offset_dst' => '02:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '404',
-  'name' => 'Mexico/BajaNorte',
-  'offset' => '-08:00:00',
-  'offset_dst' => '-07:00:00',
-  'dst_region' => '15',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '405',
-  'name' => 'Mexico/BajaSur',
-  'offset' => '-07:00:00',
-  'offset_dst' => '-06:00:00',
-  'dst_region' => '15',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '406',
-  'name' => 'Mexico/General',
-  'offset' => '-06:00:00',
-  'offset_dst' => '-05:00:00',
-  'dst_region' => '15',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '407',
-  'name' => 'Mideast/Riyadh87',
-  'offset' => '03:07:04',
-  'offset_dst' => '03:07:04',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '408',
-  'name' => 'Mideast/Riyadh88',
-  'offset' => '03:07:04',
-  'offset_dst' => '03:07:04',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '409',
-  'name' => 'Mideast/Riyadh89',
-  'offset' => '03:07:04',
-  'offset_dst' => '03:07:04',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '410',
-  'name' => 'NZ',
-  'offset' => '13:00:00',
-  'offset_dst' => '12:00:00',
-  'dst_region' => '11',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '412',
-  'name' => 'Navajo',
-  'offset' => '-07:00:00',
-  'offset_dst' => '-06:00:00',
-  'dst_region' => '15',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '415',
-  'name' => 'Pacific/Apia',
-  'offset' => '-11:00:00',
-  'offset_dst' => '-11:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '416',
-  'name' => 'Pacific/Auckland',
-  'offset' => '13:00:00',
-  'offset_dst' => '12:00:00',
-  'dst_region' => '15',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '417',
-  'name' => 'Pacific/Chatham',
-  'offset' => '13:45:00',
-  'offset_dst' => '12:45:00',
-  'dst_region' => '15',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '418',
-  'name' => 'Pacific/Easter',
-  'offset' => '-05:00:00',
-  'offset_dst' => '-06:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '419',
-  'name' => 'Pacific/Efate',
-  'offset' => '11:00:00',
-  'offset_dst' => '11:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '420',
-  'name' => 'Pacific/Enderbury',
-  'offset' => '13:00:00',
-  'offset_dst' => '13:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '421',
-  'name' => 'Pacific/Fakaofo',
-  'offset' => '-10:00:00',
-  'offset_dst' => '-10:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '422',
-  'name' => 'Pacific/Fiji',
-  'offset' => '12:00:00',
-  'offset_dst' => '12:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '423',
-  'name' => 'Pacific/Funafuti',
-  'offset' => '12:00:00',
-  'offset_dst' => '12:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '424',
-  'name' => 'Pacific/Galapagos',
-  'offset' => '-06:00:00',
-  'offset_dst' => '-06:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '425',
-  'name' => 'Pacific/Gambier',
-  'offset' => '-09:00:00',
-  'offset_dst' => '-09:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '426',
-  'name' => 'Pacific/Guadalcanal',
-  'offset' => '11:00:00',
-  'offset_dst' => '11:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '427',
-  'name' => 'Pacific/Guam',
-  'offset' => '10:00:00',
-  'offset_dst' => '10:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '428',
-  'name' => 'Pacific/Honolulu',
-  'offset' => '-10:00:00',
-  'offset_dst' => '-10:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '429',
-  'name' => 'Pacific/Johnston',
-  'offset' => '-10:00:00',
-  'offset_dst' => '-10:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '430',
-  'name' => 'Pacific/Kiritimati',
-  'offset' => '14:00:00',
-  'offset_dst' => '14:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '431',
-  'name' => 'Pacific/Kosrae',
-  'offset' => '11:00:00',
-  'offset_dst' => '11:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '432',
-  'name' => 'Pacific/Kwajalein',
-  'offset' => '12:00:00',
-  'offset_dst' => '12:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '433',
-  'name' => 'Pacific/Majuro',
-  'offset' => '12:00:00',
-  'offset_dst' => '12:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '434',
-  'name' => 'Pacific/Marquesas',
-  'offset' => '-09:30:00',
-  'offset_dst' => '-09:30:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '435',
-  'name' => 'Pacific/Midway',
-  'offset' => '-11:00:00',
-  'offset_dst' => '-11:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '436',
-  'name' => 'Pacific/Nauru',
-  'offset' => '12:00:00',
-  'offset_dst' => '12:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '437',
-  'name' => 'Pacific/Niue',
-  'offset' => '-11:00:00',
-  'offset_dst' => '-11:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '438',
-  'name' => 'Pacific/Norfolk',
-  'offset' => '11:30:00',
-  'offset_dst' => '11:30:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '439',
-  'name' => 'Pacific/Noumea',
-  'offset' => '11:00:00',
-  'offset_dst' => '11:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '440',
-  'name' => 'Pacific/Pago Pago',
-  'offset' => '-11:00:00',
-  'offset_dst' => '-11:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '441',
-  'name' => 'Pacific/Palau',
-  'offset' => '09:00:00',
-  'offset_dst' => '09:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '442',
-  'name' => 'Pacific/Pitcairn',
-  'offset' => '-08:00:00',
-  'offset_dst' => '-08:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '443',
-  'name' => 'Pacific/Ponape',
-  'offset' => '11:00:00',
-  'offset_dst' => '11:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '444',
-  'name' => 'Pacific/Port Moresby',
-  'offset' => '10:00:00',
-  'offset_dst' => '10:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '445',
-  'name' => 'Pacific/Rarotonga',
-  'offset' => '-10:00:00',
-  'offset_dst' => '-10:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '446',
-  'name' => 'Pacific/Saipan',
-  'offset' => '10:00:00',
-  'offset_dst' => '10:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '447',
-  'name' => 'Pacific/Samoa',
-  'offset' => '-11:00:00',
-  'offset_dst' => '-11:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '448',
-  'name' => 'Pacific/Tahiti',
-  'offset' => '-10:00:00',
-  'offset_dst' => '-10:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '449',
-  'name' => 'Pacific/Tarawa',
-  'offset' => '12:00:00',
-  'offset_dst' => '12:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '450',
-  'name' => 'Pacific/Tongatapu',
-  'offset' => '13:00:00',
-  'offset_dst' => '13:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '451',
-  'name' => 'Pacific/Truk',
-  'offset' => '10:00:00',
-  'offset_dst' => '10:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '452',
-  'name' => 'Pacific/Wake',
-  'offset' => '12:00:00',
-  'offset_dst' => '12:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '453',
-  'name' => 'Pacific/Wallis',
-  'offset' => '12:00:00',
-  'offset_dst' => '12:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '454',
-  'name' => 'Pacific/Yap',
-  'offset' => '10:00:00',
-  'offset_dst' => '10:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '455',
-  'name' => 'Poland',
-  'offset' => '01:00:00',
-  'offset_dst' => '02:00:00',
-  'dst_region' => '13',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '456',
-  'name' => 'Portugal',
-  'offset' => '00:00:00',
-  'offset_dst' => '01:00:00',
-  'dst_region' => '13',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '459',
-  'name' => 'Singapore',
-  'offset' => '08:00:00',
-  'offset_dst' => '08:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '473',
-  'name' => 'Turkey',
-  'offset' => '02:00:00',
-  'offset_dst' => '03:00:00',
-  'dst_region' => '13',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '474',
-  'name' => 'US/Alaska',
-  'offset' => '-09:00:00',
-  'offset_dst' => '-08:00:00',
-  'dst_region' => '15',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '475',
-  'name' => 'US/Aleutian',
-  'offset' => '-10:00:00',
-  'offset_dst' => '-09:00:00',
-  'dst_region' => '15',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '476',
-  'name' => 'US/Arizona',
-  'offset' => '-07:00:00',
-  'offset_dst' => '-07:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '477',
-  'name' => 'US/Central',
-  'offset' => '-06:00:00',
-  'offset_dst' => '-05:00:00',
-  'dst_region' => '15',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '478',
-  'name' => 'US/East-Indiana',
-  'offset' => '-05:00:00',
-  'offset_dst' => '-05:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '479',
-  'name' => 'US/Eastern',
-  'offset' => '-05:00:00',
-  'offset_dst' => '-04:00:00',
-  'dst_region' => '15',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '480',
-  'name' => 'US/Hawaii',
-  'offset' => '-10:00:00',
-  'offset_dst' => '-10:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '481',
-  'name' => 'US/Indiana-Starke',
-  'offset' => '-05:00:00',
-  'offset_dst' => '-05:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '482',
-  'name' => 'US/Michigan',
-  'offset' => '-05:00:00',
-  'offset_dst' => '-04:00:00',
-  'dst_region' => '15',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '483',
-  'name' => 'US/Mountain',
-  'offset' => '-07:00:00',
-  'offset_dst' => '-06:00:00',
-  'dst_region' => '15',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '484',
-  'name' => 'US/Pacific',
-  'offset' => '-08:00:00',
-  'offset_dst' => '-07:00:00',
-  'dst_region' => '15',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '485',
-  'name' => 'US/Samoa',
-  'offset' => '-11:00:00',
-  'offset_dst' => '-11:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '486',
-  'name' => 'Pacific/French Polynesia-Marquesas Islands',
-  'offset' => '-09:30:00',
-  'offset_dst' => '-09:30:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->values(array(
-  'timezone' => '487',
-  'name' => 'Etc/GMT',
-  'offset' => '00:00:00',
-  'offset_dst' => '00:00:00',
-  'dst_region' => '0',
-  'is_dst' => '0',
-))
-->execute();
-$connection->schema()->createTable('files', array(
-  'fields' => array(
-    'fid' => array(
-      'type' => 'serial',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-    'uid' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-    'filename' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'filepath' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'filemime' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'filesize' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-    'status' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'timestamp' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-  ),
-  'primary key' => array(
-    'fid',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->insert('files')
-->fields(array(
-  'fid',
-  'uid',
-  'filename',
-  'filepath',
-  'filemime',
-  'filesize',
-  'status',
-  'timestamp',
-))
-->values(array(
-  'fid' => '5',
-  'uid' => '1',
-  'filename' => 'html-1.txt',
-  'filepath' => 'core/tests/fixtures/files/html-1.txt',
-  'filemime' => 'text/plain',
-  'filesize' => '24',
-  'status' => '1',
-  'timestamp' => '1420858106',
-))
-->execute();
-$connection->schema()->createTable('filter_formats', array(
-  'fields' => array(
-    'format' => array(
-      'type' => 'serial',
-      'not null' => TRUE,
-      'size' => 'normal',
-    ),
-    'name' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'roles' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'cache' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-  ),
-  'primary key' => array(
-    'format',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->insert('filter_formats')
-->fields(array(
-  'format',
-  'name',
-  'roles',
-  'cache',
-))
-->values(array(
-  'format' => '1',
-  'name' => 'Filtered HTML',
-  'roles' => ',1,2,',
-  'cache' => '1',
-))
-->values(array(
-  'format' => '2',
-  'name' => 'Full HTML',
-  'roles' => '3',
-  'cache' => '1',
-))
-->values(array(
-  'format' => '3',
-  'name' => 'Escape HTML Filter',
-  'roles' => '',
-  'cache' => '1',
-))
-->values(array(
-  'format' => '4',
-  'name' => 'PHP Code',
-  'roles' => ',3,4,5,',
-  'cache' => '0',
-))
-->execute();
-$connection->schema()->createTable('filters', array(
-  'fields' => array(
-    'fid' => array(
-      'type' => 'serial',
-      'not null' => TRUE,
-      'size' => 'normal',
-    ),
-    'format' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'module' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '64',
-      'default' => '',
-    ),
-    'delta' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'weight' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-  ),
-  'primary key' => array(
-    'fid',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->insert('filters')
-->fields(array(
-  'fid',
-  'format',
-  'module',
-  'delta',
-  'weight',
-))
-->values(array(
-  'fid' => '1',
-  'format' => '1',
-  'module' => 'filter',
-  'delta' => '2',
-  'weight' => '0',
-))
-->values(array(
-  'fid' => '2',
-  'format' => '1',
-  'module' => 'filter',
-  'delta' => '0',
-  'weight' => '1',
-))
-->values(array(
-  'fid' => '3',
-  'format' => '1',
-  'module' => 'filter',
-  'delta' => '1',
-  'weight' => '2',
-))
-->values(array(
-  'fid' => '4',
-  'format' => '1',
-  'module' => 'filter',
-  'delta' => '3',
-  'weight' => '10',
-))
-->values(array(
-  'fid' => '5',
-  'format' => '2',
-  'module' => 'filter',
-  'delta' => '2',
-  'weight' => '0',
-))
-->values(array(
-  'fid' => '6',
-  'format' => '2',
-  'module' => 'filter',
-  'delta' => '1',
-  'weight' => '1',
-))
-->values(array(
-  'fid' => '7',
-  'format' => '2',
-  'module' => 'filter',
-  'delta' => '3',
-  'weight' => '10',
-))
-->values(array(
-  'fid' => '8',
-  'format' => '6',
-  'module' => 'filter',
-  'delta' => '2',
-  'weight' => '0',
-))
-->values(array(
-  'fid' => '9',
-  'format' => '6',
-  'module' => 'filter',
-  'delta' => '0',
-  'weight' => '1',
-))
-->values(array(
-  'fid' => '10',
-  'format' => '6',
-  'module' => 'filter',
-  'delta' => '1',
-  'weight' => '2',
-))
-->values(array(
-  'fid' => '11',
-  'format' => '6',
-  'module' => 'filter',
-  'delta' => '3',
-  'weight' => '10',
-))
-->values(array(
-  'fid' => '16',
-  'format' => '4',
-  'module' => 'php',
-  'delta' => '0',
-  'weight' => '10',
-))
-->execute();
-$connection->schema()->createTable('flood', array(
-  'fields' => array(
-    'fid' => array(
-      'type' => 'serial',
-      'not null' => TRUE,
-      'size' => 'normal',
-    ),
-    'event' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '64',
-      'default' => '',
-    ),
-    'hostname' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '128',
-      'default' => '',
-    ),
-    'timestamp' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-  ),
-  'primary key' => array(
-    'fid',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->schema()->createTable('forum', array(
-  'fields' => array(
-    'nid' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-    'vid' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-    'tid' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-  ),
-  'primary key' => array(
-    'vid',
-  ),
-  'indexes' => array(
-    'nid' => array(
-      'nid',
-    ),
-    'tid' => array(
-      'tid',
-    ),
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->insert('forum')
-->fields(array(
-  'nid',
-  'vid',
-  'tid',
-))
-->values(array(
-  'nid' => '19',
-  'vid' => '22',
-  'tid' => '8',
-))
-->values(array(
-  'nid' => '20',
-  'vid' => '23',
-  'tid' => '10',
-))
-->execute();
-$connection->schema()->createTable('history', array(
-  'fields' => array(
-    'uid' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'nid' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'timestamp' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-  ),
-  'primary key' => array(
-    'uid',
-    'nid',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->insert('history')
-->fields(array(
-  'uid',
-  'nid',
-  'timestamp',
-))
-->values(array(
-  'uid' => '1',
-  'nid' => '4',
-  'timestamp' => '1675400063',
-))
-->values(array(
-  'uid' => '1',
-  'nid' => '8',
-  'timestamp' => '1675400045',
-))
-->values(array(
-  'uid' => '1',
-  'nid' => '19',
-  'timestamp' => '1687738850',
-))
-->values(array(
-  'uid' => '1',
-  'nid' => '20',
-  'timestamp' => '1679803849',
-))
-->values(array(
-  'uid' => '1',
-  'nid' => '21',
-  'timestamp' => '1675400003',
-))
-->execute();
-$connection->schema()->createTable('imagecache_action', array(
-  'fields' => array(
-    'actionid' => array(
-      'type' => 'serial',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-    'presetid' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-    'weight' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'module' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-    ),
-    'action' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-    ),
-    'data' => array(
-      'type' => 'text',
-      'not null' => TRUE,
-      'size' => 'normal',
-    ),
-  ),
-  'primary key' => array(
-    'actionid',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->insert('imagecache_action')
-->fields(array(
-  'actionid',
-  'presetid',
-  'weight',
-  'module',
-  'action',
-  'data',
-))
-->values(array(
-  'actionid' => '3',
-  'presetid' => '1',
-  'weight' => '0',
-  'module' => 'imagecache',
-  'action' => 'imagecache_scale_and_crop',
-  'data' => 'a:2:{s:5:"width";s:4:"100%";s:6:"height";s:4:"100%";}',
-))
-->values(array(
-  'actionid' => '4',
-  'presetid' => '2',
-  'weight' => '0',
-  'module' => 'imagecache',
-  'action' => 'imagecache_crop',
-  'data' => 'a:4:{s:5:"width";s:3:"555";s:6:"height";s:4:"5555";s:7:"xoffset";s:6:"center";s:7:"yoffset";s:6:"center";}',
-))
-->values(array(
-  'actionid' => '5',
-  'presetid' => '2',
-  'weight' => '0',
-  'module' => 'imagecache',
-  'action' => 'imagecache_resize',
-  'data' => 'a:2:{s:5:"width";s:3:"55%";s:6:"height";s:3:"55%";}',
-))
-->values(array(
-  'actionid' => '6',
-  'presetid' => '2',
-  'weight' => '0',
-  'module' => 'imagecache',
-  'action' => 'imagecache_rotate',
-  'data' => 'a:3:{s:7:"degrees";s:2:"55";s:6:"random";i:0;s:7:"bgcolor";s:0:"";}',
-))
-->values(array(
-  'actionid' => '7',
-  'presetid' => '2',
-  'weight' => '0',
-  'module' => 'imagecache',
-  'action' => '',
-  'data' => 'a:3:{s:7:"degrees";s:2:"55";s:6:"random";i:0;s:7:"bgcolor";s:0:"";}',
-))
-->execute();
-$connection->schema()->createTable('imagecache_preset', array(
-  'fields' => array(
-    'presetid' => array(
-      'type' => 'serial',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-    'presetname' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-    ),
-  ),
-  'primary key' => array(
-    'presetid',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->insert('imagecache_preset')
-->fields(array(
-  'presetid',
-  'presetname',
-))
-->values(array(
-  'presetid' => '1',
-  'presetname' => 'slackjaw_boys',
-))
-->values(array(
-  'presetid' => '2',
-  'presetname' => 'big_blue_cheese',
-))
-->execute();
-$connection->schema()->createTable('menu_custom', array(
-  'fields' => array(
-    'menu_name' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '32',
-      'default' => '',
-    ),
-    'title' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'description' => array(
-      'type' => 'text',
-      'not null' => FALSE,
-      'size' => 'normal',
-    ),
-  ),
-  'primary key' => array(
-    'menu_name',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->insert('menu_custom')
-->fields(array(
-  'menu_name',
-  'title',
-  'description',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'title' => 'Navigation',
-  'description' => 'The navigation menu is provided by Drupal and is the main interactive menu for any site. It is usually the only menu that contains personalized links for authenticated users, and is often not even visible to anonymous users.',
-))
-->values(array(
-  'menu_name' => 'primary-links',
-  'title' => 'Primary links',
-  'description' => 'Primary links are often used at the theme layer to show the major sections of a site. A typical representation for primary links would be tabs along the top.',
-))
-->values(array(
-  'menu_name' => 'secondary-links',
-  'title' => 'Secondary links',
-  'description' => 'Secondary links are often used for pages like legal notices, contact details, and other secondary navigation items that play a lesser role than primary links',
-))
-->execute();
-$connection->schema()->createTable('menu_links', array(
-  'fields' => array(
-    'menu_name' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '32',
-      'default' => '',
-    ),
-    'mlid' => array(
-      'type' => 'serial',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-    'plid' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-    'link_path' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'router_path' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'link_title' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'options' => array(
-      'type' => 'text',
-      'not null' => FALSE,
-      'size' => 'normal',
-    ),
-    'module' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => 'system',
-    ),
-    'hidden' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'external' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'has_children' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'expanded' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'weight' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'depth' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'customized' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'p1' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-    'p2' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-    'p3' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-    'p4' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-    'p5' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-    'p6' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-    'p7' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-    'p8' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-    'p9' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-    'updated' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-  ),
-  'primary key' => array(
-    'mlid',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->insert('menu_links')
-->fields(array(
-  'menu_name',
-  'mlid',
-  'plid',
-  'link_path',
-  'router_path',
-  'link_title',
-  'options',
-  'module',
-  'hidden',
-  'external',
-  'has_children',
-  'expanded',
-  'weight',
-  'depth',
-  'customized',
-  'p1',
-  'p2',
-  'p3',
-  'p4',
-  'p5',
-  'p6',
-  'p7',
-  'p8',
-  'p9',
-  'updated',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '141',
-  'plid' => '0',
-  'link_path' => 'node',
-  'router_path' => 'node',
-  'link_title' => 'Content',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '1',
-  'customized' => '0',
-  'p1' => '141',
-  'p2' => '0',
-  'p3' => '0',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '142',
-  'plid' => '0',
-  'link_path' => 'rss.xml',
-  'router_path' => 'rss.xml',
-  'link_title' => 'RSS feed',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '1',
-  'customized' => '0',
-  'p1' => '142',
-  'p2' => '0',
-  'p3' => '0',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '143',
-  'plid' => '0',
-  'link_path' => 'batch',
-  'router_path' => 'batch',
-  'link_title' => '',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '1',
-  'customized' => '0',
-  'p1' => '143',
-  'p2' => '0',
-  'p3' => '0',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '144',
-  'plid' => '0',
-  'link_path' => 'admin',
-  'router_path' => 'admin',
-  'link_title' => 'Administer',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '1',
-  'expanded' => '0',
-  'weight' => '9',
-  'depth' => '1',
-  'customized' => '0',
-  'p1' => '144',
-  'p2' => '0',
-  'p3' => '0',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '147',
-  'plid' => '0',
-  'link_path' => 'logout',
-  'router_path' => 'logout',
-  'link_title' => 'Log out',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '10',
-  'depth' => '1',
-  'customized' => '0',
-  'p1' => '147',
-  'p2' => '0',
-  'p3' => '0',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '148',
-  'plid' => '0',
-  'link_path' => 'user',
-  'router_path' => 'user',
-  'link_title' => 'User account',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '1',
-  'customized' => '0',
-  'p1' => '148',
-  'p2' => '0',
-  'p3' => '0',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '150',
-  'plid' => '0',
-  'link_path' => 'node/%',
-  'router_path' => 'node/%',
-  'link_title' => '',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '1',
-  'customized' => '0',
-  'p1' => '150',
-  'p2' => '0',
-  'p3' => '0',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '153',
-  'plid' => '0',
-  'link_path' => 'taxonomy/autocomplete',
-  'router_path' => 'taxonomy/autocomplete',
-  'link_title' => 'Autocomplete taxonomy',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '1',
-  'customized' => '0',
-  'p1' => '153',
-  'p2' => '0',
-  'p3' => '0',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '155',
-  'plid' => '144',
-  'link_path' => 'admin/compact',
-  'router_path' => 'admin/compact',
-  'link_title' => 'Compact mode',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '2',
-  'customized' => '0',
-  'p1' => '144',
-  'p2' => '155',
-  'p3' => '0',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '156',
-  'plid' => '0',
-  'link_path' => 'filter/tips',
-  'router_path' => 'filter/tips',
-  'link_title' => 'Compose tips',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '1',
-  'customized' => '0',
-  'p1' => '156',
-  'p2' => '0',
-  'p3' => '0',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '157',
-  'plid' => '144',
-  'link_path' => 'admin/content',
-  'router_path' => 'admin/content',
-  'link_title' => 'Content management',
-  'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:27:\"Manage your site's content.\";}}",
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '1',
-  'expanded' => '0',
-  'weight' => '-10',
-  'depth' => '2',
-  'customized' => '0',
-  'p1' => '144',
-  'p2' => '157',
-  'p3' => '0',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '158',
-  'plid' => '0',
-  'link_path' => 'node/add',
-  'router_path' => 'node/add',
-  'link_title' => 'Create content',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '1',
-  'expanded' => '0',
-  'weight' => '1',
-  'depth' => '1',
-  'customized' => '0',
-  'p1' => '158',
-  'p2' => '0',
-  'p3' => '0',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '159',
-  'plid' => '0',
-  'link_path' => 'comment/delete',
-  'router_path' => 'comment/delete',
-  'link_title' => 'Delete comment',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '1',
-  'customized' => '0',
-  'p1' => '159',
-  'p2' => '0',
-  'p3' => '0',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '160',
-  'plid' => '0',
-  'link_path' => 'comment/edit',
-  'router_path' => 'comment/edit',
-  'link_title' => 'Edit comment',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '1',
-  'customized' => '0',
-  'p1' => '160',
-  'p2' => '0',
-  'p3' => '0',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '161',
-  'plid' => '0',
-  'link_path' => 'system/files',
-  'router_path' => 'system/files',
-  'link_title' => 'File download',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '1',
-  'customized' => '0',
-  'p1' => '161',
-  'p2' => '0',
-  'p3' => '0',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '165',
-  'plid' => '144',
-  'link_path' => 'admin/reports',
-  'router_path' => 'admin/reports',
-  'link_title' => 'Reports',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:59:"View reports from system logs and other status information.";}}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '1',
-  'expanded' => '0',
-  'weight' => '5',
-  'depth' => '2',
-  'customized' => '0',
-  'p1' => '144',
-  'p2' => '165',
-  'p3' => '0',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '166',
-  'plid' => '144',
-  'link_path' => 'admin/build',
-  'router_path' => 'admin/build',
-  'link_title' => 'Site building',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:38:"Control how your site looks and feels.";}}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '1',
-  'expanded' => '0',
-  'weight' => '-10',
-  'depth' => '2',
-  'customized' => '0',
-  'p1' => '144',
-  'p2' => '166',
-  'p3' => '0',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '167',
-  'plid' => '144',
-  'link_path' => 'admin/settings',
-  'router_path' => 'admin/settings',
-  'link_title' => 'Site configuration',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:40:"Adjust basic site configuration options.";}}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '1',
-  'expanded' => '0',
-  'weight' => '-5',
-  'depth' => '2',
-  'customized' => '0',
-  'p1' => '144',
-  'p2' => '167',
-  'p3' => '0',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '169',
-  'plid' => '0',
-  'link_path' => 'user/autocomplete',
-  'router_path' => 'user/autocomplete',
-  'link_title' => 'User autocomplete',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '1',
-  'customized' => '0',
-  'p1' => '169',
-  'p2' => '0',
-  'p3' => '0',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '170',
-  'plid' => '144',
-  'link_path' => 'admin/user',
-  'router_path' => 'admin/user',
-  'link_title' => 'User management',
-  'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:61:\"Manage your site's users, groups and access to site features.\";}}",
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '1',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '2',
-  'customized' => '0',
-  'p1' => '144',
-  'p2' => '170',
-  'p3' => '0',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '172',
-  'plid' => '0',
-  'link_path' => 'user/%',
-  'router_path' => 'user/%',
-  'link_title' => 'My account',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '1',
-  'customized' => '0',
-  'p1' => '172',
-  'p2' => '0',
-  'p3' => '0',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '175',
-  'plid' => '170',
-  'link_path' => 'admin/user/rules',
-  'router_path' => 'admin/user/rules',
-  'link_title' => 'Access rules',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:80:"List and create rules to disallow usernames, e-mail addresses, and IP addresses.";}}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '3',
-  'customized' => '0',
-  'p1' => '144',
-  'p2' => '170',
-  'p3' => '175',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '176',
-  'plid' => '167',
-  'link_path' => 'admin/settings/actions',
-  'router_path' => 'admin/settings/actions',
-  'link_title' => 'Actions',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:41:"Manage the actions defined for your site.";}}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '3',
-  'customized' => '0',
-  'p1' => '144',
-  'p2' => '167',
-  'p3' => '176',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '177',
-  'plid' => '167',
-  'link_path' => 'admin/settings/admin',
-  'router_path' => 'admin/settings/admin',
-  'link_title' => 'Administration theme',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:55:"Settings for how your administrative pages should look.";}}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '3',
-  'customized' => '0',
-  'p1' => '144',
-  'p2' => '167',
-  'p3' => '177',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '178',
-  'plid' => '158',
-  'link_path' => 'node/add/article',
-  'router_path' => 'node/add/article',
-  'link_title' => 'Article',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:34:"An <em>article</em>, content type.";}}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '2',
-  'customized' => '0',
-  'p1' => '158',
-  'p2' => '178',
-  'p3' => '0',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '179',
-  'plid' => '166',
-  'link_path' => 'admin/build/block',
-  'router_path' => 'admin/build/block',
-  'link_title' => 'Blocks',
-  'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:79:\"Configure what block content appears in your site's sidebars and other regions.\";}}",
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '3',
-  'customized' => '0',
-  'p1' => '144',
-  'p2' => '166',
-  'p3' => '179',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '180',
-  'plid' => '167',
-  'link_path' => 'admin/settings/clean-urls',
-  'router_path' => 'admin/settings/clean-urls',
-  'link_title' => 'Clean URLs',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:43:"Enable or disable clean URLs for your site.";}}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '3',
-  'customized' => '0',
-  'p1' => '144',
-  'p2' => '167',
-  'p3' => '180',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '181',
-  'plid' => '157',
-  'link_path' => 'admin/content/comment',
-  'router_path' => 'admin/content/comment',
-  'link_title' => 'Comments',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:61:"List and edit site comments and the comment moderation queue.";}}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '3',
-  'customized' => '0',
-  'p1' => '144',
-  'p2' => '157',
-  'p3' => '181',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '182',
-  'plid' => '158',
-  'link_path' => 'node/add/company',
-  'router_path' => 'node/add/company',
-  'link_title' => 'Company',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:17:"Company node type";}}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '2',
-  'customized' => '0',
-  'p1' => '158',
-  'p2' => '182',
-  'p3' => '0',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '184',
-  'plid' => '157',
-  'link_path' => 'admin/content/node',
-  'router_path' => 'admin/content/node',
-  'link_title' => 'Content',
-  'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:43:\"View, edit, and delete your site's content.\";}}",
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '3',
-  'customized' => '0',
-  'p1' => '144',
-  'p2' => '157',
-  'p3' => '184',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '185',
-  'plid' => '157',
-  'link_path' => 'admin/content/types',
-  'router_path' => 'admin/content/types',
-  'link_title' => 'Content types',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:82:"Manage posts by content type, including default status, front page promotion, etc.";}}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '3',
-  'customized' => '0',
-  'p1' => '144',
-  'p2' => '157',
-  'p3' => '185',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '186',
-  'plid' => '167',
-  'link_path' => 'admin/settings/date-time',
-  'router_path' => 'admin/settings/date-time',
-  'link_title' => 'Date and time',
-  'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:89:\"Settings for how Drupal displays date and time, as well as the system's default timezone.\";}}",
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '3',
-  'customized' => '0',
-  'p1' => '144',
-  'p2' => '167',
-  'p3' => '186',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '187',
-  'plid' => '0',
-  'link_path' => 'node/%/delete',
-  'router_path' => 'node/%/delete',
-  'link_title' => 'Delete',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '1',
-  'depth' => '1',
-  'customized' => '0',
-  'p1' => '187',
-  'p2' => '0',
-  'p3' => '0',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '188',
-  'plid' => '172',
-  'link_path' => 'user/%/delete',
-  'router_path' => 'user/%/delete',
-  'link_title' => 'Delete',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '2',
-  'customized' => '0',
-  'p1' => '172',
-  'p2' => '188',
-  'p3' => '0',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '189',
-  'plid' => '158',
-  'link_path' => 'node/add/employee',
-  'router_path' => 'node/add/employee',
-  'link_title' => 'Employee',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:18:"Employee node type";}}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '2',
-  'customized' => '0',
-  'p1' => '158',
-  'p2' => '189',
-  'p3' => '0',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '190',
-  'plid' => '167',
-  'link_path' => 'admin/settings/error-reporting',
-  'router_path' => 'admin/settings/error-reporting',
-  'link_title' => 'Error reporting',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:93:"Control how Drupal deals with errors including 403/404 errors as well as PHP error reporting.";}}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '3',
-  'customized' => '0',
-  'p1' => '144',
-  'p2' => '167',
-  'p3' => '190',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '192',
-  'plid' => '167',
-  'link_path' => 'admin/settings/file-system',
-  'router_path' => 'admin/settings/file-system',
-  'link_title' => 'File system',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:68:"Tell Drupal where to store uploaded files and how they are accessed.";}}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '3',
-  'customized' => '0',
-  'p1' => '144',
-  'p2' => '167',
-  'p3' => '192',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '194',
-  'plid' => '167',
-  'link_path' => 'admin/settings/image-toolkit',
-  'router_path' => 'admin/settings/image-toolkit',
-  'link_title' => 'Image toolkit',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:74:"Choose which image toolkit to use if you have installed optional toolkits.";}}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '3',
-  'customized' => '0',
-  'p1' => '144',
-  'p2' => '167',
-  'p3' => '194',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '195',
-  'plid' => '167',
-  'link_path' => 'admin/settings/filters',
-  'router_path' => 'admin/settings/filters',
-  'link_title' => 'Input formats',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:127:"Configure how content input by users is filtered, including allowed HTML tags. Also allows enabling of module-provided filters.";}}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '3',
-  'customized' => '0',
-  'p1' => '144',
-  'p2' => '167',
-  'p3' => '195',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '196',
-  'plid' => '167',
-  'link_path' => 'admin/settings/logging',
-  'router_path' => 'admin/settings/logging',
-  'link_title' => 'Logging and alerts',
-  'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:156:\"Settings for logging and alerts modules. Various modules can route Drupal's system events to different destination, such as syslog, database, email, ...etc.\";}}",
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '3',
-  'customized' => '0',
-  'p1' => '144',
-  'p2' => '167',
-  'p3' => '196',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '197',
-  'plid' => '166',
-  'link_path' => 'admin/build/menu',
-  'router_path' => 'admin/build/menu',
-  'link_title' => 'Menus',
-  'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:116:\"Control your site's navigation menu, primary links and secondary links, as well as rename and reorganize menu items.\";}}",
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '3',
-  'customized' => '0',
-  'p1' => '144',
-  'p2' => '166',
-  'p3' => '197',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '202',
-  'plid' => '166',
-  'link_path' => 'admin/build/modules',
-  'router_path' => 'admin/build/modules',
-  'link_title' => 'Modules',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:47:"Enable or disable add-on modules for your site.";}}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '3',
-  'customized' => '0',
-  'p1' => '144',
-  'p2' => '166',
-  'p3' => '202',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '203',
-  'plid' => '167',
-  'link_path' => 'admin/settings/performance',
-  'router_path' => 'admin/settings/performance',
-  'link_title' => 'Performance',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:101:"Enable or disable page caching for anonymous users and set CSS and JS bandwidth optimization options.";}}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '3',
-  'customized' => '0',
-  'p1' => '144',
-  'p2' => '167',
-  'p3' => '203',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '204',
-  'plid' => '170',
-  'link_path' => 'admin/user/permissions',
-  'router_path' => 'admin/user/permissions',
-  'link_title' => 'Permissions',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:64:"Determine access to features by selecting permissions for roles.";}}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '3',
-  'customized' => '0',
-  'p1' => '144',
-  'p2' => '170',
-  'p3' => '204',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '205',
-  'plid' => '157',
-  'link_path' => 'admin/content/node-settings',
-  'router_path' => 'admin/content/node-settings',
-  'link_title' => 'Post settings',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:126:"Control posting behavior, such as teaser length, requiring previews before posting, and the number of posts on the front page.";}}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '3',
-  'customized' => '0',
-  'p1' => '144',
-  'p2' => '157',
-  'p3' => '205',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '207',
-  'plid' => '157',
-  'link_path' => 'admin/content/rss-publishing',
-  'router_path' => 'admin/content/rss-publishing',
-  'link_title' => 'RSS publishing',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:92:"Configure the number of items per feed and whether feeds should be titles/teasers/full-text.";}}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '3',
-  'customized' => '0',
-  'p1' => '144',
-  'p2' => '157',
-  'p3' => '207',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '208',
-  'plid' => '0',
-  'link_path' => 'comment/reply/%',
-  'router_path' => 'comment/reply/%',
-  'link_title' => 'Reply to comment',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '1',
-  'customized' => '0',
-  'p1' => '208',
-  'p2' => '0',
-  'p3' => '0',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '209',
-  'plid' => '170',
-  'link_path' => 'admin/user/roles',
-  'router_path' => 'admin/user/roles',
-  'link_title' => 'Roles',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:30:"List, edit, or add user roles.";}}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '3',
-  'customized' => '0',
-  'p1' => '144',
-  'p2' => '170',
-  'p3' => '209',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '210',
-  'plid' => '167',
-  'link_path' => 'admin/settings/site-information',
-  'router_path' => 'admin/settings/site-information',
-  'link_title' => 'Site information',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:107:"Change basic site information, such as the site name, slogan, e-mail address, mission, front page and more.";}}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '3',
-  'customized' => '0',
-  'p1' => '144',
-  'p2' => '167',
-  'p3' => '210',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '211',
-  'plid' => '167',
-  'link_path' => 'admin/settings/site-maintenance',
-  'router_path' => 'admin/settings/site-maintenance',
-  'link_title' => 'Site maintenance',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:63:"Take the site off-line for maintenance or bring it back online.";}}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '3',
-  'customized' => '0',
-  'p1' => '144',
-  'p2' => '167',
-  'p3' => '211',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '212',
-  'plid' => '158',
-  'link_path' => 'node/add/sponsor',
-  'router_path' => 'node/add/sponsor',
-  'link_title' => 'Sponsor',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:17:"Sponsor node type";}}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '2',
-  'customized' => '0',
-  'p1' => '158',
-  'p2' => '212',
-  'p3' => '0',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '213',
-  'plid' => '165',
-  'link_path' => 'admin/reports/status',
-  'router_path' => 'admin/reports/status',
-  'link_title' => 'Status report',
-  'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:74:\"Get a status report about your site's operation and any detected problems.\";}}",
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '10',
-  'depth' => '3',
-  'customized' => '0',
-  'p1' => '144',
-  'p2' => '165',
-  'p3' => '213',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '214',
-  'plid' => '157',
-  'link_path' => 'admin/content/taxonomy',
-  'router_path' => 'admin/content/taxonomy',
-  'link_title' => 'Taxonomy',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:67:"Manage tagging, categorization, and classification of your content.";}}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '3',
-  'customized' => '0',
-  'p1' => '144',
-  'p2' => '157',
-  'p3' => '214',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '215',
-  'plid' => '0',
-  'link_path' => 'taxonomy/term/%',
-  'router_path' => 'taxonomy/term/%',
-  'link_title' => 'Taxonomy term',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '1',
-  'customized' => '0',
-  'p1' => '215',
-  'p2' => '0',
-  'p3' => '0',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '216',
-  'plid' => '166',
-  'link_path' => 'admin/build/themes',
-  'router_path' => 'admin/build/themes',
-  'link_title' => 'Themes',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:57:"Change which theme your site uses or allows users to set.";}}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '3',
-  'customized' => '0',
-  'p1' => '144',
-  'p2' => '166',
-  'p3' => '216',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '217',
-  'plid' => '170',
-  'link_path' => 'admin/user/settings',
-  'router_path' => 'admin/user/settings',
-  'link_title' => 'User settings',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:101:"Configure default behavior of users, including registration requirements, e-mails, and user pictures.";}}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '3',
-  'customized' => '0',
-  'p1' => '144',
-  'p2' => '170',
-  'p3' => '217',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '218',
-  'plid' => '170',
-  'link_path' => 'admin/user/user',
-  'router_path' => 'admin/user/user',
-  'link_title' => 'Users',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:26:"List, add, and edit users.";}}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '3',
-  'customized' => '0',
-  'p1' => '144',
-  'p2' => '170',
-  'p3' => '218',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '219',
-  'plid' => '195',
-  'link_path' => 'admin/settings/filters/%',
-  'router_path' => 'admin/settings/filters/%',
-  'link_title' => '',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '4',
-  'customized' => '0',
-  'p1' => '144',
-  'p2' => '167',
-  'p3' => '195',
-  'p4' => '219',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '221',
-  'plid' => '157',
-  'link_path' => 'admin/content/node-type/article',
-  'router_path' => 'admin/content/node-type/article',
-  'link_title' => 'Article',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '3',
-  'customized' => '0',
-  'p1' => '144',
-  'p2' => '157',
-  'p3' => '221',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '222',
-  'plid' => '180',
-  'link_path' => 'admin/settings/clean-urls/check',
-  'router_path' => 'admin/settings/clean-urls/check',
-  'link_title' => 'Clean URL check',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '4',
-  'customized' => '0',
-  'p1' => '144',
-  'p2' => '167',
-  'p3' => '180',
-  'p4' => '222',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '223',
-  'plid' => '157',
-  'link_path' => 'admin/content/node-type/company',
-  'router_path' => 'admin/content/node-type/company',
-  'link_title' => 'Company',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '3',
-  'customized' => '0',
-  'p1' => '144',
-  'p2' => '157',
-  'p3' => '223',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '224',
-  'plid' => '176',
-  'link_path' => 'admin/settings/actions/configure',
-  'router_path' => 'admin/settings/actions/configure',
-  'link_title' => 'Configure an advanced action',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '4',
-  'customized' => '0',
-  'p1' => '144',
-  'p2' => '167',
-  'p3' => '176',
-  'p4' => '224',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '225',
-  'plid' => '179',
-  'link_path' => 'admin/build/block/configure',
-  'router_path' => 'admin/build/block/configure',
-  'link_title' => 'Configure block',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '4',
-  'customized' => '0',
-  'p1' => '144',
-  'p2' => '166',
-  'p3' => '179',
-  'p4' => '225',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '226',
-  'plid' => '166',
-  'link_path' => 'admin/build/menu-customize/%',
-  'router_path' => 'admin/build/menu-customize/%',
-  'link_title' => 'Customize menu',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '3',
-  'customized' => '0',
-  'p1' => '144',
-  'p2' => '166',
-  'p3' => '226',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '227',
-  'plid' => '186',
-  'link_path' => 'admin/settings/date-time/lookup',
-  'router_path' => 'admin/settings/date-time/lookup',
-  'link_title' => 'Date and time lookup',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '4',
-  'customized' => '0',
-  'p1' => '144',
-  'p2' => '167',
-  'p3' => '186',
-  'p4' => '227',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '228',
-  'plid' => '179',
-  'link_path' => 'admin/build/block/delete',
-  'router_path' => 'admin/build/block/delete',
-  'link_title' => 'Delete block',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '4',
-  'customized' => '0',
-  'p1' => '144',
-  'p2' => '166',
-  'p3' => '179',
-  'p4' => '228',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '230',
-  'plid' => '195',
-  'link_path' => 'admin/settings/filters/delete',
-  'router_path' => 'admin/settings/filters/delete',
-  'link_title' => 'Delete input format',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '4',
-  'customized' => '0',
-  'p1' => '144',
-  'p2' => '167',
-  'p3' => '195',
-  'p4' => '230',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '231',
-  'plid' => '175',
-  'link_path' => 'admin/user/rules/delete',
-  'router_path' => 'admin/user/rules/delete',
-  'link_title' => 'Delete rule',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '4',
-  'customized' => '0',
-  'p1' => '144',
-  'p2' => '170',
-  'p3' => '175',
-  'p4' => '231',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '233',
-  'plid' => '209',
-  'link_path' => 'admin/user/roles/edit',
-  'router_path' => 'admin/user/roles/edit',
-  'link_title' => 'Edit role',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '4',
-  'customized' => '0',
-  'p1' => '144',
-  'p2' => '170',
-  'p3' => '209',
-  'p4' => '233',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '234',
-  'plid' => '175',
-  'link_path' => 'admin/user/rules/edit',
-  'router_path' => 'admin/user/rules/edit',
-  'link_title' => 'Edit rule',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '4',
-  'customized' => '0',
-  'p1' => '144',
-  'p2' => '170',
-  'p3' => '175',
-  'p4' => '234',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '235',
-  'plid' => '157',
-  'link_path' => 'admin/content/node-type/employee',
-  'router_path' => 'admin/content/node-type/employee',
-  'link_title' => 'Employee',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '3',
-  'customized' => '0',
-  'p1' => '144',
-  'p2' => '157',
-  'p3' => '235',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '236',
-  'plid' => '214',
-  'link_path' => 'admin/content/taxonomy/%',
-  'router_path' => 'admin/content/taxonomy/%',
-  'link_title' => 'List terms',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '4',
-  'customized' => '0',
-  'p1' => '144',
-  'p2' => '157',
-  'p3' => '214',
-  'p4' => '236',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '241',
-  'plid' => '213',
-  'link_path' => 'admin/reports/status/php',
-  'router_path' => 'admin/reports/status/php',
-  'link_title' => 'PHP',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '4',
-  'customized' => '0',
-  'p1' => '144',
-  'p2' => '165',
-  'p3' => '213',
-  'p4' => '241',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '243',
-  'plid' => '205',
-  'link_path' => 'admin/content/node-settings/rebuild',
-  'router_path' => 'admin/content/node-settings/rebuild',
-  'link_title' => 'Rebuild permissions',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '4',
-  'customized' => '0',
-  'p1' => '144',
-  'p2' => '157',
-  'p3' => '205',
-  'p4' => '243',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '244',
-  'plid' => '176',
-  'link_path' => 'admin/settings/actions/orphan',
-  'router_path' => 'admin/settings/actions/orphan',
-  'link_title' => 'Remove orphans',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '4',
-  'customized' => '0',
-  'p1' => '144',
-  'p2' => '167',
-  'p3' => '176',
-  'p4' => '244',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '245',
-  'plid' => '213',
-  'link_path' => 'admin/reports/status/run-cron',
-  'router_path' => 'admin/reports/status/run-cron',
-  'link_title' => 'Run cron',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '4',
-  'customized' => '0',
-  'p1' => '144',
-  'p2' => '165',
-  'p3' => '213',
-  'p4' => '245',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '246',
-  'plid' => '213',
-  'link_path' => 'admin/reports/status/sql',
-  'router_path' => 'admin/reports/status/sql',
-  'link_title' => 'SQL',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '4',
-  'customized' => '0',
-  'p1' => '144',
-  'p2' => '165',
-  'p3' => '213',
-  'p4' => '246',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '247',
-  'plid' => '157',
-  'link_path' => 'admin/content/node-type/sponsor',
-  'router_path' => 'admin/content/node-type/sponsor',
-  'link_title' => 'Sponsor',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '3',
-  'customized' => '0',
-  'p1' => '144',
-  'p2' => '157',
-  'p3' => '247',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '249',
-  'plid' => '0',
-  'link_path' => 'admin/content/node-type/article/delete',
-  'router_path' => 'admin/content/node-type/article/delete',
-  'link_title' => 'Delete',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '1',
-  'customized' => '0',
-  'p1' => '249',
-  'p2' => '0',
-  'p3' => '0',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '250',
-  'plid' => '0',
-  'link_path' => 'admin/content/node-type/company/delete',
-  'router_path' => 'admin/content/node-type/company/delete',
-  'link_title' => 'Delete',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '1',
-  'customized' => '0',
-  'p1' => '250',
-  'p2' => '0',
-  'p3' => '0',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '251',
-  'plid' => '0',
-  'link_path' => 'admin/content/node-type/employee/delete',
-  'router_path' => 'admin/content/node-type/employee/delete',
-  'link_title' => 'Delete',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '1',
-  'customized' => '0',
-  'p1' => '251',
-  'p2' => '0',
-  'p3' => '0',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '252',
-  'plid' => '0',
-  'link_path' => 'admin/content/node-type/sponsor/delete',
-  'router_path' => 'admin/content/node-type/sponsor/delete',
-  'link_title' => 'Delete',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '1',
-  'customized' => '0',
-  'p1' => '252',
-  'p2' => '0',
-  'p3' => '0',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '257',
-  'plid' => '176',
-  'link_path' => 'admin/settings/actions/delete/%',
-  'router_path' => 'admin/settings/actions/delete/%',
-  'link_title' => 'Delete action',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:17:"Delete an action.";}}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '4',
-  'customized' => '0',
-  'p1' => '144',
-  'p2' => '167',
-  'p3' => '176',
-  'p4' => '257',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '260',
-  'plid' => '0',
-  'link_path' => 'admin/build/menu-customize/%/delete',
-  'router_path' => 'admin/build/menu-customize/%/delete',
-  'link_title' => 'Delete menu',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '1',
-  'customized' => '0',
-  'p1' => '260',
-  'p2' => '0',
-  'p3' => '0',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '262',
-  'plid' => '214',
-  'link_path' => 'admin/content/taxonomy/edit/term',
-  'router_path' => 'admin/content/taxonomy/edit/term',
-  'link_title' => 'Edit term',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '4',
-  'customized' => '0',
-  'p1' => '144',
-  'p2' => '157',
-  'p3' => '214',
-  'p4' => '262',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '263',
-  'plid' => '179',
-  'link_path' => 'admin/build/block/list/js',
-  'router_path' => 'admin/build/block/list/js',
-  'link_title' => 'JavaScript List Form',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '4',
-  'customized' => '0',
-  'p1' => '144',
-  'p2' => '166',
-  'p3' => '179',
-  'p4' => '263',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '264',
-  'plid' => '202',
-  'link_path' => 'admin/build/modules/list/confirm',
-  'router_path' => 'admin/build/modules/list/confirm',
-  'link_title' => 'List',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '4',
-  'customized' => '0',
-  'p1' => '144',
-  'p2' => '166',
-  'p3' => '202',
-  'p4' => '264',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '266',
-  'plid' => '0',
-  'link_path' => 'user/reset/%/%/%',
-  'router_path' => 'user/reset/%/%/%',
-  'link_title' => 'Reset password',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '1',
-  'customized' => '0',
-  'p1' => '266',
-  'p2' => '0',
-  'p3' => '0',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '267',
-  'plid' => '202',
-  'link_path' => 'admin/build/modules/uninstall/confirm',
-  'router_path' => 'admin/build/modules/uninstall/confirm',
-  'link_title' => 'Uninstall',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '4',
-  'customized' => '0',
-  'p1' => '144',
-  'p2' => '166',
-  'p3' => '202',
-  'p4' => '267',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '269',
-  'plid' => '0',
-  'link_path' => 'node/%/revisions/%/delete',
-  'router_path' => 'node/%/revisions/%/delete',
-  'link_title' => 'Delete earlier revision',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '1',
-  'customized' => '0',
-  'p1' => '269',
-  'p2' => '0',
-  'p3' => '0',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '270',
-  'plid' => '0',
-  'link_path' => 'node/%/revisions/%/revert',
-  'router_path' => 'node/%/revisions/%/revert',
-  'link_title' => 'Revert to earlier revision',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '1',
-  'customized' => '0',
-  'p1' => '270',
-  'p2' => '0',
-  'p3' => '0',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '271',
-  'plid' => '0',
-  'link_path' => 'node/%/revisions/%/view',
-  'router_path' => 'node/%/revisions/%/view',
-  'link_title' => 'Revisions',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '1',
-  'customized' => '0',
-  'p1' => '271',
-  'p2' => '0',
-  'p3' => '0',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '273',
-  'plid' => '197',
-  'link_path' => 'admin/build/menu/item/%/delete',
-  'router_path' => 'admin/build/menu/item/%/delete',
-  'link_title' => 'Delete menu item',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '4',
-  'customized' => '0',
-  'p1' => '144',
-  'p2' => '166',
-  'p3' => '197',
-  'p4' => '273',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '276',
-  'plid' => '197',
-  'link_path' => 'admin/build/menu/item/%/edit',
-  'router_path' => 'admin/build/menu/item/%/edit',
-  'link_title' => 'Edit menu item',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '4',
-  'customized' => '0',
-  'p1' => '144',
-  'p2' => '166',
-  'p3' => '197',
-  'p4' => '276',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '277',
-  'plid' => '214',
-  'link_path' => 'admin/content/taxonomy/edit/vocabulary/%',
-  'router_path' => 'admin/content/taxonomy/edit/vocabulary/%',
-  'link_title' => 'Edit vocabulary',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '4',
-  'customized' => '0',
-  'p1' => '144',
-  'p2' => '157',
-  'p3' => '214',
-  'p4' => '277',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '278',
-  'plid' => '197',
-  'link_path' => 'admin/build/menu/item/%/reset',
-  'router_path' => 'admin/build/menu/item/%/reset',
-  'link_title' => 'Reset menu item',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '4',
-  'customized' => '0',
-  'p1' => '144',
-  'p2' => '166',
-  'p3' => '197',
-  'p4' => '278',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '309',
-  'plid' => '158',
-  'link_path' => 'node/add/story',
-  'router_path' => 'node/add/story',
-  'link_title' => 'Story',
-  'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:392:\"A <em>story</em>, similar in form to a <em>page</em>, is ideal for creating and displaying content that informs or engages website visitors. Press releases, site announcements, and informal blog-like entries may all be created with a <em>story</em> entry. By default, a <em>story</em> entry is automatically featured on the site's initial home page, and provides the ability to post comments.\";}}",
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '2',
-  'customized' => '0',
-  'p1' => '158',
-  'p2' => '309',
-  'p3' => '0',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '310',
-  'plid' => '157',
-  'link_path' => 'admin/content/node-type/story',
-  'router_path' => 'admin/content/node-type/story',
-  'link_title' => 'Story',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '3',
-  'customized' => '0',
-  'p1' => '144',
-  'p2' => '157',
-  'p3' => '310',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '311',
-  'plid' => '0',
-  'link_path' => 'admin/content/node-type/story/delete',
-  'router_path' => 'admin/content/node-type/story/delete',
-  'link_title' => 'Delete',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '1',
-  'customized' => '0',
-  'p1' => '311',
-  'p2' => '0',
-  'p3' => '0',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '394',
-  'plid' => '166',
-  'link_path' => 'admin/build/path',
-  'router_path' => 'admin/build/path',
-  'link_title' => 'URL aliases',
-  'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:46:\"Change your site's URL paths by aliasing them.\";}}",
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '3',
-  'customized' => '0',
-  'p1' => '144',
-  'p2' => '166',
-  'p3' => '394',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '395',
-  'plid' => '394',
-  'link_path' => 'admin/build/path/delete',
-  'router_path' => 'admin/build/path/delete',
-  'link_title' => 'Delete alias',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '4',
-  'customized' => '0',
-  'p1' => '144',
-  'p2' => '166',
-  'p3' => '394',
-  'p4' => '395',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '396',
-  'plid' => '394',
-  'link_path' => 'admin/build/path/edit',
-  'router_path' => 'admin/build/path/edit',
-  'link_title' => 'Edit alias',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '4',
-  'customized' => '0',
-  'p1' => '144',
-  'p2' => '166',
-  'p3' => '394',
-  'p4' => '396',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '441',
-  'plid' => '0',
-  'link_path' => 'forum',
-  'router_path' => 'forum',
-  'link_title' => 'Forums',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '1',
-  'customized' => '0',
-  'p1' => '441',
-  'p2' => '0',
-  'p3' => '0',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '443',
-  'plid' => '158',
-  'link_path' => 'node/add/forum',
-  'router_path' => 'node/add/forum',
-  'link_title' => 'Forum topic',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:85:"A <em>forum topic</em> is the initial post to a new discussion thread within a forum.";}}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '2',
-  'customized' => '0',
-  'p1' => '158',
-  'p2' => '443',
-  'p3' => '0',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '444',
-  'plid' => '157',
-  'link_path' => 'admin/content/forum',
-  'router_path' => 'admin/content/forum',
-  'link_title' => 'Forums',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:61:"Control forums and their hierarchy and change forum settings.";}}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '3',
-  'customized' => '0',
-  'p1' => '144',
-  'p2' => '157',
-  'p3' => '444',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '450',
-  'plid' => '157',
-  'link_path' => 'admin/content/node-type/forum',
-  'router_path' => 'admin/content/node-type/forum',
-  'link_title' => 'Forum topic',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '3',
-  'customized' => '0',
-  'p1' => '144',
-  'p2' => '157',
-  'p3' => '450',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '451',
-  'plid' => '444',
-  'link_path' => 'admin/content/forum/edit/%',
-  'router_path' => 'admin/content/forum/edit/%',
-  'link_title' => '',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '4',
-  'customized' => '0',
-  'p1' => '144',
-  'p2' => '157',
-  'p3' => '444',
-  'p4' => '451',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '452',
-  'plid' => '0',
-  'link_path' => 'admin/content/node-type/forum/delete',
-  'router_path' => 'admin/content/node-type/forum/delete',
-  'link_title' => 'Delete',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '1',
-  'customized' => '0',
-  'p1' => '452',
-  'p2' => '0',
-  'p3' => '0',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '453',
-  'plid' => '444',
-  'link_path' => 'admin/content/forum/edit/container/%',
-  'router_path' => 'admin/content/forum/edit/container/%',
-  'link_title' => 'Edit container',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '4',
-  'customized' => '0',
-  'p1' => '144',
-  'p2' => '157',
-  'p3' => '444',
-  'p4' => '453',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '454',
-  'plid' => '444',
-  'link_path' => 'admin/content/forum/edit/forum/%',
-  'router_path' => 'admin/content/forum/edit/forum/%',
-  'link_title' => 'Edit forum',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '4',
-  'customized' => '0',
-  'p1' => '144',
-  'p2' => '157',
-  'p3' => '444',
-  'p4' => '454',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '464',
-  'plid' => '158',
-  'link_path' => 'node/add/page',
-  'router_path' => 'node/add/page',
-  'link_title' => 'Page',
-  'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:296:\"A <em>page</em>, similar in form to a <em>story</em>, is a simple method for creating and displaying information that rarely changes, such as an \"About us\" section of a website. By default, a <em>page</em> entry does not allow visitor comments and is not featured on the site's initial home page.\";}}",
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '2',
-  'customized' => '0',
-  'p1' => '158',
-  'p2' => '464',
-  'p3' => '0',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '465',
-  'plid' => '157',
-  'link_path' => 'admin/content/node-type/page',
-  'router_path' => 'admin/content/node-type/page',
-  'link_title' => 'Page',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '3',
-  'customized' => '0',
-  'p1' => '144',
-  'p2' => '157',
-  'p3' => '465',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '466',
-  'plid' => '0',
-  'link_path' => 'admin/content/node-type/page/delete',
-  'router_path' => 'admin/content/node-type/page/delete',
-  'link_title' => 'Delete',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '1',
-  'customized' => '0',
-  'p1' => '466',
-  'p2' => '0',
-  'p3' => '0',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '472',
-  'plid' => '0',
-  'link_path' => 'search',
-  'router_path' => 'search',
-  'link_title' => 'Search',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '1',
-  'customized' => '0',
-  'p1' => '472',
-  'p2' => '0',
-  'p3' => '0',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '474',
-  'plid' => '167',
-  'link_path' => 'admin/settings/search',
-  'router_path' => 'admin/settings/search',
-  'link_title' => 'Search settings',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:66:"Configure relevance settings for search and other indexing options";}}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '3',
-  'customized' => '0',
-  'p1' => '144',
-  'p2' => '167',
-  'p3' => '474',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '476',
-  'plid' => '165',
-  'link_path' => 'admin/reports/search',
-  'router_path' => 'admin/reports/search',
-  'link_title' => 'Top search phrases',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:33:"View most popular search phrases.";}}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '3',
-  'customized' => '0',
-  'p1' => '144',
-  'p2' => '165',
-  'p3' => '476',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '477',
-  'plid' => '474',
-  'link_path' => 'admin/settings/search/wipe',
-  'router_path' => 'admin/settings/search/wipe',
-  'link_title' => 'Clear index',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '4',
-  'customized' => '0',
-  'p1' => '144',
-  'p2' => '167',
-  'p3' => '474',
-  'p4' => '477',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '478',
-  'plid' => '0',
-  'link_path' => 'content/js_add_more',
-  'router_path' => 'content/js_add_more',
-  'link_title' => '',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '1',
-  'customized' => '0',
-  'p1' => '478',
-  'p2' => '0',
-  'p3' => '0',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '479',
-  'plid' => '0',
-  'link_path' => 'admin/content/node-type/employee/fields/field_sync/remove',
-  'router_path' => 'admin/content/node-type/employee/fields/field_sync/remove',
-  'link_title' => 'Remove field',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '1',
-  'customized' => '0',
-  'p1' => '479',
-  'p2' => '0',
-  'p3' => '0',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '480',
-  'plid' => '0',
-  'link_path' => 'admin/content/node-type/forum/fields/field_forums/remove',
-  'router_path' => 'admin/content/node-type/forum/fields/field_forums/remove',
-  'link_title' => 'Remove field',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '1',
-  'customized' => '0',
-  'p1' => '480',
-  'p2' => '0',
-  'p3' => '0',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '481',
-  'plid' => '0',
-  'link_path' => 'upload/js',
-  'router_path' => 'upload/js',
-  'link_title' => '',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '1',
-  'customized' => '0',
-  'p1' => '481',
-  'p2' => '0',
-  'p3' => '0',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '482',
-  'plid' => '167',
-  'link_path' => 'admin/settings/uploads',
-  'router_path' => 'admin/settings/uploads',
-  'link_title' => 'File uploads',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:45:"Control how files may be attached to content.";}}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '3',
-  'customized' => '0',
-  'p1' => '144',
-  'p2' => '167',
-  'p3' => '482',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->execute();
-$connection->schema()->createTable('menu_router', array(
-  'fields' => array(
-    'path' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'load_functions' => array(
-      'type' => 'text',
-      'not null' => TRUE,
-      'size' => 'normal',
-    ),
-    'to_arg_functions' => array(
-      'type' => 'text',
-      'not null' => TRUE,
-      'size' => 'normal',
-    ),
-    'access_callback' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'access_arguments' => array(
-      'type' => 'text',
-      'not null' => FALSE,
-      'size' => 'normal',
-    ),
-    'page_callback' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'page_arguments' => array(
-      'type' => 'text',
-      'not null' => FALSE,
-      'size' => 'normal',
-    ),
-    'fit' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'number_parts' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'tab_parent' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'tab_root' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'title' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'title_callback' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'title_arguments' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'type' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'block_callback' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'description' => array(
-      'type' => 'text',
-      'not null' => TRUE,
-      'size' => 'normal',
-    ),
-    'position' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'weight' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'file' => array(
-      'type' => 'text',
-      'not null' => FALSE,
-      'size' => 'normal',
-    ),
-  ),
-  'primary key' => array(
-    'path',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->insert('menu_router')
-->fields(array(
-  'path',
-  'load_functions',
-  'to_arg_functions',
-  'access_callback',
-  'access_arguments',
-  'page_callback',
-  'page_arguments',
-  'fit',
-  'number_parts',
-  'tab_parent',
-  'tab_root',
-  'title',
-  'title_callback',
-  'title_arguments',
-  'type',
-  'block_callback',
-  'description',
-  'position',
-  'weight',
-  'file',
-))
-->values(array(
-  'path' => 'admin',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
-  'page_callback' => 'system_main_admin_page',
-  'page_arguments' => 'a:0:{}',
-  'fit' => '1',
-  'number_parts' => '1',
-  'tab_parent' => '',
-  'tab_root' => 'admin',
-  'title' => 'Administer',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '6',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '9',
-  'file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'admin/build',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
-  'page_callback' => 'system_admin_menu_block_page',
-  'page_arguments' => 'a:0:{}',
-  'fit' => '3',
-  'number_parts' => '2',
-  'tab_parent' => '',
-  'tab_root' => 'admin/build',
-  'title' => 'Site building',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '6',
-  'block_callback' => '',
-  'description' => 'Control how your site looks and feels.',
-  'position' => 'right',
-  'weight' => '-10',
-  'file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'admin/build/block',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}',
-  'page_callback' => 'block_admin_display',
-  'page_arguments' => 'a:0:{}',
-  'fit' => '7',
-  'number_parts' => '3',
-  'tab_parent' => '',
-  'tab_root' => 'admin/build/block',
-  'title' => 'Blocks',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '6',
-  'block_callback' => '',
-  'description' => "Configure what block content appears in your site's sidebars and other regions.",
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/block/block.admin.inc',
-))
-->values(array(
-  'path' => 'admin/build/block/add',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:20:"block_add_block_form";}',
-  'fit' => '15',
-  'number_parts' => '4',
-  'tab_parent' => 'admin/build/block',
-  'tab_root' => 'admin/build/block',
-  'title' => 'Add block',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '128',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/block/block.admin.inc',
-))
-->values(array(
-  'path' => 'admin/build/block/configure',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:21:"block_admin_configure";}',
-  'fit' => '15',
-  'number_parts' => '4',
-  'tab_parent' => '',
-  'tab_root' => 'admin/build/block/configure',
-  'title' => 'Configure block',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '4',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/block/block.admin.inc',
-))
-->values(array(
-  'path' => 'admin/build/block/delete',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:16:"block_box_delete";}',
-  'fit' => '15',
-  'number_parts' => '4',
-  'tab_parent' => '',
-  'tab_root' => 'admin/build/block/delete',
-  'title' => 'Delete block',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '4',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/block/block.admin.inc',
-))
-->values(array(
-  'path' => 'admin/build/block/list',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}',
-  'page_callback' => 'block_admin_display',
-  'page_arguments' => 'a:0:{}',
-  'fit' => '15',
-  'number_parts' => '4',
-  'tab_parent' => 'admin/build/block',
-  'tab_root' => 'admin/build/block',
-  'title' => 'List',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '136',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '-10',
-  'file' => 'modules/block/block.admin.inc',
-))
-->values(array(
-  'path' => 'admin/build/block/list/bluemarine',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => '_block_themes_access',
-  'access_arguments' => 'a:1:{i:0;O:8:"stdClass":12:{s:8:"filename";s:33:"themes/bluemarine/bluemarine.info";s:4:"name";s:10:"bluemarine";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"0";s:8:"throttle";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:11:{s:4:"name";s:10:"Bluemarine";s:11:"description";s:66:"Table-based multi-column theme with a marine and ash color scheme.";s:7:"version";s:4:"6.38";s:4:"core";s:3:"6.x";s:6:"engine";s:11:"phptemplate";s:7:"regions";a:5:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";s:7:"content";s:7:"Content";s:6:"header";s:6:"Header";s:6:"footer";s:6:"Footer";}s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:27:"themes/bluemarine/style.css";}}s:7:"scripts";a:1:{s:9:"script.js";s:27:"themes/bluemarine/script.js";}s:10:"screenshot";s:32:"themes/bluemarine/screenshot.png";s:3:"php";s:5:"4.3.5";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:27:"themes/bluemarine/style.css";}}s:6:"engine";s:11:"phptemplate";}}',
-  'page_callback' => 'block_admin_display',
-  'page_arguments' => 'a:1:{i:0;s:10:"bluemarine";}',
-  'fit' => '31',
-  'number_parts' => '5',
-  'tab_parent' => 'admin/build/block/list',
-  'tab_root' => 'admin/build/block',
-  'title' => 'Bluemarine',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '128',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/block/block.admin.inc',
-))
-->values(array(
-  'path' => 'admin/build/block/list/chameleon',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => '_block_themes_access',
-  'access_arguments' => 'a:1:{i:0;O:8:"stdClass":11:{s:8:"filename";s:31:"themes/chameleon/chameleon.info";s:4:"name";s:9:"chameleon";s:4:"type";s:5:"theme";s:5:"owner";s:32:"themes/chameleon/chameleon.theme";s:6:"status";s:1:"0";s:8:"throttle";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:10:{s:4:"name";s:9:"Chameleon";s:11:"description";s:42:"Minimalist tabled theme with light colors.";s:7:"regions";a:2:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";}s:8:"features";a:4:{i:0;s:4:"logo";i:1;s:7:"favicon";i:2;s:4:"name";i:3;s:6:"slogan";}s:11:"stylesheets";a:1:{s:3:"all";a:2:{s:9:"style.css";s:26:"themes/chameleon/style.css";s:10:"common.css";s:27:"themes/chameleon/common.css";}}s:7:"version";s:4:"6.38";s:4:"core";s:3:"6.x";s:7:"scripts";a:1:{s:9:"script.js";s:26:"themes/chameleon/script.js";}s:10:"screenshot";s:31:"themes/chameleon/screenshot.png";s:3:"php";s:5:"4.3.5";}s:11:"stylesheets";a:1:{s:3:"all";a:2:{s:9:"style.css";s:26:"themes/chameleon/style.css";s:10:"common.css";s:27:"themes/chameleon/common.css";}}}}',
-  'page_callback' => 'block_admin_display',
-  'page_arguments' => 'a:1:{i:0;s:9:"chameleon";}',
-  'fit' => '31',
-  'number_parts' => '5',
-  'tab_parent' => 'admin/build/block/list',
-  'tab_root' => 'admin/build/block',
-  'title' => 'Chameleon',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '128',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/block/block.admin.inc',
-))
-->values(array(
-  'path' => 'admin/build/block/list/garland',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => '_block_themes_access',
-  'access_arguments' => 'a:1:{i:0;O:8:"stdClass":12:{s:8:"filename";s:27:"themes/garland/garland.info";s:4:"name";s:7:"garland";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"1";s:8:"throttle";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:11:{s:4:"name";s:7:"Garland";s:11:"description";s:66:"Tableless, recolorable, multi-column, fluid width theme (default).";s:7:"version";s:4:"6.38";s:4:"core";s:3:"6.x";s:6:"engine";s:11:"phptemplate";s:11:"stylesheets";a:2:{s:3:"all";a:1:{s:9:"style.css";s:24:"themes/garland/style.css";}s:5:"print";a:1:{s:9:"print.css";s:24:"themes/garland/print.css";}}s:7:"regions";a:5:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";s:7:"content";s:7:"Content";s:6:"header";s:6:"Header";s:6:"footer";s:6:"Footer";}s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:7:"scripts";a:1:{s:9:"script.js";s:24:"themes/garland/script.js";}s:10:"screenshot";s:29:"themes/garland/screenshot.png";s:3:"php";s:5:"4.3.5";}s:11:"stylesheets";a:2:{s:3:"all";a:1:{s:9:"style.css";s:24:"themes/garland/style.css";}s:5:"print";a:1:{s:9:"print.css";s:24:"themes/garland/print.css";}}s:6:"engine";s:11:"phptemplate";}}',
-  'page_callback' => 'block_admin_display',
-  'page_arguments' => 'a:1:{i:0;s:7:"garland";}',
-  'fit' => '31',
-  'number_parts' => '5',
-  'tab_parent' => 'admin/build/block/list',
-  'tab_root' => 'admin/build/block',
-  'title' => 'Garland',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '136',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '-10',
-  'file' => 'modules/block/block.admin.inc',
-))
-->values(array(
-  'path' => 'admin/build/block/list/js',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}',
-  'page_callback' => 'block_admin_display_js',
-  'page_arguments' => 'a:0:{}',
-  'fit' => '31',
-  'number_parts' => '5',
-  'tab_parent' => '',
-  'tab_root' => 'admin/build/block/list/js',
-  'title' => 'JavaScript List Form',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '4',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/block/block.admin.inc',
-))
-->values(array(
-  'path' => 'admin/build/block/list/marvin',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => '_block_themes_access',
-  'access_arguments' => 'a:1:{i:0;O:8:"stdClass":12:{s:8:"filename";s:35:"themes/chameleon/marvin/marvin.info";s:4:"name";s:6:"marvin";s:4:"type";s:5:"theme";s:5:"owner";s:0:"";s:6:"status";s:1:"0";s:8:"throttle";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:11:{s:4:"name";s:6:"Marvin";s:11:"description";s:31:"Boxy tabled theme in all grays.";s:7:"regions";a:2:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";}s:7:"version";s:4:"6.38";s:4:"core";s:3:"6.x";s:10:"base theme";s:9:"chameleon";s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:33:"themes/chameleon/marvin/style.css";}}s:7:"scripts";a:1:{s:9:"script.js";s:33:"themes/chameleon/marvin/script.js";}s:10:"screenshot";s:38:"themes/chameleon/marvin/screenshot.png";s:3:"php";s:5:"4.3.5";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:33:"themes/chameleon/marvin/style.css";}}s:10:"base_theme";s:9:"chameleon";}}',
-  'page_callback' => 'block_admin_display',
-  'page_arguments' => 'a:1:{i:0;s:6:"marvin";}',
-  'fit' => '31',
-  'number_parts' => '5',
-  'tab_parent' => 'admin/build/block/list',
-  'tab_root' => 'admin/build/block',
-  'title' => 'Marvin',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '128',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/block/block.admin.inc',
-))
-->values(array(
-  'path' => 'admin/build/block/list/minnelli',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => '_block_themes_access',
-  'access_arguments' => 'a:1:{i:0;O:8:"stdClass":13:{s:8:"filename";s:37:"themes/garland/minnelli/minnelli.info";s:4:"name";s:8:"minnelli";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"0";s:8:"throttle";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:12:{s:4:"name";s:8:"Minnelli";s:11:"description";s:56:"Tableless, recolorable, multi-column, fixed width theme.";s:7:"version";s:4:"6.38";s:4:"core";s:3:"6.x";s:10:"base theme";s:7:"garland";s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:12:"minnelli.css";s:36:"themes/garland/minnelli/minnelli.css";}}s:7:"regions";a:5:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";s:7:"content";s:7:"Content";s:6:"header";s:6:"Header";s:6:"footer";s:6:"Footer";}s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:7:"scripts";a:1:{s:9:"script.js";s:33:"themes/garland/minnelli/script.js";}s:10:"screenshot";s:38:"themes/garland/minnelli/screenshot.png";s:3:"php";s:5:"4.3.5";s:6:"engine";s:11:"phptemplate";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:12:"minnelli.css";s:36:"themes/garland/minnelli/minnelli.css";}}s:6:"engine";s:11:"phptemplate";s:10:"base_theme";s:7:"garland";}}',
-  'page_callback' => 'block_admin_display',
-  'page_arguments' => 'a:1:{i:0;s:8:"minnelli";}',
-  'fit' => '31',
-  'number_parts' => '5',
-  'tab_parent' => 'admin/build/block/list',
-  'tab_root' => 'admin/build/block',
-  'title' => 'Minnelli',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '128',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/block/block.admin.inc',
-))
-->values(array(
-  'path' => 'admin/build/block/list/pushbutton',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => '_block_themes_access',
-  'access_arguments' => 'a:1:{i:0;O:8:"stdClass":12:{s:8:"filename";s:33:"themes/pushbutton/pushbutton.info";s:4:"name";s:10:"pushbutton";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"0";s:8:"throttle";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:11:{s:4:"name";s:10:"Pushbutton";s:11:"description";s:52:"Tabled, multi-column theme in blue and orange tones.";s:7:"version";s:4:"6.38";s:4:"core";s:3:"6.x";s:6:"engine";s:11:"phptemplate";s:7:"regions";a:5:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";s:7:"content";s:7:"Content";s:6:"header";s:6:"Header";s:6:"footer";s:6:"Footer";}s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:27:"themes/pushbutton/style.css";}}s:7:"scripts";a:1:{s:9:"script.js";s:27:"themes/pushbutton/script.js";}s:10:"screenshot";s:32:"themes/pushbutton/screenshot.png";s:3:"php";s:5:"4.3.5";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:27:"themes/pushbutton/style.css";}}s:6:"engine";s:11:"phptemplate";}}',
-  'page_callback' => 'block_admin_display',
-  'page_arguments' => 'a:1:{i:0;s:10:"pushbutton";}',
-  'fit' => '31',
-  'number_parts' => '5',
-  'tab_parent' => 'admin/build/block/list',
-  'tab_root' => 'admin/build/block',
-  'title' => 'Pushbutton',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '128',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/block/block.admin.inc',
-))
-->values(array(
-  'path' => 'admin/build/menu',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
-  'page_callback' => 'menu_overview_page',
-  'page_arguments' => 'a:0:{}',
-  'fit' => '7',
-  'number_parts' => '3',
-  'tab_parent' => '',
-  'tab_root' => 'admin/build/menu',
-  'title' => 'Menus',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '6',
-  'block_callback' => '',
-  'description' => "Control your site's navigation menu, primary links and secondary links, as well as rename and reorganize menu items.",
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/menu/menu.admin.inc',
-))
-->values(array(
-  'path' => 'admin/build/menu-customize/%',
-  'load_functions' => 'a:1:{i:3;s:9:"menu_load";}',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:18:"menu_overview_form";i:1;i:3;}',
-  'fit' => '14',
-  'number_parts' => '4',
-  'tab_parent' => '',
-  'tab_root' => 'admin/build/menu-customize/%',
-  'title' => 'Customize menu',
-  'title_callback' => 'menu_overview_title',
-  'title_arguments' => 'a:1:{i:0;i:3;}',
-  'type' => '4',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/menu/menu.admin.inc',
-))
-->values(array(
-  'path' => 'admin/build/menu-customize/%/add',
-  'load_functions' => 'a:1:{i:3;s:9:"menu_load";}',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:4:{i:0;s:14:"menu_edit_item";i:1;s:3:"add";i:2;N;i:3;i:3;}',
-  'fit' => '29',
-  'number_parts' => '5',
-  'tab_parent' => 'admin/build/menu-customize/%',
-  'tab_root' => 'admin/build/menu-customize/%',
-  'title' => 'Add item',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '128',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/menu/menu.admin.inc',
-))
-->values(array(
-  'path' => 'admin/build/menu-customize/%/delete',
-  'load_functions' => 'a:1:{i:3;s:9:"menu_load";}',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
-  'page_callback' => 'menu_delete_menu_page',
-  'page_arguments' => 'a:1:{i:0;i:3;}',
-  'fit' => '29',
-  'number_parts' => '5',
-  'tab_parent' => '',
-  'tab_root' => 'admin/build/menu-customize/%/delete',
-  'title' => 'Delete menu',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '4',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/menu/menu.admin.inc',
-))
-->values(array(
-  'path' => 'admin/build/menu-customize/%/edit',
-  'load_functions' => 'a:1:{i:3;s:9:"menu_load";}',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:3:{i:0;s:14:"menu_edit_menu";i:1;s:4:"edit";i:2;i:3;}',
-  'fit' => '29',
-  'number_parts' => '5',
-  'tab_parent' => 'admin/build/menu-customize/%',
-  'tab_root' => 'admin/build/menu-customize/%',
-  'title' => 'Edit menu',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '128',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/menu/menu.admin.inc',
-))
-->values(array(
-  'path' => 'admin/build/menu-customize/%/list',
-  'load_functions' => 'a:1:{i:3;s:9:"menu_load";}',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:18:"menu_overview_form";i:1;i:3;}',
-  'fit' => '29',
-  'number_parts' => '5',
-  'tab_parent' => 'admin/build/menu-customize/%',
-  'tab_root' => 'admin/build/menu-customize/%',
-  'title' => 'List items',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '136',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '-10',
-  'file' => 'modules/menu/menu.admin.inc',
-))
-->values(array(
-  'path' => 'admin/build/menu/add',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:14:"menu_edit_menu";i:1;s:3:"add";}',
-  'fit' => '15',
-  'number_parts' => '4',
-  'tab_parent' => 'admin/build/menu',
-  'tab_root' => 'admin/build/menu',
-  'title' => 'Add menu',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '128',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/menu/menu.admin.inc',
-))
-->values(array(
-  'path' => 'admin/build/menu/item/%/delete',
-  'load_functions' => 'a:1:{i:4;s:14:"menu_link_load";}',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
-  'page_callback' => 'menu_item_delete_page',
-  'page_arguments' => 'a:1:{i:0;i:4;}',
-  'fit' => '61',
-  'number_parts' => '6',
-  'tab_parent' => '',
-  'tab_root' => 'admin/build/menu/item/%/delete',
-  'title' => 'Delete menu item',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '4',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/menu/menu.admin.inc',
-))
-->values(array(
-  'path' => 'admin/build/menu/item/%/edit',
-  'load_functions' => 'a:1:{i:4;s:14:"menu_link_load";}',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:4:{i:0;s:14:"menu_edit_item";i:1;s:4:"edit";i:2;i:4;i:3;N;}',
-  'fit' => '61',
-  'number_parts' => '6',
-  'tab_parent' => '',
-  'tab_root' => 'admin/build/menu/item/%/edit',
-  'title' => 'Edit menu item',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '4',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/menu/menu.admin.inc',
-))
-->values(array(
-  'path' => 'admin/build/menu/item/%/reset',
-  'load_functions' => 'a:1:{i:4;s:14:"menu_link_load";}',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:23:"menu_reset_item_confirm";i:1;i:4;}',
-  'fit' => '61',
-  'number_parts' => '6',
-  'tab_parent' => '',
-  'tab_root' => 'admin/build/menu/item/%/reset',
-  'title' => 'Reset menu item',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '4',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/menu/menu.admin.inc',
-))
-->values(array(
-  'path' => 'admin/build/menu/list',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
-  'page_callback' => 'menu_overview_page',
-  'page_arguments' => 'a:0:{}',
-  'fit' => '15',
-  'number_parts' => '4',
-  'tab_parent' => 'admin/build/menu',
-  'tab_root' => 'admin/build/menu',
-  'title' => 'List menus',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '136',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '-10',
-  'file' => 'modules/menu/menu.admin.inc',
-))
-->values(array(
-  'path' => 'admin/build/menu/settings',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:14:"menu_configure";}',
-  'fit' => '15',
-  'number_parts' => '4',
-  'tab_parent' => 'admin/build/menu',
-  'tab_root' => 'admin/build/menu',
-  'title' => 'Settings',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '128',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '5',
-  'file' => 'modules/menu/menu.admin.inc',
-))
-->values(array(
-  'path' => 'admin/build/modules',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:14:"system_modules";}',
-  'fit' => '7',
-  'number_parts' => '3',
-  'tab_parent' => '',
-  'tab_root' => 'admin/build/modules',
-  'title' => 'Modules',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '6',
-  'block_callback' => '',
-  'description' => 'Enable or disable add-on modules for your site.',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'admin/build/modules/list',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:14:"system_modules";}',
-  'fit' => '15',
-  'number_parts' => '4',
-  'tab_parent' => 'admin/build/modules',
-  'tab_root' => 'admin/build/modules',
-  'title' => 'List',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '136',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'admin/build/modules/list/confirm',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:14:"system_modules";}',
-  'fit' => '31',
-  'number_parts' => '5',
-  'tab_parent' => '',
-  'tab_root' => 'admin/build/modules/list/confirm',
-  'title' => 'List',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '4',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'admin/build/modules/uninstall',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:24:"system_modules_uninstall";}',
-  'fit' => '15',
-  'number_parts' => '4',
-  'tab_parent' => 'admin/build/modules',
-  'tab_root' => 'admin/build/modules',
-  'title' => 'Uninstall',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '128',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'admin/build/modules/uninstall/confirm',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:24:"system_modules_uninstall";}',
-  'fit' => '31',
-  'number_parts' => '5',
-  'tab_parent' => '',
-  'tab_root' => 'admin/build/modules/uninstall/confirm',
-  'title' => 'Uninstall',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '4',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'admin/build/path',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:22:"administer url aliases";}',
-  'page_callback' => 'path_admin_overview',
-  'page_arguments' => 'a:0:{}',
-  'fit' => '7',
-  'number_parts' => '3',
-  'tab_parent' => '',
-  'tab_root' => 'admin/build/path',
-  'title' => 'URL aliases',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '6',
-  'block_callback' => '',
-  'description' => "Change your site's URL paths by aliasing them.",
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/path/path.admin.inc',
-))
-->values(array(
-  'path' => 'admin/build/path/add',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:22:"administer url aliases";}',
-  'page_callback' => 'path_admin_edit',
-  'page_arguments' => 'a:0:{}',
-  'fit' => '15',
-  'number_parts' => '4',
-  'tab_parent' => 'admin/build/path',
-  'tab_root' => 'admin/build/path',
-  'title' => 'Add alias',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '128',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/path/path.admin.inc',
-))
-->values(array(
-  'path' => 'admin/build/path/delete',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:22:"administer url aliases";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:25:"path_admin_delete_confirm";}',
-  'fit' => '15',
-  'number_parts' => '4',
-  'tab_parent' => '',
-  'tab_root' => 'admin/build/path/delete',
-  'title' => 'Delete alias',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '4',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/path/path.admin.inc',
-))
-->values(array(
-  'path' => 'admin/build/path/edit',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:22:"administer url aliases";}',
-  'page_callback' => 'path_admin_edit',
-  'page_arguments' => 'a:0:{}',
-  'fit' => '15',
-  'number_parts' => '4',
-  'tab_parent' => '',
-  'tab_root' => 'admin/build/path/edit',
-  'title' => 'Edit alias',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '4',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/path/path.admin.inc',
-))
-->values(array(
-  'path' => 'admin/build/path/list',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:22:"administer url aliases";}',
-  'page_callback' => 'path_admin_overview',
-  'page_arguments' => 'a:0:{}',
-  'fit' => '15',
-  'number_parts' => '4',
-  'tab_parent' => 'admin/build/path',
-  'tab_root' => 'admin/build/path',
-  'title' => 'List',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '136',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '-10',
-  'file' => 'modules/path/path.admin.inc',
-))
-->values(array(
-  'path' => 'admin/build/themes',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:18:"system_themes_form";i:1;N;}',
-  'fit' => '7',
-  'number_parts' => '3',
-  'tab_parent' => '',
-  'tab_root' => 'admin/build/themes',
-  'title' => 'Themes',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '6',
-  'block_callback' => '',
-  'description' => 'Change which theme your site uses or allows users to set.',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'admin/build/themes/select',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:18:"system_themes_form";i:1;N;}',
-  'fit' => '15',
-  'number_parts' => '4',
-  'tab_parent' => 'admin/build/themes',
-  'tab_root' => 'admin/build/themes',
-  'title' => 'List',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '136',
-  'block_callback' => '',
-  'description' => 'Select the default theme.',
-  'position' => '',
-  'weight' => '-1',
-  'file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'admin/build/themes/settings',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:21:"system_theme_settings";}',
-  'fit' => '15',
-  'number_parts' => '4',
-  'tab_parent' => 'admin/build/themes',
-  'tab_root' => 'admin/build/themes',
-  'title' => 'Configure',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '128',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'admin/build/themes/settings/bluemarine',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => '_system_themes_access',
-  'access_arguments' => 'a:1:{i:0;O:8:"stdClass":12:{s:8:"filename";s:33:"themes/bluemarine/bluemarine.info";s:4:"name";s:10:"bluemarine";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"0";s:8:"throttle";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:11:{s:4:"name";s:10:"Bluemarine";s:11:"description";s:66:"Table-based multi-column theme with a marine and ash color scheme.";s:7:"version";s:4:"6.38";s:4:"core";s:3:"6.x";s:6:"engine";s:11:"phptemplate";s:7:"regions";a:5:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";s:7:"content";s:7:"Content";s:6:"header";s:6:"Header";s:6:"footer";s:6:"Footer";}s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:27:"themes/bluemarine/style.css";}}s:7:"scripts";a:1:{s:9:"script.js";s:27:"themes/bluemarine/script.js";}s:10:"screenshot";s:32:"themes/bluemarine/screenshot.png";s:3:"php";s:5:"4.3.5";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:27:"themes/bluemarine/style.css";}}s:6:"engine";s:11:"phptemplate";}}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:21:"system_theme_settings";i:1;s:10:"bluemarine";}',
-  'fit' => '31',
-  'number_parts' => '5',
-  'tab_parent' => 'admin/build/themes/settings',
-  'tab_root' => 'admin/build/themes',
-  'title' => 'Bluemarine',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '128',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'admin/build/themes/settings/chameleon',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => '_system_themes_access',
-  'access_arguments' => 'a:1:{i:0;O:8:"stdClass":11:{s:8:"filename";s:31:"themes/chameleon/chameleon.info";s:4:"name";s:9:"chameleon";s:4:"type";s:5:"theme";s:5:"owner";s:32:"themes/chameleon/chameleon.theme";s:6:"status";s:1:"0";s:8:"throttle";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:10:{s:4:"name";s:9:"Chameleon";s:11:"description";s:42:"Minimalist tabled theme with light colors.";s:7:"regions";a:2:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";}s:8:"features";a:4:{i:0;s:4:"logo";i:1;s:7:"favicon";i:2;s:4:"name";i:3;s:6:"slogan";}s:11:"stylesheets";a:1:{s:3:"all";a:2:{s:9:"style.css";s:26:"themes/chameleon/style.css";s:10:"common.css";s:27:"themes/chameleon/common.css";}}s:7:"version";s:4:"6.38";s:4:"core";s:3:"6.x";s:7:"scripts";a:1:{s:9:"script.js";s:26:"themes/chameleon/script.js";}s:10:"screenshot";s:31:"themes/chameleon/screenshot.png";s:3:"php";s:5:"4.3.5";}s:11:"stylesheets";a:1:{s:3:"all";a:2:{s:9:"style.css";s:26:"themes/chameleon/style.css";s:10:"common.css";s:27:"themes/chameleon/common.css";}}}}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:21:"system_theme_settings";i:1;s:9:"chameleon";}',
-  'fit' => '31',
-  'number_parts' => '5',
-  'tab_parent' => 'admin/build/themes/settings',
-  'tab_root' => 'admin/build/themes',
-  'title' => 'Chameleon',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '128',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'admin/build/themes/settings/garland',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => '_system_themes_access',
-  'access_arguments' => 'a:1:{i:0;O:8:"stdClass":12:{s:8:"filename";s:27:"themes/garland/garland.info";s:4:"name";s:7:"garland";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"1";s:8:"throttle";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:11:{s:4:"name";s:7:"Garland";s:11:"description";s:66:"Tableless, recolorable, multi-column, fluid width theme (default).";s:7:"version";s:4:"6.38";s:4:"core";s:3:"6.x";s:6:"engine";s:11:"phptemplate";s:11:"stylesheets";a:2:{s:3:"all";a:1:{s:9:"style.css";s:24:"themes/garland/style.css";}s:5:"print";a:1:{s:9:"print.css";s:24:"themes/garland/print.css";}}s:7:"regions";a:5:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";s:7:"content";s:7:"Content";s:6:"header";s:6:"Header";s:6:"footer";s:6:"Footer";}s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:7:"scripts";a:1:{s:9:"script.js";s:24:"themes/garland/script.js";}s:10:"screenshot";s:29:"themes/garland/screenshot.png";s:3:"php";s:5:"4.3.5";}s:11:"stylesheets";a:2:{s:3:"all";a:1:{s:9:"style.css";s:24:"themes/garland/style.css";}s:5:"print";a:1:{s:9:"print.css";s:24:"themes/garland/print.css";}}s:6:"engine";s:11:"phptemplate";}}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:21:"system_theme_settings";i:1;s:7:"garland";}',
-  'fit' => '31',
-  'number_parts' => '5',
-  'tab_parent' => 'admin/build/themes/settings',
-  'tab_root' => 'admin/build/themes',
-  'title' => 'Garland',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '128',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'admin/build/themes/settings/global',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:21:"system_theme_settings";}',
-  'fit' => '31',
-  'number_parts' => '5',
-  'tab_parent' => 'admin/build/themes/settings',
-  'tab_root' => 'admin/build/themes',
-  'title' => 'Global settings',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '136',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '-1',
-  'file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'admin/build/themes/settings/marvin',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => '_system_themes_access',
-  'access_arguments' => 'a:1:{i:0;O:8:"stdClass":12:{s:8:"filename";s:35:"themes/chameleon/marvin/marvin.info";s:4:"name";s:6:"marvin";s:4:"type";s:5:"theme";s:5:"owner";s:0:"";s:6:"status";s:1:"0";s:8:"throttle";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:11:{s:4:"name";s:6:"Marvin";s:11:"description";s:31:"Boxy tabled theme in all grays.";s:7:"regions";a:2:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";}s:7:"version";s:4:"6.38";s:4:"core";s:3:"6.x";s:10:"base theme";s:9:"chameleon";s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:33:"themes/chameleon/marvin/style.css";}}s:7:"scripts";a:1:{s:9:"script.js";s:33:"themes/chameleon/marvin/script.js";}s:10:"screenshot";s:38:"themes/chameleon/marvin/screenshot.png";s:3:"php";s:5:"4.3.5";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:33:"themes/chameleon/marvin/style.css";}}s:10:"base_theme";s:9:"chameleon";}}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:21:"system_theme_settings";i:1;s:6:"marvin";}',
-  'fit' => '31',
-  'number_parts' => '5',
-  'tab_parent' => 'admin/build/themes/settings',
-  'tab_root' => 'admin/build/themes',
-  'title' => 'Marvin',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '128',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'admin/build/themes/settings/minnelli',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => '_system_themes_access',
-  'access_arguments' => 'a:1:{i:0;O:8:"stdClass":13:{s:8:"filename";s:37:"themes/garland/minnelli/minnelli.info";s:4:"name";s:8:"minnelli";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"0";s:8:"throttle";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:12:{s:4:"name";s:8:"Minnelli";s:11:"description";s:56:"Tableless, recolorable, multi-column, fixed width theme.";s:7:"version";s:4:"6.38";s:4:"core";s:3:"6.x";s:10:"base theme";s:7:"garland";s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:12:"minnelli.css";s:36:"themes/garland/minnelli/minnelli.css";}}s:7:"regions";a:5:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";s:7:"content";s:7:"Content";s:6:"header";s:6:"Header";s:6:"footer";s:6:"Footer";}s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:7:"scripts";a:1:{s:9:"script.js";s:33:"themes/garland/minnelli/script.js";}s:10:"screenshot";s:38:"themes/garland/minnelli/screenshot.png";s:3:"php";s:5:"4.3.5";s:6:"engine";s:11:"phptemplate";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:12:"minnelli.css";s:36:"themes/garland/minnelli/minnelli.css";}}s:6:"engine";s:11:"phptemplate";s:10:"base_theme";s:7:"garland";}}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:21:"system_theme_settings";i:1;s:8:"minnelli";}',
-  'fit' => '31',
-  'number_parts' => '5',
-  'tab_parent' => 'admin/build/themes/settings',
-  'tab_root' => 'admin/build/themes',
-  'title' => 'Minnelli',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '128',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'admin/build/themes/settings/pushbutton',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => '_system_themes_access',
-  'access_arguments' => 'a:1:{i:0;O:8:"stdClass":12:{s:8:"filename";s:33:"themes/pushbutton/pushbutton.info";s:4:"name";s:10:"pushbutton";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"0";s:8:"throttle";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:11:{s:4:"name";s:10:"Pushbutton";s:11:"description";s:52:"Tabled, multi-column theme in blue and orange tones.";s:7:"version";s:4:"6.38";s:4:"core";s:3:"6.x";s:6:"engine";s:11:"phptemplate";s:7:"regions";a:5:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";s:7:"content";s:7:"Content";s:6:"header";s:6:"Header";s:6:"footer";s:6:"Footer";}s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:27:"themes/pushbutton/style.css";}}s:7:"scripts";a:1:{s:9:"script.js";s:27:"themes/pushbutton/script.js";}s:10:"screenshot";s:32:"themes/pushbutton/screenshot.png";s:3:"php";s:5:"4.3.5";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:27:"themes/pushbutton/style.css";}}s:6:"engine";s:11:"phptemplate";}}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:21:"system_theme_settings";i:1;s:10:"pushbutton";}',
-  'fit' => '31',
-  'number_parts' => '5',
-  'tab_parent' => 'admin/build/themes/settings',
-  'tab_root' => 'admin/build/themes',
-  'title' => 'Pushbutton',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '128',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'admin/by-module',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
-  'page_callback' => 'system_admin_by_module',
-  'page_arguments' => 'a:0:{}',
-  'fit' => '3',
-  'number_parts' => '2',
-  'tab_parent' => 'admin',
-  'tab_root' => 'admin',
-  'title' => 'By module',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '128',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '2',
-  'file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'admin/by-task',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
-  'page_callback' => 'system_main_admin_page',
-  'page_arguments' => 'a:0:{}',
-  'fit' => '3',
-  'number_parts' => '2',
-  'tab_parent' => 'admin',
-  'tab_root' => 'admin',
-  'title' => 'By task',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '136',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'admin/compact',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
-  'page_callback' => 'system_admin_compact_page',
-  'page_arguments' => 'a:0:{}',
-  'fit' => '3',
-  'number_parts' => '2',
-  'tab_parent' => '',
-  'tab_root' => 'admin/compact',
-  'title' => 'Compact mode',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '4',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'admin/content',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
-  'page_callback' => 'system_admin_menu_block_page',
-  'page_arguments' => 'a:0:{}',
-  'fit' => '3',
-  'number_parts' => '2',
-  'tab_parent' => '',
-  'tab_root' => 'admin/content',
-  'title' => 'Content management',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '6',
-  'block_callback' => '',
-  'description' => "Manage your site's content.",
-  'position' => 'left',
-  'weight' => '-10',
-  'file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'admin/content/comment',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:19:"administer comments";}',
-  'page_callback' => 'comment_admin',
-  'page_arguments' => 'a:0:{}',
-  'fit' => '7',
-  'number_parts' => '3',
-  'tab_parent' => '',
-  'tab_root' => 'admin/content/comment',
-  'title' => 'Comments',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '6',
-  'block_callback' => '',
-  'description' => 'List and edit site comments and the comment moderation queue.',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/comment/comment.admin.inc',
-))
-->values(array(
-  'path' => 'admin/content/comment/approval',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:19:"administer comments";}',
-  'page_callback' => 'comment_admin',
-  'page_arguments' => 'a:1:{i:0;s:8:"approval";}',
-  'fit' => '15',
-  'number_parts' => '4',
-  'tab_parent' => 'admin/content/comment',
-  'tab_root' => 'admin/content/comment',
-  'title' => 'Approval queue',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '128',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/comment/comment.admin.inc',
-))
-->values(array(
-  'path' => 'admin/content/comment/new',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:19:"administer comments";}',
-  'page_callback' => 'comment_admin',
-  'page_arguments' => 'a:0:{}',
-  'fit' => '15',
-  'number_parts' => '4',
-  'tab_parent' => 'admin/content/comment',
-  'tab_root' => 'admin/content/comment',
-  'title' => 'Published comments',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '136',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '-10',
-  'file' => 'modules/comment/comment.admin.inc',
-))
-->values(array(
-  'path' => 'admin/content/forum',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:17:"administer forums";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:14:"forum_overview";}',
-  'fit' => '7',
-  'number_parts' => '3',
-  'tab_parent' => '',
-  'tab_root' => 'admin/content/forum',
-  'title' => 'Forums',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '6',
-  'block_callback' => '',
-  'description' => 'Control forums and their hierarchy and change forum settings.',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/forum/forum.admin.inc',
-))
-->values(array(
-  'path' => 'admin/content/forum/add/container',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:17:"administer forums";}',
-  'page_callback' => 'forum_form_main',
-  'page_arguments' => 'a:1:{i:0;s:9:"container";}',
-  'fit' => '31',
-  'number_parts' => '5',
-  'tab_parent' => 'admin/content/forum',
-  'tab_root' => 'admin/content/forum',
-  'title' => 'Add container',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '128',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/forum/forum.admin.inc',
-))
-->values(array(
-  'path' => 'admin/content/forum/add/forum',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:17:"administer forums";}',
-  'page_callback' => 'forum_form_main',
-  'page_arguments' => 'a:1:{i:0;s:5:"forum";}',
-  'fit' => '31',
-  'number_parts' => '5',
-  'tab_parent' => 'admin/content/forum',
-  'tab_root' => 'admin/content/forum',
-  'title' => 'Add forum',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '128',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/forum/forum.admin.inc',
-))
-->values(array(
-  'path' => 'admin/content/forum/edit/%',
-  'load_functions' => 'a:1:{i:4;s:15:"forum_term_load";}',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:17:"administer forums";}',
-  'page_callback' => 'forum_form_main',
-  'page_arguments' => 'a:0:{}',
-  'fit' => '30',
-  'number_parts' => '5',
-  'tab_parent' => '',
-  'tab_root' => 'admin/content/forum/edit/%',
-  'title' => '',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '4',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/forum/forum.admin.inc',
-))
-->values(array(
-  'path' => 'admin/content/forum/edit/container/%',
-  'load_functions' => 'a:1:{i:5;s:15:"forum_term_load";}',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:17:"administer forums";}',
-  'page_callback' => 'forum_form_main',
-  'page_arguments' => 'a:2:{i:0;s:9:"container";i:1;i:5;}',
-  'fit' => '62',
-  'number_parts' => '6',
-  'tab_parent' => '',
-  'tab_root' => 'admin/content/forum/edit/container/%',
-  'title' => 'Edit container',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '4',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/forum/forum.admin.inc',
-))
-->values(array(
-  'path' => 'admin/content/forum/edit/forum/%',
-  'load_functions' => 'a:1:{i:5;s:15:"forum_term_load";}',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:17:"administer forums";}',
-  'page_callback' => 'forum_form_main',
-  'page_arguments' => 'a:2:{i:0;s:5:"forum";i:1;i:5;}',
-  'fit' => '62',
-  'number_parts' => '6',
-  'tab_parent' => '',
-  'tab_root' => 'admin/content/forum/edit/forum/%',
-  'title' => 'Edit forum',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '4',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/forum/forum.admin.inc',
-))
-->values(array(
-  'path' => 'admin/content/forum/list',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:17:"administer forums";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:14:"forum_overview";}',
-  'fit' => '15',
-  'number_parts' => '4',
-  'tab_parent' => 'admin/content/forum',
-  'tab_root' => 'admin/content/forum',
-  'title' => 'List',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '136',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '-10',
-  'file' => 'modules/forum/forum.admin.inc',
-))
-->values(array(
-  'path' => 'admin/content/forum/settings',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:17:"administer forums";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:20:"forum_admin_settings";}',
-  'fit' => '15',
-  'number_parts' => '4',
-  'tab_parent' => 'admin/content/forum',
-  'tab_root' => 'admin/content/forum',
-  'title' => 'Settings',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '128',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '5',
-  'file' => 'modules/forum/forum.admin.inc',
-))
-->values(array(
-  'path' => 'admin/content/node',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:16:"administer nodes";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:18:"node_admin_content";}',
-  'fit' => '7',
-  'number_parts' => '3',
-  'tab_parent' => '',
-  'tab_root' => 'admin/content/node',
-  'title' => 'Content',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '6',
-  'block_callback' => '',
-  'description' => "View, edit, and delete your site's content.",
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/node/node.admin.inc',
-))
-->values(array(
-  'path' => 'admin/content/node-settings',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:16:"administer nodes";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:14:"node_configure";}',
-  'fit' => '7',
-  'number_parts' => '3',
-  'tab_parent' => '',
-  'tab_root' => 'admin/content/node-settings',
-  'title' => 'Post settings',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '6',
-  'block_callback' => '',
-  'description' => 'Control posting behavior, such as teaser length, requiring previews before posting, and the number of posts on the front page.',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/node/node.admin.inc',
-))
-->values(array(
-  'path' => 'admin/content/node-settings/rebuild',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:30:"node_configure_rebuild_confirm";}',
-  'fit' => '15',
-  'number_parts' => '4',
-  'tab_parent' => '',
-  'tab_root' => 'admin/content/node-settings/rebuild',
-  'title' => 'Rebuild permissions',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '4',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/node/node.admin.inc',
-))
-->values(array(
-  'path' => 'admin/content/node-type/article',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:14:"node_type_form";i:1;O:8:"stdClass":14:{s:4:"type";s:7:"article";s:4:"name";s:7:"Article";s:6:"module";s:4:"node";s:11:"description";s:34:"An <em>article</em>, content type.";s:4:"help";s:0:"";s:9:"has_title";s:1:"1";s:11:"title_label";s:5:"Title";s:8:"has_body";s:1:"1";s:10:"body_label";s:4:"Body";s:14:"min_word_count";s:1:"0";s:6:"custom";s:1:"1";s:8:"modified";s:1:"1";s:6:"locked";s:1:"0";s:9:"orig_type";s:5:"story";}}',
-  'fit' => '15',
-  'number_parts' => '4',
-  'tab_parent' => '',
-  'tab_root' => 'admin/content/node-type/article',
-  'title' => 'Article',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '4',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/node/content_types.inc',
-))
-->values(array(
-  'path' => 'admin/content/node-type/article/delete',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:24:"node_type_delete_confirm";i:1;O:8:"stdClass":14:{s:4:"type";s:7:"article";s:4:"name";s:7:"Article";s:6:"module";s:4:"node";s:11:"description";s:34:"An <em>article</em>, content type.";s:4:"help";s:0:"";s:9:"has_title";s:1:"1";s:11:"title_label";s:5:"Title";s:8:"has_body";s:1:"1";s:10:"body_label";s:4:"Body";s:14:"min_word_count";s:1:"0";s:6:"custom";s:1:"1";s:8:"modified";s:1:"1";s:6:"locked";s:1:"0";s:9:"orig_type";s:5:"story";}}',
-  'fit' => '31',
-  'number_parts' => '5',
-  'tab_parent' => '',
-  'tab_root' => 'admin/content/node-type/article/delete',
-  'title' => 'Delete',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '4',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/node/content_types.inc',
-))
-->values(array(
-  'path' => 'admin/content/node-type/article/display',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:29:"content_display_overview_form";i:1;s:7:"article";}',
-  'fit' => '31',
-  'number_parts' => '5',
-  'tab_parent' => 'admin/content/node-type/article',
-  'tab_root' => 'admin/content/node-type/article',
-  'title' => 'Display fields',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '128',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '2',
-  'file' => 'sites/all/modules/cck/includes/content.admin.inc',
-))
-->values(array(
-  'path' => 'admin/content/node-type/article/display/basic',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:7:"article";i:2;s:5:"basic";}',
-  'fit' => '63',
-  'number_parts' => '6',
-  'tab_parent' => 'admin/content/node-type/article/display',
-  'tab_root' => 'admin/content/node-type/article',
-  'title' => 'Basic',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '136',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'sites/all/modules/cck/includes/content.admin.inc',
-))
-->values(array(
-  'path' => 'admin/content/node-type/article/display/rss',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:7:"article";i:2;s:3:"rss";}',
-  'fit' => '63',
-  'number_parts' => '6',
-  'tab_parent' => 'admin/content/node-type/article/display',
-  'tab_root' => 'admin/content/node-type/article',
-  'title' => 'RSS',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '128',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '1',
-  'file' => 'sites/all/modules/cck/includes/content.admin.inc',
-))
-->values(array(
-  'path' => 'admin/content/node-type/article/display/search',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:7:"article";i:2;s:6:"search";}',
-  'fit' => '63',
-  'number_parts' => '6',
-  'tab_parent' => 'admin/content/node-type/article/display',
-  'tab_root' => 'admin/content/node-type/article',
-  'title' => 'Search',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '128',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '1',
-  'file' => 'sites/all/modules/cck/includes/content.admin.inc',
-))
-->values(array(
-  'path' => 'admin/content/node-type/article/edit',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:14:"node_type_form";i:1;O:8:"stdClass":14:{s:4:"type";s:7:"article";s:4:"name";s:7:"Article";s:6:"module";s:4:"node";s:11:"description";s:34:"An <em>article</em>, content type.";s:4:"help";s:0:"";s:9:"has_title";s:1:"1";s:11:"title_label";s:5:"Title";s:8:"has_body";s:1:"1";s:10:"body_label";s:4:"Body";s:14:"min_word_count";s:1:"0";s:6:"custom";s:1:"1";s:8:"modified";s:1:"1";s:6:"locked";s:1:"0";s:9:"orig_type";s:5:"story";}}',
-  'fit' => '31',
-  'number_parts' => '5',
-  'tab_parent' => 'admin/content/node-type/article',
-  'tab_root' => 'admin/content/node-type/article',
-  'title' => 'Edit',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '136',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/node/content_types.inc',
-))
-->values(array(
-  'path' => 'admin/content/node-type/article/fields',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:27:"content_field_overview_form";i:1;s:7:"article";}',
-  'fit' => '31',
-  'number_parts' => '5',
-  'tab_parent' => 'admin/content/node-type/article',
-  'tab_root' => 'admin/content/node-type/article',
-  'title' => 'Manage fields',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '128',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '1',
-  'file' => 'sites/all/modules/cck/includes/content.admin.inc',
-))
-->values(array(
-  'path' => 'admin/content/node-type/company',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:14:"node_type_form";i:1;O:8:"stdClass":14:{s:4:"type";s:7:"company";s:4:"name";s:7:"Company";s:6:"module";s:4:"node";s:11:"description";s:17:"Company node type";s:4:"help";s:0:"";s:9:"has_title";s:1:"1";s:11:"title_label";s:4:"Name";s:8:"has_body";s:1:"1";s:10:"body_label";s:11:"Description";s:14:"min_word_count";s:1:"0";s:6:"custom";s:1:"0";s:8:"modified";s:1:"1";s:6:"locked";s:1:"0";s:9:"orig_type";s:7:"company";}}',
-  'fit' => '15',
-  'number_parts' => '4',
-  'tab_parent' => '',
-  'tab_root' => 'admin/content/node-type/company',
-  'title' => 'Company',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '4',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/node/content_types.inc',
-))
-->values(array(
-  'path' => 'admin/content/node-type/company/delete',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:24:"node_type_delete_confirm";i:1;O:8:"stdClass":14:{s:4:"type";s:7:"company";s:4:"name";s:7:"Company";s:6:"module";s:4:"node";s:11:"description";s:17:"Company node type";s:4:"help";s:0:"";s:9:"has_title";s:1:"1";s:11:"title_label";s:4:"Name";s:8:"has_body";s:1:"1";s:10:"body_label";s:11:"Description";s:14:"min_word_count";s:1:"0";s:6:"custom";s:1:"0";s:8:"modified";s:1:"1";s:6:"locked";s:1:"0";s:9:"orig_type";s:7:"company";}}',
-  'fit' => '31',
-  'number_parts' => '5',
-  'tab_parent' => '',
-  'tab_root' => 'admin/content/node-type/company/delete',
-  'title' => 'Delete',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '4',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/node/content_types.inc',
-))
-->values(array(
-  'path' => 'admin/content/node-type/company/display',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:29:"content_display_overview_form";i:1;s:7:"company";}',
-  'fit' => '31',
-  'number_parts' => '5',
-  'tab_parent' => 'admin/content/node-type/company',
-  'tab_root' => 'admin/content/node-type/company',
-  'title' => 'Display fields',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '128',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '2',
-  'file' => 'sites/all/modules/cck/includes/content.admin.inc',
-))
-->values(array(
-  'path' => 'admin/content/node-type/company/display/basic',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:7:"company";i:2;s:5:"basic";}',
-  'fit' => '63',
-  'number_parts' => '6',
-  'tab_parent' => 'admin/content/node-type/company/display',
-  'tab_root' => 'admin/content/node-type/company',
-  'title' => 'Basic',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '136',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'sites/all/modules/cck/includes/content.admin.inc',
-))
-->values(array(
-  'path' => 'admin/content/node-type/company/display/rss',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:7:"company";i:2;s:3:"rss";}',
-  'fit' => '63',
-  'number_parts' => '6',
-  'tab_parent' => 'admin/content/node-type/company/display',
-  'tab_root' => 'admin/content/node-type/company',
-  'title' => 'RSS',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '128',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '1',
-  'file' => 'sites/all/modules/cck/includes/content.admin.inc',
-))
-->values(array(
-  'path' => 'admin/content/node-type/company/display/search',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:7:"company";i:2;s:6:"search";}',
-  'fit' => '63',
-  'number_parts' => '6',
-  'tab_parent' => 'admin/content/node-type/company/display',
-  'tab_root' => 'admin/content/node-type/company',
-  'title' => 'Search',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '128',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '1',
-  'file' => 'sites/all/modules/cck/includes/content.admin.inc',
-))
-->values(array(
-  'path' => 'admin/content/node-type/company/edit',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:14:"node_type_form";i:1;O:8:"stdClass":14:{s:4:"type";s:7:"company";s:4:"name";s:7:"Company";s:6:"module";s:4:"node";s:11:"description";s:17:"Company node type";s:4:"help";s:0:"";s:9:"has_title";s:1:"1";s:11:"title_label";s:4:"Name";s:8:"has_body";s:1:"1";s:10:"body_label";s:11:"Description";s:14:"min_word_count";s:1:"0";s:6:"custom";s:1:"0";s:8:"modified";s:1:"1";s:6:"locked";s:1:"0";s:9:"orig_type";s:7:"company";}}',
-  'fit' => '31',
-  'number_parts' => '5',
-  'tab_parent' => 'admin/content/node-type/company',
-  'tab_root' => 'admin/content/node-type/company',
-  'title' => 'Edit',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '136',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/node/content_types.inc',
-))
-->values(array(
-  'path' => 'admin/content/node-type/company/fields',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:27:"content_field_overview_form";i:1;s:7:"company";}',
-  'fit' => '31',
-  'number_parts' => '5',
-  'tab_parent' => 'admin/content/node-type/company',
-  'tab_root' => 'admin/content/node-type/company',
-  'title' => 'Manage fields',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '128',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '1',
-  'file' => 'sites/all/modules/cck/includes/content.admin.inc',
-))
-->values(array(
-  'path' => 'admin/content/node-type/employee',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:14:"node_type_form";i:1;O:8:"stdClass":14:{s:4:"type";s:8:"employee";s:4:"name";s:8:"Employee";s:6:"module";s:4:"node";s:11:"description";s:18:"Employee node type";s:4:"help";s:0:"";s:9:"has_title";s:1:"1";s:11:"title_label";s:4:"Name";s:8:"has_body";s:1:"1";s:10:"body_label";s:3:"Bio";s:14:"min_word_count";s:2:"20";s:6:"custom";s:1:"0";s:8:"modified";s:1:"0";s:6:"locked";s:1:"0";s:9:"orig_type";s:8:"employee";}}',
-  'fit' => '15',
-  'number_parts' => '4',
-  'tab_parent' => '',
-  'tab_root' => 'admin/content/node-type/employee',
-  'title' => 'Employee',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '4',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/node/content_types.inc',
-))
-->values(array(
-  'path' => 'admin/content/node-type/employee/delete',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:24:"node_type_delete_confirm";i:1;O:8:"stdClass":14:{s:4:"type";s:8:"employee";s:4:"name";s:8:"Employee";s:6:"module";s:4:"node";s:11:"description";s:18:"Employee node type";s:4:"help";s:0:"";s:9:"has_title";s:1:"1";s:11:"title_label";s:4:"Name";s:8:"has_body";s:1:"1";s:10:"body_label";s:3:"Bio";s:14:"min_word_count";s:2:"20";s:6:"custom";s:1:"0";s:8:"modified";s:1:"0";s:6:"locked";s:1:"0";s:9:"orig_type";s:8:"employee";}}',
-  'fit' => '31',
-  'number_parts' => '5',
-  'tab_parent' => '',
-  'tab_root' => 'admin/content/node-type/employee/delete',
-  'title' => 'Delete',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '4',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/node/content_types.inc',
-))
-->values(array(
-  'path' => 'admin/content/node-type/employee/display',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:29:"content_display_overview_form";i:1;s:8:"employee";}',
-  'fit' => '31',
-  'number_parts' => '5',
-  'tab_parent' => 'admin/content/node-type/employee',
-  'tab_root' => 'admin/content/node-type/employee',
-  'title' => 'Display fields',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '128',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '2',
-  'file' => 'sites/all/modules/cck/includes/content.admin.inc',
-))
-->values(array(
-  'path' => 'admin/content/node-type/employee/display/basic',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:8:"employee";i:2;s:5:"basic";}',
-  'fit' => '63',
-  'number_parts' => '6',
-  'tab_parent' => 'admin/content/node-type/employee/display',
-  'tab_root' => 'admin/content/node-type/employee',
-  'title' => 'Basic',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '136',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'sites/all/modules/cck/includes/content.admin.inc',
-))
-->values(array(
-  'path' => 'admin/content/node-type/employee/display/rss',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:8:"employee";i:2;s:3:"rss";}',
-  'fit' => '63',
-  'number_parts' => '6',
-  'tab_parent' => 'admin/content/node-type/employee/display',
-  'tab_root' => 'admin/content/node-type/employee',
-  'title' => 'RSS',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '128',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '1',
-  'file' => 'sites/all/modules/cck/includes/content.admin.inc',
-))
-->values(array(
-  'path' => 'admin/content/node-type/employee/display/search',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:8:"employee";i:2;s:6:"search";}',
-  'fit' => '63',
-  'number_parts' => '6',
-  'tab_parent' => 'admin/content/node-type/employee/display',
-  'tab_root' => 'admin/content/node-type/employee',
-  'title' => 'Search',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '128',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '1',
-  'file' => 'sites/all/modules/cck/includes/content.admin.inc',
-))
-->values(array(
-  'path' => 'admin/content/node-type/employee/edit',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:14:"node_type_form";i:1;O:8:"stdClass":14:{s:4:"type";s:8:"employee";s:4:"name";s:8:"Employee";s:6:"module";s:4:"node";s:11:"description";s:18:"Employee node type";s:4:"help";s:0:"";s:9:"has_title";s:1:"1";s:11:"title_label";s:4:"Name";s:8:"has_body";s:1:"1";s:10:"body_label";s:3:"Bio";s:14:"min_word_count";s:2:"20";s:6:"custom";s:1:"0";s:8:"modified";s:1:"0";s:6:"locked";s:1:"0";s:9:"orig_type";s:8:"employee";}}',
-  'fit' => '31',
-  'number_parts' => '5',
-  'tab_parent' => 'admin/content/node-type/employee',
-  'tab_root' => 'admin/content/node-type/employee',
-  'title' => 'Edit',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '136',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/node/content_types.inc',
-))
-->values(array(
-  'path' => 'admin/content/node-type/employee/fields',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:27:"content_field_overview_form";i:1;s:8:"employee";}',
-  'fit' => '31',
-  'number_parts' => '5',
-  'tab_parent' => 'admin/content/node-type/employee',
-  'tab_root' => 'admin/content/node-type/employee',
-  'title' => 'Manage fields',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '128',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '1',
-  'file' => 'sites/all/modules/cck/includes/content.admin.inc',
-))
-->values(array(
-  'path' => 'admin/content/node-type/employee/fields/field_sync',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:3:{i:0;s:23:"content_field_edit_form";i:1;s:8:"employee";i:2;s:10:"field_sync";}',
-  'fit' => '63',
-  'number_parts' => '6',
-  'tab_parent' => 'admin/content/node-type/employee/fields',
-  'tab_root' => 'admin/content/node-type/employee',
-  'title' => 'email_sync',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '128',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'sites/all/modules/cck/includes/content.admin.inc',
-))
-->values(array(
-  'path' => 'admin/content/node-type/employee/fields/field_sync/remove',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:3:{i:0;s:25:"content_field_remove_form";i:1;s:8:"employee";i:2;s:10:"field_sync";}',
-  'fit' => '127',
-  'number_parts' => '7',
-  'tab_parent' => '',
-  'tab_root' => 'admin/content/node-type/employee/fields/field_sync/remove',
-  'title' => 'Remove field',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '4',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'sites/all/modules/cck/includes/content.admin.inc',
-))
-->values(array(
-  'path' => 'admin/content/node-type/forum',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:14:"node_type_form";i:1;O:8:"stdClass":15:{s:4:"name";s:11:"Forum topic";s:6:"module";s:5:"forum";s:11:"description";s:85:"A <em>forum topic</em> is the initial post to a new discussion thread within a forum.";s:11:"title_label";s:7:"Subject";s:4:"type";s:5:"forum";s:9:"has_title";b:1;s:8:"has_body";b:1;s:10:"body_label";s:4:"Body";s:4:"help";s:0:"";s:14:"min_word_count";i:0;s:6:"custom";b:0;s:8:"modified";b:0;s:6:"locked";b:1;s:9:"orig_type";s:5:"forum";s:6:"is_new";b:1;}}',
-  'fit' => '15',
-  'number_parts' => '4',
-  'tab_parent' => '',
-  'tab_root' => 'admin/content/node-type/forum',
-  'title' => 'Forum topic',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '4',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/node/content_types.inc',
-))
-->values(array(
-  'path' => 'admin/content/node-type/forum/delete',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:24:"node_type_delete_confirm";i:1;O:8:"stdClass":15:{s:4:"name";s:11:"Forum topic";s:6:"module";s:5:"forum";s:11:"description";s:85:"A <em>forum topic</em> is the initial post to a new discussion thread within a forum.";s:11:"title_label";s:7:"Subject";s:4:"type";s:5:"forum";s:9:"has_title";b:1;s:8:"has_body";b:1;s:10:"body_label";s:4:"Body";s:4:"help";s:0:"";s:14:"min_word_count";i:0;s:6:"custom";b:0;s:8:"modified";b:0;s:6:"locked";b:1;s:9:"orig_type";s:5:"forum";s:6:"is_new";b:1;}}',
-  'fit' => '31',
-  'number_parts' => '5',
-  'tab_parent' => '',
-  'tab_root' => 'admin/content/node-type/forum/delete',
-  'title' => 'Delete',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '4',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/node/content_types.inc',
-))
-->values(array(
-  'path' => 'admin/content/node-type/forum/display',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:29:"content_display_overview_form";i:1;s:5:"forum";}',
-  'fit' => '31',
-  'number_parts' => '5',
-  'tab_parent' => 'admin/content/node-type/forum',
-  'tab_root' => 'admin/content/node-type/forum',
-  'title' => 'Display fields',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '128',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '2',
-  'file' => 'sites/all/modules/cck/includes/content.admin.inc',
-))
-->values(array(
-  'path' => 'admin/content/node-type/forum/display/basic',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:5:"forum";i:2;s:5:"basic";}',
-  'fit' => '63',
-  'number_parts' => '6',
-  'tab_parent' => 'admin/content/node-type/forum/display',
-  'tab_root' => 'admin/content/node-type/forum',
-  'title' => 'Basic',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '136',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'sites/all/modules/cck/includes/content.admin.inc',
-))
-->values(array(
-  'path' => 'admin/content/node-type/forum/display/rss',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:5:"forum";i:2;s:3:"rss";}',
-  'fit' => '63',
-  'number_parts' => '6',
-  'tab_parent' => 'admin/content/node-type/forum/display',
-  'tab_root' => 'admin/content/node-type/forum',
-  'title' => 'RSS',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '128',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '1',
-  'file' => 'sites/all/modules/cck/includes/content.admin.inc',
-))
-->values(array(
-  'path' => 'admin/content/node-type/forum/display/search',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:5:"forum";i:2;s:6:"search";}',
-  'fit' => '63',
-  'number_parts' => '6',
-  'tab_parent' => 'admin/content/node-type/forum/display',
-  'tab_root' => 'admin/content/node-type/forum',
-  'title' => 'Search',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '128',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '1',
-  'file' => 'sites/all/modules/cck/includes/content.admin.inc',
-))
-->values(array(
-  'path' => 'admin/content/node-type/forum/edit',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:14:"node_type_form";i:1;O:8:"stdClass":15:{s:4:"name";s:11:"Forum topic";s:6:"module";s:5:"forum";s:11:"description";s:85:"A <em>forum topic</em> is the initial post to a new discussion thread within a forum.";s:11:"title_label";s:7:"Subject";s:4:"type";s:5:"forum";s:9:"has_title";b:1;s:8:"has_body";b:1;s:10:"body_label";s:4:"Body";s:4:"help";s:0:"";s:14:"min_word_count";i:0;s:6:"custom";b:0;s:8:"modified";b:0;s:6:"locked";b:1;s:9:"orig_type";s:5:"forum";s:6:"is_new";b:1;}}',
-  'fit' => '31',
-  'number_parts' => '5',
-  'tab_parent' => 'admin/content/node-type/forum',
-  'tab_root' => 'admin/content/node-type/forum',
-  'title' => 'Edit',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '136',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/node/content_types.inc',
-))
-->values(array(
-  'path' => 'admin/content/node-type/forum/fields',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:27:"content_field_overview_form";i:1;s:5:"forum";}',
-  'fit' => '31',
-  'number_parts' => '5',
-  'tab_parent' => 'admin/content/node-type/forum',
-  'tab_root' => 'admin/content/node-type/forum',
-  'title' => 'Manage fields',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '128',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '1',
-  'file' => 'sites/all/modules/cck/includes/content.admin.inc',
-))
-->values(array(
-  'path' => 'admin/content/node-type/forum/fields/field_forums',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:3:{i:0;s:23:"content_field_edit_form";i:1;s:5:"forum";i:2;s:12:"field_forums";}',
-  'fit' => '63',
-  'number_parts' => '6',
-  'tab_parent' => 'admin/content/node-type/forum/fields',
-  'tab_root' => 'admin/content/node-type/forum',
-  'title' => 'forums',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '128',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'sites/all/modules/cck/includes/content.admin.inc',
-))
-->values(array(
-  'path' => 'admin/content/node-type/forum/fields/field_forums/remove',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:3:{i:0;s:25:"content_field_remove_form";i:1;s:5:"forum";i:2;s:12:"field_forums";}',
-  'fit' => '127',
-  'number_parts' => '7',
-  'tab_parent' => '',
-  'tab_root' => 'admin/content/node-type/forum/fields/field_forums/remove',
-  'title' => 'Remove field',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '4',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'sites/all/modules/cck/includes/content.admin.inc',
-))
-->values(array(
-  'path' => 'admin/content/node-type/page',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => "a:2:{i:0;s:14:\"node_type_form\";i:1;O:8:\"stdClass\":14:{s:4:\"type\";s:4:\"page\";s:4:\"name\";s:4:\"Page\";s:6:\"module\";s:4:\"node\";s:11:\"description\";s:296:\"A <em>page</em>, similar in form to a <em>story</em>, is a simple method for creating and displaying information that rarely changes, such as an \"About us\" section of a website. By default, a <em>page</em> entry does not allow visitor comments and is not featured on the site's initial home page.\";s:4:\"help\";s:0:\"\";s:9:\"has_title\";s:1:\"1\";s:11:\"title_label\";s:5:\"Title\";s:8:\"has_body\";s:1:\"1\";s:10:\"body_label\";s:4:\"Body\";s:14:\"min_word_count\";s:1:\"0\";s:6:\"custom\";s:1:\"1\";s:8:\"modified\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:9:\"orig_type\";s:4:\"page\";}}",
-  'fit' => '15',
-  'number_parts' => '4',
-  'tab_parent' => '',
-  'tab_root' => 'admin/content/node-type/page',
-  'title' => 'Page',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '4',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/node/content_types.inc',
-))
-->values(array(
-  'path' => 'admin/content/node-type/page/delete',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => "a:2:{i:0;s:24:\"node_type_delete_confirm\";i:1;O:8:\"stdClass\":14:{s:4:\"type\";s:4:\"page\";s:4:\"name\";s:4:\"Page\";s:6:\"module\";s:4:\"node\";s:11:\"description\";s:296:\"A <em>page</em>, similar in form to a <em>story</em>, is a simple method for creating and displaying information that rarely changes, such as an \"About us\" section of a website. By default, a <em>page</em> entry does not allow visitor comments and is not featured on the site's initial home page.\";s:4:\"help\";s:0:\"\";s:9:\"has_title\";s:1:\"1\";s:11:\"title_label\";s:5:\"Title\";s:8:\"has_body\";s:1:\"1\";s:10:\"body_label\";s:4:\"Body\";s:14:\"min_word_count\";s:1:\"0\";s:6:\"custom\";s:1:\"1\";s:8:\"modified\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:9:\"orig_type\";s:4:\"page\";}}",
-  'fit' => '31',
-  'number_parts' => '5',
-  'tab_parent' => '',
-  'tab_root' => 'admin/content/node-type/page/delete',
-  'title' => 'Delete',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '4',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/node/content_types.inc',
-))
-->values(array(
-  'path' => 'admin/content/node-type/page/display',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:29:"content_display_overview_form";i:1;s:4:"page";}',
-  'fit' => '31',
-  'number_parts' => '5',
-  'tab_parent' => 'admin/content/node-type/page',
-  'tab_root' => 'admin/content/node-type/page',
-  'title' => 'Display fields',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '128',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '2',
-  'file' => 'sites/all/modules/cck/includes/content.admin.inc',
-))
-->values(array(
-  'path' => 'admin/content/node-type/page/display/basic',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:4:"page";i:2;s:5:"basic";}',
-  'fit' => '63',
-  'number_parts' => '6',
-  'tab_parent' => 'admin/content/node-type/page/display',
-  'tab_root' => 'admin/content/node-type/page',
-  'title' => 'Basic',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '136',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'sites/all/modules/cck/includes/content.admin.inc',
-))
-->values(array(
-  'path' => 'admin/content/node-type/page/display/rss',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:4:"page";i:2;s:3:"rss";}',
-  'fit' => '63',
-  'number_parts' => '6',
-  'tab_parent' => 'admin/content/node-type/page/display',
-  'tab_root' => 'admin/content/node-type/page',
-  'title' => 'RSS',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '128',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '1',
-  'file' => 'sites/all/modules/cck/includes/content.admin.inc',
-))
-->values(array(
-  'path' => 'admin/content/node-type/page/display/search',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:4:"page";i:2;s:6:"search";}',
-  'fit' => '63',
-  'number_parts' => '6',
-  'tab_parent' => 'admin/content/node-type/page/display',
-  'tab_root' => 'admin/content/node-type/page',
-  'title' => 'Search',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '128',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '1',
-  'file' => 'sites/all/modules/cck/includes/content.admin.inc',
-))
-->values(array(
-  'path' => 'admin/content/node-type/page/edit',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => "a:2:{i:0;s:14:\"node_type_form\";i:1;O:8:\"stdClass\":14:{s:4:\"type\";s:4:\"page\";s:4:\"name\";s:4:\"Page\";s:6:\"module\";s:4:\"node\";s:11:\"description\";s:296:\"A <em>page</em>, similar in form to a <em>story</em>, is a simple method for creating and displaying information that rarely changes, such as an \"About us\" section of a website. By default, a <em>page</em> entry does not allow visitor comments and is not featured on the site's initial home page.\";s:4:\"help\";s:0:\"\";s:9:\"has_title\";s:1:\"1\";s:11:\"title_label\";s:5:\"Title\";s:8:\"has_body\";s:1:\"1\";s:10:\"body_label\";s:4:\"Body\";s:14:\"min_word_count\";s:1:\"0\";s:6:\"custom\";s:1:\"1\";s:8:\"modified\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:9:\"orig_type\";s:4:\"page\";}}",
-  'fit' => '31',
-  'number_parts' => '5',
-  'tab_parent' => 'admin/content/node-type/page',
-  'tab_root' => 'admin/content/node-type/page',
-  'title' => 'Edit',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '136',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/node/content_types.inc',
-))
-->values(array(
-  'path' => 'admin/content/node-type/page/fields',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:27:"content_field_overview_form";i:1;s:4:"page";}',
-  'fit' => '31',
-  'number_parts' => '5',
-  'tab_parent' => 'admin/content/node-type/page',
-  'tab_root' => 'admin/content/node-type/page',
-  'title' => 'Manage fields',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '128',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '1',
-  'file' => 'sites/all/modules/cck/includes/content.admin.inc',
-))
-->values(array(
-  'path' => 'admin/content/node-type/sponsor',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:14:"node_type_form";i:1;O:8:"stdClass":14:{s:4:"type";s:7:"sponsor";s:4:"name";s:7:"Sponsor";s:6:"module";s:4:"node";s:11:"description";s:17:"Sponsor node type";s:4:"help";s:0:"";s:9:"has_title";s:1:"1";s:11:"title_label";s:4:"Name";s:8:"has_body";s:1:"1";s:10:"body_label";s:4:"Body";s:14:"min_word_count";s:1:"0";s:6:"custom";s:1:"0";s:8:"modified";s:1:"1";s:6:"locked";s:1:"0";s:9:"orig_type";s:0:"";}}',
-  'fit' => '15',
-  'number_parts' => '4',
-  'tab_parent' => '',
-  'tab_root' => 'admin/content/node-type/sponsor',
-  'title' => 'Sponsor',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '4',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/node/content_types.inc',
-))
-->values(array(
-  'path' => 'admin/content/node-type/sponsor/delete',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:24:"node_type_delete_confirm";i:1;O:8:"stdClass":14:{s:4:"type";s:7:"sponsor";s:4:"name";s:7:"Sponsor";s:6:"module";s:4:"node";s:11:"description";s:17:"Sponsor node type";s:4:"help";s:0:"";s:9:"has_title";s:1:"1";s:11:"title_label";s:4:"Name";s:8:"has_body";s:1:"1";s:10:"body_label";s:4:"Body";s:14:"min_word_count";s:1:"0";s:6:"custom";s:1:"0";s:8:"modified";s:1:"1";s:6:"locked";s:1:"0";s:9:"orig_type";s:0:"";}}',
-  'fit' => '31',
-  'number_parts' => '5',
-  'tab_parent' => '',
-  'tab_root' => 'admin/content/node-type/sponsor/delete',
-  'title' => 'Delete',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '4',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/node/content_types.inc',
-))
-->values(array(
-  'path' => 'admin/content/node-type/sponsor/display',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:29:"content_display_overview_form";i:1;s:7:"sponsor";}',
-  'fit' => '31',
-  'number_parts' => '5',
-  'tab_parent' => 'admin/content/node-type/sponsor',
-  'tab_root' => 'admin/content/node-type/sponsor',
-  'title' => 'Display fields',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '128',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '2',
-  'file' => 'sites/all/modules/cck/includes/content.admin.inc',
-))
-->values(array(
-  'path' => 'admin/content/node-type/sponsor/display/basic',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:7:"sponsor";i:2;s:5:"basic";}',
-  'fit' => '63',
-  'number_parts' => '6',
-  'tab_parent' => 'admin/content/node-type/sponsor/display',
-  'tab_root' => 'admin/content/node-type/sponsor',
-  'title' => 'Basic',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '136',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'sites/all/modules/cck/includes/content.admin.inc',
-))
-->values(array(
-  'path' => 'admin/content/node-type/sponsor/display/rss',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:7:"sponsor";i:2;s:3:"rss";}',
-  'fit' => '63',
-  'number_parts' => '6',
-  'tab_parent' => 'admin/content/node-type/sponsor/display',
-  'tab_root' => 'admin/content/node-type/sponsor',
-  'title' => 'RSS',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '128',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '1',
-  'file' => 'sites/all/modules/cck/includes/content.admin.inc',
-))
-->values(array(
-  'path' => 'admin/content/node-type/sponsor/display/search',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:7:"sponsor";i:2;s:6:"search";}',
-  'fit' => '63',
-  'number_parts' => '6',
-  'tab_parent' => 'admin/content/node-type/sponsor/display',
-  'tab_root' => 'admin/content/node-type/sponsor',
-  'title' => 'Search',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '128',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '1',
-  'file' => 'sites/all/modules/cck/includes/content.admin.inc',
-))
-->values(array(
-  'path' => 'admin/content/node-type/sponsor/edit',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:14:"node_type_form";i:1;O:8:"stdClass":14:{s:4:"type";s:7:"sponsor";s:4:"name";s:7:"Sponsor";s:6:"module";s:4:"node";s:11:"description";s:17:"Sponsor node type";s:4:"help";s:0:"";s:9:"has_title";s:1:"1";s:11:"title_label";s:4:"Name";s:8:"has_body";s:1:"1";s:10:"body_label";s:4:"Body";s:14:"min_word_count";s:1:"0";s:6:"custom";s:1:"0";s:8:"modified";s:1:"1";s:6:"locked";s:1:"0";s:9:"orig_type";s:0:"";}}',
-  'fit' => '31',
-  'number_parts' => '5',
-  'tab_parent' => 'admin/content/node-type/sponsor',
-  'tab_root' => 'admin/content/node-type/sponsor',
-  'title' => 'Edit',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '136',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/node/content_types.inc',
-))
-->values(array(
-  'path' => 'admin/content/node-type/sponsor/fields',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:27:"content_field_overview_form";i:1;s:7:"sponsor";}',
-  'fit' => '31',
-  'number_parts' => '5',
-  'tab_parent' => 'admin/content/node-type/sponsor',
-  'tab_root' => 'admin/content/node-type/sponsor',
-  'title' => 'Manage fields',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '128',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '1',
-  'file' => 'sites/all/modules/cck/includes/content.admin.inc',
-))
-->values(array(
-  'path' => 'admin/content/node-type/story',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => "a:2:{i:0;s:14:\"node_type_form\";i:1;O:8:\"stdClass\":14:{s:4:\"type\";s:5:\"story\";s:4:\"name\";s:5:\"Story\";s:6:\"module\";s:4:\"node\";s:11:\"description\";s:392:\"A <em>story</em>, similar in form to a <em>page</em>, is ideal for creating and displaying content that informs or engages website visitors. Press releases, site announcements, and informal blog-like entries may all be created with a <em>story</em> entry. By default, a <em>story</em> entry is automatically featured on the site's initial home page, and provides the ability to post comments.\";s:4:\"help\";s:0:\"\";s:9:\"has_title\";s:1:\"1\";s:11:\"title_label\";s:5:\"Title\";s:8:\"has_body\";s:1:\"1\";s:10:\"body_label\";s:4:\"Body\";s:14:\"min_word_count\";s:1:\"0\";s:6:\"custom\";s:1:\"1\";s:8:\"modified\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:9:\"orig_type\";s:5:\"story\";}}",
-  'fit' => '15',
-  'number_parts' => '4',
-  'tab_parent' => '',
-  'tab_root' => 'admin/content/node-type/story',
-  'title' => 'Story',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '4',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/node/content_types.inc',
-))
-->values(array(
-  'path' => 'admin/content/node-type/story/delete',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => "a:2:{i:0;s:24:\"node_type_delete_confirm\";i:1;O:8:\"stdClass\":14:{s:4:\"type\";s:5:\"story\";s:4:\"name\";s:5:\"Story\";s:6:\"module\";s:4:\"node\";s:11:\"description\";s:392:\"A <em>story</em>, similar in form to a <em>page</em>, is ideal for creating and displaying content that informs or engages website visitors. Press releases, site announcements, and informal blog-like entries may all be created with a <em>story</em> entry. By default, a <em>story</em> entry is automatically featured on the site's initial home page, and provides the ability to post comments.\";s:4:\"help\";s:0:\"\";s:9:\"has_title\";s:1:\"1\";s:11:\"title_label\";s:5:\"Title\";s:8:\"has_body\";s:1:\"1\";s:10:\"body_label\";s:4:\"Body\";s:14:\"min_word_count\";s:1:\"0\";s:6:\"custom\";s:1:\"1\";s:8:\"modified\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:9:\"orig_type\";s:5:\"story\";}}",
-  'fit' => '31',
-  'number_parts' => '5',
-  'tab_parent' => '',
-  'tab_root' => 'admin/content/node-type/story/delete',
-  'title' => 'Delete',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '4',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/node/content_types.inc',
-))
-->values(array(
-  'path' => 'admin/content/node-type/story/display',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:29:"content_display_overview_form";i:1;s:5:"story";}',
-  'fit' => '31',
-  'number_parts' => '5',
-  'tab_parent' => 'admin/content/node-type/story',
-  'tab_root' => 'admin/content/node-type/story',
-  'title' => 'Display fields',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '128',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '2',
-  'file' => 'sites/all/modules/cck/includes/content.admin.inc',
-))
-->values(array(
-  'path' => 'admin/content/node-type/story/display/basic',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:5:"story";i:2;s:5:"basic";}',
-  'fit' => '63',
-  'number_parts' => '6',
-  'tab_parent' => 'admin/content/node-type/story/display',
-  'tab_root' => 'admin/content/node-type/story',
-  'title' => 'Basic',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '136',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'sites/all/modules/cck/includes/content.admin.inc',
-))
-->values(array(
-  'path' => 'admin/content/node-type/story/display/rss',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:5:"story";i:2;s:3:"rss";}',
-  'fit' => '63',
-  'number_parts' => '6',
-  'tab_parent' => 'admin/content/node-type/story/display',
-  'tab_root' => 'admin/content/node-type/story',
-  'title' => 'RSS',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '128',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '1',
-  'file' => 'sites/all/modules/cck/includes/content.admin.inc',
-))
-->values(array(
-  'path' => 'admin/content/node-type/story/display/search',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:5:"story";i:2;s:6:"search";}',
-  'fit' => '63',
-  'number_parts' => '6',
-  'tab_parent' => 'admin/content/node-type/story/display',
-  'tab_root' => 'admin/content/node-type/story',
-  'title' => 'Search',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '128',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '1',
-  'file' => 'sites/all/modules/cck/includes/content.admin.inc',
-))
-->values(array(
-  'path' => 'admin/content/node-type/story/edit',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => "a:2:{i:0;s:14:\"node_type_form\";i:1;O:8:\"stdClass\":14:{s:4:\"type\";s:5:\"story\";s:4:\"name\";s:5:\"Story\";s:6:\"module\";s:4:\"node\";s:11:\"description\";s:392:\"A <em>story</em>, similar in form to a <em>page</em>, is ideal for creating and displaying content that informs or engages website visitors. Press releases, site announcements, and informal blog-like entries may all be created with a <em>story</em> entry. By default, a <em>story</em> entry is automatically featured on the site's initial home page, and provides the ability to post comments.\";s:4:\"help\";s:0:\"\";s:9:\"has_title\";s:1:\"1\";s:11:\"title_label\";s:5:\"Title\";s:8:\"has_body\";s:1:\"1\";s:10:\"body_label\";s:4:\"Body\";s:14:\"min_word_count\";s:1:\"0\";s:6:\"custom\";s:1:\"1\";s:8:\"modified\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:9:\"orig_type\";s:5:\"story\";}}",
-  'fit' => '31',
-  'number_parts' => '5',
-  'tab_parent' => 'admin/content/node-type/story',
-  'tab_root' => 'admin/content/node-type/story',
-  'title' => 'Edit',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '136',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/node/content_types.inc',
-))
-->values(array(
-  'path' => 'admin/content/node-type/story/fields',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:27:"content_field_overview_form";i:1;s:5:"story";}',
-  'fit' => '31',
-  'number_parts' => '5',
-  'tab_parent' => 'admin/content/node-type/story',
-  'tab_root' => 'admin/content/node-type/story',
-  'title' => 'Manage fields',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '128',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '1',
-  'file' => 'sites/all/modules/cck/includes/content.admin.inc',
-))
-->values(array(
-  'path' => 'admin/content/node/overview',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:16:"administer nodes";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:18:"node_admin_content";}',
-  'fit' => '15',
-  'number_parts' => '4',
-  'tab_parent' => 'admin/content/node',
-  'tab_root' => 'admin/content/node',
-  'title' => 'List',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '136',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '-10',
-  'file' => 'modules/node/node.admin.inc',
-))
-->values(array(
-  'path' => 'admin/content/rss-publishing',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:25:"system_rss_feeds_settings";}',
-  'fit' => '7',
-  'number_parts' => '3',
-  'tab_parent' => '',
-  'tab_root' => 'admin/content/rss-publishing',
-  'title' => 'RSS publishing',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '6',
-  'block_callback' => '',
-  'description' => 'Configure the number of items per feed and whether feeds should be titles/teasers/full-text.',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'admin/content/taxonomy',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:19:"administer taxonomy";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:30:"taxonomy_overview_vocabularies";}',
-  'fit' => '7',
-  'number_parts' => '3',
-  'tab_parent' => '',
-  'tab_root' => 'admin/content/taxonomy',
-  'title' => 'Taxonomy',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '6',
-  'block_callback' => '',
-  'description' => 'Manage tagging, categorization, and classification of your content.',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/taxonomy/taxonomy.admin.inc',
-))
-->values(array(
-  'path' => 'admin/content/taxonomy/%',
-  'load_functions' => 'a:1:{i:3;s:24:"taxonomy_vocabulary_load";}',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:19:"administer taxonomy";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:23:"taxonomy_overview_terms";i:1;i:3;}',
-  'fit' => '14',
-  'number_parts' => '4',
-  'tab_parent' => '',
-  'tab_root' => 'admin/content/taxonomy/%',
-  'title' => 'List terms',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '4',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/taxonomy/taxonomy.admin.inc',
-))
-->values(array(
-  'path' => 'admin/content/taxonomy/%/add/term',
-  'load_functions' => 'a:1:{i:3;s:24:"taxonomy_vocabulary_load";}',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:19:"administer taxonomy";}',
-  'page_callback' => 'taxonomy_add_term_page',
-  'page_arguments' => 'a:1:{i:0;i:3;}',
-  'fit' => '59',
-  'number_parts' => '6',
-  'tab_parent' => 'admin/content/taxonomy/%',
-  'tab_root' => 'admin/content/taxonomy/%',
-  'title' => 'Add term',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '128',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/taxonomy/taxonomy.admin.inc',
-))
-->values(array(
-  'path' => 'admin/content/taxonomy/%/list',
-  'load_functions' => 'a:1:{i:3;s:24:"taxonomy_vocabulary_load";}',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:19:"administer taxonomy";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:23:"taxonomy_overview_terms";i:1;i:3;}',
-  'fit' => '29',
-  'number_parts' => '5',
-  'tab_parent' => 'admin/content/taxonomy/%',
-  'tab_root' => 'admin/content/taxonomy/%',
-  'title' => 'List',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '136',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '-10',
-  'file' => 'modules/taxonomy/taxonomy.admin.inc',
-))
-->values(array(
-  'path' => 'admin/content/taxonomy/add/vocabulary',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:19:"administer taxonomy";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:24:"taxonomy_form_vocabulary";}',
-  'fit' => '31',
-  'number_parts' => '5',
-  'tab_parent' => 'admin/content/taxonomy',
-  'tab_root' => 'admin/content/taxonomy',
-  'title' => 'Add vocabulary',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '128',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/taxonomy/taxonomy.admin.inc',
-))
-->values(array(
-  'path' => 'admin/content/taxonomy/edit/term',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:19:"administer taxonomy";}',
-  'page_callback' => 'taxonomy_admin_term_edit',
-  'page_arguments' => 'a:0:{}',
-  'fit' => '31',
-  'number_parts' => '5',
-  'tab_parent' => '',
-  'tab_root' => 'admin/content/taxonomy/edit/term',
-  'title' => 'Edit term',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '4',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/taxonomy/taxonomy.admin.inc',
-))
-->values(array(
-  'path' => 'admin/content/taxonomy/edit/vocabulary/%',
-  'load_functions' => 'a:1:{i:5;s:24:"taxonomy_vocabulary_load";}',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:19:"administer taxonomy";}',
-  'page_callback' => 'taxonomy_admin_vocabulary_edit',
-  'page_arguments' => 'a:1:{i:0;i:5;}',
-  'fit' => '62',
-  'number_parts' => '6',
-  'tab_parent' => '',
-  'tab_root' => 'admin/content/taxonomy/edit/vocabulary/%',
-  'title' => 'Edit vocabulary',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '4',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/taxonomy/taxonomy.admin.inc',
-))
-->values(array(
-  'path' => 'admin/content/taxonomy/list',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:19:"administer taxonomy";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:30:"taxonomy_overview_vocabularies";}',
-  'fit' => '15',
-  'number_parts' => '4',
-  'tab_parent' => 'admin/content/taxonomy',
-  'tab_root' => 'admin/content/taxonomy',
-  'title' => 'List',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '136',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '-10',
-  'file' => 'modules/taxonomy/taxonomy.admin.inc',
-))
-->values(array(
-  'path' => 'admin/content/types',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
-  'page_callback' => 'content_types_overview',
-  'page_arguments' => 'a:0:{}',
-  'fit' => '7',
-  'number_parts' => '3',
-  'tab_parent' => '',
-  'tab_root' => 'admin/content/types',
-  'title' => 'Content types',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '6',
-  'block_callback' => '',
-  'description' => 'Manage posts by content type, including default status, front page promotion, etc.',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'sites/all/modules/cck/includes/content.admin.inc',
-))
-->values(array(
-  'path' => 'admin/content/types/add',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:14:"node_type_form";}',
-  'fit' => '15',
-  'number_parts' => '4',
-  'tab_parent' => 'admin/content/types',
-  'tab_root' => 'admin/content/types',
-  'title' => 'Add content type',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '128',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/node/content_types.inc',
-))
-->values(array(
-  'path' => 'admin/content/types/fields',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
-  'page_callback' => 'content_fields_list',
-  'page_arguments' => 'a:0:{}',
-  'fit' => '15',
-  'number_parts' => '4',
-  'tab_parent' => 'admin/content/types',
-  'tab_root' => 'admin/content/types',
-  'title' => 'Fields',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '128',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'sites/all/modules/cck/includes/content.admin.inc',
-))
-->values(array(
-  'path' => 'admin/content/types/list',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
-  'page_callback' => 'content_types_overview',
-  'page_arguments' => 'a:0:{}',
-  'fit' => '15',
-  'number_parts' => '4',
-  'tab_parent' => 'admin/content/types',
-  'tab_root' => 'admin/content/types',
-  'title' => 'List',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '136',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '-10',
-  'file' => 'sites/all/modules/cck/includes/content.admin.inc',
-))
-->values(array(
-  'path' => 'admin/reports',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:19:"access site reports";}',
-  'page_callback' => 'system_admin_menu_block_page',
-  'page_arguments' => 'a:0:{}',
-  'fit' => '3',
-  'number_parts' => '2',
-  'tab_parent' => '',
-  'tab_root' => 'admin/reports',
-  'title' => 'Reports',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '6',
-  'block_callback' => '',
-  'description' => 'View reports from system logs and other status information.',
-  'position' => 'left',
-  'weight' => '5',
-  'file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'admin/reports/search',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:19:"access site reports";}',
-  'page_callback' => 'dblog_top',
-  'page_arguments' => 'a:1:{i:0;s:6:"search";}',
-  'fit' => '7',
-  'number_parts' => '3',
-  'tab_parent' => '',
-  'tab_root' => 'admin/reports/search',
-  'title' => 'Top search phrases',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '6',
-  'block_callback' => '',
-  'description' => 'View most popular search phrases.',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/dblog/dblog.admin.inc',
-))
-->values(array(
-  'path' => 'admin/reports/status',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
-  'page_callback' => 'system_status',
-  'page_arguments' => 'a:0:{}',
-  'fit' => '7',
-  'number_parts' => '3',
-  'tab_parent' => '',
-  'tab_root' => 'admin/reports/status',
-  'title' => 'Status report',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '6',
-  'block_callback' => '',
-  'description' => "Get a status report about your site's operation and any detected problems.",
-  'position' => '',
-  'weight' => '10',
-  'file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'admin/reports/status/php',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
-  'page_callback' => 'system_php',
-  'page_arguments' => 'a:0:{}',
-  'fit' => '15',
-  'number_parts' => '4',
-  'tab_parent' => '',
-  'tab_root' => 'admin/reports/status/php',
-  'title' => 'PHP',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '4',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'admin/reports/status/run-cron',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
-  'page_callback' => 'system_run_cron',
-  'page_arguments' => 'a:0:{}',
-  'fit' => '15',
-  'number_parts' => '4',
-  'tab_parent' => '',
-  'tab_root' => 'admin/reports/status/run-cron',
-  'title' => 'Run cron',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '4',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'admin/reports/status/sql',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
-  'page_callback' => 'system_sql',
-  'page_arguments' => 'a:0:{}',
-  'fit' => '15',
-  'number_parts' => '4',
-  'tab_parent' => '',
-  'tab_root' => 'admin/reports/status/sql',
-  'title' => 'SQL',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '4',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'admin/settings',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
-  'page_callback' => 'system_settings_overview',
-  'page_arguments' => 'a:0:{}',
-  'fit' => '3',
-  'number_parts' => '2',
-  'tab_parent' => '',
-  'tab_root' => 'admin/settings',
-  'title' => 'Site configuration',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '6',
-  'block_callback' => '',
-  'description' => 'Adjust basic site configuration options.',
-  'position' => 'right',
-  'weight' => '-5',
-  'file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'admin/settings/actions',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:18:"administer actions";}',
-  'page_callback' => 'system_actions_manage',
-  'page_arguments' => 'a:0:{}',
-  'fit' => '7',
-  'number_parts' => '3',
-  'tab_parent' => '',
-  'tab_root' => 'admin/settings/actions',
-  'title' => 'Actions',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '6',
-  'block_callback' => '',
-  'description' => 'Manage the actions defined for your site.',
-  'position' => '',
-  'weight' => '0',
-  'file' => '',
-))
-->values(array(
-  'path' => 'admin/settings/actions/configure',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:18:"administer actions";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:24:"system_actions_configure";}',
-  'fit' => '15',
-  'number_parts' => '4',
-  'tab_parent' => '',
-  'tab_root' => 'admin/settings/actions/configure',
-  'title' => 'Configure an advanced action',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '4',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => '',
-))
-->values(array(
-  'path' => 'admin/settings/actions/delete/%',
-  'load_functions' => 'a:1:{i:4;s:12:"actions_load";}',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:18:"administer actions";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:26:"system_actions_delete_form";i:1;i:4;}',
-  'fit' => '30',
-  'number_parts' => '5',
-  'tab_parent' => '',
-  'tab_root' => 'admin/settings/actions/delete/%',
-  'title' => 'Delete action',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '4',
-  'block_callback' => '',
-  'description' => 'Delete an action.',
-  'position' => '',
-  'weight' => '0',
-  'file' => '',
-))
-->values(array(
-  'path' => 'admin/settings/actions/manage',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:18:"administer actions";}',
-  'page_callback' => 'system_actions_manage',
-  'page_arguments' => 'a:0:{}',
-  'fit' => '15',
-  'number_parts' => '4',
-  'tab_parent' => 'admin/settings/actions',
-  'tab_root' => 'admin/settings/actions',
-  'title' => 'Manage actions',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '136',
-  'block_callback' => '',
-  'description' => 'Manage the actions defined for your site.',
-  'position' => '',
-  'weight' => '-2',
-  'file' => '',
-))
-->values(array(
-  'path' => 'admin/settings/actions/orphan',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:18:"administer actions";}',
-  'page_callback' => 'system_actions_remove_orphans',
-  'page_arguments' => 'a:0:{}',
-  'fit' => '15',
-  'number_parts' => '4',
-  'tab_parent' => '',
-  'tab_root' => 'admin/settings/actions/orphan',
-  'title' => 'Remove orphans',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '4',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => '',
-))
-->values(array(
-  'path' => 'admin/settings/admin',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:27:"system_admin_theme_settings";}',
-  'fit' => '7',
-  'number_parts' => '3',
-  'tab_parent' => '',
-  'tab_root' => 'admin/settings/admin',
-  'title' => 'Administration theme',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '6',
-  'block_callback' => 'system_admin_theme_settings',
-  'description' => 'Settings for how your administrative pages should look.',
-  'position' => 'left',
-  'weight' => '0',
-  'file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'admin/settings/clean-urls',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:25:"system_clean_url_settings";}',
-  'fit' => '7',
-  'number_parts' => '3',
-  'tab_parent' => '',
-  'tab_root' => 'admin/settings/clean-urls',
-  'title' => 'Clean URLs',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '6',
-  'block_callback' => '',
-  'description' => 'Enable or disable clean URLs for your site.',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'admin/settings/clean-urls/check',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => '1',
-  'access_arguments' => 'a:0:{}',
-  'page_callback' => 'drupal_json',
-  'page_arguments' => 'a:1:{i:0;a:1:{s:6:"status";b:1;}}',
-  'fit' => '15',
-  'number_parts' => '4',
-  'tab_parent' => '',
-  'tab_root' => 'admin/settings/clean-urls/check',
-  'title' => 'Clean URL check',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '4',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => '',
-))
-->values(array(
-  'path' => 'admin/settings/date-time',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:25:"system_date_time_settings";}',
-  'fit' => '7',
-  'number_parts' => '3',
-  'tab_parent' => '',
-  'tab_root' => 'admin/settings/date-time',
-  'title' => 'Date and time',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '6',
-  'block_callback' => '',
-  'description' => "Settings for how Drupal displays date and time, as well as the system's default timezone.",
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'admin/settings/date-time/lookup',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
-  'page_callback' => 'system_date_time_lookup',
-  'page_arguments' => 'a:0:{}',
-  'fit' => '15',
-  'number_parts' => '4',
-  'tab_parent' => '',
-  'tab_root' => 'admin/settings/date-time/lookup',
-  'title' => 'Date and time lookup',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '4',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'admin/settings/error-reporting',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:31:"system_error_reporting_settings";}',
-  'fit' => '7',
-  'number_parts' => '3',
-  'tab_parent' => '',
-  'tab_root' => 'admin/settings/error-reporting',
-  'title' => 'Error reporting',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '6',
-  'block_callback' => '',
-  'description' => 'Control how Drupal deals with errors including 403/404 errors as well as PHP error reporting.',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'admin/settings/file-system',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:27:"system_file_system_settings";}',
-  'fit' => '7',
-  'number_parts' => '3',
-  'tab_parent' => '',
-  'tab_root' => 'admin/settings/file-system',
-  'title' => 'File system',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '6',
-  'block_callback' => '',
-  'description' => 'Tell Drupal where to store uploaded files and how they are accessed.',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'admin/settings/filters',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:18:"administer filters";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:21:"filter_admin_overview";}',
-  'fit' => '7',
-  'number_parts' => '3',
-  'tab_parent' => '',
-  'tab_root' => 'admin/settings/filters',
-  'title' => 'Input formats',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '6',
-  'block_callback' => '',
-  'description' => 'Configure how content input by users is filtered, including allowed HTML tags. Also allows enabling of module-provided filters.',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/filter/filter.admin.inc',
-))
-->values(array(
-  'path' => 'admin/settings/filters/%',
-  'load_functions' => 'a:1:{i:3;s:18:"filter_format_load";}',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:18:"administer filters";}',
-  'page_callback' => 'filter_admin_format_page',
-  'page_arguments' => 'a:1:{i:0;i:3;}',
-  'fit' => '14',
-  'number_parts' => '4',
-  'tab_parent' => '',
-  'tab_root' => 'admin/settings/filters/%',
-  'title' => '',
-  'title_callback' => 'filter_admin_format_title',
-  'title_arguments' => 'a:1:{i:0;i:3;}',
-  'type' => '4',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/filter/filter.admin.inc',
-))
-->values(array(
-  'path' => 'admin/settings/filters/%/configure',
-  'load_functions' => 'a:1:{i:3;s:18:"filter_format_load";}',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:18:"administer filters";}',
-  'page_callback' => 'filter_admin_configure_page',
-  'page_arguments' => 'a:1:{i:0;i:3;}',
-  'fit' => '29',
-  'number_parts' => '5',
-  'tab_parent' => 'admin/settings/filters/%',
-  'tab_root' => 'admin/settings/filters/%',
-  'title' => 'Configure',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '128',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '1',
-  'file' => 'modules/filter/filter.admin.inc',
-))
-->values(array(
-  'path' => 'admin/settings/filters/%/edit',
-  'load_functions' => 'a:1:{i:3;s:18:"filter_format_load";}',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:18:"administer filters";}',
-  'page_callback' => 'filter_admin_format_page',
-  'page_arguments' => 'a:1:{i:0;i:3;}',
-  'fit' => '29',
-  'number_parts' => '5',
-  'tab_parent' => 'admin/settings/filters/%',
-  'tab_root' => 'admin/settings/filters/%',
-  'title' => 'Edit',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '136',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/filter/filter.admin.inc',
-))
-->values(array(
-  'path' => 'admin/settings/filters/%/order',
-  'load_functions' => 'a:1:{i:3;s:18:"filter_format_load";}',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:18:"administer filters";}',
-  'page_callback' => 'filter_admin_order_page',
-  'page_arguments' => 'a:1:{i:0;i:3;}',
-  'fit' => '29',
-  'number_parts' => '5',
-  'tab_parent' => 'admin/settings/filters/%',
-  'tab_root' => 'admin/settings/filters/%',
-  'title' => 'Rearrange',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '128',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '2',
-  'file' => 'modules/filter/filter.admin.inc',
-))
-->values(array(
-  'path' => 'admin/settings/filters/add',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:18:"administer filters";}',
-  'page_callback' => 'filter_admin_format_page',
-  'page_arguments' => 'a:0:{}',
-  'fit' => '15',
-  'number_parts' => '4',
-  'tab_parent' => 'admin/settings/filters',
-  'tab_root' => 'admin/settings/filters',
-  'title' => 'Add input format',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '128',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '1',
-  'file' => 'modules/filter/filter.admin.inc',
-))
-->values(array(
-  'path' => 'admin/settings/filters/delete',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:18:"administer filters";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:19:"filter_admin_delete";}',
-  'fit' => '15',
-  'number_parts' => '4',
-  'tab_parent' => '',
-  'tab_root' => 'admin/settings/filters/delete',
-  'title' => 'Delete input format',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '4',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/filter/filter.admin.inc',
-))
-->values(array(
-  'path' => 'admin/settings/filters/list',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:18:"administer filters";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:21:"filter_admin_overview";}',
-  'fit' => '15',
-  'number_parts' => '4',
-  'tab_parent' => 'admin/settings/filters',
-  'tab_root' => 'admin/settings/filters',
-  'title' => 'List',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '136',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/filter/filter.admin.inc',
-))
-->values(array(
-  'path' => 'admin/settings/image-toolkit',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:29:"system_image_toolkit_settings";}',
-  'fit' => '7',
-  'number_parts' => '3',
-  'tab_parent' => '',
-  'tab_root' => 'admin/settings/image-toolkit',
-  'title' => 'Image toolkit',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '6',
-  'block_callback' => '',
-  'description' => 'Choose which image toolkit to use if you have installed optional toolkits.',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'admin/settings/logging',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
-  'page_callback' => 'system_logging_overview',
-  'page_arguments' => 'a:0:{}',
-  'fit' => '7',
-  'number_parts' => '3',
-  'tab_parent' => '',
-  'tab_root' => 'admin/settings/logging',
-  'title' => 'Logging and alerts',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '6',
-  'block_callback' => '',
-  'description' => "Settings for logging and alerts modules. Various modules can route Drupal's system events to different destination, such as syslog, database, email, ...etc.",
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'admin/settings/performance',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:27:"system_performance_settings";}',
-  'fit' => '7',
-  'number_parts' => '3',
-  'tab_parent' => '',
-  'tab_root' => 'admin/settings/performance',
-  'title' => 'Performance',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '6',
-  'block_callback' => '',
-  'description' => 'Enable or disable page caching for anonymous users and set CSS and JS bandwidth optimization options.',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'admin/settings/search',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:17:"administer search";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:21:"search_admin_settings";}',
-  'fit' => '7',
-  'number_parts' => '3',
-  'tab_parent' => '',
-  'tab_root' => 'admin/settings/search',
-  'title' => 'Search settings',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '6',
-  'block_callback' => '',
-  'description' => 'Configure relevance settings for search and other indexing options',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/search/search.admin.inc',
-))
-->values(array(
-  'path' => 'admin/settings/search/wipe',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:17:"administer search";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:19:"search_wipe_confirm";}',
-  'fit' => '15',
-  'number_parts' => '4',
-  'tab_parent' => '',
-  'tab_root' => 'admin/settings/search/wipe',
-  'title' => 'Clear index',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '4',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/search/search.admin.inc',
-))
-->values(array(
-  'path' => 'admin/settings/site-information',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:32:"system_site_information_settings";}',
-  'fit' => '7',
-  'number_parts' => '3',
-  'tab_parent' => '',
-  'tab_root' => 'admin/settings/site-information',
-  'title' => 'Site information',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '6',
-  'block_callback' => '',
-  'description' => 'Change basic site information, such as the site name, slogan, e-mail address, mission, front page and more.',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'admin/settings/site-maintenance',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:32:"system_site_maintenance_settings";}',
-  'fit' => '7',
-  'number_parts' => '3',
-  'tab_parent' => '',
-  'tab_root' => 'admin/settings/site-maintenance',
-  'title' => 'Site maintenance',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '6',
-  'block_callback' => '',
-  'description' => 'Take the site off-line for maintenance or bring it back online.',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'admin/settings/uploads',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:21:"upload_admin_settings";}',
-  'fit' => '7',
-  'number_parts' => '3',
-  'tab_parent' => '',
-  'tab_root' => 'admin/settings/uploads',
-  'title' => 'File uploads',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '6',
-  'block_callback' => '',
-  'description' => 'Control how files may be attached to content.',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/upload/upload.admin.inc',
-))
-->values(array(
-  'path' => 'admin/user',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
-  'page_callback' => 'system_admin_menu_block_page',
-  'page_arguments' => 'a:0:{}',
-  'fit' => '3',
-  'number_parts' => '2',
-  'tab_parent' => '',
-  'tab_root' => 'admin/user',
-  'title' => 'User management',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '6',
-  'block_callback' => '',
-  'description' => "Manage your site's users, groups and access to site features.",
-  'position' => 'left',
-  'weight' => '0',
-  'file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'admin/user/permissions',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:22:"administer permissions";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:15:"user_admin_perm";}',
-  'fit' => '7',
-  'number_parts' => '3',
-  'tab_parent' => '',
-  'tab_root' => 'admin/user/permissions',
-  'title' => 'Permissions',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '6',
-  'block_callback' => '',
-  'description' => 'Determine access to features by selecting permissions for roles.',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/user/user.admin.inc',
-))
-->values(array(
-  'path' => 'admin/user/roles',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:22:"administer permissions";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:19:"user_admin_new_role";}',
-  'fit' => '7',
-  'number_parts' => '3',
-  'tab_parent' => '',
-  'tab_root' => 'admin/user/roles',
-  'title' => 'Roles',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '6',
-  'block_callback' => '',
-  'description' => 'List, edit, or add user roles.',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/user/user.admin.inc',
-))
-->values(array(
-  'path' => 'admin/user/roles/edit',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:22:"administer permissions";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:15:"user_admin_role";}',
-  'fit' => '15',
-  'number_parts' => '4',
-  'tab_parent' => '',
-  'tab_root' => 'admin/user/roles/edit',
-  'title' => 'Edit role',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '4',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/user/user.admin.inc',
-))
-->values(array(
-  'path' => 'admin/user/rules',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:22:"administer permissions";}',
-  'page_callback' => 'user_admin_access',
-  'page_arguments' => 'a:0:{}',
-  'fit' => '7',
-  'number_parts' => '3',
-  'tab_parent' => '',
-  'tab_root' => 'admin/user/rules',
-  'title' => 'Access rules',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '6',
-  'block_callback' => '',
-  'description' => 'List and create rules to disallow usernames, e-mail addresses, and IP addresses.',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/user/user.admin.inc',
-))
-->values(array(
-  'path' => 'admin/user/rules/add',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:22:"administer permissions";}',
-  'page_callback' => 'user_admin_access_add',
-  'page_arguments' => 'a:0:{}',
-  'fit' => '15',
-  'number_parts' => '4',
-  'tab_parent' => 'admin/user/rules',
-  'tab_root' => 'admin/user/rules',
-  'title' => 'Add rule',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '128',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/user/user.admin.inc',
-))
-->values(array(
-  'path' => 'admin/user/rules/check',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:22:"administer permissions";}',
-  'page_callback' => 'user_admin_access_check',
-  'page_arguments' => 'a:0:{}',
-  'fit' => '15',
-  'number_parts' => '4',
-  'tab_parent' => 'admin/user/rules',
-  'tab_root' => 'admin/user/rules',
-  'title' => 'Check rules',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '128',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/user/user.admin.inc',
-))
-->values(array(
-  'path' => 'admin/user/rules/delete',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:22:"administer permissions";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:32:"user_admin_access_delete_confirm";}',
-  'fit' => '15',
-  'number_parts' => '4',
-  'tab_parent' => '',
-  'tab_root' => 'admin/user/rules/delete',
-  'title' => 'Delete rule',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '4',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/user/user.admin.inc',
-))
-->values(array(
-  'path' => 'admin/user/rules/edit',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:22:"administer permissions";}',
-  'page_callback' => 'user_admin_access_edit',
-  'page_arguments' => 'a:0:{}',
-  'fit' => '15',
-  'number_parts' => '4',
-  'tab_parent' => '',
-  'tab_root' => 'admin/user/rules/edit',
-  'title' => 'Edit rule',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '4',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/user/user.admin.inc',
-))
-->values(array(
-  'path' => 'admin/user/rules/list',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:22:"administer permissions";}',
-  'page_callback' => 'user_admin_access',
-  'page_arguments' => 'a:0:{}',
-  'fit' => '15',
-  'number_parts' => '4',
-  'tab_parent' => 'admin/user/rules',
-  'tab_root' => 'admin/user/rules',
-  'title' => 'List',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '136',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '-10',
-  'file' => 'modules/user/user.admin.inc',
-))
-->values(array(
-  'path' => 'admin/user/settings',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:16:"administer users";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:19:"user_admin_settings";}',
-  'fit' => '7',
-  'number_parts' => '3',
-  'tab_parent' => '',
-  'tab_root' => 'admin/user/settings',
-  'title' => 'User settings',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '6',
-  'block_callback' => '',
-  'description' => 'Configure default behavior of users, including registration requirements, e-mails, and user pictures.',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/user/user.admin.inc',
-))
-->values(array(
-  'path' => 'admin/user/user',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:16:"administer users";}',
-  'page_callback' => 'user_admin',
-  'page_arguments' => 'a:1:{i:0;s:4:"list";}',
-  'fit' => '7',
-  'number_parts' => '3',
-  'tab_parent' => '',
-  'tab_root' => 'admin/user/user',
-  'title' => 'Users',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '6',
-  'block_callback' => '',
-  'description' => 'List, add, and edit users.',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/user/user.admin.inc',
-))
-->values(array(
-  'path' => 'admin/user/user/create',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:16:"administer users";}',
-  'page_callback' => 'user_admin',
-  'page_arguments' => 'a:1:{i:0;s:6:"create";}',
-  'fit' => '15',
-  'number_parts' => '4',
-  'tab_parent' => 'admin/user/user',
-  'tab_root' => 'admin/user/user',
-  'title' => 'Add user',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '128',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/user/user.admin.inc',
-))
-->values(array(
-  'path' => 'admin/user/user/list',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:16:"administer users";}',
-  'page_callback' => 'user_admin',
-  'page_arguments' => 'a:1:{i:0;s:4:"list";}',
-  'fit' => '15',
-  'number_parts' => '4',
-  'tab_parent' => 'admin/user/user',
-  'tab_root' => 'admin/user/user',
-  'title' => 'List',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '136',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '-10',
-  'file' => 'modules/user/user.admin.inc',
-))
-->values(array(
-  'path' => 'batch',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => '1',
-  'access_arguments' => 'a:0:{}',
-  'page_callback' => 'system_batch_page',
-  'page_arguments' => 'a:0:{}',
-  'fit' => '1',
-  'number_parts' => '1',
-  'tab_parent' => '',
-  'tab_root' => 'batch',
-  'title' => '',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '4',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'comment/delete',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:19:"administer comments";}',
-  'page_callback' => 'comment_delete',
-  'page_arguments' => 'a:0:{}',
-  'fit' => '3',
-  'number_parts' => '2',
-  'tab_parent' => '',
-  'tab_root' => 'comment/delete',
-  'title' => 'Delete comment',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '4',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/comment/comment.admin.inc',
-))
-->values(array(
-  'path' => 'comment/edit',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:13:"post comments";}',
-  'page_callback' => 'comment_edit',
-  'page_arguments' => 'a:0:{}',
-  'fit' => '3',
-  'number_parts' => '2',
-  'tab_parent' => '',
-  'tab_root' => 'comment/edit',
-  'title' => 'Edit comment',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '4',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/comment/comment.pages.inc',
-))
-->values(array(
-  'path' => 'comment/reply/%',
-  'load_functions' => 'a:1:{i:2;s:9:"node_load";}',
-  'to_arg_functions' => '',
-  'access_callback' => 'node_access',
-  'access_arguments' => 'a:2:{i:0;s:4:"view";i:1;i:2;}',
-  'page_callback' => 'comment_reply',
-  'page_arguments' => 'a:1:{i:0;i:2;}',
-  'fit' => '6',
-  'number_parts' => '3',
-  'tab_parent' => '',
-  'tab_root' => 'comment/reply/%',
-  'title' => 'Reply to comment',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '4',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/comment/comment.pages.inc',
-))
-->values(array(
-  'path' => 'content/js_add_more',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
-  'page_callback' => 'content_add_more_js',
-  'page_arguments' => 'a:0:{}',
-  'fit' => '3',
-  'number_parts' => '2',
-  'tab_parent' => '',
-  'tab_root' => 'content/js_add_more',
-  'title' => '',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '4',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'sites/all/modules/cck/includes/content.node_form.inc',
-))
-->values(array(
-  'path' => 'filter/tips',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => '1',
-  'access_arguments' => 'a:0:{}',
-  'page_callback' => 'filter_tips_long',
-  'page_arguments' => 'a:0:{}',
-  'fit' => '3',
-  'number_parts' => '2',
-  'tab_parent' => '',
-  'tab_root' => 'filter/tips',
-  'title' => 'Compose tips',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '20',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/filter/filter.pages.inc',
-))
-->values(array(
-  'path' => 'forum',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
-  'page_callback' => 'forum_page',
-  'page_arguments' => 'a:0:{}',
-  'fit' => '1',
-  'number_parts' => '1',
-  'tab_parent' => '',
-  'tab_root' => 'forum',
-  'title' => 'Forums',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '20',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/forum/forum.pages.inc',
-))
-->values(array(
-  'path' => 'logout',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_is_logged_in',
-  'access_arguments' => 'a:0:{}',
-  'page_callback' => 'user_logout',
-  'page_arguments' => 'a:0:{}',
-  'fit' => '1',
-  'number_parts' => '1',
-  'tab_parent' => '',
-  'tab_root' => 'logout',
-  'title' => 'Log out',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '6',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '10',
-  'file' => 'modules/user/user.pages.inc',
-))
-->values(array(
-  'path' => 'node',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
-  'page_callback' => 'node_page_default',
-  'page_arguments' => 'a:0:{}',
-  'fit' => '1',
-  'number_parts' => '1',
-  'tab_parent' => '',
-  'tab_root' => 'node',
-  'title' => 'Content',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '4',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => '',
-))
-->values(array(
-  'path' => 'node/%',
-  'load_functions' => 'a:1:{i:1;s:9:"node_load";}',
-  'to_arg_functions' => '',
-  'access_callback' => 'node_access',
-  'access_arguments' => 'a:2:{i:0;s:4:"view";i:1;i:1;}',
-  'page_callback' => 'node_page_view',
-  'page_arguments' => 'a:1:{i:0;i:1;}',
-  'fit' => '2',
-  'number_parts' => '2',
-  'tab_parent' => '',
-  'tab_root' => 'node/%',
-  'title' => '',
-  'title_callback' => 'node_page_title',
-  'title_arguments' => 'a:1:{i:0;i:1;}',
-  'type' => '4',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => '',
-))
-->values(array(
-  'path' => 'node/%/delete',
-  'load_functions' => 'a:1:{i:1;s:9:"node_load";}',
-  'to_arg_functions' => '',
-  'access_callback' => 'node_access',
-  'access_arguments' => 'a:2:{i:0;s:6:"delete";i:1;i:1;}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:19:"node_delete_confirm";i:1;i:1;}',
-  'fit' => '5',
-  'number_parts' => '3',
-  'tab_parent' => '',
-  'tab_root' => 'node/%/delete',
-  'title' => 'Delete',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '4',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '1',
-  'file' => 'modules/node/node.pages.inc',
-))
-->values(array(
-  'path' => 'node/%/edit',
-  'load_functions' => 'a:1:{i:1;s:9:"node_load";}',
-  'to_arg_functions' => '',
-  'access_callback' => 'node_access',
-  'access_arguments' => 'a:2:{i:0;s:6:"update";i:1;i:1;}',
-  'page_callback' => 'node_page_edit',
-  'page_arguments' => 'a:1:{i:0;i:1;}',
-  'fit' => '5',
-  'number_parts' => '3',
-  'tab_parent' => 'node/%',
-  'tab_root' => 'node/%',
-  'title' => 'Edit',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '128',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '1',
-  'file' => 'modules/node/node.pages.inc',
-))
-->values(array(
-  'path' => 'node/%/revisions',
-  'load_functions' => 'a:1:{i:1;s:9:"node_load";}',
-  'to_arg_functions' => '',
-  'access_callback' => '_node_revision_access',
-  'access_arguments' => 'a:1:{i:0;i:1;}',
-  'page_callback' => 'node_revision_overview',
-  'page_arguments' => 'a:1:{i:0;i:1;}',
-  'fit' => '5',
-  'number_parts' => '3',
-  'tab_parent' => 'node/%',
-  'tab_root' => 'node/%',
-  'title' => 'Revisions',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '128',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '2',
-  'file' => 'modules/node/node.pages.inc',
-))
-->values(array(
-  'path' => 'node/%/revisions/%/delete',
-  'load_functions' => 'a:2:{i:1;a:1:{s:9:"node_load";a:1:{i:0;i:3;}}i:3;N;}',
-  'to_arg_functions' => '',
-  'access_callback' => '_node_revision_access',
-  'access_arguments' => 'a:2:{i:0;i:1;i:1;s:6:"delete";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:28:"node_revision_delete_confirm";i:1;i:1;}',
-  'fit' => '21',
-  'number_parts' => '5',
-  'tab_parent' => '',
-  'tab_root' => 'node/%/revisions/%/delete',
-  'title' => 'Delete earlier revision',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '4',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/node/node.pages.inc',
-))
-->values(array(
-  'path' => 'node/%/revisions/%/revert',
-  'load_functions' => 'a:2:{i:1;a:1:{s:9:"node_load";a:1:{i:0;i:3;}}i:3;N;}',
-  'to_arg_functions' => '',
-  'access_callback' => '_node_revision_access',
-  'access_arguments' => 'a:2:{i:0;i:1;i:1;s:6:"update";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:28:"node_revision_revert_confirm";i:1;i:1;}',
-  'fit' => '21',
-  'number_parts' => '5',
-  'tab_parent' => '',
-  'tab_root' => 'node/%/revisions/%/revert',
-  'title' => 'Revert to earlier revision',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '4',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/node/node.pages.inc',
-))
-->values(array(
-  'path' => 'node/%/revisions/%/view',
-  'load_functions' => 'a:2:{i:1;a:1:{s:9:"node_load";a:1:{i:0;i:3;}}i:3;N;}',
-  'to_arg_functions' => '',
-  'access_callback' => '_node_revision_access',
-  'access_arguments' => 'a:1:{i:0;i:1;}',
-  'page_callback' => 'node_show',
-  'page_arguments' => 'a:3:{i:0;i:1;i:1;N;i:2;b:1;}',
-  'fit' => '21',
-  'number_parts' => '5',
-  'tab_parent' => '',
-  'tab_root' => 'node/%/revisions/%/view',
-  'title' => 'Revisions',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '4',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => '',
-))
-->values(array(
-  'path' => 'node/%/view',
-  'load_functions' => 'a:1:{i:1;s:9:"node_load";}',
-  'to_arg_functions' => '',
-  'access_callback' => 'node_access',
-  'access_arguments' => 'a:2:{i:0;s:4:"view";i:1;i:1;}',
-  'page_callback' => 'node_page_view',
-  'page_arguments' => 'a:1:{i:0;i:1;}',
-  'fit' => '5',
-  'number_parts' => '3',
-  'tab_parent' => 'node/%',
-  'tab_root' => 'node/%',
-  'title' => 'View',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '136',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '-10',
-  'file' => '',
-))
-->values(array(
-  'path' => 'node/add',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => '_node_add_access',
-  'access_arguments' => 'a:0:{}',
-  'page_callback' => 'node_add_page',
-  'page_arguments' => 'a:0:{}',
-  'fit' => '3',
-  'number_parts' => '2',
-  'tab_parent' => '',
-  'tab_root' => 'node/add',
-  'title' => 'Create content',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '6',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '1',
-  'file' => 'modules/node/node.pages.inc',
-))
-->values(array(
-  'path' => 'node/add/article',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'node_access',
-  'access_arguments' => 'a:2:{i:0;s:6:"create";i:1;s:7:"article";}',
-  'page_callback' => 'node_add',
-  'page_arguments' => 'a:1:{i:0;i:2;}',
-  'fit' => '7',
-  'number_parts' => '3',
-  'tab_parent' => '',
-  'tab_root' => 'node/add/article',
-  'title' => 'Article',
-  'title_callback' => 'check_plain',
-  'title_arguments' => '',
-  'type' => '6',
-  'block_callback' => '',
-  'description' => 'An <em>article</em>, content type.',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/node/node.pages.inc',
-))
-->values(array(
-  'path' => 'node/add/company',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'node_access',
-  'access_arguments' => 'a:2:{i:0;s:6:"create";i:1;s:7:"company";}',
-  'page_callback' => 'node_add',
-  'page_arguments' => 'a:1:{i:0;i:2;}',
-  'fit' => '7',
-  'number_parts' => '3',
-  'tab_parent' => '',
-  'tab_root' => 'node/add/company',
-  'title' => 'Company',
-  'title_callback' => 'check_plain',
-  'title_arguments' => '',
-  'type' => '6',
-  'block_callback' => '',
-  'description' => 'Company node type',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/node/node.pages.inc',
-))
-->values(array(
-  'path' => 'node/add/employee',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'node_access',
-  'access_arguments' => 'a:2:{i:0;s:6:"create";i:1;s:8:"employee";}',
-  'page_callback' => 'node_add',
-  'page_arguments' => 'a:1:{i:0;i:2;}',
-  'fit' => '7',
-  'number_parts' => '3',
-  'tab_parent' => '',
-  'tab_root' => 'node/add/employee',
-  'title' => 'Employee',
-  'title_callback' => 'check_plain',
-  'title_arguments' => '',
-  'type' => '6',
-  'block_callback' => '',
-  'description' => 'Employee node type',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/node/node.pages.inc',
-))
-->values(array(
-  'path' => 'node/add/forum',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'node_access',
-  'access_arguments' => 'a:2:{i:0;s:6:"create";i:1;s:5:"forum";}',
-  'page_callback' => 'node_add',
-  'page_arguments' => 'a:1:{i:0;i:2;}',
-  'fit' => '7',
-  'number_parts' => '3',
-  'tab_parent' => '',
-  'tab_root' => 'node/add/forum',
-  'title' => 'Forum topic',
-  'title_callback' => 'check_plain',
-  'title_arguments' => '',
-  'type' => '6',
-  'block_callback' => '',
-  'description' => 'A <em>forum topic</em> is the initial post to a new discussion thread within a forum.',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/node/node.pages.inc',
-))
-->values(array(
-  'path' => 'node/add/page',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'node_access',
-  'access_arguments' => 'a:2:{i:0;s:6:"create";i:1;s:4:"page";}',
-  'page_callback' => 'node_add',
-  'page_arguments' => 'a:1:{i:0;i:2;}',
-  'fit' => '7',
-  'number_parts' => '3',
-  'tab_parent' => '',
-  'tab_root' => 'node/add/page',
-  'title' => 'Page',
-  'title_callback' => 'check_plain',
-  'title_arguments' => '',
-  'type' => '6',
-  'block_callback' => '',
-  'description' => "A <em>page</em>, similar in form to a <em>story</em>, is a simple method for creating and displaying information that rarely changes, such as an \"About us\" section of a website. By default, a <em>page</em> entry does not allow visitor comments and is not featured on the site's initial home page.",
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/node/node.pages.inc',
-))
-->values(array(
-  'path' => 'node/add/sponsor',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'node_access',
-  'access_arguments' => 'a:2:{i:0;s:6:"create";i:1;s:7:"sponsor";}',
-  'page_callback' => 'node_add',
-  'page_arguments' => 'a:1:{i:0;i:2;}',
-  'fit' => '7',
-  'number_parts' => '3',
-  'tab_parent' => '',
-  'tab_root' => 'node/add/sponsor',
-  'title' => 'Sponsor',
-  'title_callback' => 'check_plain',
-  'title_arguments' => '',
-  'type' => '6',
-  'block_callback' => '',
-  'description' => 'Sponsor node type',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/node/node.pages.inc',
-))
-->values(array(
-  'path' => 'node/add/story',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'node_access',
-  'access_arguments' => 'a:2:{i:0;s:6:"create";i:1;s:5:"story";}',
-  'page_callback' => 'node_add',
-  'page_arguments' => 'a:1:{i:0;i:2;}',
-  'fit' => '7',
-  'number_parts' => '3',
-  'tab_parent' => '',
-  'tab_root' => 'node/add/story',
-  'title' => 'Story',
-  'title_callback' => 'check_plain',
-  'title_arguments' => '',
-  'type' => '6',
-  'block_callback' => '',
-  'description' => "A <em>story</em>, similar in form to a <em>page</em>, is ideal for creating and displaying content that informs or engages website visitors. Press releases, site announcements, and informal blog-like entries may all be created with a <em>story</em> entry. By default, a <em>story</em> entry is automatically featured on the site's initial home page, and provides the ability to post comments.",
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/node/node.pages.inc',
-))
-->values(array(
-  'path' => 'rss.xml',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
-  'page_callback' => 'node_feed',
-  'page_arguments' => 'a:0:{}',
-  'fit' => '1',
-  'number_parts' => '1',
-  'tab_parent' => '',
-  'tab_root' => 'rss.xml',
-  'title' => 'RSS feed',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '4',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => '',
-))
-->values(array(
-  'path' => 'search',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:14:"search content";}',
-  'page_callback' => 'search_view',
-  'page_arguments' => 'a:0:{}',
-  'fit' => '1',
-  'number_parts' => '1',
-  'tab_parent' => '',
-  'tab_root' => 'search',
-  'title' => 'Search',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '20',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/search/search.pages.inc',
-))
-->values(array(
-  'path' => 'search/node/%',
-  'load_functions' => 'a:1:{i:2;N;}',
-  'to_arg_functions' => 'a:1:{i:2;s:16:"menu_tail_to_arg";}',
-  'access_callback' => '_search_menu',
-  'access_arguments' => 'a:1:{i:0;s:4:"node";}',
-  'page_callback' => 'search_view',
-  'page_arguments' => 'a:1:{i:0;s:4:"node";}',
-  'fit' => '6',
-  'number_parts' => '3',
-  'tab_parent' => 'search',
-  'tab_root' => 'search',
-  'title' => '',
-  'title_callback' => 'module_invoke',
-  'title_arguments' => 'a:4:{i:0;s:4:"node";i:1;s:6:"search";i:2;s:4:"name";i:3;b:1;}',
-  'type' => '128',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/search/search.pages.inc',
-))
-->values(array(
-  'path' => 'search/user/%',
-  'load_functions' => 'a:1:{i:2;N;}',
-  'to_arg_functions' => 'a:1:{i:2;s:16:"menu_tail_to_arg";}',
-  'access_callback' => '_search_menu',
-  'access_arguments' => 'a:1:{i:0;s:4:"user";}',
-  'page_callback' => 'search_view',
-  'page_arguments' => 'a:1:{i:0;s:4:"user";}',
-  'fit' => '6',
-  'number_parts' => '3',
-  'tab_parent' => 'search',
-  'tab_root' => 'search',
-  'title' => '',
-  'title_callback' => 'module_invoke',
-  'title_arguments' => 'a:4:{i:0;s:4:"user";i:1;s:6:"search";i:2;s:4:"name";i:3;b:1;}',
-  'type' => '128',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/search/search.pages.inc',
-))
-->values(array(
-  'path' => 'system/files',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => '1',
-  'access_arguments' => 'a:1:{i:0;s:19:"view uploaded files";}',
-  'page_callback' => 'file_download',
-  'page_arguments' => 'a:0:{}',
-  'fit' => '3',
-  'number_parts' => '2',
-  'tab_parent' => '',
-  'tab_root' => 'system/files',
-  'title' => 'File download',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '4',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => '',
-))
-->values(array(
-  'path' => 'taxonomy/autocomplete',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
-  'page_callback' => 'taxonomy_autocomplete',
-  'page_arguments' => 'a:0:{}',
-  'fit' => '3',
-  'number_parts' => '2',
-  'tab_parent' => '',
-  'tab_root' => 'taxonomy/autocomplete',
-  'title' => 'Autocomplete taxonomy',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '4',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/taxonomy/taxonomy.pages.inc',
-))
-->values(array(
-  'path' => 'taxonomy/term/%',
-  'load_functions' => 'a:1:{i:2;N;}',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
-  'page_callback' => 'taxonomy_term_page',
-  'page_arguments' => 'a:1:{i:0;i:2;}',
-  'fit' => '6',
-  'number_parts' => '3',
-  'tab_parent' => '',
-  'tab_root' => 'taxonomy/term/%',
-  'title' => 'Taxonomy term',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '4',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/taxonomy/taxonomy.pages.inc',
-))
-->values(array(
-  'path' => 'upload/js',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:12:"upload files";}',
-  'page_callback' => 'upload_js',
-  'page_arguments' => 'a:0:{}',
-  'fit' => '3',
-  'number_parts' => '2',
-  'tab_parent' => '',
-  'tab_root' => 'upload/js',
-  'title' => '',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '4',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => '',
-))
-->values(array(
-  'path' => 'user',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => '1',
-  'access_arguments' => 'a:0:{}',
-  'page_callback' => 'user_page',
-  'page_arguments' => 'a:0:{}',
-  'fit' => '1',
-  'number_parts' => '1',
-  'tab_parent' => '',
-  'tab_root' => 'user',
-  'title' => 'User account',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '4',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/user/user.pages.inc',
-))
-->values(array(
-  'path' => 'user/%',
-  'load_functions' => 'a:1:{i:1;s:22:"user_uid_optional_load";}',
-  'to_arg_functions' => 'a:1:{i:1;s:24:"user_uid_optional_to_arg";}',
-  'access_callback' => 'user_view_access',
-  'access_arguments' => 'a:1:{i:0;i:1;}',
-  'page_callback' => 'user_view',
-  'page_arguments' => 'a:1:{i:0;i:1;}',
-  'fit' => '2',
-  'number_parts' => '2',
-  'tab_parent' => '',
-  'tab_root' => 'user/%',
-  'title' => 'My account',
-  'title_callback' => 'user_page_title',
-  'title_arguments' => 'a:1:{i:0;i:1;}',
-  'type' => '6',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/user/user.pages.inc',
-))
-->values(array(
-  'path' => 'user/%/delete',
-  'load_functions' => 'a:1:{i:1;s:9:"user_load";}',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_delete_access',
-  'access_arguments' => 'a:1:{i:0;i:1;}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:19:"user_confirm_delete";i:1;i:1;}',
-  'fit' => '5',
-  'number_parts' => '3',
-  'tab_parent' => '',
-  'tab_root' => 'user/%/delete',
-  'title' => 'Delete',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '4',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/user/user.pages.inc',
-))
-->values(array(
-  'path' => 'user/%/edit',
-  'load_functions' => 'a:1:{i:1;a:1:{s:18:"user_category_load";a:2:{i:0;s:4:"%map";i:1;s:6:"%index";}}}',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_edit_access',
-  'access_arguments' => 'a:1:{i:0;i:1;}',
-  'page_callback' => 'user_edit',
-  'page_arguments' => 'a:1:{i:0;i:1;}',
-  'fit' => '5',
-  'number_parts' => '3',
-  'tab_parent' => 'user/%',
-  'tab_root' => 'user/%',
-  'title' => 'Edit',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '128',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/user/user.pages.inc',
-))
-->values(array(
-  'path' => 'user/%/edit/account',
-  'load_functions' => 'a:1:{i:1;a:1:{s:18:"user_category_load";a:2:{i:0;s:4:"%map";i:1;s:6:"%index";}}}',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_edit_access',
-  'access_arguments' => 'a:1:{i:0;i:1;}',
-  'page_callback' => 'user_edit',
-  'page_arguments' => 'a:1:{i:0;i:1;}',
-  'fit' => '11',
-  'number_parts' => '4',
-  'tab_parent' => 'user/%/edit',
-  'tab_root' => 'user/%',
-  'title' => 'Account',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '136',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/user/user.pages.inc',
-))
-->values(array(
-  'path' => 'user/%/view',
-  'load_functions' => 'a:1:{i:1;s:9:"user_load";}',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_view_access',
-  'access_arguments' => 'a:1:{i:0;i:1;}',
-  'page_callback' => 'user_view',
-  'page_arguments' => 'a:1:{i:0;i:1;}',
-  'fit' => '5',
-  'number_parts' => '3',
-  'tab_parent' => 'user/%',
-  'tab_root' => 'user/%',
-  'title' => 'View',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '136',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '-10',
-  'file' => 'modules/user/user.pages.inc',
-))
-->values(array(
-  'path' => 'user/autocomplete',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:20:"access user profiles";}',
-  'page_callback' => 'user_autocomplete',
-  'page_arguments' => 'a:0:{}',
-  'fit' => '3',
-  'number_parts' => '2',
-  'tab_parent' => '',
-  'tab_root' => 'user/autocomplete',
-  'title' => 'User autocomplete',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '4',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/user/user.pages.inc',
-))
-->values(array(
-  'path' => 'user/login',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_is_anonymous',
-  'access_arguments' => 'a:0:{}',
-  'page_callback' => 'user_page',
-  'page_arguments' => 'a:0:{}',
-  'fit' => '3',
-  'number_parts' => '2',
-  'tab_parent' => 'user',
-  'tab_root' => 'user',
-  'title' => 'Log in',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '136',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/user/user.pages.inc',
-))
-->values(array(
-  'path' => 'user/password',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_is_anonymous',
-  'access_arguments' => 'a:0:{}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:9:"user_pass";}',
-  'fit' => '3',
-  'number_parts' => '2',
-  'tab_parent' => 'user',
-  'tab_root' => 'user',
-  'title' => 'Request new password',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '128',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/user/user.pages.inc',
-))
-->values(array(
-  'path' => 'user/register',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_register_access',
-  'access_arguments' => 'a:0:{}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:13:"user_register";}',
-  'fit' => '3',
-  'number_parts' => '2',
-  'tab_parent' => 'user',
-  'tab_root' => 'user',
-  'title' => 'Create new account',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '128',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/user/user.pages.inc',
-))
-->values(array(
-  'path' => 'user/reset/%/%/%',
-  'load_functions' => 'a:3:{i:2;N;i:3;N;i:4;N;}',
-  'to_arg_functions' => '',
-  'access_callback' => '1',
-  'access_arguments' => 'a:0:{}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:4:{i:0;s:15:"user_pass_reset";i:1;i:2;i:2;i:3;i:3;i:4;}',
-  'fit' => '24',
-  'number_parts' => '5',
-  'tab_parent' => '',
-  'tab_root' => 'user/reset/%/%/%',
-  'title' => 'Reset password',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'type' => '4',
-  'block_callback' => '',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'file' => 'modules/user/user.pages.inc',
-))
-->execute();
-$connection->schema()->createTable('node', array(
-  'fields' => array(
-    'nid' => array(
-      'type' => 'serial',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-    'vid' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-    'type' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '32',
-      'default' => '',
-    ),
-    'language' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '12',
-      'default' => '',
-    ),
-    'title' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'uid' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'status' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '1',
-    ),
-    'created' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'changed' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'comment' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'promote' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'moderate' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'sticky' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'tnid' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-    'translate' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-  ),
-  'primary key' => array(
-    'nid',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->insert('node')
-->fields(array(
-  'nid',
-  'vid',
-  'type',
-  'language',
-  'title',
-  'uid',
-  'status',
-  'created',
-  'changed',
-  'comment',
-  'promote',
-  'moderate',
-  'sticky',
-  'tnid',
-  'translate',
-))
-->values(array(
-  'nid' => '19',
-  'vid' => '22',
-  'type' => 'forum',
-  'language' => '',
-  'title' => 'New Forum Topic',
-  'uid' => '1',
-  'status' => '1',
-  'created' => '1501955771',
-  'changed' => '1501955771',
-  'comment' => '2',
-  'promote' => '0',
-  'moderate' => '0',
-  'sticky' => '0',
-  'tnid' => '0',
-  'translate' => '0',
-))
-->values(array(
-  'nid' => '20',
-  'vid' => '23',
-  'type' => 'forum',
-  'language' => '',
-  'title' => 'Earth topic 1',
-  'uid' => '1',
-  'status' => '1',
-  'created' => '1679803825',
-  'changed' => '1679803825',
-  'comment' => '2',
-  'promote' => '0',
-  'moderate' => '0',
-  'sticky' => '0',
-  'tnid' => '0',
-  'translate' => '0',
-))
-->execute();
-$connection->schema()->createTable('node_access', array(
-  'fields' => array(
-    'nid' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-    'gid' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-    'realm' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'grant_view' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-    'grant_update' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-    'grant_delete' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-  ),
-  'primary key' => array(
-    'nid',
-    'gid',
-    'realm',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->insert('node_access')
-->fields(array(
-  'nid',
-  'gid',
-  'realm',
-  'grant_view',
-  'grant_update',
-  'grant_delete',
-))
-->values(array(
-  'nid' => '0',
-  'gid' => '0',
-  'realm' => 'all',
-  'grant_view' => '1',
-  'grant_update' => '0',
-  'grant_delete' => '0',
-))
-->execute();
-$connection->schema()->createTable('node_comment_statistics', array(
-  'fields' => array(
-    'nid' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-    'last_comment_timestamp' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'last_comment_name' => array(
-      'type' => 'varchar',
-      'not null' => FALSE,
-      'length' => '60',
-    ),
-    'last_comment_uid' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'comment_count' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-  ),
-  'primary key' => array(
-    'nid',
-  ),
-  'indexes' => array(
-    'comment_count' => array(
-      'comment_count',
-    ),
-    'last_comment_uid' => array(
-      'last_comment_uid',
-    ),
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->insert('node_comment_statistics')
-->fields(array(
-  'nid',
-  'last_comment_timestamp',
-  'last_comment_name',
-  'last_comment_uid',
-  'comment_count',
-))
-->values(array(
-  'nid' => '0',
-  'last_comment_timestamp' => '1468384735',
-  'last_comment_name' => NULL,
-  'last_comment_uid' => '1',
-  'comment_count' => '0',
-))
-->values(array(
-  'nid' => '19',
-  'last_comment_timestamp' => '1501955803',
-  'last_comment_name' => '',
-  'last_comment_uid' => '1',
-  'comment_count' => '3',
-))
-->values(array(
-  'nid' => '20',
-  'last_comment_timestamp' => '1679803825',
-  'last_comment_name' => NULL,
-  'last_comment_uid' => '1',
-  'comment_count' => '0',
-))
-->execute();
-$connection->schema()->createTable('node_counter', array(
-  'fields' => array(
-    'nid' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'totalcount' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-    'daycount' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-    'timestamp' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-  ),
-  'primary key' => array(
-    'nid',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->insert('node_counter')
-->fields(array(
-  'nid',
-  'totalcount',
-  'daycount',
-  'timestamp',
-))
-->values(array(
-  'nid' => '19',
-  'totalcount' => '5',
-  'daycount' => '5',
-  'timestamp' => '1675403296',
-))
-->execute();
-$connection->schema()->createTable('node_revisions', array(
-  'fields' => array(
-    'nid' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-    'vid' => array(
-      'type' => 'serial',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-    'uid' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'title' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'body' => array(
-      'type' => 'text',
-      'not null' => TRUE,
-      'size' => 'normal',
-    ),
-    'teaser' => array(
-      'type' => 'text',
-      'not null' => TRUE,
-      'size' => 'normal',
-    ),
-    'log' => array(
-      'type' => 'text',
-      'not null' => TRUE,
-      'size' => 'normal',
-    ),
-    'timestamp' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'format' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-  ),
-  'primary key' => array(
-    'vid',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->insert('node_revisions')
-->fields(array(
-  'nid',
-  'vid',
-  'uid',
-  'title',
-  'body',
-  'teaser',
-  'log',
-  'timestamp',
-  'format',
-))
-->values(array(
-  'nid' => '19',
-  'vid' => '22',
-  'uid' => '1',
-  'title' => 'New Forum Topic',
-  'body' => 'New Forum Body',
-  'teaser' => 'New Forum Body',
-  'log' => '',
-  'timestamp' => '1501955771',
-  'format' => '1',
-))
-->values(array(
-  'nid' => '20',
-  'vid' => '23',
-  'uid' => '1',
-  'title' => 'Earth topic 1',
-  'body' => 'Foo',
-  'teaser' => 'Foo',
-  'log' => '',
-  'timestamp' => '1679803825',
-  'format' => '1',
-))
-->execute();
-$connection->schema()->createTable('node_type', array(
-  'fields' => array(
-    'type' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '32',
-    ),
-    'name' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'module' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-    ),
-    'description' => array(
-      'type' => 'text',
-      'not null' => TRUE,
-      'size' => 'normal',
-    ),
-    'help' => array(
-      'type' => 'text',
-      'not null' => TRUE,
-      'size' => 'normal',
-    ),
-    'has_title' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-    'title_label' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'has_body' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-    'body_label' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'min_word_count' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-    'custom' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'modified' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'locked' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'orig_type' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-  ),
-  'primary key' => array(
-    'type',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->insert('node_type')
-->fields(array(
-  'type',
-  'name',
-  'module',
-  'description',
-  'help',
-  'has_title',
-  'title_label',
-  'has_body',
-  'body_label',
-  'min_word_count',
-  'custom',
-  'modified',
-  'locked',
-  'orig_type',
-))
-->values(array(
-  'type' => 'article',
-  'name' => 'Article',
-  'module' => 'node',
-  'description' => 'An <em>article</em>, content type.',
-  'help' => '',
-  'has_title' => '1',
-  'title_label' => 'Title',
-  'has_body' => '1',
-  'body_label' => 'Body',
-  'min_word_count' => '0',
-  'custom' => '1',
-  'modified' => '1',
-  'locked' => '0',
-  'orig_type' => 'story',
-))
-->values(array(
-  'type' => 'company',
-  'name' => 'Company',
-  'module' => 'node',
-  'description' => 'Company node type',
-  'help' => '',
-  'has_title' => '1',
-  'title_label' => 'Name',
-  'has_body' => '1',
-  'body_label' => 'Description',
-  'min_word_count' => '0',
-  'custom' => '0',
-  'modified' => '1',
-  'locked' => '0',
-  'orig_type' => 'company',
-))
-->values(array(
-  'type' => 'employee',
-  'name' => 'Employee',
-  'module' => 'node',
-  'description' => 'Employee node type',
-  'help' => '',
-  'has_title' => '1',
-  'title_label' => 'Name',
-  'has_body' => '1',
-  'body_label' => 'Bio',
-  'min_word_count' => '20',
-  'custom' => '0',
-  'modified' => '0',
-  'locked' => '0',
-  'orig_type' => 'employee',
-))
-->values(array(
-  'type' => 'forum',
-  'name' => 'Forum topic',
-  'module' => 'forum',
-  'description' => 'A <em>forum topic</em> is the initial post to a new discussion thread within a forum.',
-  'help' => '',
-  'has_title' => '1',
-  'title_label' => 'Subject',
-  'has_body' => '1',
-  'body_label' => 'Body',
-  'min_word_count' => '0',
-  'custom' => '0',
-  'modified' => '0',
-  'locked' => '1',
-  'orig_type' => 'forum',
-))
-->values(array(
-  'type' => 'page',
-  'name' => 'Page',
-  'module' => 'node',
-  'description' => "A <em>page</em>, similar in form to a <em>story</em>, is a simple method for creating and displaying information that rarely changes, such as an \"About us\" section of a website. By default, a <em>page</em> entry does not allow visitor comments and is not featured on the site's initial home page.",
-  'help' => '',
-  'has_title' => '1',
-  'title_label' => 'Title',
-  'has_body' => '1',
-  'body_label' => 'Body',
-  'min_word_count' => '0',
-  'custom' => '1',
-  'modified' => '1',
-  'locked' => '0',
-  'orig_type' => 'page',
-))
-->values(array(
-  'type' => 'sponsor',
-  'name' => 'Sponsor',
-  'module' => 'node',
-  'description' => 'Sponsor node type',
-  'help' => '',
-  'has_title' => '1',
-  'title_label' => 'Name',
-  'has_body' => '1',
-  'body_label' => 'Body',
-  'min_word_count' => '0',
-  'custom' => '0',
-  'modified' => '1',
-  'locked' => '0',
-  'orig_type' => '',
-))
-->values(array(
-  'type' => 'story',
-  'name' => 'Story',
-  'module' => 'node',
-  'description' => "A <em>story</em>, similar in form to a <em>page</em>, is ideal for creating and displaying content that informs or engages website visitors. Press releases, site announcements, and informal blog-like entries may all be created with a <em>story</em> entry. By default, a <em>story</em> entry is automatically featured on the site's initial home page, and provides the ability to post comments.",
-  'help' => '',
-  'has_title' => '1',
-  'title_label' => 'Title',
-  'has_body' => '1',
-  'body_label' => 'Body',
-  'min_word_count' => '0',
-  'custom' => '1',
-  'modified' => '1',
-  'locked' => '0',
-  'orig_type' => 'story',
-))
-->execute();
-$connection->schema()->createTable('permission', array(
-  'fields' => array(
-    'pid' => array(
-      'type' => 'serial',
-      'not null' => TRUE,
-      'size' => 'normal',
-    ),
-    'rid' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-    'perm' => array(
-      'type' => 'text',
-      'not null' => FALSE,
-      'size' => 'normal',
-    ),
-    'tid' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-  ),
-  'primary key' => array(
-    'pid',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->insert('permission')
-->fields(array(
-  'pid',
-  'rid',
-  'perm',
-  'tid',
-))
-->values(array(
-  'pid' => '1',
-  'rid' => '1',
-  'perm' => 'access content, migrate test anonymous permission',
-  'tid' => '0',
-))
-->values(array(
-  'pid' => '2',
-  'rid' => '2',
-  'perm' => 'access comments, access content, post comments, post comments without approval, migrate test authenticated permission',
-  'tid' => '0',
-))
-->execute();
-$connection->schema()->createTable('role', array(
-  'fields' => array(
-    'rid' => array(
-      'type' => 'serial',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-    'name' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '64',
-      'default' => '',
-    ),
-  ),
-  'primary key' => array(
-    'rid',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->insert('role')
-->fields(array(
-  'rid',
-  'name',
-))
-->values(array(
-  'rid' => '1',
-  'name' => 'anonymous user',
-))
-->values(array(
-  'rid' => '2',
-  'name' => 'authenticated user',
-))
-->execute();
-$connection->schema()->createTable('search_dataset', array(
-  'fields' => array(
-    'sid' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-    'type' => array(
-      'type' => 'varchar',
-      'not null' => FALSE,
-      'length' => '16',
-    ),
-    'data' => array(
-      'type' => 'text',
-      'not null' => TRUE,
-      'size' => 'big',
-    ),
-    'reindex' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-  ),
-  'unique keys' => array(
-    'sid_type' => array(
-      'sid',
-      'type',
-    ),
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->insert('search_dataset')
-->fields(array(
-  'sid',
-  'type',
-  'data',
-  'reindex',
-))
-->values(array(
-  'sid' => '19',
-  'type' => 'node',
-  'data' => ' new forum topic new forum body subject 1 comment 1 subject 2 comment 2 subject 3 comment 3  general discussion  ',
-  'reindex' => '0',
-))
-->execute();
-$connection->schema()->createTable('search_index', array(
-  'fields' => array(
-    'word' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '50',
-      'default' => '',
-    ),
-    'sid' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-    'type' => array(
-      'type' => 'varchar',
-      'not null' => FALSE,
-      'length' => '16',
-    ),
-    'score' => array(
-      'type' => 'float',
-      'not null' => FALSE,
-      'size' => 'normal',
-    ),
-  ),
-  'unique keys' => array(
-    'word_sid_type' => array(
-      'word',
-      'sid',
-      'type',
-    ),
-  ),
-  'indexes' => array(
-    'sid_type' => array(
-      'sid',
-      'type',
-    ),
-    'word' => array(
-      'word',
-    ),
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->insert('search_index')
-->fields(array(
-  'word',
-  'sid',
-  'type',
-  'score',
-))
-->values(array(
-  'word' => 'new',
-  'sid' => '19',
-  'type' => 'node',
-  'score' => '27',
-))
-->values(array(
-  'word' => 'forum',
-  'sid' => '19',
-  'type' => 'node',
-  'score' => '27',
-))
-->values(array(
-  'word' => 'topic',
-  'sid' => '19',
-  'type' => 'node',
-  'score' => '26',
-))
-->values(array(
-  'word' => 'body',
-  'sid' => '19',
-  'type' => 'node',
-  'score' => '1',
-))
-->values(array(
-  'word' => 'subject',
-  'sid' => '19',
-  'type' => 'node',
-  'score' => '57',
-))
-->values(array(
-  'word' => '1',
-  'sid' => '19',
-  'type' => 'node',
-  'score' => '20',
-))
-->values(array(
-  'word' => 'comment',
-  'sid' => '19',
-  'type' => 'node',
-  'score' => '3',
-))
-->values(array(
-  'word' => '2',
-  'sid' => '19',
-  'type' => 'node',
-  'score' => '20',
-))
-->values(array(
-  'word' => '3',
-  'sid' => '19',
-  'type' => 'node',
-  'score' => '20',
-))
-->values(array(
-  'word' => 'general',
-  'sid' => '19',
-  'type' => 'node',
-  'score' => '4',
-))
-->values(array(
-  'word' => 'discussion',
-  'sid' => '19',
-  'type' => 'node',
-  'score' => '4',
-))
-->execute();
-$connection->schema()->createTable('search_node_links', array(
-  'fields' => array(
-    'sid' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-    'type' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '16',
-      'default' => '',
-    ),
-    'nid' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-    'caption' => array(
-      'type' => 'text',
-      'not null' => FALSE,
-      'size' => 'big',
-    ),
-  ),
-  'primary key' => array(
-    'sid',
-    'type',
-    'nid',
-  ),
-  'indexes' => array(
-    'nid' => array(
-      'nid',
-    ),
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->schema()->createTable('search_total', array(
-  'fields' => array(
-    'word' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '50',
-      'default' => '',
-    ),
-    'count' => array(
-      'type' => 'float',
-      'not null' => FALSE,
-      'size' => 'normal',
-    ),
-  ),
-  'primary key' => array(
-    'word',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->insert('search_total')
-->fields(array(
-  'word',
-  'count',
-))
-->values(array(
-  'word' => '1',
-  'count' => '0.0211893',
-))
-->values(array(
-  'word' => '2',
-  'count' => '0.0211893',
-))
-->values(array(
-  'word' => '3',
-  'count' => '0.0211893',
-))
-->values(array(
-  'word' => 'body',
-  'count' => '0.30103',
-))
-->values(array(
-  'word' => 'comment',
-  'count' => '0.124939',
-))
-->values(array(
-  'word' => 'discussion',
-  'count' => '0.09691',
-))
-->values(array(
-  'word' => 'forum',
-  'count' => '0.0157943',
-))
-->values(array(
-  'word' => 'general',
-  'count' => '0.09691',
-))
-->values(array(
-  'word' => 'new',
-  'count' => '0.0157943',
-))
-->values(array(
-  'word' => 'subject',
-  'count' => '0.00755314',
-))
-->values(array(
-  'word' => 'topic',
-  'count' => '0.0163904',
-))
-->execute();
-$connection->schema()->createTable('semaphore', array(
-  'fields' => array(
-    'name' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'value' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'expire' => array(
-      'type' => 'numeric',
-      'not null' => TRUE,
-      'precision' => '10',
-      'scale' => '0',
-    ),
-  ),
-  'primary key' => array(
-    'name',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->schema()->createTable('sessions', array(
-  'fields' => array(
-    'uid' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-    'sid' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '64',
-      'default' => '',
-    ),
-    'hostname' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '128',
-      'default' => '',
-    ),
-    'timestamp' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'cache' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'session' => array(
-      'type' => 'blob',
-      'not null' => FALSE,
-      'size' => 'big',
-    ),
-  ),
-  'primary key' => array(
-    'sid',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->schema()->createTable('system', array(
-  'fields' => array(
-    'filename' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'name' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'type' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'owner' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'status' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'throttle' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'bootstrap' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'schema_version' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '-1',
-    ),
-    'weight' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'info' => array(
-      'type' => 'text',
-      'not null' => FALSE,
-      'size' => 'normal',
-    ),
-  ),
-  'primary key' => array(
-    'filename',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->insert('system')
-->fields(array(
-  'filename',
-  'name',
-  'type',
-  'owner',
-  'status',
-  'throttle',
-  'bootstrap',
-  'schema_version',
-  'weight',
-  'info',
-))
-->values(array(
-  'filename' => 'modules/aggregator/aggregator.module',
-  'name' => 'aggregator',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'throttle' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '0',
-  'weight' => '0',
-  'info' => 'a:8:{s:4:"name";s:10:"Aggregator";s:11:"description";s:57:"Aggregates syndicated content (RSS, RDF, and Atom feeds).";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.38";s:4:"core";s:3:"6.x";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
-))
-->values(array(
-  'filename' => 'modules/block/block.module',
-  'name' => 'block',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '1',
-  'throttle' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '0',
-  'weight' => '0',
-  'info' => 'a:8:{s:4:"name";s:5:"Block";s:11:"description";s:62:"Controls the boxes that are displayed around the main content.";s:7:"package";s:15:"Core - required";s:7:"version";s:4:"6.38";s:4:"core";s:3:"6.x";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
-))
-->values(array(
-  'filename' => 'modules/blog/blog.module',
-  'name' => 'blog',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'throttle' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:8:{s:4:"name";s:4:"Blog";s:11:"description";s:69:"Enables keeping easily and regularly updated user web pages or blogs.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.38";s:4:"core";s:3:"6.x";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
-))
-->values(array(
-  'filename' => 'modules/blogapi/blogapi.module',
-  'name' => 'blogapi',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'throttle' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:8:{s:4:"name";s:8:"Blog API";s:11:"description";s:79:"Allows users to post content using applications that support XML-RPC blog APIs.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.38";s:4:"core";s:3:"6.x";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
-))
-->values(array(
-  'filename' => 'modules/book/book.module',
-  'name' => 'book',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'throttle' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:8:{s:4:"name";s:4:"Book";s:11:"description";s:63:"Allows users to structure site pages in a hierarchy or outline.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.38";s:4:"core";s:3:"6.x";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
-))
-->values(array(
-  'filename' => 'modules/color/color.module',
-  'name' => 'color',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'throttle' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:8:{s:4:"name";s:5:"Color";s:11:"description";s:61:"Allows the user to change the color scheme of certain themes.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.38";s:4:"core";s:3:"6.x";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
-))
-->values(array(
-  'filename' => 'modules/comment/comment.module',
-  'name' => 'comment',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '1',
-  'throttle' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '6005',
-  'weight' => '0',
-  'info' => 'a:8:{s:4:"name";s:7:"Comment";s:11:"description";s:57:"Allows users to comment on and discuss published content.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.38";s:4:"core";s:3:"6.x";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
-))
-->values(array(
-  'filename' => 'modules/contact/contact.module',
-  'name' => 'contact',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'throttle' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:8:{s:4:"name";s:7:"Contact";s:11:"description";s:61:"Enables the use of both personal and site-wide contact forms.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.38";s:4:"core";s:3:"6.x";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
-))
-->values(array(
-  'filename' => 'modules/dblog/dblog.module',
-  'name' => 'dblog',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'throttle' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:8:{s:4:"name";s:16:"Database logging";s:11:"description";s:47:"Logs and records system events to the database.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.38";s:4:"core";s:3:"6.x";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
-))
-->values(array(
-  'filename' => 'modules/filter/filter.module',
-  'name' => 'filter',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '1',
-  'throttle' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '0',
-  'weight' => '0',
-  'info' => 'a:8:{s:4:"name";s:6:"Filter";s:11:"description";s:60:"Handles the filtering of content in preparation for display.";s:7:"package";s:15:"Core - required";s:7:"version";s:4:"6.38";s:4:"core";s:3:"6.x";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
-))
-->values(array(
-  'filename' => 'modules/forum/forum.module',
-  'name' => 'forum',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '1',
-  'throttle' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '6000',
-  'weight' => '1',
-  'info' => 'a:8:{s:4:"name";s:5:"Forum";s:11:"description";s:50:"Enables threaded discussions about general topics.";s:12:"dependencies";a:2:{i:0;s:8:"taxonomy";i:1;s:7:"comment";}s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.38";s:4:"core";s:3:"6.x";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
-))
-->values(array(
-  'filename' => 'modules/help/help.module',
-  'name' => 'help',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'throttle' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:8:{s:4:"name";s:4:"Help";s:11:"description";s:35:"Manages the display of online help.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.38";s:4:"core";s:3:"6.x";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
-))
-->values(array(
-  'filename' => 'modules/locale/locale.module',
-  'name' => 'locale',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'throttle' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:8:{s:4:"name";s:6:"Locale";s:11:"description";s:119:"Adds language handling functionality and enables the translation of the user interface to languages other than English.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.38";s:4:"core";s:3:"6.x";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
-))
-->values(array(
-  'filename' => 'modules/menu/menu.module',
-  'name' => 'menu',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '1',
-  'throttle' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '6000',
-  'weight' => '0',
-  'info' => 'a:8:{s:4:"name";s:4:"Menu";s:11:"description";s:60:"Allows administrators to customize the site navigation menu.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.38";s:4:"core";s:3:"6.x";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
-))
-->values(array(
-  'filename' => 'modules/node/node.module',
-  'name' => 'node',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '1',
-  'throttle' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '0',
-  'weight' => '0',
-  'info' => 'a:8:{s:4:"name";s:4:"Node";s:11:"description";s:66:"Allows content to be submitted to the site and displayed on pages.";s:7:"package";s:15:"Core - required";s:7:"version";s:4:"6.38";s:4:"core";s:3:"6.x";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
-))
-->values(array(
-  'filename' => 'modules/openid/openid.module',
-  'name' => 'openid',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'throttle' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:8:{s:4:"name";s:6:"OpenID";s:11:"description";s:48:"Allows users to log into your site using OpenID.";s:7:"version";s:4:"6.38";s:7:"package";s:15:"Core - optional";s:4:"core";s:3:"6.x";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
-))
-->values(array(
-  'filename' => 'modules/path/path.module',
-  'name' => 'path',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '1',
-  'throttle' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '0',
-  'weight' => '0',
-  'info' => 'a:8:{s:4:"name";s:4:"Path";s:11:"description";s:28:"Allows users to rename URLs.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.38";s:4:"core";s:3:"6.x";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
-))
-->values(array(
-  'filename' => 'modules/php/php.module',
-  'name' => 'php',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'throttle' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '0',
-  'weight' => '0',
-  'info' => 'a:8:{s:4:"name";s:10:"PHP filter";s:11:"description";s:50:"Allows embedded PHP code/snippets to be evaluated.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.38";s:4:"core";s:3:"6.x";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
-))
-->values(array(
-  'filename' => 'modules/ping/ping.module',
-  'name' => 'ping',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'throttle' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:8:{s:4:"name";s:4:"Ping";s:11:"description";s:51:"Alerts other sites when your site has been updated.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.38";s:4:"core";s:3:"6.x";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
-))
-->values(array(
-  'filename' => 'modules/poll/poll.module',
-  'name' => 'poll',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'throttle' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:8:{s:4:"name";s:4:"Poll";s:11:"description";s:95:"Allows your site to capture votes on different topics in the form of multiple choice questions.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.38";s:4:"core";s:3:"6.x";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
-))
-->values(array(
-  'filename' => 'modules/profile/profile.module',
-  'name' => 'profile',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'throttle' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:8:{s:4:"name";s:7:"Profile";s:11:"description";s:36:"Supports configurable user profiles.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.38";s:4:"core";s:3:"6.x";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
-))
-->values(array(
-  'filename' => 'modules/search/search.module',
-  'name' => 'search',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '1',
-  'throttle' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '0',
-  'weight' => '0',
-  'info' => 'a:8:{s:4:"name";s:6:"Search";s:11:"description";s:36:"Enables site-wide keyword searching.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.38";s:4:"core";s:3:"6.x";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
-))
-->values(array(
-  'filename' => 'modules/statistics/statistics.module',
-  'name' => 'statistics',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'throttle' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:8:{s:4:"name";s:10:"Statistics";s:11:"description";s:37:"Logs access statistics for your site.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.38";s:4:"core";s:3:"6.x";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
-))
-->values(array(
-  'filename' => 'modules/syslog/syslog.module',
-  'name' => 'syslog',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'throttle' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:8:{s:4:"name";s:6:"Syslog";s:11:"description";s:41:"Logs and records system events to syslog.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.38";s:4:"core";s:3:"6.x";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
-))
-->values(array(
-  'filename' => 'modules/system/system.module',
-  'name' => 'system',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '1',
-  'throttle' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '6056',
-  'weight' => '0',
-  'info' => 'a:8:{s:4:"name";s:6:"System";s:11:"description";s:54:"Handles general site configuration for administrators.";s:7:"package";s:15:"Core - required";s:7:"version";s:4:"6.38";s:4:"core";s:3:"6.x";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
-))
-->values(array(
-  'filename' => 'modules/taxonomy/taxonomy.module',
-  'name' => 'taxonomy',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '1',
-  'throttle' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '6001',
-  'weight' => '0',
-  'info' => 'a:8:{s:4:"name";s:8:"Taxonomy";s:11:"description";s:38:"Enables the categorization of content.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.38";s:4:"core";s:3:"6.x";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
-))
-->values(array(
-  'filename' => 'modules/throttle/throttle.module',
-  'name' => 'throttle',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'throttle' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:8:{s:4:"name";s:8:"Throttle";s:11:"description";s:66:"Handles the auto-throttling mechanism, to control site congestion.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.38";s:4:"core";s:3:"6.x";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
-))
-->values(array(
-  'filename' => 'modules/tracker/tracker.module',
-  'name' => 'tracker',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'throttle' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:8:{s:4:"name";s:7:"Tracker";s:11:"description";s:43:"Enables tracking of recent posts for users.";s:12:"dependencies";a:1:{i:0;s:7:"comment";}s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.38";s:4:"core";s:3:"6.x";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
-))
-->values(array(
-  'filename' => 'modules/translation/translation.module',
-  'name' => 'translation',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'throttle' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '0',
-  'weight' => '0',
-  'info' => 'a:8:{s:4:"name";s:19:"Content translation";s:11:"description";s:57:"Allows content to be translated into different languages.";s:12:"dependencies";a:1:{i:0;s:6:"locale";}s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.38";s:4:"core";s:3:"6.x";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
-))
-->values(array(
-  'filename' => 'modules/trigger/trigger.module',
-  'name' => 'trigger',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'throttle' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:8:{s:4:"name";s:7:"Trigger";s:11:"description";s:90:"Enables actions to be fired on certain system events, such as when new content is created.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.38";s:4:"core";s:3:"6.x";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
-))
-->values(array(
-  'filename' => 'modules/update/update.module',
-  'name' => 'update',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'throttle' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:8:{s:4:"name";s:13:"Update status";s:11:"description";s:88:"Checks the status of available updates for Drupal and your installed modules and themes.";s:7:"version";s:4:"6.38";s:7:"package";s:15:"Core - optional";s:4:"core";s:3:"6.x";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
-))
-->values(array(
-  'filename' => 'modules/upload/upload.module',
-  'name' => 'upload',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '1',
-  'throttle' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '0',
-  'weight' => '0',
-  'info' => 'a:8:{s:4:"name";s:6:"Upload";s:11:"description";s:51:"Allows users to upload and attach files to content.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.38";s:4:"core";s:3:"6.x";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
-))
-->values(array(
-  'filename' => 'modules/user/user.module',
-  'name' => 'user',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '1',
-  'throttle' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '0',
-  'weight' => '0',
-  'info' => 'a:8:{s:4:"name";s:4:"User";s:11:"description";s:47:"Manages the user registration and login system.";s:7:"package";s:15:"Core - required";s:7:"version";s:4:"6.38";s:4:"core";s:3:"6.x";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/cck/content.module',
-  'name' => 'content',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '1',
-  'throttle' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '6010',
-  'weight' => '0',
-  'info' => 'a:8:{s:4:"name";s:7:"Content";s:11:"description";s:50:"Allows administrators to define new content types.";s:7:"package";s:3:"CCK";s:4:"core";s:3:"6.x";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:7:"version";N;s:3:"php";s:5:"4.3.5";}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/cck/modules/content_copy/content_copy.module',
-  'name' => 'content_copy',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'throttle' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:8:{s:4:"name";s:12:"Content Copy";s:11:"description";s:51:"Enables ability to import/export field definitions.";s:12:"dependencies";a:1:{i:0;s:7:"content";}s:7:"package";s:3:"CCK";s:4:"core";s:3:"6.x";s:10:"dependents";a:0:{}s:7:"version";N;s:3:"php";s:5:"4.3.5";}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/cck/modules/content_multigroup/content_multigroup.module',
-  'name' => 'content_multigroup',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'throttle' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:8:{s:4:"name";s:18:"Content Multigroup";s:11:"description";s:81:"Combine multiple CCK fields into repeating field collections that work in unison.";s:12:"dependencies";a:2:{i:0;s:7:"content";i:1;s:10:"fieldgroup";}s:7:"package";s:3:"CCK";s:4:"core";s:3:"6.x";s:10:"dependents";a:0:{}s:7:"version";N;s:3:"php";s:5:"4.3.5";}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/cck/modules/content_permissions/content_permissions.module',
-  'name' => 'content_permissions',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'throttle' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:8:{s:4:"name";s:19:"Content Permissions";s:11:"description";s:43:"Set field-level permissions for CCK fields.";s:7:"package";s:3:"CCK";s:4:"core";s:3:"6.x";s:12:"dependencies";a:1:{i:0;s:7:"content";}s:10:"dependents";a:0:{}s:7:"version";N;s:3:"php";s:5:"4.3.5";}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/cck/modules/fieldgroup/fieldgroup.module',
-  'name' => 'fieldgroup',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'throttle' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:8:{s:4:"name";s:10:"Fieldgroup";s:11:"description";s:37:"Create display groups for CCK fields.";s:12:"dependencies";a:1:{i:0;s:7:"content";}s:7:"package";s:3:"CCK";s:4:"core";s:3:"6.x";s:10:"dependents";a:0:{}s:7:"version";N;s:3:"php";s:5:"4.3.5";}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/cck/modules/nodereference/nodereference.module',
-  'name' => 'nodereference',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'throttle' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:8:{s:4:"name";s:14:"Node Reference";s:11:"description";s:59:"Defines a field type for referencing one node from another.";s:12:"dependencies";a:3:{i:0;s:7:"content";i:1;s:4:"text";i:2;s:13:"optionwidgets";}s:7:"package";s:3:"CCK";s:4:"core";s:3:"6.x";s:10:"dependents";a:0:{}s:7:"version";N;s:3:"php";s:5:"4.3.5";}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/cck/modules/number/number.module',
-  'name' => 'number',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'throttle' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:8:{s:4:"name";s:6:"Number";s:11:"description";s:28:"Defines numeric field types.";s:12:"dependencies";a:1:{i:0;s:7:"content";}s:7:"package";s:3:"CCK";s:4:"core";s:3:"6.x";s:10:"dependents";a:0:{}s:7:"version";N;s:3:"php";s:5:"4.3.5";}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/cck/modules/optionwidgets/optionwidgets.module',
-  'name' => 'optionwidgets',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'throttle' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:8:{s:4:"name";s:14:"Option Widgets";s:11:"description";s:82:"Defines selection, check box and radio button widgets for text and numeric fields.";s:12:"dependencies";a:1:{i:0;s:7:"content";}s:7:"package";s:3:"CCK";s:4:"core";s:3:"6.x";s:10:"dependents";a:0:{}s:7:"version";N;s:3:"php";s:5:"4.3.5";}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/cck/modules/text/text.module',
-  'name' => 'text',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '1',
-  'throttle' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '6003',
-  'weight' => '0',
-  'info' => 'a:8:{s:4:"name";s:4:"Text";s:11:"description";s:32:"Defines simple text field types.";s:12:"dependencies";a:1:{i:0;s:7:"content";}s:7:"package";s:3:"CCK";s:4:"core";s:3:"6.x";s:10:"dependents";a:0:{}s:7:"version";N;s:3:"php";s:5:"4.3.5";}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/cck/modules/userreference/userreference.module',
-  'name' => 'userreference',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'throttle' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:8:{s:4:"name";s:14:"User Reference";s:11:"description";s:56:"Defines a field type for referencing a user from a node.";s:12:"dependencies";a:3:{i:0;s:7:"content";i:1;s:4:"text";i:2;s:13:"optionwidgets";}s:7:"package";s:3:"CCK";s:4:"core";s:3:"6.x";s:10:"dependents";a:0:{}s:7:"version";N;s:3:"php";s:5:"4.3.5";}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/cck/tests/content_test.module',
-  'name' => 'content_test',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'throttle' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:10:{s:4:"name";s:12:"Content Test";s:11:"description";s:20:"Test module for CCK.";s:7:"package";s:3:"CCK";s:4:"core";s:3:"6.x";s:12:"dependencies";a:1:{i:0;s:6:"schema";}s:6:"hidden";b:1;s:5:"files";a:1:{i:0;s:19:"content_test.module";}s:10:"dependents";a:0:{}s:7:"version";N;s:3:"php";s:5:"4.3.5";}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/date/date/date.module',
-  'name' => 'date',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '1',
-  'throttle' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '6005',
-  'weight' => '0',
-  'info' => 'a:10:{s:4:"name";s:4:"Date";s:11:"description";s:41:"Defines CCK date/time fields and widgets.";s:12:"dependencies";a:3:{i:0;s:7:"content";i:1;s:8:"date_api";i:2;s:13:"date_timezone";}s:7:"package";s:9:"Date/Time";s:4:"core";s:3:"6.x";s:7:"version";s:7:"6.x-2.8";s:7:"project";s:4:"date";s:9:"datestamp";s:10:"1326285938";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/date/date_api.module',
-  'name' => 'date_api',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '1',
-  'throttle' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '6006',
-  'weight' => '0',
-  'info' => 'a:10:{s:4:"name";s:8:"Date API";s:11:"description";s:45:"A Date API that can be used by other modules.";s:7:"package";s:9:"Date/Time";s:4:"core";s:3:"6.x";s:7:"version";s:7:"6.x-2.8";s:7:"project";s:4:"date";s:9:"datestamp";s:10:"1326285938";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/date/date_timezone/date_timezone.module',
-  'name' => 'date_timezone',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '1',
-  'throttle' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '5200',
-  'weight' => '0',
-  'info' => 'a:10:{s:4:"name";s:13:"Date Timezone";s:11:"description";s:111:"Needed when using Date API. Overrides site and user timezone handling to set timezone names instead of offsets.";s:7:"package";s:9:"Date/Time";s:12:"dependencies";a:1:{i:0;s:8:"date_api";}s:4:"core";s:3:"6.x";s:7:"version";s:7:"6.x-2.8";s:7:"project";s:4:"date";s:9:"datestamp";s:10:"1326285938";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/email/email.module',
-  'name' => 'email',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '1',
-  'throttle' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '6001',
-  'weight' => '0',
-  'info' => 'a:10:{s:4:"name";s:5:"Email";s:11:"description";s:35:"Defines an email field type for cck";s:12:"dependencies";a:1:{i:0;s:7:"content";}s:7:"package";s:3:"CCK";s:4:"core";s:3:"6.x";s:7:"version";s:7:"6.x-1.4";s:7:"project";s:5:"email";s:9:"datestamp";s:10:"1354093658";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/event/event.module',
-  'name' => 'event',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '1',
-  'throttle' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '6005',
-  'weight' => '0',
-  'info' => 'a:10:{s:4:"name";s:5:"Event";s:11:"description";s:44:"Calendaring API, calendar display and export";s:7:"package";s:5:"Event";s:4:"core";s:3:"6.x";s:7:"version";s:11:"6.x-2.x-dev";s:7:"project";s:5:"event";s:9:"datestamp";s:10:"1425082685";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/filefield/filefield.module',
-  'name' => 'filefield',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '1',
-  'throttle' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '6104',
-  'weight' => '0',
-  'info' => 'a:10:{s:4:"name";s:9:"FileField";s:11:"description";s:26:"Defines a file field type.";s:12:"dependencies";a:1:{i:0;s:7:"content";}s:7:"package";s:3:"CCK";s:4:"core";s:3:"6.x";s:3:"php";s:3:"5.0";s:7:"version";s:8:"6.x-3.14";s:7:"project";s:9:"filefield";s:9:"datestamp";s:10:"1456327142";s:10:"dependents";a:0:{}}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/i18n/i18n.module',
-  'name' => 'i18n',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'throttle' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:8:{s:4:"name";s:20:"Internationalization";s:11:"description";s:49:"Extends Drupal support for multilingual features.";s:12:"dependencies";a:2:{i:0;s:6:"locale";i:1;s:11:"translation";}s:7:"package";s:13:"Multilanguage";s:4:"core";s:3:"6.x";s:10:"dependents";a:0:{}s:7:"version";N;s:3:"php";s:5:"4.3.5";}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/i18n/i18nblocks/i18nblocks.module',
-  'name' => 'i18nblocks',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'throttle' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:8:{s:4:"name";s:17:"Block translation";s:11:"description";s:50:"Enables multilingual blocks and block translation.";s:12:"dependencies";a:2:{i:0;s:4:"i18n";i:1;s:11:"i18nstrings";}s:7:"package";s:13:"Multilanguage";s:4:"core";s:3:"6.x";s:10:"dependents";a:0:{}s:7:"version";N;s:3:"php";s:5:"4.3.5";}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/i18n/i18ncck/i18ncck.module',
-  'name' => 'i18ncck',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'throttle' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:8:{s:4:"name";s:15:"CCK translation";s:11:"description";s:56:"Supports translatable custom CCK fields and fieldgroups.";s:12:"dependencies";a:3:{i:0;s:4:"i18n";i:1;s:7:"content";i:2;s:11:"i18nstrings";}s:7:"package";s:13:"Multilanguage";s:4:"core";s:3:"6.x";s:10:"dependents";a:0:{}s:7:"version";N;s:3:"php";s:5:"4.3.5";}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/i18n/i18ncontent/i18ncontent.module',
-  'name' => 'i18ncontent',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'throttle' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:8:{s:4:"name";s:24:"Content type translation";s:11:"description";s:99:"Add multilingual options for content and translate related strings: name, description, help text...";s:12:"dependencies";a:1:{i:0;s:11:"i18nstrings";}s:7:"package";s:13:"Multilanguage";s:4:"core";s:3:"6.x";s:10:"dependents";a:0:{}s:7:"version";N;s:3:"php";s:5:"4.3.5";}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/i18n/i18nmenu/i18nmenu.module',
-  'name' => 'i18nmenu',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'throttle' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:8:{s:4:"name";s:16:"Menu translation";s:11:"description";s:40:"Supports translatable custom menu items.";s:12:"dependencies";a:4:{i:0;s:4:"i18n";i:1;s:4:"menu";i:2;s:10:"i18nblocks";i:3;s:11:"i18nstrings";}s:7:"package";s:13:"Multilanguage";s:4:"core";s:3:"6.x";s:10:"dependents";a:0:{}s:7:"version";N;s:3:"php";s:5:"4.3.5";}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/i18n/i18npoll/i18npoll.module',
-  'name' => 'i18npoll',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'throttle' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:8:{s:4:"name";s:14:"Poll aggregate";s:11:"description";s:45:"Aggregates poll results for all translations.";s:12:"dependencies";a:2:{i:0;s:11:"translation";i:1;s:4:"poll";}s:7:"package";s:13:"Multilanguage";s:4:"core";s:3:"6.x";s:10:"dependents";a:0:{}s:7:"version";N;s:3:"php";s:5:"4.3.5";}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/i18n/i18nprofile/i18nprofile.module',
-  'name' => 'i18nprofile',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'throttle' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:8:{s:4:"name";s:19:"Profile translation";s:11:"description";s:36:"Enables multilingual profile fields.";s:12:"dependencies";a:2:{i:0;s:7:"profile";i:1;s:11:"i18nstrings";}s:7:"package";s:13:"Multilanguage";s:4:"core";s:3:"6.x";s:10:"dependents";a:0:{}s:7:"version";N;s:3:"php";s:5:"4.3.5";}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/i18n/i18nstrings/i18nstrings.module',
-  'name' => 'i18nstrings',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'throttle' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:8:{s:4:"name";s:18:"String translation";s:11:"description";s:57:"Provides support for translation of user defined strings.";s:12:"dependencies";a:1:{i:0;s:6:"locale";}s:7:"package";s:13:"Multilanguage";s:4:"core";s:3:"6.x";s:10:"dependents";a:0:{}s:7:"version";N;s:3:"php";s:5:"4.3.5";}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/i18n/i18nsync/i18nsync.module',
-  'name' => 'i18nsync',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'throttle' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:8:{s:4:"name";s:24:"Synchronize translations";s:11:"description";s:74:"Synchronizes taxonomy and fields accross translations of the same content.";s:12:"dependencies";a:1:{i:0;s:4:"i18n";}s:7:"package";s:13:"Multilanguage";s:4:"core";s:3:"6.x";s:10:"dependents";a:0:{}s:7:"version";N;s:3:"php";s:5:"4.3.5";}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/i18n/i18ntaxonomy/i18ntaxonomy.module',
-  'name' => 'i18ntaxonomy',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'throttle' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:8:{s:4:"name";s:20:"Taxonomy translation";s:11:"description";s:30:"Enables multilingual taxonomy.";s:12:"dependencies";a:3:{i:0;s:4:"i18n";i:1;s:8:"taxonomy";i:2;s:11:"i18nstrings";}s:7:"package";s:13:"Multilanguage";s:4:"core";s:3:"6.x";s:10:"dependents";a:0:{}s:7:"version";N;s:3:"php";s:5:"4.3.5";}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/i18n/tests/i18n_test.module',
-  'name' => 'i18n_test',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'throttle' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:8:{s:4:"name";s:26:"Internationalization tests";s:11:"description";s:55:"Helper module for testing i18n (do not enable manually)";s:12:"dependencies";a:3:{i:0;s:6:"locale";i:1;s:11:"translation";i:2;s:4:"i18n";}s:7:"package";s:7:"Testing";s:4:"core";s:3:"6.x";s:10:"dependents";a:0:{}s:7:"version";N;s:3:"php";s:5:"4.3.5";}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/imageapi/imageapi.module',
-  'name' => 'imageapi',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '1',
-  'throttle' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '0',
-  'weight' => '0',
-  'info' => 'a:10:{s:4:"name";s:8:"ImageAPI";s:11:"description";s:38:"ImageAPI supporting multiple toolkits.";s:7:"package";s:10:"ImageCache";s:4:"core";s:3:"6.x";s:3:"php";s:3:"5.1";s:7:"version";s:13:"6.x-1.9+4-dev";s:7:"project";s:8:"imageapi";s:9:"datestamp";s:10:"1380582658";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/imagecache/imagecache.module',
-  'name' => 'imagecache',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '1',
-  'throttle' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '6001',
-  'weight' => '0',
-  'info' => 'a:10:{s:4:"name";s:10:"ImageCache";s:11:"description";s:36:"Dynamic image manipulator and cache.";s:7:"package";s:10:"ImageCache";s:12:"dependencies";a:1:{i:0;s:8:"imageapi";}s:4:"core";s:3:"6.x";s:7:"version";s:18:"6.x-2.0-rc1+16-dev";s:7:"project";s:10:"imagecache";s:9:"datestamp";s:10:"1380582680";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/imagefield/imagefield.module',
-  'name' => 'imagefield',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '1',
-  'throttle' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '6006',
-  'weight' => '0',
-  'info' => 'a:10:{s:4:"name";s:10:"ImageField";s:11:"description";s:28:"Defines an image field type.";s:4:"core";s:3:"6.x";s:12:"dependencies";a:2:{i:0;s:7:"content";i:1;s:9:"filefield";}s:7:"package";s:3:"CCK";s:7:"version";s:7:"6.x-3.3";s:7:"project";s:10:"imagefield";s:9:"datestamp";s:10:"1273102211";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/nodereference_url/nodereference_url.module',
-  'name' => 'nodereference_url',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'throttle' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:8:{s:4:"name";s:25:"Node Reference URL Widget";s:11:"description";s:99:"Adds an additional widget to the CCK Node Reference field that prepopulates a reference by the URL.";s:12:"dependencies";a:1:{i:0;s:13:"nodereference";}s:7:"package";s:3:"CCK";s:4:"core";s:3:"6.x";s:10:"dependents";a:0:{}s:7:"version";N;s:3:"php";s:5:"4.3.5";}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/variable/variable_admin/variable_admin.module',
-  'name' => 'variable_admin',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '1',
-  'throttle' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '0',
-  'weight' => '0',
-  'info' => 'a:9:{s:4:"name";s:14:"Variable admin";s:11:"description";s:23:"Variable API - Admin UI";s:4:"core";s:3:"6.x";s:7:"version";s:11:"6.x-1.x-dev";s:7:"project";s:8:"variable";s:9:"datestamp";s:10:"1406295528";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
-))
-->values(array(
-  'filename' => 'themes/bluemarine/bluemarine.info',
-  'name' => 'bluemarine',
-  'type' => 'theme',
-  'owner' => 'themes/engines/phptemplate/phptemplate.engine',
-  'status' => '0',
-  'throttle' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:10:"Bluemarine";s:11:"description";s:66:"Table-based multi-column theme with a marine and ash color scheme.";s:7:"version";s:4:"6.38";s:4:"core";s:3:"6.x";s:6:"engine";s:11:"phptemplate";s:7:"regions";a:5:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";s:7:"content";s:7:"Content";s:6:"header";s:6:"Header";s:6:"footer";s:6:"Footer";}s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:27:"themes/bluemarine/style.css";}}s:7:"scripts";a:1:{s:9:"script.js";s:27:"themes/bluemarine/script.js";}s:10:"screenshot";s:32:"themes/bluemarine/screenshot.png";s:3:"php";s:5:"4.3.5";}',
-))
-->values(array(
-  'filename' => 'themes/chameleon/chameleon.info',
-  'name' => 'chameleon',
-  'type' => 'theme',
-  'owner' => 'themes/chameleon/chameleon.theme',
-  'status' => '0',
-  'throttle' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:10:{s:4:"name";s:9:"Chameleon";s:11:"description";s:42:"Minimalist tabled theme with light colors.";s:7:"regions";a:2:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";}s:8:"features";a:4:{i:0;s:4:"logo";i:1;s:7:"favicon";i:2;s:4:"name";i:3;s:6:"slogan";}s:11:"stylesheets";a:1:{s:3:"all";a:2:{s:9:"style.css";s:26:"themes/chameleon/style.css";s:10:"common.css";s:27:"themes/chameleon/common.css";}}s:7:"version";s:4:"6.38";s:4:"core";s:3:"6.x";s:7:"scripts";a:1:{s:9:"script.js";s:26:"themes/chameleon/script.js";}s:10:"screenshot";s:31:"themes/chameleon/screenshot.png";s:3:"php";s:5:"4.3.5";}',
-))
-->values(array(
-  'filename' => 'themes/chameleon/marvin/marvin.info',
-  'name' => 'marvin',
-  'type' => 'theme',
-  'owner' => '',
-  'status' => '0',
-  'throttle' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:6:"Marvin";s:11:"description";s:31:"Boxy tabled theme in all grays.";s:7:"regions";a:2:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";}s:7:"version";s:4:"6.38";s:4:"core";s:3:"6.x";s:10:"base theme";s:9:"chameleon";s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:33:"themes/chameleon/marvin/style.css";}}s:7:"scripts";a:1:{s:9:"script.js";s:33:"themes/chameleon/marvin/script.js";}s:10:"screenshot";s:38:"themes/chameleon/marvin/screenshot.png";s:3:"php";s:5:"4.3.5";}',
-))
-->values(array(
-  'filename' => 'themes/garland/garland.info',
-  'name' => 'garland',
-  'type' => 'theme',
-  'owner' => 'themes/engines/phptemplate/phptemplate.engine',
-  'status' => '1',
-  'throttle' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:7:"Garland";s:11:"description";s:66:"Tableless, recolorable, multi-column, fluid width theme (default).";s:7:"version";s:4:"6.38";s:4:"core";s:3:"6.x";s:6:"engine";s:11:"phptemplate";s:11:"stylesheets";a:2:{s:3:"all";a:1:{s:9:"style.css";s:24:"themes/garland/style.css";}s:5:"print";a:1:{s:9:"print.css";s:24:"themes/garland/print.css";}}s:7:"regions";a:5:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";s:7:"content";s:7:"Content";s:6:"header";s:6:"Header";s:6:"footer";s:6:"Footer";}s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:7:"scripts";a:1:{s:9:"script.js";s:24:"themes/garland/script.js";}s:10:"screenshot";s:29:"themes/garland/screenshot.png";s:3:"php";s:5:"4.3.5";}',
-))
-->values(array(
-  'filename' => 'themes/garland/minnelli/minnelli.info',
-  'name' => 'minnelli',
-  'type' => 'theme',
-  'owner' => 'themes/engines/phptemplate/phptemplate.engine',
-  'status' => '0',
-  'throttle' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:12:{s:4:"name";s:8:"Minnelli";s:11:"description";s:56:"Tableless, recolorable, multi-column, fixed width theme.";s:7:"version";s:4:"6.38";s:4:"core";s:3:"6.x";s:10:"base theme";s:7:"garland";s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:12:"minnelli.css";s:36:"themes/garland/minnelli/minnelli.css";}}s:7:"regions";a:5:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";s:7:"content";s:7:"Content";s:6:"header";s:6:"Header";s:6:"footer";s:6:"Footer";}s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:7:"scripts";a:1:{s:9:"script.js";s:33:"themes/garland/minnelli/script.js";}s:10:"screenshot";s:38:"themes/garland/minnelli/screenshot.png";s:3:"php";s:5:"4.3.5";s:6:"engine";s:11:"phptemplate";}',
-))
-->values(array(
-  'filename' => 'themes/pushbutton/pushbutton.info',
-  'name' => 'pushbutton',
-  'type' => 'theme',
-  'owner' => 'themes/engines/phptemplate/phptemplate.engine',
-  'status' => '0',
-  'throttle' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:10:"Pushbutton";s:11:"description";s:52:"Tabled, multi-column theme in blue and orange tones.";s:7:"version";s:4:"6.38";s:4:"core";s:3:"6.x";s:6:"engine";s:11:"phptemplate";s:7:"regions";a:5:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";s:7:"content";s:7:"Content";s:6:"header";s:6:"Header";s:6:"footer";s:6:"Footer";}s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:27:"themes/pushbutton/style.css";}}s:7:"scripts";a:1:{s:9:"script.js";s:27:"themes/pushbutton/script.js";}s:10:"screenshot";s:32:"themes/pushbutton/screenshot.png";s:3:"php";s:5:"4.3.5";}',
-))
-->execute();
-$connection->schema()->createTable('term_data', array(
-  'fields' => array(
-    'tid' => array(
-      'type' => 'serial',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-    'vid' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-    'name' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'description' => array(
-      'type' => 'text',
-      'not null' => FALSE,
-      'size' => 'normal',
-    ),
-    'weight' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-  ),
-  'primary key' => array(
-    'tid',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->insert('term_data')
-->fields(array(
-  'tid',
-  'vid',
-  'name',
-  'description',
-  'weight',
-))
-->values(array(
-  'tid' => '8',
-  'vid' => '7',
-  'name' => 'General discussion',
-  'description' => '',
-  'weight' => '2',
-))
-->values(array(
-  'tid' => '9',
-  'vid' => '7',
-  'name' => 'Earth',
-  'description' => '',
-  'weight' => '0',
-))
-->values(array(
-  'tid' => '10',
-  'vid' => '7',
-  'name' => 'Birds',
-  'description' => '',
-  'weight' => '0',
-))
-->values(array(
-  'tid' => '11',
-  'vid' => '8',
-  'name' => 'Oak',
-  'description' => '',
-  'weight' => '0',
-))
-->values(array(
-  'tid' => '12',
-  'vid' => '8',
-  'name' => 'Ash',
-  'description' => '',
-  'weight' => '0',
-))
-->execute();
-$connection->schema()->createTable('term_hierarchy', array(
-  'fields' => array(
-    'tid' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-    'parent' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-  ),
-  'primary key' => array(
-    'tid',
-    'parent',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->insert('term_hierarchy')
-->fields(array(
-  'tid',
-  'parent',
-))
-->values(array(
-  'tid' => '8',
-  'parent' => '0',
-))
-->values(array(
-  'tid' => '9',
-  'parent' => '0',
-))
-->values(array(
-  'tid' => '10',
-  'parent' => '9',
-))
-->values(array(
-  'tid' => '11',
-  'parent' => '0',
-))
-->values(array(
-  'tid' => '12',
-  'parent' => '0',
-))
-->execute();
-$connection->schema()->createTable('term_node', array(
-  'fields' => array(
-    'nid' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-    'vid' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-    'tid' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-  ),
-  'primary key' => array(
-    'vid',
-    'tid',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->insert('term_node')
-->fields(array(
-  'nid',
-  'vid',
-  'tid',
-))
-->values(array(
-  'nid' => '19',
-  'vid' => '22',
-  'tid' => '8',
-))
-->values(array(
-  'nid' => '20',
-  'vid' => '23',
-  'tid' => '10',
-))
-->values(array(
-  'nid' => '20',
-  'vid' => '23',
-  'tid' => '12',
-))
-->execute();
-$connection->schema()->createTable('term_relation', array(
-  'fields' => array(
-    'trid' => array(
-      'type' => 'serial',
-      'not null' => TRUE,
-      'size' => 'normal',
-    ),
-    'tid1' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-    'tid2' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-  ),
-  'primary key' => array(
-    'trid',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->schema()->createTable('term_synonym', array(
-  'fields' => array(
-    'tsid' => array(
-      'type' => 'serial',
-      'not null' => TRUE,
-      'size' => 'normal',
-    ),
-    'tid' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-    'name' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-  ),
-  'primary key' => array(
-    'tsid',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->schema()->createTable('upload', array(
-  'fields' => array(
-    'fid' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-    'nid' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-    'vid' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-    'description' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'list' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'tiny',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-    'weight' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'tiny',
-      'default' => '0',
-    ),
-  ),
-  'primary key' => array(
-    'vid',
-    'fid',
-  ),
-  'indexes' => array(
-    'fid' => array(
-      'fid',
-    ),
-    'nid' => array(
-      'nid',
-    ),
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->schema()->createTable('url_alias', array(
-  'fields' => array(
-    'pid' => array(
-      'type' => 'serial',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-    'src' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '128',
-      'default' => '',
-    ),
-    'dst' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '128',
-      'default' => '',
-    ),
-    'language' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '12',
-      'default' => '',
-    ),
-  ),
-  'primary key' => array(
-    'pid',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->insert('url_alias')
-->fields(array(
-  'pid',
-  'src',
-  'dst',
-  'language',
-))
-->values(array(
-  'pid' => '1',
-  'src' => 'node/1',
-  'dst' => 'alias-one',
-  'language' => 'af',
-))
-->values(array(
-  'pid' => '5',
-  'src' => 'node/11',
-  'dst' => 'le-vrai-mccoy',
-  'language' => 'fr',
-))
-->values(array(
-  'pid' => '6',
-  'src' => 'node/12',
-  'dst' => 'abantu-zulu',
-  'language' => 'zu',
-))
-->values(array(
-  'pid' => '8',
-  'src' => 'admin',
-  'dst' => 'source-noslash',
-  'language' => '',
-))
-->execute();
-$connection->schema()->createTable('users', array(
-  'fields' => array(
-    'uid' => array(
-      'type' => 'serial',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-    'name' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '60',
-      'default' => '',
-    ),
-    'pass' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '32',
-      'default' => '',
-    ),
-    'mail' => array(
-      'type' => 'varchar',
-      'not null' => FALSE,
-      'length' => '64',
-      'default' => '',
-    ),
-    'mode' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'sort' => array(
-      'type' => 'int',
-      'not null' => FALSE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'threshold' => array(
-      'type' => 'int',
-      'not null' => FALSE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'theme' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'signature' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'signature_format' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'created' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'access' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'login' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'status' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'timezone' => array(
-      'type' => 'varchar',
-      'not null' => FALSE,
-      'length' => '8',
-    ),
-    'language' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '12',
-      'default' => '',
-    ),
-    'picture' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'init' => array(
-      'type' => 'varchar',
-      'not null' => FALSE,
-      'length' => '64',
-      'default' => '',
-    ),
-    'data' => array(
-      'type' => 'text',
-      'not null' => FALSE,
-      'size' => 'normal',
-    ),
-    'timezone_name' => array(
-      'type' => 'varchar',
-      'not null' => FALSE,
-      'length' => '50',
-      'default' => '',
-    ),
-    'pass_plain' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'expected_timezone' => array(
-      'type' => 'varchar',
-      'not null' => FALSE,
-      'length' => '50',
-    ),
-    'timezone_id' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-  ),
-  'primary key' => array(
-    'uid',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->insert('users')
-->fields(array(
-  'uid',
-  'name',
-  'pass',
-  'mail',
-  'mode',
-  'sort',
-  'threshold',
-  'theme',
-  'signature',
-  'signature_format',
-  'created',
-  'access',
-  'login',
-  'status',
-  'timezone',
-  'language',
-  'picture',
-  'init',
-  'data',
-  'timezone_name',
-  'pass_plain',
-  'expected_timezone',
-  'timezone_id',
-))
-->values(array(
-  'uid' => '1',
-  'name' => 'root',
-  'pass' => '63a9f0ea7bb98050796b649e85481845',
-  'mail' => 'root@localhost',
-  'mode' => '0',
-  'sort' => '0',
-  'threshold' => '0',
-  'theme' => '',
-  'signature' => '',
-  'signature_format' => '0',
-  'created' => '0',
-  'access' => '1687738850',
-  'login' => '1687738850',
-  'status' => '1',
-  'timezone' => NULL,
-  'language' => '',
-  'picture' => '',
-  'init' => 'root@localhost',
-  'data' => 'b:0;',
-  'timezone_name' => '',
-  'pass_plain' => 'root',
-  'expected_timezone' => NULL,
-  'timezone_id' => '0',
-))
-->execute();
-$connection->schema()->createTable('users_roles', array(
-  'fields' => array(
-    'uid' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-    'rid' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-  ),
-  'primary key' => array(
-    'uid',
-    'rid',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->schema()->createTable('variable', array(
-  'fields' => array(
-    'name' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '128',
-      'default' => '',
-    ),
-    'value' => array(
-      'type' => 'text',
-      'not null' => TRUE,
-      'size' => 'normal',
-    ),
-  ),
-  'primary key' => array(
-    'name',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->insert('variable')
-->fields(array(
-  'name',
-  'value',
-))
-->values(array(
-  'name' => 'actions_max_stack',
-  'value' => 'i:35;',
-))
-->values(array(
-  'name' => 'admin_compact_mode',
-  'value' => 'b:0;',
-))
-->values(array(
-  'name' => 'aggregator_fetcher',
-  'value' => 's:10:"aggregator";',
-))
-->values(array(
-  'name' => 'aggregator_parser',
-  'value' => 's:10:"aggregator";',
-))
-->values(array(
-  'name' => 'aggregator_processors',
-  'value' => 'a:1:{i:0;s:10:"aggregator";}',
-))
-->values(array(
-  'name' => 'aggregator_teaser_length',
-  'value' => 's:3:"600";',
-))
-->values(array(
-  'name' => 'allowed_html_1',
-  'value' => 's:61:"<a> <em> <strong> <cite> <code> <ul> <ol> <li> <dl> <dt> <dd>";',
-))
-->values(array(
-  'name' => 'allow_insecure_uploads',
-  'value' => 'i:1;',
-))
-->values(array(
-  'name' => 'anonymous',
-  'value' => 's:5:"Guest";',
-))
-->values(array(
-  'name' => 'array_filter',
-  'value' => 'b:1;',
-))
-->values(array(
-  'name' => 'book_allowed_types',
-  'value' => 'a:1:{i:0;s:4:"book";}',
-))
-->values(array(
-  'name' => 'book_block_mode',
-  'value' => 's:10:"book pages";',
-))
-->values(array(
-  'name' => 'book_child_type',
-  'value' => 's:4:"book";',
-))
-->values(array(
-  'name' => 'cache_lifetime',
-  'value' => 'i:0;',
-))
-->values(array(
-  'name' => 'comment_anonymous_article',
-  'value' => 'i:0;',
-))
-->values(array(
-  'name' => 'comment_anonymous_company',
-  'value' => 'i:0;',
-))
-->values(array(
-  'name' => 'comment_anonymous_employee',
-  'value' => 'i:0;',
-))
-->values(array(
-  'name' => 'comment_anonymous_page',
-  'value' => 'i:0;',
-))
-->values(array(
-  'name' => 'comment_anonymous_sponsor',
-  'value' => 'i:0;',
-))
-->values(array(
-  'name' => 'comment_anonymous_story',
-  'value' => 'i:1;',
-))
-->values(array(
-  'name' => 'comment_article',
-  'value' => 's:1:"2";',
-))
-->values(array(
-  'name' => 'comment_company',
-  'value' => 's:1:"2";',
-))
-->values(array(
-  'name' => 'comment_controls_article',
-  'value' => 'i:3;',
-))
-->values(array(
-  'name' => 'comment_controls_company',
-  'value' => 's:1:"3";',
-))
-->values(array(
-  'name' => 'comment_controls_employee',
-  'value' => 's:1:"3";',
-))
-->values(array(
-  'name' => 'comment_controls_page',
-  'value' => 's:1:"3";',
-))
-->values(array(
-  'name' => 'comment_controls_sponsor',
-  'value' => 's:1:"3";',
-))
-->values(array(
-  'name' => 'comment_controls_story',
-  'value' => 'i:3;',
-))
-->values(array(
-  'name' => 'comment_default_mode_article',
-  'value' => 'i:4;',
-))
-->values(array(
-  'name' => 'comment_default_mode_company',
-  'value' => 's:1:"4";',
-))
-->values(array(
-  'name' => 'comment_default_mode_employee',
-  'value' => 's:1:"4";',
-))
-->values(array(
-  'name' => 'comment_default_mode_page',
-  'value' => 's:1:"4";',
-))
-->values(array(
-  'name' => 'comment_default_mode_sponsor',
-  'value' => 's:1:"4";',
-))
-->values(array(
-  'name' => 'comment_default_mode_story',
-  'value' => 's:1:"2";',
-))
-->values(array(
-  'name' => 'comment_default_order_article',
-  'value' => 'i:1;',
-))
-->values(array(
-  'name' => 'comment_default_order_company',
-  'value' => 's:1:"1";',
-))
-->values(array(
-  'name' => 'comment_default_order_employee',
-  'value' => 's:1:"1";',
-))
-->values(array(
-  'name' => 'comment_default_order_page',
-  'value' => 's:1:"1";',
-))
-->values(array(
-  'name' => 'comment_default_order_sponsor',
-  'value' => 's:1:"1";',
-))
-->values(array(
-  'name' => 'comment_default_order_story',
-  'value' => 'i:1;',
-))
-->values(array(
-  'name' => 'comment_default_per_page_article',
-  'value' => 'i:50;',
-))
-->values(array(
-  'name' => 'comment_default_per_page_company',
-  'value' => 's:2:"50";',
-))
-->values(array(
-  'name' => 'comment_default_per_page_employee',
-  'value' => 's:2:"50";',
-))
-->values(array(
-  'name' => 'comment_default_per_page_page',
-  'value' => 's:2:"50";',
-))
-->values(array(
-  'name' => 'comment_default_per_page_sponsor',
-  'value' => 's:2:"50";',
-))
-->values(array(
-  'name' => 'comment_default_per_page_story',
-  'value' => 'i:70;',
-))
-->values(array(
-  'name' => 'comment_employee',
-  'value' => 's:1:"2";',
-))
-->values(array(
-  'name' => 'comment_form_location_article',
-  'value' => 'i:0;',
-))
-->values(array(
-  'name' => 'comment_form_location_company',
-  'value' => 's:1:"0";',
-))
-->values(array(
-  'name' => 'comment_form_location_employee',
-  'value' => 's:1:"0";',
-))
-->values(array(
-  'name' => 'comment_form_location_page',
-  'value' => 's:1:"0";',
-))
-->values(array(
-  'name' => 'comment_form_location_sponsor',
-  'value' => 's:1:"0";',
-))
-->values(array(
-  'name' => 'comment_form_location_story',
-  'value' => 'i:0;',
-))
-->values(array(
-  'name' => 'comment_page',
-  'value' => 's:1:"0";',
-))
-->values(array(
-  'name' => 'comment_preview_article',
-  'value' => 'i:1;',
-))
-->values(array(
-  'name' => 'comment_preview_company',
-  'value' => 's:1:"1";',
-))
-->values(array(
-  'name' => 'comment_preview_employee',
-  'value' => 's:1:"1";',
-))
-->values(array(
-  'name' => 'comment_preview_page',
-  'value' => 's:1:"1";',
-))
-->values(array(
-  'name' => 'comment_preview_sponsor',
-  'value' => 's:1:"1";',
-))
-->values(array(
-  'name' => 'comment_preview_story',
-  'value' => 'i:0;',
-))
-->values(array(
-  'name' => 'comment_sponsor',
-  'value' => 's:1:"2";',
-))
-->values(array(
-  'name' => 'comment_story',
-  'value' => 's:1:"2";',
-))
-->values(array(
-  'name' => 'comment_subject_field_article',
-  'value' => 'i:1;',
-))
-->values(array(
-  'name' => 'comment_subject_field_company',
-  'value' => 's:1:"1";',
-))
-->values(array(
-  'name' => 'comment_subject_field_employee',
-  'value' => 's:1:"1";',
-))
-->values(array(
-  'name' => 'comment_subject_field_page',
-  'value' => 'i:1;',
-))
-->values(array(
-  'name' => 'comment_subject_field_sponsor',
-  'value' => 's:1:"1";',
-))
-->values(array(
-  'name' => 'comment_subject_field_story',
-  'value' => 'i:0;',
-))
-->values(array(
-  'name' => 'configurable_timezones',
-  'value' => 's:1:"0";',
-))
-->values(array(
-  'name' => 'content_extra_weights_employee',
-  'value' => 'a:11:{s:5:"title";s:2:"-5";s:10:"body_field";s:1:"0";s:20:"revision_information";s:2:"20";s:6:"author";s:2:"20";s:7:"options";s:2:"25";s:16:"comment_settings";s:2:"30";s:8:"language";s:1:"0";s:11:"translation";s:2:"30";s:4:"menu";s:2:"-2";s:4:"book";s:2:"10";s:4:"path";s:2:"30";}',
-))
-->values(array(
-  'name' => 'content_extra_weights_forum',
-  'value' => 'a:9:{s:5:"title";s:2:"-5";s:10:"body_field";s:1:"0";s:20:"revision_information";s:2:"20";s:6:"author";s:2:"20";s:7:"options";s:2:"25";s:16:"comment_settings";s:2:"30";s:4:"menu";s:2:"-2";s:8:"taxonomy";s:2:"-3";s:4:"path";s:2:"30";}',
-))
-->values(array(
-  'name' => 'content_extra_weights_story',
-  'value' => 'a:9:{s:5:"title";s:2:"-5";s:10:"body_field";s:2:"-2";s:20:"revision_information";s:2:"19";s:6:"author";s:2:"18";s:7:"options";s:2:"20";s:16:"comment_settings";s:2:"22";s:4:"menu";s:2:"-3";s:8:"taxonomy";s:2:"-4";s:11:"attachments";s:2:"21";}',
-))
-->values(array(
-  'name' => 'content_extra_weights_test_page',
-  'value' => 'a:8:{s:5:"title";s:2:"37";s:10:"body_field";s:2:"38";s:20:"revision_information";s:2:"40";s:6:"author";s:2:"39";s:7:"options";s:2:"41";s:16:"comment_settings";s:2:"42";s:4:"menu";s:2:"36";s:11:"attachments";s:2:"43";}',
-))
-->values(array(
-  'name' => 'content_schema_version',
-  'value' => 'i:6009;',
-))
-->values(array(
-  'name' => 'cron_last',
-  'value' => 'i:1675409474;',
-))
-->values(array(
-  'name' => 'cron_threshold_error',
-  'value' => 'i:1209600;',
-))
-->values(array(
-  'name' => 'cron_threshold_warning',
-  'value' => 'i:172800;',
-))
-->values(array(
-  'name' => 'css_js_query_string',
-  'value' => 's:20:"mEOgby8SAkMTxRZndiw7";',
-))
-->values(array(
-  'name' => 'date:story:4:field_test_datestamp_fromto',
-  'value' => 's:4:"both";',
-))
-->values(array(
-  'name' => 'date:story:4:field_test_datestamp_multiple_from',
-  'value' => 's:0:"";',
-))
-->values(array(
-  'name' => 'date:story:4:field_test_datestamp_multiple_number',
-  'value' => 's:0:"";',
-))
-->values(array(
-  'name' => 'date:story:4:field_test_datestamp_multiple_to',
-  'value' => 's:0:"";',
-))
-->values(array(
-  'name' => 'date:story:4:field_test_datestamp_show_repeat_rule',
-  'value' => 's:4:"show";',
-))
-->values(array(
-  'name' => 'date:story:4:field_test_datetime_fromto',
-  'value' => 's:4:"both";',
-))
-->values(array(
-  'name' => 'date:story:4:field_test_datetime_multiple_from',
-  'value' => 's:0:"";',
-))
-->values(array(
-  'name' => 'date:story:4:field_test_datetime_multiple_number',
-  'value' => 's:0:"";',
-))
-->values(array(
-  'name' => 'date:story:4:field_test_datetime_multiple_to',
-  'value' => 's:0:"";',
-))
-->values(array(
-  'name' => 'date:story:4:field_test_datetime_show_repeat_rule',
-  'value' => 's:4:"show";',
-))
-->values(array(
-  'name' => 'date:story:4:field_test_date_fromto',
-  'value' => 's:4:"both";',
-))
-->values(array(
-  'name' => 'date:story:4:field_test_date_multiple_from',
-  'value' => 's:0:"";',
-))
-->values(array(
-  'name' => 'date:story:4:field_test_date_multiple_number',
-  'value' => 's:0:"";',
-))
-->values(array(
-  'name' => 'date:story:4:field_test_date_multiple_to',
-  'value' => 's:0:"";',
-))
-->values(array(
-  'name' => 'date:story:4:field_test_date_show_repeat_rule',
-  'value' => 's:4:"show";',
-))
-->values(array(
-  'name' => 'date:story:5:field_test_datestamp_fromto',
-  'value' => 's:4:"both";',
-))
-->values(array(
-  'name' => 'date:story:5:field_test_datestamp_multiple_from',
-  'value' => 's:0:"";',
-))
-->values(array(
-  'name' => 'date:story:5:field_test_datestamp_multiple_number',
-  'value' => 's:0:"";',
-))
-->values(array(
-  'name' => 'date:story:5:field_test_datestamp_multiple_to',
-  'value' => 's:0:"";',
-))
-->values(array(
-  'name' => 'date:story:5:field_test_datestamp_show_repeat_rule',
-  'value' => 's:4:"show";',
-))
-->values(array(
-  'name' => 'date:story:5:field_test_datetime_fromto',
-  'value' => 's:4:"both";',
-))
-->values(array(
-  'name' => 'date:story:5:field_test_datetime_multiple_from',
-  'value' => 's:0:"";',
-))
-->values(array(
-  'name' => 'date:story:5:field_test_datetime_multiple_number',
-  'value' => 's:0:"";',
-))
-->values(array(
-  'name' => 'date:story:5:field_test_datetime_multiple_to',
-  'value' => 's:0:"";',
-))
-->values(array(
-  'name' => 'date:story:5:field_test_datetime_show_repeat_rule',
-  'value' => 's:4:"show";',
-))
-->values(array(
-  'name' => 'date:story:5:field_test_date_fromto',
-  'value' => 's:4:"both";',
-))
-->values(array(
-  'name' => 'date:story:5:field_test_date_multiple_from',
-  'value' => 's:0:"";',
-))
-->values(array(
-  'name' => 'date:story:5:field_test_date_multiple_number',
-  'value' => 's:0:"";',
-))
-->values(array(
-  'name' => 'date:story:5:field_test_date_multiple_to',
-  'value' => 's:0:"";',
-))
-->values(array(
-  'name' => 'date:story:5:field_test_date_show_repeat_rule',
-  'value' => 's:4:"show";',
-))
-->values(array(
-  'name' => 'date:story:full:field_test_datestamp_fromto',
-  'value' => 's:4:"both";',
-))
-->values(array(
-  'name' => 'date:story:full:field_test_datestamp_multiple_from',
-  'value' => 's:0:"";',
-))
-->values(array(
-  'name' => 'date:story:full:field_test_datestamp_multiple_number',
-  'value' => 's:0:"";',
-))
-->values(array(
-  'name' => 'date:story:full:field_test_datestamp_multiple_to',
-  'value' => 's:0:"";',
-))
-->values(array(
-  'name' => 'date:story:full:field_test_datestamp_show_repeat_rule',
-  'value' => 's:4:"show";',
-))
-->values(array(
-  'name' => 'date:story:full:field_test_datetime_fromto',
-  'value' => 's:4:"both";',
-))
-->values(array(
-  'name' => 'date:story:full:field_test_datetime_multiple_from',
-  'value' => 's:0:"";',
-))
-->values(array(
-  'name' => 'date:story:full:field_test_datetime_multiple_number',
-  'value' => 's:0:"";',
-))
-->values(array(
-  'name' => 'date:story:full:field_test_datetime_multiple_to',
-  'value' => 's:0:"";',
-))
-->values(array(
-  'name' => 'date:story:full:field_test_datetime_show_repeat_rule',
-  'value' => 's:4:"show";',
-))
-->values(array(
-  'name' => 'date:story:full:field_test_date_fromto',
-  'value' => 's:4:"both";',
-))
-->values(array(
-  'name' => 'date:story:full:field_test_date_multiple_from',
-  'value' => 's:0:"";',
-))
-->values(array(
-  'name' => 'date:story:full:field_test_date_multiple_number',
-  'value' => 's:0:"";',
-))
-->values(array(
-  'name' => 'date:story:full:field_test_date_multiple_to',
-  'value' => 's:0:"";',
-))
-->values(array(
-  'name' => 'date:story:full:field_test_date_show_repeat_rule',
-  'value' => 's:4:"show";',
-))
-->values(array(
-  'name' => 'date:story:teaser:field_test_datestamp_fromto',
-  'value' => 's:4:"both";',
-))
-->values(array(
-  'name' => 'date:story:teaser:field_test_datestamp_multiple_from',
-  'value' => 's:0:"";',
-))
-->values(array(
-  'name' => 'date:story:teaser:field_test_datestamp_multiple_number',
-  'value' => 's:0:"";',
-))
-->values(array(
-  'name' => 'date:story:teaser:field_test_datestamp_multiple_to',
-  'value' => 's:0:"";',
-))
-->values(array(
-  'name' => 'date:story:teaser:field_test_datestamp_show_repeat_rule',
-  'value' => 's:4:"show";',
-))
-->values(array(
-  'name' => 'date:story:teaser:field_test_datetime_fromto',
-  'value' => 's:4:"both";',
-))
-->values(array(
-  'name' => 'date:story:teaser:field_test_datetime_multiple_from',
-  'value' => 's:0:"";',
-))
-->values(array(
-  'name' => 'date:story:teaser:field_test_datetime_multiple_number',
-  'value' => 's:0:"";',
-))
-->values(array(
-  'name' => 'date:story:teaser:field_test_datetime_multiple_to',
-  'value' => 's:0:"";',
-))
-->values(array(
-  'name' => 'date:story:teaser:field_test_datetime_show_repeat_rule',
-  'value' => 's:4:"show";',
-))
-->values(array(
-  'name' => 'date:story:teaser:field_test_date_fromto',
-  'value' => 's:4:"both";',
-))
-->values(array(
-  'name' => 'date:story:teaser:field_test_date_multiple_from',
-  'value' => 's:0:"";',
-))
-->values(array(
-  'name' => 'date:story:teaser:field_test_date_multiple_number',
-  'value' => 's:0:"";',
-))
-->values(array(
-  'name' => 'date:story:teaser:field_test_date_multiple_to',
-  'value' => 's:0:"";',
-))
-->values(array(
-  'name' => 'date:story:teaser:field_test_date_show_repeat_rule',
-  'value' => 's:4:"show";',
-))
-->values(array(
-  'name' => 'date_api_version',
-  'value' => 's:3:"5.2";',
-))
-->values(array(
-  'name' => 'date_default_timezone',
-  'value' => 's:4:"3600";',
-))
-->values(array(
-  'name' => 'date_first_day',
-  'value' => 's:1:"4";',
-))
-->values(array(
-  'name' => 'date_format_long',
-  'value' => 's:24:"\L\O\N\G l, F j, Y - H:i";',
-))
-->values(array(
-  'name' => 'date_format_medium',
-  'value' => 's:27:"\M\E\D\I\U\M D, m/d/Y - H:i";',
-))
-->values(array(
-  'name' => 'date_format_short',
-  'value' => 's:22:"\S\H\O\R\T m/d/Y - H:i";',
-))
-->values(array(
-  'name' => 'dblog_row_limit',
-  'value' => 'i:10000;',
-))
-->values(array(
-  'name' => 'drupal_badge_color',
-  'value' => 's:12:"powered-blue";',
-))
-->values(array(
-  'name' => 'drupal_badge_size',
-  'value' => 's:5:"80x15";',
-))
-->values(array(
-  'name' => 'drupal_http_request_fails',
-  'value' => 'b:0;',
-))
-->values(array(
-  'name' => 'drupal_private_key',
-  'value' => 's:43:"6bTz0JLHTM1R1c7VtbZtbio47JygBoNuGuzS5G0JYWs";',
-))
-->values(array(
-  'name' => 'error_level',
-  'value' => 'i:1;',
-))
-->values(array(
-  'name' => 'event_nodeapi_article',
-  'value' => 's:5:"never";',
-))
-->values(array(
-  'name' => 'event_nodeapi_company',
-  'value' => 's:5:"never";',
-))
-->values(array(
-  'name' => 'event_nodeapi_employee',
-  'value' => 's:5:"never";',
-))
-->values(array(
-  'name' => 'event_nodeapi_event',
-  'value' => 's:3:"all";',
-))
-->values(array(
-  'name' => 'event_nodeapi_sponsor',
-  'value' => 's:5:"never";',
-))
-->values(array(
-  'name' => 'event_timezone_display',
-  'value' => 's:5:"event";',
-))
-->values(array(
-  'name' => 'feed_default_items',
-  'value' => 'i:10;',
-))
-->values(array(
-  'name' => 'feed_item_length',
-  'value' => 's:5:"title";',
-))
-->values(array(
-  'name' => 'file_description_length',
-  'value' => 'i:128;',
-))
-->values(array(
-  'name' => 'file_description_type',
-  'value' => 's:9:"textfield";',
-))
-->values(array(
-  'name' => 'file_directory_path',
-  'value' => 's:19:"sites/default/files";',
-))
-->values(array(
-  'name' => 'file_directory_temp',
-  'value' => 's:4:"/tmp";',
-))
-->values(array(
-  'name' => 'file_downloads',
-  'value' => 's:1:"1";',
-))
-->values(array(
-  'name' => 'file_icon_directory',
-  'value' => 's:25:"sites/default/files/icons";',
-))
-->values(array(
-  'name' => 'filter_allowed_protocols',
-  'value' => 'a:13:{i:0;s:4:"http";i:1;s:5:"https";i:2;s:3:"ftp";i:3;s:4:"news";i:4;s:4:"nntp";i:5;s:3:"tel";i:6;s:6:"telnet";i:7;s:6:"mailto";i:8;s:3:"irc";i:9;s:3:"ssh";i:10;s:4:"sftp";i:11;s:6:"webcal";i:12;s:4:"rtsp";}',
-))
-->values(array(
-  'name' => 'filter_html_1',
-  'value' => 'i:1;',
-))
-->values(array(
-  'name' => 'filter_html_help_1',
-  'value' => 'i:1;',
-))
-->values(array(
-  'name' => 'filter_html_nofollow_1',
-  'value' => 'i:0;',
-))
-->values(array(
-  'name' => 'filter_url_length_1',
-  'value' => 's:2:"72";',
-))
-->values(array(
-  'name' => 'form_build_id_article',
-  'value' => 's:48:"form-t2zKJflpBD4rpYoGQH33ckjjWAYdo5lF3Hl1O_YnWyE";',
-))
-->values(array(
-  'name' => 'form_build_id_company',
-  'value' => 's:48:"form-jFw2agRukPxjG5dG-N6joZLyoxXmCoxTzua0HUciqK0";',
-))
-->values(array(
-  'name' => 'form_build_id_employee',
-  'value' => 's:48:"form-q42bJnZxCCHxcx5FjxjEOd8OaEAg9wnK8nX1hBjtT4M";',
-))
-->values(array(
-  'name' => 'form_build_id_sponsor',
-  'value' => 's:48:"form-1iWzOEGgEeoeGb7ywYWz4iUNal77IHPDVwqYj-a7ezQ";',
-))
-->values(array(
-  'name' => 'forum_block_num_0',
-  'value' => 's:1:"3";',
-))
-->values(array(
-  'name' => 'forum_block_num_1',
-  'value' => 's:1:"4";',
-))
-->values(array(
-  'name' => 'forum_containers',
-  'value' => 'a:1:{i:0;s:1:"9";}',
-))
-->values(array(
-  'name' => 'forum_hot_topic',
-  'value' => 's:2:"15";',
-))
-->values(array(
-  'name' => 'forum_nav_vocabulary',
-  'value' => 's:1:"7";',
-))
-->values(array(
-  'name' => 'forum_order',
-  'value' => 's:1:"1";',
-))
-->values(array(
-  'name' => 'forum_per_page',
-  'value' => 's:2:"25";',
-))
-->values(array(
-  'name' => 'i18nstrings_allowed_formats',
-  'value' => 'a:2:{i:0;i:1;i:1;i:2;}',
-))
-->values(array(
-  'name' => 'i18nsync_nodeapi_employee',
-  'value' => 'a:1:{i:0;s:10:"field_sync";}',
-))
-->values(array(
-  'name' => 'i18n_lock_node_article',
-  'value' => 'i:1;',
-))
-->values(array(
-  'name' => 'i18n_lock_node_employee',
-  'value' => 'i:0;',
-))
-->values(array(
-  'name' => 'i18n_lock_node_sponsor',
-  'value' => 'i:0;',
-))
-->values(array(
-  'name' => 'i18n_newnode_current_employee',
-  'value' => 'i:0;',
-))
-->values(array(
-  'name' => 'i18n_newnode_current_sponsor',
-  'value' => 'i:0;',
-))
-->values(array(
-  'name' => 'i18n_required_node_employee',
-  'value' => 'i:0;',
-))
-->values(array(
-  'name' => 'i18n_required_node_sponsor',
-  'value' => 'i:0;',
-))
-->values(array(
-  'name' => 'image_jpeg_quality',
-  'value' => 'i:75;',
-))
-->values(array(
-  'name' => 'image_toolkit',
-  'value' => 's:2:"gd";',
-))
-->values(array(
-  'name' => 'javascript_parsed',
-  'value' => 'a:0:{}',
-))
-->values(array(
-  'name' => 'menu_default_node_menu',
-  'value' => 's:10:"navigation";',
-))
-->values(array(
-  'name' => 'menu_expanded',
-  'value' => 'a:0:{}',
-))
-->values(array(
-  'name' => 'menu_masks',
-  'value' => 'a:19:{i:0;i:127;i:1;i:63;i:2;i:62;i:3;i:61;i:4;i:59;i:5;i:31;i:6;i:30;i:7;i:29;i:8;i:24;i:9;i:21;i:10;i:15;i:11;i:14;i:12;i:11;i:13;i:7;i:14;i:6;i:15;i:5;i:16;i:3;i:17;i:2;i:18;i:1;}',
-))
-->values(array(
-  'name' => 'menu_override_parent_selector',
-  'value' => 'b:0;',
-))
-->values(array(
-  'name' => 'minimum_word_size',
-  'value' => 's:1:"3";',
-))
-->values(array(
-  'name' => 'node_admin_theme',
-  'value' => 'i:0;',
-))
-->values(array(
-  'name' => 'node_cron_comments_scale',
-  'value' => 'd:0.33333333333333331;',
-))
-->values(array(
-  'name' => 'node_cron_last',
-  'value' => 's:10:"1501955771";',
-))
-->values(array(
-  'name' => 'node_cron_views_scale',
-  'value' => 'd:0.20000000000000001;',
-))
-->values(array(
-  'name' => 'node_options_article',
-  'value' => 'a:1:{i:0;s:7:"promote";}',
-))
-->values(array(
-  'name' => 'node_options_book',
-  'value' => 'a:1:{i:0;s:6:"status";}',
-))
-->values(array(
-  'name' => 'node_options_company',
-  'value' => 'a:2:{i:0;s:6:"status";i:1;s:7:"promote";}',
-))
-->values(array(
-  'name' => 'node_options_employee',
-  'value' => 'a:2:{i:0;s:6:"status";i:1;s:7:"promote";}',
-))
-->values(array(
-  'name' => 'node_options_forum',
-  'value' => 'a:1:{i:0;s:6:"status";}',
-))
-->values(array(
-  'name' => 'node_options_sponsor',
-  'value' => 'a:2:{i:0;s:6:"status";i:1;s:7:"promote";}',
-))
-->values(array(
-  'name' => 'node_options_test_event',
-  'value' => 'a:2:{i:0;s:6:"sticky";i:1;s:8:"revision";}',
-))
-->values(array(
-  'name' => 'node_options_test_page',
-  'value' => 'a:3:{i:0;s:6:"status";i:1;s:7:"promote";i:2;s:6:"sticky";}',
-))
-->values(array(
-  'name' => 'node_options_test_planet',
-  'value' => 'a:2:{i:0;s:6:"sticky";i:1;s:8:"revision";}',
-))
-->values(array(
-  'name' => 'node_options_test_story',
-  'value' => 'a:2:{i:0;s:6:"status";i:1;s:7:"promote";}',
-))
-->values(array(
-  'name' => 'node_preview',
-  'value' => 'i:0;',
-))
-->values(array(
-  'name' => 'node_rank_comments',
-  'value' => 's:1:"5";',
-))
-->values(array(
-  'name' => 'node_rank_promote',
-  'value' => 's:1:"0";',
-))
-->values(array(
-  'name' => 'node_rank_recent',
-  'value' => 's:1:"0";',
-))
-->values(array(
-  'name' => 'node_rank_relevance',
-  'value' => 's:1:"2";',
-))
-->values(array(
-  'name' => 'node_rank_sticky',
-  'value' => 's:1:"8";',
-))
-->values(array(
-  'name' => 'node_rank_views',
-  'value' => 's:1:"1";',
-))
-->values(array(
-  'name' => 'overlap_cjk',
-  'value' => 'i:1;',
-))
-->values(array(
-  'name' => 'page_compression',
-  'value' => 's:1:"1";',
-))
-->values(array(
-  'name' => 'preprocess_css',
-  'value' => 'i:0;',
-))
-->values(array(
-  'name' => 'preprocess_js',
-  'value' => 'i:0;',
-))
-->values(array(
-  'name' => 'search_cron_limit',
-  'value' => 's:3:"100";',
-))
-->values(array(
-  'name' => 'simpletest_clear_results',
-  'value' => 'b:1;',
-))
-->values(array(
-  'name' => 'simpletest_httpauth_method',
-  'value' => 'i:1;',
-))
-->values(array(
-  'name' => 'simpletest_httpauth_password',
-  'value' => 'N;',
-))
-->values(array(
-  'name' => 'simpletest_httpauth_username',
-  'value' => 'N;',
-))
-->values(array(
-  'name' => 'simpletest_verbose',
-  'value' => 'b:1;',
-))
-->values(array(
-  'name' => 'site_403',
-  'value' => 's:4:"user";',
-))
-->values(array(
-  'name' => 'site_404',
-  'value' => 's:14:"page-not-found";',
-))
-->values(array(
-  'name' => 'site_frontpage',
-  'value' => 's:4:"node";',
-))
-->values(array(
-  'name' => 'site_mail',
-  'value' => 's:21:"site_mail@example.com";',
-))
-->values(array(
-  'name' => 'site_name',
-  'value' => 's:9:"site_name";',
-))
-->values(array(
-  'name' => 'site_offline',
-  'value' => 'i:0;',
-))
-->values(array(
-  'name' => 'site_offline_message',
-  'value' => 's:94:"Drupal is currently under maintenance. We should be back shortly. Thank you for your patience.";',
-))
-->values(array(
-  'name' => 'site_slogan',
-  'value' => 's:13:"Migrate rocks";',
-))
-->values(array(
-  'name' => 'syslog_facility',
-  'value' => 'i:128;',
-))
-->values(array(
-  'name' => 'syslog_identity',
-  'value' => 's:6:"drupal";',
-))
-->values(array(
-  'name' => 'taxonomy_override_selector',
-  'value' => 'b:0;',
-))
-->values(array(
-  'name' => 'taxonomy_terms_per_page_admin',
-  'value' => 'i:100;',
-))
-->values(array(
-  'name' => 'teaser_length',
-  'value' => 'i:456;',
-))
-->values(array(
-  'name' => 'theme_default',
-  'value' => 's:7:"garland";',
-))
-->values(array(
-  'name' => 'theme_settings',
-  'value' => 'a:22:{s:11:"toggle_logo";i:1;s:11:"toggle_name";i:1;s:13:"toggle_slogan";i:0;s:14:"toggle_mission";i:1;s:24:"toggle_node_user_picture";i:0;s:27:"toggle_comment_user_picture";i:0;s:13:"toggle_search";i:0;s:14:"toggle_favicon";i:1;s:20:"toggle_primary_links";i:1;s:22:"toggle_secondary_links";i:1;s:21:"toggle_node_info_test";i:1;s:26:"toggle_node_info_something";i:1;s:12:"default_logo";i:1;s:9:"logo_path";s:0:"";s:11:"logo_upload";s:0:"";s:15:"default_favicon";i:1;s:12:"favicon_path";s:0:"";s:14:"favicon_upload";s:0:"";s:26:"toggle_node_info_test_page";i:1;s:27:"toggle_node_info_test_story";i:1;s:27:"toggle_node_info_test_event";i:1;s:28:"toggle_node_info_test_planet";i:1;}',
-))
-->values(array(
-  'name' => 'update_max_fetch_attempts',
-  'value' => 'i:2;',
-))
-->values(array(
-  'name' => 'upload_article',
-  'value' => 'b:0;',
-))
-->values(array(
-  'name' => 'upload_company',
-  'value' => 's:1:"1";',
-))
-->values(array(
-  'name' => 'upload_employee',
-  'value' => 'b:0;',
-))
-->values(array(
-  'name' => 'upload_event',
-  'value' => 'b:0;',
-))
-->values(array(
-  'name' => 'upload_sponsor',
-  'value' => 'b:0;',
-))
-->values(array(
-  'name' => 'upload_story',
-  'value' => 'b:1;',
-))
-->values(array(
-  'name' => 'upload_test_event',
-  'value' => 'b:0;',
-))
-->values(array(
-  'name' => 'upload_test_page',
-  'value' => 'b:0;',
-))
-->values(array(
-  'name' => 'upload_test_planet',
-  'value' => 'b:0;',
-))
-->values(array(
-  'name' => 'upload_test_story',
-  'value' => 'b:0;',
-))
-->values(array(
-  'name' => 'user_block_max_list_count',
-  'value' => 's:2:"10";',
-))
-->values(array(
-  'name' => 'user_block_seconds_online',
-  'value' => 's:3:"900";',
-))
-->values(array(
-  'name' => 'user_block_whois_new_count',
-  'value' => 's:1:"5";',
-))
-->values(array(
-  'name' => 'user_email_verification',
-  'value' => 'i:0;',
-))
-->values(array(
-  'name' => 'user_mail_password_reset_body',
-  'value' => "s:409:\"!username,\n\nA request to reset the password for your account has been made at !site.\n\nYou may now log in to !uri_brief by clicking on this link or copying and pasting it in your browser:\n\n!login_url\n\nThis is a one-time login, so it can be used only once. It expires after one day and nothing will happen if it's not used.\n\nAfter logging in, you will be redirected to !edit_uri so you can change your password.\";",
-))
-->values(array(
-  'name' => 'user_mail_password_reset_subject',
-  'value' => 's:52:"Replacement login information for !username at !site";',
-))
-->values(array(
-  'name' => 'user_mail_register_admin_created_body',
-  'value' => "s:452:\"!username,\n\nA site administrator at !site has created an account for you. You may now log in to !login_uri using the following username and password:\n\nusername: !username\npassword: !password\n\nYou may also log in by clicking on this link or copying and pasting it in your browser:\n\n!login_url\n\nThis is a one-time login, so it can be used only once.\n\nAfter logging in, you will be redirected to !edit_uri so you can change your password.\n\n\n--  !site team\";",
-))
-->values(array(
-  'name' => 'user_mail_register_admin_created_subject',
-  'value' => 's:52:"An administrator created an account for you at !site";',
-))
-->values(array(
-  'name' => 'user_mail_register_no_approval_required_body',
-  'value' => "s:426:\"!username,\n\nThank you for registering at !site. You may now log in to !login_uri using the following username and password:\n\nusername: !username\npassword: !password\n\nYou may also log in by clicking on this link or copying and pasting it in your browser:\n\n!login_url\n\nThis is a one-time login, so it can be used only once.\n\nAfter logging in, you will be redirected to !edit_uri so you can change your password.\n\n\n--  !site team\";",
-))
-->values(array(
-  'name' => 'user_mail_register_no_approval_required_subject',
-  'value' => 's:38:"Account details for !username at !site";',
-))
-->values(array(
-  'name' => 'user_mail_register_pending_approval_body',
-  'value' => "s:267:\"!username,\n\nThank you for registering at !site. 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\n--  !site team\";",
-))
-->values(array(
-  'name' => 'user_mail_register_pending_approval_subject',
-  'value' => 's:63:"Account details for !username at !site (pending admin approval)";',
-))
-->values(array(
-  'name' => 'user_mail_status_activated_body',
-  'value' => "s:419:\"!username,\n\nYour account at !site has been activated.\n\nYou may now log in by clicking on this link or copying and pasting it in your browser:\n\n!login_url\n\nThis is a one-time login, so it can be used only once.\n\nAfter logging in, you will be redirected to !edit_uri so you can change your password.\n\nOnce you have set your own password, you will be able to log in to !login_uri in the future using:\n\nusername: !username\n\";",
-))
-->values(array(
-  'name' => 'user_mail_status_activated_notify',
-  'value' => 'i:0;',
-))
-->values(array(
-  'name' => 'user_mail_status_activated_subject',
-  'value' => 's:49:"Account details for !username at !site (approved)";',
-))
-->values(array(
-  'name' => 'user_mail_status_blocked_body',
-  'value' => "s:51:\"!username,\n\nYour account on !site has been blocked.\";",
-))
-->values(array(
-  'name' => 'user_mail_status_blocked_notify',
-  'value' => 'i:1;',
-))
-->values(array(
-  'name' => 'user_mail_status_blocked_subject',
-  'value' => 's:48:"Account details for !username at !site (blocked)";',
-))
-->values(array(
-  'name' => 'user_mail_status_deleted_body',
-  'value' => "s:51:\"!username,\n\nYour account on !site has been deleted.\";",
-))
-->values(array(
-  'name' => 'user_mail_status_deleted_subject',
-  'value' => 's:48:"Account details for !username at !site (deleted)";',
-))
-->values(array(
-  'name' => 'user_register',
-  'value' => 'i:0;',
-))
-->values(array(
-  'name' => 'user_signatures',
-  'value' => 's:1:"1";',
-))
-->execute();
-$connection->schema()->createTable('vocabulary', array(
-  'fields' => array(
-    'vid' => array(
-      'type' => 'serial',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-    'name' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'description' => array(
-      'type' => 'text',
-      'not null' => FALSE,
-      'size' => 'normal',
-    ),
-    'help' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'relations' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-    'hierarchy' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-    'multiple' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-    'required' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-    'tags' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-    'module' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'weight' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-  ),
-  'primary key' => array(
-    'vid',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->insert('vocabulary')
-->fields(array(
-  'vid',
-  'name',
-  'description',
-  'help',
-  'relations',
-  'hierarchy',
-  'multiple',
-  'required',
-  'tags',
-  'module',
-  'weight',
-))
-->values(array(
-  'vid' => '7',
-  'name' => 'Forums',
-  'description' => '',
-  'help' => '',
-  'relations' => '1',
-  'hierarchy' => '1',
-  'multiple' => '0',
-  'required' => '0',
-  'tags' => '0',
-  'module' => 'taxonomy',
-  'weight' => '0',
-))
-->values(array(
-  'vid' => '8',
-  'name' => 'Trees',
-  'description' => 'A list of trees.',
-  'help' => '',
-  'relations' => '1',
-  'hierarchy' => '0',
-  'multiple' => '0',
-  'required' => '0',
-  'tags' => '0',
-  'module' => 'taxonomy',
-  'weight' => '0',
-))
-->values(array(
-  'vid' => '9',
-  'name' => 'FreeTags',
-  'description' => '',
-  'help' => '',
-  'relations' => '1',
-  'hierarchy' => '0',
-  'multiple' => '0',
-  'required' => '0',
-  'tags' => '1',
-  'module' => 'taxonomy',
-  'weight' => '0',
-))
-->execute();
-$connection->schema()->createTable('vocabulary_node_types', array(
-  'fields' => array(
-    'vid' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-    'type' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '32',
-      'default' => '',
-    ),
-  ),
-  'primary key' => array(
-    'vid',
-    'type',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->insert('vocabulary_node_types')
-->fields(array(
-  'vid',
-  'type',
-))
-->values(array(
-  'vid' => '7',
-  'type' => 'forum',
-))
-->values(array(
-  'vid' => '8',
-  'type' => 'forum',
-))
-->values(array(
-  'vid' => '9',
-  'type' => 'forum',
-))
-->execute();
-$connection->schema()->createTable('watchdog', array(
-  'fields' => array(
-    'wid' => array(
-      'type' => 'serial',
-      'not null' => TRUE,
-      'size' => 'normal',
-    ),
-    'uid' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'type' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '16',
-      'default' => '',
-    ),
-    'message' => array(
-      'type' => 'text',
-      'not null' => TRUE,
-      'size' => 'normal',
-    ),
-    'variables' => array(
-      'type' => 'text',
-      'not null' => TRUE,
-      'size' => 'normal',
-    ),
-    'severity' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-    'link' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'location' => array(
-      'type' => 'text',
-      'not null' => TRUE,
-      'size' => 'normal',
-    ),
-    'referer' => array(
-      'type' => 'text',
-      'not null' => FALSE,
-      'size' => 'normal',
-    ),
-    'hostname' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '128',
-      'default' => '',
-    ),
-    'timestamp' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-  ),
-  'primary key' => array(
-    'wid',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-// Reset the SQL mode.
-if ($connection->databaseType() === 'mysql') {
-  $connection->query("SET sql_mode = '$sql_mode'");
-}
diff --git a/core/modules/forum/tests/fixtures/drupal7.php b/core/modules/forum/tests/fixtures/drupal7.php
deleted file mode 100644
index 015d9c406876..000000000000
--- a/core/modules/forum/tests/fixtures/drupal7.php
+++ /dev/null
@@ -1,30598 +0,0 @@
-<?php
-// phpcs:ignoreFile
-/**
- * @file
- * A database agnostic dump for testing purposes.
- *
- * This file was generated by the Drupal 10.1.0-dev db-tools.php script.
- */
-
-use Drupal\Core\Database\Database;
-
-$connection = Database::getConnection();
-// Ensure any tables with a serial column with a value of 0 are created as
-// expected.
-if ($connection->databaseType() === 'mysql') {
-  $sql_mode = $connection->query("SELECT @@sql_mode;")->fetchField();
-  $connection->query("SET sql_mode = '$sql_mode,NO_AUTO_VALUE_ON_ZERO'");
-}
-
-$connection->schema()->createTable('actions', array(
-  'fields' => array(
-    'aid' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '0',
-    ),
-    'type' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '32',
-      'default' => '',
-    ),
-    'callback' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'parameters' => array(
-      'type' => 'blob',
-      'not null' => TRUE,
-      'size' => 'normal',
-    ),
-    'label' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '0',
-    ),
-  ),
-  'primary key' => array(
-    'aid',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->insert('actions')
-->fields(array(
-  'aid',
-  'type',
-  'callback',
-  'parameters',
-  'label',
-))
-->values(array(
-  'aid' => '2',
-  'type' => 'comment',
-  'callback' => 'comment_unpublish_by_keyword_action',
-  'parameters' => 'a:1:{s:8:"keywords";a:1:{i:0;s:6:"drupal";}}',
-  'label' => 'Unpublish comment containing keyword(s)',
-))
-->values(array(
-  'aid' => '3',
-  'type' => 'node',
-  'callback' => 'node_assign_owner_action',
-  'parameters' => 'a:1:{s:9:"owner_uid";s:1:"2";}',
-  'label' => 'Change the author of content',
-))
-->values(array(
-  'aid' => '4',
-  'type' => 'node',
-  'callback' => 'node_unpublish_by_keyword_action',
-  'parameters' => 'a:1:{s:8:"keywords";a:1:{i:0;s:6:"drupal";}}',
-  'label' => 'Unpublish content containing keyword(s)',
-))
-->values(array(
-  'aid' => '5',
-  'type' => 'system',
-  'callback' => 'system_message_action',
-  'parameters' => 'a:1:{s:7:"message";s:21:"Drupal migration test";}',
-  'label' => 'Display a message to the user',
-))
-->values(array(
-  'aid' => '6',
-  'type' => 'system',
-  'callback' => 'system_send_email_action',
-  'parameters' => 'a:3:{s:9:"recipient";s:16:"test@example.com";s:7:"subject";s:21:"Drupal migration test";s:7:"message";s:21:"Drupal migration test";}',
-  'label' => 'Send e-mail',
-))
-->values(array(
-  'aid' => '7',
-  'type' => 'system',
-  'callback' => 'system_goto_action',
-  'parameters' => 'a:1:{s:3:"url";s:22:"https://www.drupal.org";}',
-  'label' => 'Redirect to URL',
-))
-->values(array(
-  'aid' => 'comment_publish_action',
-  'type' => 'comment',
-  'callback' => 'comment_publish_action',
-  'parameters' => '',
-  'label' => 'Publish comment',
-))
-->values(array(
-  'aid' => 'comment_save_action',
-  'type' => 'comment',
-  'callback' => 'comment_save_action',
-  'parameters' => '',
-  'label' => 'Save comment',
-))
-->values(array(
-  'aid' => 'comment_unpublish_action',
-  'type' => 'comment',
-  'callback' => 'comment_unpublish_action',
-  'parameters' => '',
-  'label' => 'Unpublish comment',
-))
-->values(array(
-  'aid' => 'node_make_sticky_action',
-  'type' => 'node',
-  'callback' => 'node_make_sticky_action',
-  'parameters' => '',
-  'label' => 'Make content sticky',
-))
-->values(array(
-  'aid' => 'node_make_unsticky_action',
-  'type' => 'node',
-  'callback' => 'node_make_unsticky_action',
-  'parameters' => '',
-  'label' => 'Make content unsticky',
-))
-->values(array(
-  'aid' => 'node_promote_action',
-  'type' => 'node',
-  'callback' => 'node_promote_action',
-  'parameters' => '',
-  'label' => 'Promote content to front page',
-))
-->values(array(
-  'aid' => 'node_publish_action',
-  'type' => 'node',
-  'callback' => 'node_publish_action',
-  'parameters' => '',
-  'label' => 'Publish content',
-))
-->values(array(
-  'aid' => 'node_save_action',
-  'type' => 'node',
-  'callback' => 'node_save_action',
-  'parameters' => '',
-  'label' => 'Save content',
-))
-->values(array(
-  'aid' => 'node_unpromote_action',
-  'type' => 'node',
-  'callback' => 'node_unpromote_action',
-  'parameters' => '',
-  'label' => 'Remove content from front page',
-))
-->values(array(
-  'aid' => 'node_unpublish_action',
-  'type' => 'node',
-  'callback' => 'node_unpublish_action',
-  'parameters' => '',
-  'label' => 'Unpublish content',
-))
-->values(array(
-  'aid' => 'system_block_ip_action',
-  'type' => 'user',
-  'callback' => 'system_block_ip_action',
-  'parameters' => '',
-  'label' => 'Ban IP address of current user',
-))
-->values(array(
-  'aid' => 'user_block_user_action',
-  'type' => 'user',
-  'callback' => 'user_block_user_action',
-  'parameters' => '',
-  'label' => 'Block current user',
-))
-->execute();
-$connection->schema()->createTable('authmap', array(
-  'fields' => array(
-    'aid' => array(
-      'type' => 'serial',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-    'uid' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'authname' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '128',
-      'default' => '',
-    ),
-    'module' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '128',
-      'default' => '',
-    ),
-  ),
-  'primary key' => array(
-    'aid',
-  ),
-  'indexes' => array(
-    'uid_module' => array(
-      'uid',
-      'module',
-    ),
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->schema()->createTable('batch', array(
-  'fields' => array(
-    'bid' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-    'token' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '64',
-    ),
-    'timestamp' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-    ),
-    'batch' => array(
-      'type' => 'blob',
-      'not null' => FALSE,
-      'size' => 'normal',
-    ),
-  ),
-  'primary key' => array(
-    'bid',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->schema()->createTable('block', array(
-  'fields' => array(
-    'bid' => array(
-      'type' => 'serial',
-      'not null' => TRUE,
-      'size' => 'normal',
-    ),
-    'module' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '64',
-      'default' => '',
-    ),
-    'delta' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '32',
-      'default' => '0',
-    ),
-    'theme' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '64',
-      'default' => '',
-    ),
-    'status' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'weight' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'region' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '64',
-      'default' => '',
-    ),
-    'custom' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'visibility' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'pages' => array(
-      'type' => 'text',
-      'not null' => TRUE,
-      'size' => 'normal',
-    ),
-    'title' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'cache' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '1',
-    ),
-  ),
-  'primary key' => array(
-    'bid',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->insert('block')
-->fields(array(
-  'bid',
-  'module',
-  'delta',
-  'theme',
-  'status',
-  'weight',
-  'region',
-  'custom',
-  'visibility',
-  'pages',
-  'title',
-  'cache',
-))
-->values(array(
-  'bid' => '1',
-  'module' => 'system',
-  'delta' => 'main',
-  'theme' => 'bartik',
-  'status' => '1',
-  'weight' => '0',
-  'region' => 'content',
-  'custom' => '0',
-  'visibility' => '0',
-  'pages' => '',
-  'title' => '',
-  'cache' => '-1',
-))
-->values(array(
-  'bid' => '2',
-  'module' => 'search',
-  'delta' => 'form',
-  'theme' => 'bartik',
-  'status' => '1',
-  'weight' => '-1',
-  'region' => 'sidebar_first',
-  'custom' => '0',
-  'visibility' => '0',
-  'pages' => '',
-  'title' => '',
-  'cache' => '-1',
-))
-->values(array(
-  'bid' => '3',
-  'module' => 'node',
-  'delta' => 'recent',
-  'theme' => 'seven',
-  'status' => '0',
-  'weight' => '10',
-  'region' => '-1',
-  'custom' => '0',
-  'visibility' => '0',
-  'pages' => '',
-  'title' => '',
-  'cache' => '-1',
-))
-->values(array(
-  'bid' => '4',
-  'module' => 'user',
-  'delta' => 'login',
-  'theme' => 'bartik',
-  'status' => '1',
-  'weight' => '0',
-  'region' => 'sidebar_first',
-  'custom' => '0',
-  'visibility' => '0',
-  'pages' => '',
-  'title' => 'User login title',
-  'cache' => '-1',
-))
-->values(array(
-  'bid' => '5',
-  'module' => 'system',
-  'delta' => 'navigation',
-  'theme' => 'bartik',
-  'status' => '1',
-  'weight' => '0',
-  'region' => 'sidebar_first',
-  'custom' => '0',
-  'visibility' => '0',
-  'pages' => '',
-  'title' => '',
-  'cache' => '-1',
-))
-->values(array(
-  'bid' => '6',
-  'module' => 'system',
-  'delta' => 'powered-by',
-  'theme' => 'bartik',
-  'status' => '1',
-  'weight' => '10',
-  'region' => 'footer',
-  'custom' => '0',
-  'visibility' => '0',
-  'pages' => '',
-  'title' => '',
-  'cache' => '-1',
-))
-->values(array(
-  'bid' => '7',
-  'module' => 'system',
-  'delta' => 'help',
-  'theme' => 'bartik',
-  'status' => '1',
-  'weight' => '0',
-  'region' => 'help',
-  'custom' => '0',
-  'visibility' => '0',
-  'pages' => '',
-  'title' => '',
-  'cache' => '-1',
-))
-->values(array(
-  'bid' => '8',
-  'module' => 'system',
-  'delta' => 'main',
-  'theme' => 'seven',
-  'status' => '1',
-  'weight' => '0',
-  'region' => 'content',
-  'custom' => '0',
-  'visibility' => '0',
-  'pages' => '',
-  'title' => '',
-  'cache' => '-1',
-))
-->values(array(
-  'bid' => '9',
-  'module' => 'system',
-  'delta' => 'help',
-  'theme' => 'seven',
-  'status' => '1',
-  'weight' => '0',
-  'region' => 'help',
-  'custom' => '0',
-  'visibility' => '0',
-  'pages' => '',
-  'title' => '',
-  'cache' => '-1',
-))
-->values(array(
-  'bid' => '10',
-  'module' => 'user',
-  'delta' => 'login',
-  'theme' => 'seven',
-  'status' => '1',
-  'weight' => '10',
-  'region' => 'content',
-  'custom' => '0',
-  'visibility' => '0',
-  'pages' => '',
-  'title' => 'User login title',
-  'cache' => '-1',
-))
-->values(array(
-  'bid' => '11',
-  'module' => 'user',
-  'delta' => 'new',
-  'theme' => 'seven',
-  'status' => '0',
-  'weight' => '0',
-  'region' => '-1',
-  'custom' => '0',
-  'visibility' => '0',
-  'pages' => '',
-  'title' => '',
-  'cache' => '-1',
-))
-->values(array(
-  'bid' => '12',
-  'module' => 'search',
-  'delta' => 'form',
-  'theme' => 'seven',
-  'status' => '0',
-  'weight' => '-10',
-  'region' => '-1',
-  'custom' => '0',
-  'visibility' => '0',
-  'pages' => '',
-  'title' => '',
-  'cache' => '-1',
-))
-->values(array(
-  'bid' => '13',
-  'module' => 'comment',
-  'delta' => 'recent',
-  'theme' => 'bartik',
-  'status' => '0',
-  'weight' => '0',
-  'region' => '-1',
-  'custom' => '0',
-  'visibility' => '0',
-  'pages' => '',
-  'title' => '',
-  'cache' => '1',
-))
-->values(array(
-  'bid' => '14',
-  'module' => 'node',
-  'delta' => 'syndicate',
-  'theme' => 'bartik',
-  'status' => '0',
-  'weight' => '0',
-  'region' => '-1',
-  'custom' => '0',
-  'visibility' => '0',
-  'pages' => '',
-  'title' => '',
-  'cache' => '-1',
-))
-->values(array(
-  'bid' => '15',
-  'module' => 'node',
-  'delta' => 'recent',
-  'theme' => 'bartik',
-  'status' => '0',
-  'weight' => '0',
-  'region' => '-1',
-  'custom' => '0',
-  'visibility' => '0',
-  'pages' => '',
-  'title' => '',
-  'cache' => '1',
-))
-->values(array(
-  'bid' => '17',
-  'module' => 'system',
-  'delta' => 'management',
-  'theme' => 'bartik',
-  'status' => '0',
-  'weight' => '0',
-  'region' => '-1',
-  'custom' => '0',
-  'visibility' => '0',
-  'pages' => '',
-  'title' => '',
-  'cache' => '-1',
-))
-->values(array(
-  'bid' => '18',
-  'module' => 'system',
-  'delta' => 'user-menu',
-  'theme' => 'bartik',
-  'status' => '0',
-  'weight' => '0',
-  'region' => '-1',
-  'custom' => '0',
-  'visibility' => '0',
-  'pages' => '',
-  'title' => '',
-  'cache' => '-1',
-))
-->values(array(
-  'bid' => '19',
-  'module' => 'system',
-  'delta' => 'main-menu',
-  'theme' => 'bartik',
-  'status' => '0',
-  'weight' => '0',
-  'region' => '-1',
-  'custom' => '0',
-  'visibility' => '0',
-  'pages' => '',
-  'title' => '',
-  'cache' => '-1',
-))
-->values(array(
-  'bid' => '20',
-  'module' => 'user',
-  'delta' => 'new',
-  'theme' => 'bartik',
-  'status' => '0',
-  'weight' => '0',
-  'region' => '-1',
-  'custom' => '0',
-  'visibility' => '0',
-  'pages' => '',
-  'title' => '',
-  'cache' => '1',
-))
-->values(array(
-  'bid' => '21',
-  'module' => 'user',
-  'delta' => 'online',
-  'theme' => 'bartik',
-  'status' => '0',
-  'weight' => '0',
-  'region' => '-1',
-  'custom' => '0',
-  'visibility' => '0',
-  'pages' => '',
-  'title' => '',
-  'cache' => '-1',
-))
-->values(array(
-  'bid' => '22',
-  'module' => 'comment',
-  'delta' => 'recent',
-  'theme' => 'seven',
-  'status' => '0',
-  'weight' => '0',
-  'region' => '-1',
-  'custom' => '0',
-  'visibility' => '0',
-  'pages' => '',
-  'title' => '',
-  'cache' => '1',
-))
-->values(array(
-  'bid' => '23',
-  'module' => 'node',
-  'delta' => 'syndicate',
-  'theme' => 'seven',
-  'status' => '0',
-  'weight' => '0',
-  'region' => '-1',
-  'custom' => '0',
-  'visibility' => '0',
-  'pages' => '',
-  'title' => '',
-  'cache' => '-1',
-))
-->values(array(
-  'bid' => '25',
-  'module' => 'system',
-  'delta' => 'powered-by',
-  'theme' => 'seven',
-  'status' => '0',
-  'weight' => '10',
-  'region' => '-1',
-  'custom' => '0',
-  'visibility' => '0',
-  'pages' => '',
-  'title' => '',
-  'cache' => '-1',
-))
-->values(array(
-  'bid' => '26',
-  'module' => 'system',
-  'delta' => 'navigation',
-  'theme' => 'seven',
-  'status' => '0',
-  'weight' => '0',
-  'region' => '-1',
-  'custom' => '0',
-  'visibility' => '0',
-  'pages' => '',
-  'title' => '',
-  'cache' => '-1',
-))
-->values(array(
-  'bid' => '27',
-  'module' => 'system',
-  'delta' => 'management',
-  'theme' => 'seven',
-  'status' => '0',
-  'weight' => '0',
-  'region' => '-1',
-  'custom' => '0',
-  'visibility' => '0',
-  'pages' => '',
-  'title' => '',
-  'cache' => '-1',
-))
-->values(array(
-  'bid' => '28',
-  'module' => 'system',
-  'delta' => 'user-menu',
-  'theme' => 'seven',
-  'status' => '0',
-  'weight' => '0',
-  'region' => '-1',
-  'custom' => '0',
-  'visibility' => '0',
-  'pages' => '',
-  'title' => '',
-  'cache' => '-1',
-))
-->values(array(
-  'bid' => '29',
-  'module' => 'system',
-  'delta' => 'main-menu',
-  'theme' => 'seven',
-  'status' => '0',
-  'weight' => '0',
-  'region' => '-1',
-  'custom' => '0',
-  'visibility' => '0',
-  'pages' => '',
-  'title' => '',
-  'cache' => '-1',
-))
-->values(array(
-  'bid' => '30',
-  'module' => 'user',
-  'delta' => 'online',
-  'theme' => 'seven',
-  'status' => '0',
-  'weight' => '0',
-  'region' => '-1',
-  'custom' => '0',
-  'visibility' => '0',
-  'pages' => '',
-  'title' => '',
-  'cache' => '-1',
-))
-->values(array(
-  'bid' => '33',
-  'module' => 'locale',
-  'delta' => 'language',
-  'theme' => 'bartik',
-  'status' => '0',
-  'weight' => '0',
-  'region' => '-1',
-  'custom' => '0',
-  'visibility' => '0',
-  'pages' => '',
-  'title' => '',
-  'cache' => '-1',
-))
-->values(array(
-  'bid' => '34',
-  'module' => 'forum',
-  'delta' => 'active',
-  'theme' => 'bartik',
-  'status' => '0',
-  'weight' => '0',
-  'region' => '-1',
-  'custom' => '0',
-  'visibility' => '0',
-  'pages' => '',
-  'title' => '',
-  'cache' => '-2',
-))
-->values(array(
-  'bid' => '35',
-  'module' => 'forum',
-  'delta' => 'new',
-  'theme' => 'bartik',
-  'status' => '0',
-  'weight' => '0',
-  'region' => '-1',
-  'custom' => '0',
-  'visibility' => '0',
-  'pages' => '',
-  'title' => '',
-  'cache' => '-2',
-))
-->values(array(
-  'bid' => '38',
-  'module' => 'locale',
-  'delta' => 'language',
-  'theme' => 'seven',
-  'status' => '0',
-  'weight' => '0',
-  'region' => '-1',
-  'custom' => '0',
-  'visibility' => '0',
-  'pages' => '',
-  'title' => '',
-  'cache' => '-1',
-))
-->values(array(
-  'bid' => '39',
-  'module' => 'forum',
-  'delta' => 'active',
-  'theme' => 'seven',
-  'status' => '0',
-  'weight' => '0',
-  'region' => '-1',
-  'custom' => '0',
-  'visibility' => '0',
-  'pages' => '',
-  'title' => '',
-  'cache' => '-2',
-))
-->values(array(
-  'bid' => '40',
-  'module' => 'forum',
-  'delta' => 'new',
-  'theme' => 'seven',
-  'status' => '0',
-  'weight' => '0',
-  'region' => '-1',
-  'custom' => '0',
-  'visibility' => '0',
-  'pages' => '',
-  'title' => '',
-  'cache' => '-2',
-))
-->values(array(
-  'bid' => '49',
-  'module' => 'locale',
-  'delta' => 'language_content',
-  'theme' => 'bartik',
-  'status' => '0',
-  'weight' => '0',
-  'region' => '-1',
-  'custom' => '0',
-  'visibility' => '0',
-  'pages' => '',
-  'title' => '',
-  'cache' => '-1',
-))
-->values(array(
-  'bid' => '50',
-  'module' => 'locale',
-  'delta' => 'language_content',
-  'theme' => 'seven',
-  'status' => '0',
-  'weight' => '0',
-  'region' => '-1',
-  'custom' => '0',
-  'visibility' => '0',
-  'pages' => '',
-  'title' => '',
-  'cache' => '-1',
-))
-->execute();
-$connection->schema()->createTable('block_custom', array(
-  'fields' => array(
-    'bid' => array(
-      'type' => 'serial',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-    'body' => array(
-      'type' => 'text',
-      'not null' => FALSE,
-      'size' => 'normal',
-    ),
-    'info' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '128',
-      'default' => '',
-    ),
-    'format' => array(
-      'type' => 'varchar',
-      'not null' => FALSE,
-      'length' => '255',
-    ),
-  ),
-  'primary key' => array(
-    'bid',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->schema()->createTable('block_node_type', array(
-  'fields' => array(
-    'module' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '64',
-    ),
-    'delta' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '32',
-    ),
-    'type' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '32',
-    ),
-  ),
-  'primary key' => array(
-    'module',
-    'delta',
-    'type',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->schema()->createTable('block_role', array(
-  'fields' => array(
-    'module' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '64',
-    ),
-    'delta' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '32',
-    ),
-    'rid' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-  ),
-  'primary key' => array(
-    'module',
-    'delta',
-    'rid',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->schema()->createTable('blocked_ips', array(
-  'fields' => array(
-    'iid' => array(
-      'type' => 'serial',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-    'ip' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '40',
-      'default' => '',
-    ),
-  ),
-  'primary key' => array(
-    'iid',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->insert('blocked_ips')
-->fields(array(
-  'iid',
-  'ip',
-))
-->values(array(
-  'iid' => '1',
-  'ip' => '111.111.111.111',
-))
-->execute();
-$connection->schema()->createTable('cache', array(
-  'fields' => array(
-    'cid' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'data' => array(
-      'type' => 'blob',
-      'not null' => FALSE,
-      'size' => 'normal',
-    ),
-    'expire' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'created' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'serialized' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-  ),
-  'primary key' => array(
-    'cid',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->schema()->createTable('cache_block', array(
-  'fields' => array(
-    'cid' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'data' => array(
-      'type' => 'blob',
-      'not null' => FALSE,
-      'size' => 'normal',
-    ),
-    'expire' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'created' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'serialized' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-  ),
-  'primary key' => array(
-    'cid',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->schema()->createTable('cache_bootstrap', array(
-  'fields' => array(
-    'cid' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'data' => array(
-      'type' => 'blob',
-      'not null' => FALSE,
-      'size' => 'normal',
-    ),
-    'expire' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'created' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'serialized' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-  ),
-  'primary key' => array(
-    'cid',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->schema()->createTable('cache_field', array(
-  'fields' => array(
-    'cid' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'data' => array(
-      'type' => 'blob',
-      'not null' => FALSE,
-      'size' => 'normal',
-    ),
-    'expire' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'created' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'serialized' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-  ),
-  'primary key' => array(
-    'cid',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->schema()->createTable('cache_filter', array(
-  'fields' => array(
-    'cid' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'data' => array(
-      'type' => 'blob',
-      'not null' => FALSE,
-      'size' => 'normal',
-    ),
-    'expire' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'created' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'serialized' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-  ),
-  'primary key' => array(
-    'cid',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->schema()->createTable('cache_form', array(
-  'fields' => array(
-    'cid' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'data' => array(
-      'type' => 'blob',
-      'not null' => FALSE,
-      'size' => 'normal',
-    ),
-    'expire' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'created' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'serialized' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-  ),
-  'primary key' => array(
-    'cid',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->schema()->createTable('cache_image', array(
-  'fields' => array(
-    'cid' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'data' => array(
-      'type' => 'blob',
-      'not null' => FALSE,
-      'size' => 'normal',
-    ),
-    'expire' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'created' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'serialized' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-  ),
-  'primary key' => array(
-    'cid',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->schema()->createTable('cache_menu', array(
-  'fields' => array(
-    'cid' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'data' => array(
-      'type' => 'blob',
-      'not null' => FALSE,
-      'size' => 'normal',
-    ),
-    'expire' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'created' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'serialized' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-  ),
-  'primary key' => array(
-    'cid',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->schema()->createTable('cache_page', array(
-  'fields' => array(
-    'cid' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'data' => array(
-      'type' => 'blob',
-      'not null' => FALSE,
-      'size' => 'normal',
-    ),
-    'expire' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'created' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'serialized' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-  ),
-  'primary key' => array(
-    'cid',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->schema()->createTable('cache_path', array(
-  'fields' => array(
-    'cid' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'data' => array(
-      'type' => 'blob',
-      'not null' => FALSE,
-      'size' => 'normal',
-    ),
-    'expire' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'created' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'serialized' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-  ),
-  'primary key' => array(
-    'cid',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->schema()->createTable('cache_variable', array(
-  'fields' => array(
-    'cid' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'data' => array(
-      'type' => 'blob',
-      'not null' => FALSE,
-      'size' => 'big',
-    ),
-    'expire' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'created' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'serialized' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'small',
-      'default' => '0',
-    ),
-  ),
-  'primary key' => array(
-    'cid',
-  ),
-  'indexes' => array(
-    'expire' => array(
-      'expire',
-    ),
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->schema()->createTable('comment', array(
-  'fields' => array(
-    'cid' => array(
-      'type' => 'serial',
-      'not null' => TRUE,
-      'size' => 'normal',
-    ),
-    'pid' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'nid' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'uid' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'subject' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '64',
-      'default' => '',
-    ),
-    'hostname' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '128',
-      'default' => '',
-    ),
-    'created' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'changed' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'status' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '1',
-      'unsigned' => TRUE,
-    ),
-    'thread' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-    ),
-    'name' => array(
-      'type' => 'varchar',
-      'not null' => FALSE,
-      'length' => '60',
-    ),
-    'mail' => array(
-      'type' => 'varchar',
-      'not null' => FALSE,
-      'length' => '64',
-    ),
-    'homepage' => array(
-      'type' => 'varchar',
-      'not null' => FALSE,
-      'length' => '255',
-    ),
-    'language' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '12',
-      'default' => '',
-    ),
-  ),
-  'primary key' => array(
-    'cid',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->schema()->createTable('date_format_locale', array(
-  'fields' => array(
-    'format' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '100',
-      'binary' => TRUE,
-    ),
-    'type' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '64',
-    ),
-    'language' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '12',
-    ),
-  ),
-  'primary key' => array(
-    'type',
-    'language',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->schema()->createTable('date_format_type', array(
-  'fields' => array(
-    'type' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '64',
-    ),
-    'title' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-    ),
-    'locked' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-  ),
-  'primary key' => array(
-    'type',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->insert('date_format_type')
-->fields(array(
-  'type',
-  'title',
-  'locked',
-))
-->values(array(
-  'type' => 'long',
-  'title' => 'Long',
-  'locked' => '1',
-))
-->values(array(
-  'type' => 'medium',
-  'title' => 'Medium',
-  'locked' => '1',
-))
-->values(array(
-  'type' => 'short',
-  'title' => 'Short',
-  'locked' => '1',
-))
-->execute();
-$connection->schema()->createTable('date_formats', array(
-  'fields' => array(
-    'dfid' => array(
-      'type' => 'serial',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-    'format' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '100',
-    ),
-    'type' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '64',
-    ),
-    'locked' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-  ),
-  'primary key' => array(
-    'dfid',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->insert('date_formats')
-->fields(array(
-  'dfid',
-  'format',
-  'type',
-  'locked',
-))
-->values(array(
-  'dfid' => '1',
-  'format' => 'Y-m-d H:i',
-  'type' => 'short',
-  'locked' => '1',
-))
-->values(array(
-  'dfid' => '2',
-  'format' => 'm/d/Y - H:i',
-  'type' => 'short',
-  'locked' => '1',
-))
-->values(array(
-  'dfid' => '3',
-  'format' => 'd/m/Y - H:i',
-  'type' => 'short',
-  'locked' => '1',
-))
-->values(array(
-  'dfid' => '4',
-  'format' => 'Y/m/d - H:i',
-  'type' => 'short',
-  'locked' => '1',
-))
-->values(array(
-  'dfid' => '5',
-  'format' => 'd.m.Y - H:i',
-  'type' => 'short',
-  'locked' => '1',
-))
-->values(array(
-  'dfid' => '6',
-  'format' => 'm/d/Y - g:ia',
-  'type' => 'short',
-  'locked' => '1',
-))
-->values(array(
-  'dfid' => '7',
-  'format' => 'd/m/Y - g:ia',
-  'type' => 'short',
-  'locked' => '1',
-))
-->values(array(
-  'dfid' => '8',
-  'format' => 'Y/m/d - g:ia',
-  'type' => 'short',
-  'locked' => '1',
-))
-->values(array(
-  'dfid' => '9',
-  'format' => 'M j Y - H:i',
-  'type' => 'short',
-  'locked' => '1',
-))
-->values(array(
-  'dfid' => '10',
-  'format' => 'j M Y - H:i',
-  'type' => 'short',
-  'locked' => '1',
-))
-->values(array(
-  'dfid' => '11',
-  'format' => 'Y M j - H:i',
-  'type' => 'short',
-  'locked' => '1',
-))
-->values(array(
-  'dfid' => '12',
-  'format' => 'M j Y - g:ia',
-  'type' => 'short',
-  'locked' => '1',
-))
-->values(array(
-  'dfid' => '13',
-  'format' => 'j M Y - g:ia',
-  'type' => 'short',
-  'locked' => '1',
-))
-->values(array(
-  'dfid' => '14',
-  'format' => 'Y M j - g:ia',
-  'type' => 'short',
-  'locked' => '1',
-))
-->values(array(
-  'dfid' => '15',
-  'format' => 'D, Y-m-d H:i',
-  'type' => 'medium',
-  'locked' => '1',
-))
-->values(array(
-  'dfid' => '16',
-  'format' => 'D, m/d/Y - H:i',
-  'type' => 'medium',
-  'locked' => '1',
-))
-->values(array(
-  'dfid' => '17',
-  'format' => 'D, d/m/Y - H:i',
-  'type' => 'medium',
-  'locked' => '1',
-))
-->values(array(
-  'dfid' => '18',
-  'format' => 'D, Y/m/d - H:i',
-  'type' => 'medium',
-  'locked' => '1',
-))
-->values(array(
-  'dfid' => '19',
-  'format' => 'F j, Y - H:i',
-  'type' => 'medium',
-  'locked' => '1',
-))
-->values(array(
-  'dfid' => '20',
-  'format' => 'j F, Y - H:i',
-  'type' => 'medium',
-  'locked' => '1',
-))
-->values(array(
-  'dfid' => '21',
-  'format' => 'Y, F j - H:i',
-  'type' => 'medium',
-  'locked' => '1',
-))
-->values(array(
-  'dfid' => '22',
-  'format' => 'D, m/d/Y - g:ia',
-  'type' => 'medium',
-  'locked' => '1',
-))
-->values(array(
-  'dfid' => '23',
-  'format' => 'D, d/m/Y - g:ia',
-  'type' => 'medium',
-  'locked' => '1',
-))
-->values(array(
-  'dfid' => '24',
-  'format' => 'D, Y/m/d - g:ia',
-  'type' => 'medium',
-  'locked' => '1',
-))
-->values(array(
-  'dfid' => '25',
-  'format' => 'F j, Y - g:ia',
-  'type' => 'medium',
-  'locked' => '1',
-))
-->values(array(
-  'dfid' => '26',
-  'format' => 'j F Y - g:ia',
-  'type' => 'medium',
-  'locked' => '1',
-))
-->values(array(
-  'dfid' => '27',
-  'format' => 'Y, F j - g:ia',
-  'type' => 'medium',
-  'locked' => '1',
-))
-->values(array(
-  'dfid' => '28',
-  'format' => 'j. F Y - G:i',
-  'type' => 'medium',
-  'locked' => '1',
-))
-->values(array(
-  'dfid' => '29',
-  'format' => 'l, F j, Y - H:i',
-  'type' => 'long',
-  'locked' => '1',
-))
-->values(array(
-  'dfid' => '30',
-  'format' => 'l, j F, Y - H:i',
-  'type' => 'long',
-  'locked' => '1',
-))
-->values(array(
-  'dfid' => '31',
-  'format' => 'l, Y,  F j - H:i',
-  'type' => 'long',
-  'locked' => '1',
-))
-->values(array(
-  'dfid' => '32',
-  'format' => 'l, F j, Y - g:ia',
-  'type' => 'long',
-  'locked' => '1',
-))
-->values(array(
-  'dfid' => '33',
-  'format' => 'l, j F Y - g:ia',
-  'type' => 'long',
-  'locked' => '1',
-))
-->values(array(
-  'dfid' => '34',
-  'format' => 'l, Y,  F j - g:ia',
-  'type' => 'long',
-  'locked' => '1',
-))
-->values(array(
-  'dfid' => '35',
-  'format' => 'l, j. F Y - G:i',
-  'type' => 'long',
-  'locked' => '1',
-))
-->values(array(
-  'dfid' => '36',
-  'format' => 'r',
-  'type' => 'custom',
-  'locked' => '0',
-))
-->execute();
-$connection->schema()->createTable('entity_translation', array(
-  'fields' => array(
-    'entity_type' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '128',
-      'default' => '',
-    ),
-    'entity_id' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-    'revision_id' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-    'language' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '32',
-      'default' => '',
-    ),
-    'source' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '32',
-      'default' => '',
-    ),
-    'uid' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'status' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '1',
-    ),
-    'translate' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'created' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'changed' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-  ),
-  'primary key' => array(
-    'entity_type',
-    'entity_id',
-    'language',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->schema()->createTable('entity_translation_revision', array(
-  'fields' => array(
-    'entity_type' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '128',
-      'default' => '',
-    ),
-    'entity_id' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-    'revision_id' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-    'language' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '32',
-      'default' => '',
-    ),
-    'source' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '32',
-      'default' => '',
-    ),
-    'uid' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'status' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '1',
-    ),
-    'translate' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'created' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'changed' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-  ),
-  'primary key' => array(
-    'entity_type',
-    'revision_id',
-    'language',
-  ),
-  'indexes' => array(
-    'revision_id' => array(
-      'revision_id',
-    ),
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->schema()->createTable('field_config', array(
-  'fields' => array(
-    'id' => array(
-      'type' => 'serial',
-      'not null' => TRUE,
-      'size' => 'normal',
-    ),
-    'field_name' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '32',
-    ),
-    'type' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '128',
-    ),
-    'module' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '128',
-      'default' => '',
-    ),
-    'active' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'storage_type' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '128',
-    ),
-    'storage_module' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '128',
-      'default' => '',
-    ),
-    'storage_active' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'locked' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'data' => array(
-      'type' => 'blob',
-      'not null' => TRUE,
-      'size' => 'normal',
-    ),
-    'cardinality' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'translatable' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'deleted' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-  ),
-  'primary key' => array(
-    'id',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->insert('field_config')
-->fields(array(
-  'id',
-  'field_name',
-  'type',
-  'module',
-  'active',
-  'storage_type',
-  'storage_module',
-  'storage_active',
-  'locked',
-  'data',
-  'cardinality',
-  'translatable',
-  'deleted',
-))
-->values(array(
-  'id' => '1',
-  'field_name' => 'comment_body',
-  'type' => 'text_long',
-  'module' => 'text',
-  'active' => '1',
-  'storage_type' => 'field_sql_storage',
-  'storage_module' => 'field_sql_storage',
-  'storage_active' => '1',
-  'locked' => '0',
-  'data' => 'a:6:{s:12:"entity_types";a:1:{i:0;s:7:"comment";}s:12:"translatable";b:0;s:8:"settings";a:0:{}s:7:"storage";a:4:{s:4:"type";s:17:"field_sql_storage";s:8:"settings";a:0:{}s:6:"module";s:17:"field_sql_storage";s:6:"active";i:1;}s:12:"foreign keys";a:1:{s:6:"format";a:2:{s:5:"table";s:13:"filter_format";s:7:"columns";a:1:{s:6:"format";s:6:"format";}}}s:7:"indexes";a:1:{s:6:"format";a:1:{i:0;s:6:"format";}}}',
-  'cardinality' => '1',
-  'translatable' => '0',
-  'deleted' => '0',
-))
-->values(array(
-  'id' => '2',
-  'field_name' => 'body',
-  'type' => 'text_with_summary',
-  'module' => 'text',
-  'active' => '1',
-  'storage_type' => 'field_sql_storage',
-  'storage_module' => 'field_sql_storage',
-  'storage_active' => '1',
-  'locked' => '0',
-  'data' => 'a:6:{s:12:"entity_types";a:1:{i:0;s:4:"node";}s:12:"translatable";b:0;s:8:"settings";a:0:{}s:7:"storage";a:4:{s:4:"type";s:17:"field_sql_storage";s:8:"settings";a:0:{}s:6:"module";s:17:"field_sql_storage";s:6:"active";i:1;}s:12:"foreign keys";a:1:{s:6:"format";a:2:{s:5:"table";s:13:"filter_format";s:7:"columns";a:1:{s:6:"format";s:6:"format";}}}s:7:"indexes";a:1:{s:6:"format";a:1:{i:0;s:6:"format";}}}',
-  'cardinality' => '1',
-  'translatable' => '0',
-  'deleted' => '0',
-))
-->values(array(
-  'id' => '3',
-  'field_name' => 'field_tags',
-  'type' => 'taxonomy_term_reference',
-  'module' => 'taxonomy',
-  'active' => '1',
-  'storage_type' => 'field_sql_storage',
-  'storage_module' => 'field_sql_storage',
-  'storage_active' => '1',
-  'locked' => '0',
-  'data' => 'a:7:{s:8:"settings";a:3:{s:14:"allowed_values";a:1:{i:0;a:2:{s:10:"vocabulary";s:4:"tags";s:6:"parent";i:0;}}s:21:"options_list_callback";s:28:"i18n_taxonomy_allowed_values";s:23:"entity_translation_sync";b:0;}s:12:"entity_types";a:0:{}s:12:"translatable";s:1:"0";s:7:"storage";a:5:{s:4:"type";s:17:"field_sql_storage";s:8:"settings";a:0:{}s:6:"module";s:17:"field_sql_storage";s:6:"active";s:1:"1";s:7:"details";a:1:{s:3:"sql";a:2:{s:18:"FIELD_LOAD_CURRENT";a:1:{s:21:"field_data_field_tags";a:1:{s:3:"tid";s:14:"field_tags_tid";}}s:19:"FIELD_LOAD_REVISION";a:1:{s:25:"field_revision_field_tags";a:1:{s:3:"tid";s:14:"field_tags_tid";}}}}}s:12:"foreign keys";a:1:{s:3:"tid";a:2:{s:5:"table";s:18:"taxonomy_term_data";s:7:"columns";a:1:{s:3:"tid";s:3:"tid";}}}s:7:"indexes";a:1:{s:3:"tid";a:1:{i:0;s:3:"tid";}}s:2:"id";s:1:"3";}',
-  'cardinality' => '-1',
-  'translatable' => '0',
-  'deleted' => '0',
-))
-->values(array(
-  'id' => '4',
-  'field_name' => 'field_image',
-  'type' => 'image',
-  'module' => 'image',
-  'active' => '1',
-  'storage_type' => 'field_sql_storage',
-  'storage_module' => 'field_sql_storage',
-  'storage_active' => '1',
-  'locked' => '0',
-  'data' => 'a:6:{s:7:"indexes";a:1:{s:3:"fid";a:1:{i:0;s:3:"fid";}}s:8:"settings";a:2:{s:10:"uri_scheme";s:6:"public";s:13:"default_image";b:0;}s:7:"storage";a:4:{s:4:"type";s:17:"field_sql_storage";s:8:"settings";a:0:{}s:6:"module";s:17:"field_sql_storage";s:6:"active";i:1;}s:12:"entity_types";a:0:{}s:12:"translatable";b:0;s:12:"foreign keys";a:1:{s:3:"fid";a:2:{s:5:"table";s:12:"file_managed";s:7:"columns";a:1:{s:3:"fid";s:3:"fid";}}}}',
-  'cardinality' => '1',
-  'translatable' => '0',
-  'deleted' => '0',
-))
-->values(array(
-  'id' => '5',
-  'field_name' => 'taxonomy_forums',
-  'type' => 'taxonomy_term_reference',
-  'module' => 'taxonomy',
-  'active' => '1',
-  'storage_type' => 'field_sql_storage',
-  'storage_module' => 'field_sql_storage',
-  'storage_active' => '1',
-  'locked' => '0',
-  'data' => 'a:7:{s:8:"settings";a:3:{s:14:"allowed_values";a:1:{i:0;a:2:{s:10:"vocabulary";s:19:"sujet_de_discussion";s:6:"parent";i:0;}}s:21:"options_list_callback";s:28:"i18n_taxonomy_allowed_values";s:23:"entity_translation_sync";b:0;}s:12:"entity_types";a:0:{}s:12:"translatable";s:1:"0";s:7:"storage";a:5:{s:4:"type";s:17:"field_sql_storage";s:8:"settings";a:0:{}s:6:"module";s:17:"field_sql_storage";s:6:"active";s:1:"1";s:7:"details";a:1:{s:3:"sql";a:2:{s:18:"FIELD_LOAD_CURRENT";a:1:{s:26:"field_data_taxonomy_forums";a:1:{s:3:"tid";s:19:"taxonomy_forums_tid";}}s:19:"FIELD_LOAD_REVISION";a:1:{s:30:"field_revision_taxonomy_forums";a:1:{s:3:"tid";s:19:"taxonomy_forums_tid";}}}}}s:12:"foreign keys";a:1:{s:3:"tid";a:2:{s:5:"table";s:18:"taxonomy_term_data";s:7:"columns";a:1:{s:3:"tid";s:3:"tid";}}}s:7:"indexes";a:1:{s:3:"tid";a:1:{i:0;s:3:"tid";}}s:2:"id";s:1:"5";}',
-  'cardinality' => '1',
-  'translatable' => '0',
-  'deleted' => '0',
-))
-->values(array(
-  'id' => '41',
-  'field_name' => 'subject_field',
-  'type' => 'text',
-  'module' => 'text',
-  'active' => '1',
-  'storage_type' => 'field_sql_storage',
-  'storage_module' => 'field_sql_storage',
-  'storage_active' => '1',
-  'locked' => '0',
-  'data' => 'a:6:{s:12:"translatable";b:1;s:12:"entity_types";a:0:{}s:8:"settings";a:2:{s:10:"max_length";i:255;s:23:"entity_translation_sync";b:0;}s:7:"storage";a:4:{s:4:"type";s:17:"field_sql_storage";s:8:"settings";a:0:{}s:6:"module";s:17:"field_sql_storage";s:6:"active";i:1;}s:12:"foreign keys";a:1:{s:6:"format";a:2:{s:5:"table";s:13:"filter_format";s:7:"columns";a:1:{s:6:"format";s:6:"format";}}}s:7:"indexes";a:1:{s:6:"format";a:1:{i:0;s:6:"format";}}}',
-  'cardinality' => '1',
-  'translatable' => '1',
-  'deleted' => '0',
-))
-->values(array(
-  'id' => '62',
-  'field_name' => 'field_event',
-  'type' => 'datetime',
-  'module' => 'date',
-  'active' => '1',
-  'storage_type' => 'field_sql_storage',
-  'storage_module' => 'field_sql_storage',
-  'storage_active' => '1',
-  'locked' => '0',
-  'data' => 'a:7:{s:12:"translatable";i:0;s:12:"entity_types";a:0:{}s:8:"settings";a:7:{s:11:"granularity";a:6:{s:5:"month";s:5:"month";s:3:"day";s:3:"day";s:4:"hour";s:4:"hour";s:6:"minute";s:6:"minute";s:4:"year";s:4:"year";s:6:"second";i:0;}s:11:"tz_handling";s:4:"site";s:11:"timezone_db";s:3:"UTC";s:13:"cache_enabled";i:0;s:11:"cache_count";s:1:"4";s:6:"todate";s:8:"optional";s:23:"entity_translation_sync";b:0;}s:7:"storage";a:5:{s:4:"type";s:17:"field_sql_storage";s:8:"settings";a:0:{}s:6:"module";s:17:"field_sql_storage";s:6:"active";s:1:"1";s:7:"details";a:1:{s:3:"sql";a:2:{s:18:"FIELD_LOAD_CURRENT";a:1:{s:22:"field_data_field_event";a:2:{s:5:"value";s:17:"field_event_value";s:6:"value2";s:18:"field_event_value2";}}s:19:"FIELD_LOAD_REVISION";a:1:{s:26:"field_revision_field_event";a:2:{s:5:"value";s:17:"field_event_value";s:6:"value2";s:18:"field_event_value2";}}}}}s:12:"foreign keys";a:0:{}s:7:"indexes";a:2:{s:5:"value";a:2:{i:0;s:5:"value";i:1;s:6:"value2";}s:6:"value2";a:1:{i:0;s:6:"value2";}}s:2:"id";s:2:"54";}',
-  'cardinality' => '1',
-  'translatable' => '0',
-  'deleted' => '0',
-))
-->execute();
-$connection->schema()->createTable('field_config_instance', array(
-  'fields' => array(
-    'id' => array(
-      'type' => 'serial',
-      'not null' => TRUE,
-      'size' => 'normal',
-    ),
-    'field_id' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-    ),
-    'field_name' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '32',
-      'default' => '',
-    ),
-    'entity_type' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '32',
-      'default' => '',
-    ),
-    'bundle' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '128',
-      'default' => '',
-    ),
-    'data' => array(
-      'type' => 'blob',
-      'not null' => TRUE,
-      'size' => 'normal',
-    ),
-    'deleted' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-  ),
-  'primary key' => array(
-    'id',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->insert('field_config_instance')
-->fields(array(
-  'id',
-  'field_id',
-  'field_name',
-  'entity_type',
-  'bundle',
-  'data',
-  'deleted',
-))
-->values(array(
-  'id' => '1',
-  'field_id' => '1',
-  'field_name' => 'comment_body',
-  'entity_type' => 'comment',
-  'bundle' => 'comment_node_page',
-  'data' => 'a:6:{s:5:"label";s:7:"Comment";s:8:"settings";a:2:{s:15:"text_processing";i:1;s:18:"user_register_form";b:0;}s:8:"required";b:1;s:7:"display";a:1:{s:7:"default";a:5:{s:5:"label";s:6:"hidden";s:4:"type";s:12:"text_default";s:6:"weight";i:0;s:8:"settings";a:0:{}s:6:"module";s:4:"text";}}s:6:"widget";a:4:{s:4:"type";s:13:"text_textarea";s:8:"settings";a:1:{s:4:"rows";i:5;}s:6:"weight";i:0;s:6:"module";s:4:"text";}s:11:"description";s:0:"";}',
-  'deleted' => '0',
-))
-->values(array(
-  'id' => '2',
-  'field_id' => '2',
-  'field_name' => 'body',
-  'entity_type' => 'node',
-  'bundle' => 'page',
-  'data' => 'a:6:{s:5:"label";s:4:"Body";s:6:"widget";a:4:{s:4:"type";s:26:"text_textarea_with_summary";s:8:"settings";a:2:{s:4:"rows";i:20;s:12:"summary_rows";i:5;}s:6:"weight";i:-4;s:6:"module";s:4:"text";}s:8:"settings";a:3:{s:15:"display_summary";b:1;s:15:"text_processing";i:1;s:18:"user_register_form";b:0;}s:7:"display";a:2:{s:7:"default";a:5:{s:5:"label";s:6:"hidden";s:4:"type";s:12:"text_default";s:8:"settings";a:0:{}s:6:"module";s:4:"text";s:6:"weight";i:0;}s:6:"teaser";a:5:{s:5:"label";s:6:"hidden";s:4:"type";s:23:"text_summary_or_trimmed";s:8:"settings";a:1:{s:11:"trim_length";i:600;}s:6:"module";s:4:"text";s:6:"weight";i:0;}}s:8:"required";b:0;s:11:"description";s:0:"";}',
-  'deleted' => '0',
-))
-->values(array(
-  'id' => '3',
-  'field_id' => '1',
-  'field_name' => 'comment_body',
-  'entity_type' => 'comment',
-  'bundle' => 'comment_node_article',
-  'data' => 'a:6:{s:5:"label";s:7:"Comment";s:8:"settings";a:2:{s:15:"text_processing";i:1;s:18:"user_register_form";b:0;}s:8:"required";b:1;s:7:"display";a:1:{s:7:"default";a:5:{s:5:"label";s:6:"hidden";s:4:"type";s:12:"text_default";s:6:"weight";i:0;s:8:"settings";a:0:{}s:6:"module";s:4:"text";}}s:6:"widget";a:4:{s:4:"type";s:13:"text_textarea";s:8:"settings";a:1:{s:4:"rows";i:5;}s:6:"weight";i:0;s:6:"module";s:4:"text";}s:11:"description";s:0:"";}',
-  'deleted' => '0',
-))
-->values(array(
-  'id' => '4',
-  'field_id' => '2',
-  'field_name' => 'body',
-  'entity_type' => 'node',
-  'bundle' => 'article',
-  'data' => 'a:6:{s:5:"label";s:4:"Body";s:6:"widget";a:4:{s:4:"type";s:26:"text_textarea_with_summary";s:8:"settings";a:2:{s:4:"rows";i:20;s:12:"summary_rows";i:5;}s:6:"weight";s:2:"-4";s:6:"module";s:4:"text";}s:8:"settings";a:4:{s:15:"display_summary";b:1;s:15:"text_processing";i:1;s:18:"user_register_form";b:0;s:23:"entity_translation_sync";b:0;}s:7:"display";a:3:{s:7:"default";a:5:{s:5:"label";s:6:"hidden";s:4:"type";s:12:"text_default";s:8:"settings";a:0:{}s:6:"module";s:4:"text";s:6:"weight";i:0;}s:6:"teaser";a:5:{s:5:"label";s:6:"hidden";s:4:"type";s:23:"text_summary_or_trimmed";s:8:"settings";a:1:{s:11:"trim_length";i:600;}s:6:"module";s:4:"text";s:6:"weight";i:0;}s:6:"custom";a:5:{s:5:"label";s:6:"hidden";s:4:"type";s:23:"text_summary_or_trimmed";s:8:"settings";a:1:{s:11:"trim_length";i:600;}s:6:"module";s:4:"text";s:6:"weight";i:11;}}s:8:"required";b:0;s:11:"description";s:0:"";}',
-  'deleted' => '0',
-))
-->values(array(
-  'id' => '5',
-  'field_id' => '3',
-  'field_name' => 'field_tags',
-  'entity_type' => 'node',
-  'bundle' => 'article',
-  'data' => 'a:6:{s:5:"label";s:4:"Tags";s:11:"description";s:63:"Enter a comma-separated list of words to describe your content.";s:6:"widget";a:4:{s:4:"type";s:21:"taxonomy_autocomplete";s:6:"weight";s:2:"-4";s:8:"settings";a:2:{s:4:"size";i:60;s:17:"autocomplete_path";s:21:"taxonomy/autocomplete";}s:6:"module";s:8:"taxonomy";}s:7:"display";a:2:{s:7:"default";a:5:{s:4:"type";s:28:"taxonomy_term_reference_link";s:6:"weight";i:10;s:5:"label";s:5:"above";s:8:"settings";a:0:{}s:6:"module";s:8:"taxonomy";}s:6:"teaser";a:5:{s:4:"type";s:28:"taxonomy_term_reference_link";s:6:"weight";i:10;s:5:"label";s:5:"above";s:8:"settings";a:0:{}s:6:"module";s:8:"taxonomy";}}s:8:"settings";a:2:{s:18:"user_register_form";b:0;s:23:"entity_translation_sync";b:0;}s:8:"required";b:0;}',
-  'deleted' => '0',
-))
-->values(array(
-  'id' => '6',
-  'field_id' => '4',
-  'field_name' => 'field_image',
-  'entity_type' => 'node',
-  'bundle' => 'article',
-  'data' => 'a:6:{s:5:"label";s:5:"Image";s:11:"description";s:40:"Upload an image to go with this article.";s:8:"required";b:0;s:8:"settings";a:10:{s:14:"file_directory";s:11:"field/image";s:15:"file_extensions";s:16:"png gif jpg jpeg";s:12:"max_filesize";s:0:"";s:14:"max_resolution";s:0:"";s:14:"min_resolution";s:0:"";s:9:"alt_field";b:1;s:11:"title_field";s:0:"";s:13:"default_image";i:0;s:18:"user_register_form";b:0;s:23:"entity_translation_sync";b:0;}s:6:"widget";a:4:{s:4:"type";s:11:"image_image";s:8:"settings";a:2:{s:18:"progress_indicator";s:8:"throbber";s:19:"preview_image_style";s:9:"thumbnail";}s:6:"weight";s:2:"-1";s:6:"module";s:5:"image";}s:7:"display";a:2:{s:7:"default";a:5:{s:5:"label";s:6:"hidden";s:4:"type";s:5:"image";s:8:"settings";a:2:{s:11:"image_style";s:5:"large";s:10:"image_link";s:0:"";}s:6:"weight";i:-1;s:6:"module";s:5:"image";}s:6:"teaser";a:5:{s:5:"label";s:6:"hidden";s:4:"type";s:5:"image";s:8:"settings";a:2:{s:11:"image_style";s:6:"medium";s:10:"image_link";s:7:"content";}s:6:"weight";i:-1;s:6:"module";s:5:"image";}}}',
-  'deleted' => '0',
-))
-->values(array(
-  'id' => '7',
-  'field_id' => '1',
-  'field_name' => 'comment_body',
-  'entity_type' => 'comment',
-  'bundle' => 'comment_node_blog',
-  'data' => 'a:6:{s:5:"label";s:7:"Comment";s:8:"settings";a:2:{s:15:"text_processing";i:1;s:18:"user_register_form";b:0;}s:8:"required";b:1;s:7:"display";a:1:{s:7:"default";a:5:{s:5:"label";s:6:"hidden";s:4:"type";s:12:"text_default";s:6:"weight";i:0;s:8:"settings";a:0:{}s:6:"module";s:4:"text";}}s:6:"widget";a:4:{s:4:"type";s:13:"text_textarea";s:8:"settings";a:1:{s:4:"rows";i:5;}s:6:"weight";i:0;s:6:"module";s:4:"text";}s:11:"description";s:0:"";}',
-  'deleted' => '0',
-))
-->values(array(
-  'id' => '11',
-  'field_id' => '5',
-  'field_name' => 'taxonomy_forums',
-  'entity_type' => 'node',
-  'bundle' => 'forum',
-  'data' => 'a:6:{s:5:"label";s:6:"Forums";s:8:"required";b:1;s:6:"widget";a:4:{s:4:"type";s:14:"options_select";s:8:"settings";a:0:{}s:6:"weight";i:0;s:6:"module";s:7:"options";}s:7:"display";a:2:{s:7:"default";a:5:{s:4:"type";s:28:"taxonomy_term_reference_link";s:6:"weight";i:10;s:5:"label";s:5:"above";s:8:"settings";a:0:{}s:6:"module";s:8:"taxonomy";}s:6:"teaser";a:5:{s:4:"type";s:28:"taxonomy_term_reference_link";s:6:"weight";i:10;s:5:"label";s:5:"above";s:8:"settings";a:0:{}s:6:"module";s:8:"taxonomy";}}s:8:"settings";a:1:{s:18:"user_register_form";b:0;}s:11:"description";s:0:"";}',
-  'deleted' => '0',
-))
-->values(array(
-  'id' => '12',
-  'field_id' => '1',
-  'field_name' => 'comment_body',
-  'entity_type' => 'comment',
-  'bundle' => 'comment_node_forum',
-  'data' => 'a:6:{s:5:"label";s:7:"Comment";s:8:"settings";a:2:{s:15:"text_processing";i:1;s:18:"user_register_form";b:0;}s:8:"required";b:1;s:7:"display";a:1:{s:7:"default";a:5:{s:5:"label";s:6:"hidden";s:4:"type";s:12:"text_default";s:6:"weight";i:0;s:8:"settings";a:0:{}s:6:"module";s:4:"text";}}s:6:"widget";a:4:{s:4:"type";s:13:"text_textarea";s:8:"settings";a:1:{s:4:"rows";i:5;}s:6:"weight";i:0;s:6:"module";s:4:"text";}s:11:"description";s:0:"";}',
-  'deleted' => '0',
-))
-->values(array(
-  'id' => '13',
-  'field_id' => '2',
-  'field_name' => 'body',
-  'entity_type' => 'node',
-  'bundle' => 'forum',
-  'data' => 'a:6:{s:5:"label";s:4:"Body";s:6:"widget";a:4:{s:4:"type";s:26:"text_textarea_with_summary";s:8:"settings";a:2:{s:4:"rows";i:20;s:12:"summary_rows";i:5;}s:6:"weight";i:1;s:6:"module";s:4:"text";}s:8:"settings";a:3:{s:15:"display_summary";b:1;s:15:"text_processing";i:1;s:18:"user_register_form";b:0;}s:7:"display";a:2:{s:7:"default";a:5:{s:5:"label";s:6:"hidden";s:4:"type";s:12:"text_default";s:8:"settings";a:0:{}s:6:"module";s:4:"text";s:6:"weight";i:11;}s:6:"teaser";a:5:{s:5:"label";s:6:"hidden";s:4:"type";s:23:"text_summary_or_trimmed";s:8:"settings";a:1:{s:11:"trim_length";i:600;}s:6:"module";s:4:"text";s:6:"weight";i:11;}}s:8:"required";b:0;s:11:"description";s:0:"";}',
-  'deleted' => '0',
-))
-->values(array(
-  'id' => '68',
-  'field_id' => '41',
-  'field_name' => 'subject_field',
-  'entity_type' => 'comment',
-  'bundle' => 'comment_node_article',
-  'data' => 'a:6:{s:5:"label";s:7:"Subject";s:11:"description";s:0:"";s:8:"required";b:1;s:8:"settings";a:4:{s:15:"text_processing";i:0;s:10:"hide_label";a:2:{s:4:"page";b:0;s:6:"entity";b:0;}s:18:"user_register_form";b:0;s:23:"entity_translation_sync";b:0;}s:6:"widget";a:4:{s:6:"weight";i:-5;s:4:"type";s:14:"text_textfield";s:8:"settings";a:1:{s:4:"size";i:60;}s:6:"module";s:4:"text";}s:7:"display";a:1:{s:7:"default";a:4:{s:4:"type";s:6:"hidden";s:5:"label";s:5:"above";s:8:"settings";a:0:{}s:6:"weight";i:1;}}}',
-  'deleted' => '0',
-))
-->values(array(
-  'id' => '94',
-  'field_id' => '62',
-  'field_name' => 'field_event',
-  'entity_type' => 'node',
-  'bundle' => 'forum',
-  'data' => 'a:6:{s:5:"label";s:5:"event";s:6:"widget";a:5:{s:6:"weight";s:1:"2";s:4:"type";s:9:"date_text";s:6:"module";s:4:"date";s:6:"active";i:1;s:8:"settings";a:7:{s:12:"input_format";s:13:"m/d/Y - H:i:s";s:19:"input_format_custom";s:0:"";s:10:"year_range";s:5:"-3:+3";s:9:"increment";i:1;s:14:"label_position";s:5:"above";s:10:"text_parts";a:0:{}s:11:"no_fieldset";i:0;}}s:8:"settings";a:6:{s:13:"default_value";s:3:"now";s:18:"default_value_code";s:0:"";s:14:"default_value2";s:4:"same";s:19:"default_value_code2";s:0:"";s:18:"user_register_form";b:0;s:23:"entity_translation_sync";b:0;}s:7:"display";a:1:{s:7:"default";a:5:{s:5:"label";s:5:"above";s:4:"type";s:12:"date_default";s:8:"settings";a:6:{s:11:"format_type";s:4:"long";s:15:"multiple_number";s:0:"";s:13:"multiple_from";s:0:"";s:11:"multiple_to";s:0:"";s:6:"fromto";s:4:"both";s:19:"show_remaining_days";b:0;}s:6:"module";s:4:"date";s:6:"weight";i:12;}}s:8:"required";i:0;s:11:"description";s:0:"";}',
-  'deleted' => '0',
-))
-->values(array(
-  'id' => '95',
-  'field_id' => '1',
-  'field_name' => 'comment_body',
-  'entity_type' => 'comment',
-  'bundle' => 'comment_node_et',
-  'data' => 'a:6:{s:5:"label";s:7:"Comment";s:8:"settings";a:2:{s:15:"text_processing";i:1;s:18:"user_register_form";b:0;}s:8:"required";b:1;s:7:"display";a:1:{s:7:"default";a:5:{s:5:"label";s:6:"hidden";s:4:"type";s:12:"text_default";s:6:"weight";i:0;s:8:"settings";a:0:{}s:6:"module";s:4:"text";}}s:6:"widget";a:4:{s:4:"type";s:13:"text_textarea";s:8:"settings";a:1:{s:4:"rows";i:5;}s:6:"weight";i:0;s:6:"module";s:4:"text";}s:11:"description";s:0:"";}',
-  'deleted' => '0',
-))
-->values(array(
-  'id' => '96',
-  'field_id' => '2',
-  'field_name' => 'body',
-  'entity_type' => 'node',
-  'bundle' => 'et',
-  'data' => 'a:6:{s:5:"label";s:4:"Body";s:6:"widget";a:4:{s:4:"type";s:26:"text_textarea_with_summary";s:8:"settings";a:2:{s:4:"rows";i:20;s:12:"summary_rows";i:5;}s:6:"weight";i:-4;s:6:"module";s:4:"text";}s:8:"settings";a:3:{s:15:"display_summary";b:1;s:15:"text_processing";i:1;s:18:"user_register_form";b:0;}s:7:"display";a:2:{s:7:"default";a:5:{s:5:"label";s:6:"hidden";s:4:"type";s:12:"text_default";s:8:"settings";a:0:{}s:6:"module";s:4:"text";s:6:"weight";i:0;}s:6:"teaser";a:5:{s:5:"label";s:6:"hidden";s:4:"type";s:23:"text_summary_or_trimmed";s:8:"settings";a:1:{s:11:"trim_length";i:600;}s:6:"module";s:4:"text";s:6:"weight";i:0;}}s:8:"required";b:0;s:11:"description";s:0:"";}',
-  'deleted' => '0',
-))
-->values(array(
-  'id' => '97',
-  'field_id' => '1',
-  'field_name' => 'comment_body',
-  'entity_type' => 'comment',
-  'bundle' => 'comment_node_test_content_type',
-  'data' => 'a:6:{s:5:"label";s:7:"Comment";s:8:"settings";a:2:{s:15:"text_processing";i:1;s:18:"user_register_form";b:0;}s:8:"required";b:1;s:7:"display";a:1:{s:7:"default";a:5:{s:5:"label";s:6:"hidden";s:4:"type";s:12:"text_default";s:6:"weight";i:0;s:8:"settings";a:0:{}s:6:"module";s:4:"text";}}s:6:"widget";a:4:{s:4:"type";s:13:"text_textarea";s:8:"settings";a:1:{s:4:"rows";i:5;}s:6:"weight";i:0;s:6:"module";s:4:"text";}s:11:"description";s:0:"";}',
-  'deleted' => '0',
-))
-->values(array(
-  'id' => '98',
-  'field_id' => '2',
-  'field_name' => 'body',
-  'entity_type' => 'node',
-  'bundle' => 'test_content_type',
-  'data' => 'a:6:{s:5:"label";s:4:"Body";s:6:"widget";a:4:{s:4:"type";s:26:"text_textarea_with_summary";s:8:"settings";a:2:{s:4:"rows";i:20;s:12:"summary_rows";i:5;}s:6:"weight";i:-4;s:6:"module";s:4:"text";}s:8:"settings";a:3:{s:15:"display_summary";b:1;s:15:"text_processing";i:1;s:18:"user_register_form";b:0;}s:7:"display";a:2:{s:7:"default";a:5:{s:5:"label";s:6:"hidden";s:4:"type";s:12:"text_default";s:8:"settings";a:0:{}s:6:"module";s:4:"text";s:6:"weight";i:0;}s:6:"teaser";a:5:{s:5:"label";s:6:"hidden";s:4:"type";s:23:"text_summary_or_trimmed";s:8:"settings";a:1:{s:11:"trim_length";i:600;}s:6:"module";s:4:"text";s:6:"weight";i:0;}}s:8:"required";b:0;s:11:"description";s:0:"";}',
-  'deleted' => '0',
-))
-->execute();
-$connection->schema()->createTable('field_data_body', array(
-  'fields' => array(
-    'entity_type' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '128',
-      'default' => '',
-    ),
-    'bundle' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '128',
-      'default' => '',
-    ),
-    'deleted' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'entity_id' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-    'revision_id' => array(
-      'type' => 'int',
-      'not null' => FALSE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-    'language' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '32',
-      'default' => '',
-    ),
-    'delta' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-    'body_value' => array(
-      'type' => 'text',
-      'not null' => FALSE,
-      'size' => 'normal',
-    ),
-    'body_summary' => array(
-      'type' => 'text',
-      'not null' => FALSE,
-      'size' => 'normal',
-    ),
-    'body_format' => array(
-      'type' => 'varchar',
-      'not null' => FALSE,
-      'length' => '255',
-    ),
-  ),
-  'primary key' => array(
-    'entity_type',
-    'deleted',
-    'entity_id',
-    'language',
-    'delta',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->insert('field_data_body')
-->fields(array(
-  'entity_type',
-  'bundle',
-  'deleted',
-  'entity_id',
-  'revision_id',
-  'language',
-  'delta',
-  'body_value',
-  'body_summary',
-  'body_format',
-))
-->values(array(
-  'entity_type' => 'node',
-  'bundle' => 'et',
-  'deleted' => '0',
-  'entity_id' => '11',
-  'revision_id' => '18',
-  'language' => 'und',
-  'delta' => '0',
-  'body_value' => '2nd',
-  'body_summary' => '',
-  'body_format' => 'filtered_html',
-))
-->execute();
-$connection->schema()->createTable('field_data_comment_body', array(
-  'fields' => array(
-    'entity_type' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '128',
-      'default' => '',
-    ),
-    'bundle' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '128',
-      'default' => '',
-    ),
-    'deleted' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'entity_id' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-    'revision_id' => array(
-      'type' => 'int',
-      'not null' => FALSE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-    'language' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '32',
-      'default' => '',
-    ),
-    'delta' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-    'comment_body_value' => array(
-      'type' => 'text',
-      'not null' => FALSE,
-      'size' => 'normal',
-    ),
-    'comment_body_format' => array(
-      'type' => 'varchar',
-      'not null' => FALSE,
-      'length' => '255',
-    ),
-  ),
-  'primary key' => array(
-    'entity_type',
-    'deleted',
-    'entity_id',
-    'language',
-    'delta',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->schema()->createTable('field_data_field_event', array(
-  'fields' => array(
-    'entity_type' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '128',
-      'default' => '',
-    ),
-    'bundle' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '128',
-      'default' => '',
-    ),
-    'deleted' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'tiny',
-      'default' => '0',
-    ),
-    'entity_id' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-    'revision_id' => array(
-      'type' => 'int',
-      'not null' => FALSE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-    'language' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '32',
-      'default' => '',
-    ),
-    'delta' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-    'field_event_value' => array(
-      'type' => 'datetime',
-      'not null' => FALSE,
-      'mysql_type' => 'datetime',
-      'pgsql_type' => 'timestamp without time zone',
-      'sqlite_type' => 'varchar',
-      'sqlsrv_type' => 'smalldatetime',
-    ),
-    'field_event_value2' => array(
-      'type' => 'datetime',
-      'not null' => FALSE,
-      'mysql_type' => 'datetime',
-      'pgsql_type' => 'timestamp without time zone',
-      'sqlite_type' => 'varchar',
-      'sqlsrv_type' => 'smalldatetime',
-    ),
-  ),
-  'primary key' => array(
-    'entity_type',
-    'entity_id',
-    'deleted',
-    'delta',
-    'language',
-  ),
-  'indexes' => array(
-    'entity_type' => array(
-      'entity_type',
-    ),
-    'bundle' => array(
-      'bundle',
-    ),
-    'deleted' => array(
-      'deleted',
-    ),
-    'entity_id' => array(
-      'entity_id',
-    ),
-    'revision_id' => array(
-      'revision_id',
-    ),
-    'language' => array(
-      'language',
-    ),
-    'field_event_value' => array(
-      'field_event_value',
-      'field_event_value2',
-    ),
-    'field_event_value2' => array(
-      'field_event_value2',
-    ),
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->insert('field_data_field_event')
-->fields(array(
-  'entity_type',
-  'bundle',
-  'deleted',
-  'entity_id',
-  'revision_id',
-  'language',
-  'delta',
-  'field_event_value',
-  'field_event_value2',
-))
-->values(array(
-  'entity_type' => 'node',
-  'bundle' => 'forum',
-  'deleted' => '0',
-  'entity_id' => '7',
-  'revision_id' => '7',
-  'language' => 'und',
-  'delta' => '0',
-  'field_event_value' => '1993-01-04 02:00:00',
-  'field_event_value2' => '1999-01-07 04:00:00',
-))
-->execute();
-$connection->schema()->createTable('field_data_field_image', array(
-  'fields' => array(
-    'entity_type' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '128',
-      'default' => '',
-    ),
-    'bundle' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '128',
-      'default' => '',
-    ),
-    'deleted' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'entity_id' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-    'revision_id' => array(
-      'type' => 'int',
-      'not null' => FALSE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-    'language' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '32',
-      'default' => '',
-    ),
-    'delta' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-    'field_image_fid' => array(
-      'type' => 'int',
-      'not null' => FALSE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-    'field_image_alt' => array(
-      'type' => 'varchar',
-      'not null' => FALSE,
-      'length' => '512',
-    ),
-    'field_image_title' => array(
-      'type' => 'varchar',
-      'not null' => FALSE,
-      'length' => '1024',
-    ),
-    'field_image_width' => array(
-      'type' => 'int',
-      'not null' => FALSE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-    'field_image_height' => array(
-      'type' => 'int',
-      'not null' => FALSE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-  ),
-  'primary key' => array(
-    'entity_type',
-    'deleted',
-    'entity_id',
-    'language',
-    'delta',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->schema()->createTable('field_data_field_tags', array(
-  'fields' => array(
-    'entity_type' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '128',
-      'default' => '',
-    ),
-    'bundle' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '128',
-      'default' => '',
-    ),
-    'deleted' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'tiny',
-      'default' => '0',
-    ),
-    'entity_id' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-    'revision_id' => array(
-      'type' => 'int',
-      'not null' => FALSE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-    'language' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '32',
-      'default' => '',
-    ),
-    'delta' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-    'field_tags_tid' => array(
-      'type' => 'int',
-      'not null' => FALSE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-  ),
-  'primary key' => array(
-    'entity_type',
-    'entity_id',
-    'deleted',
-    'delta',
-    'language',
-  ),
-  'indexes' => array(
-    'entity_type' => array(
-      'entity_type',
-    ),
-    'bundle' => array(
-      'bundle',
-    ),
-    'deleted' => array(
-      'deleted',
-    ),
-    'entity_id' => array(
-      'entity_id',
-    ),
-    'revision_id' => array(
-      'revision_id',
-    ),
-    'language' => array(
-      'language',
-    ),
-    'field_tags_tid' => array(
-      'field_tags_tid',
-    ),
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->schema()->createTable('field_data_subject_field', array(
-  'fields' => array(
-    'entity_type' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '128',
-      'default' => '',
-    ),
-    'bundle' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '128',
-      'default' => '',
-    ),
-    'deleted' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'tiny',
-      'default' => '0',
-    ),
-    'entity_id' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-    'revision_id' => array(
-      'type' => 'int',
-      'not null' => FALSE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-    'language' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '32',
-      'default' => '',
-    ),
-    'delta' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-    'subject_field_value' => array(
-      'type' => 'varchar',
-      'not null' => FALSE,
-      'length' => '255',
-    ),
-    'subject_field_format' => array(
-      'type' => 'varchar',
-      'not null' => FALSE,
-      'length' => '255',
-    ),
-  ),
-  'primary key' => array(
-    'entity_type',
-    'entity_id',
-    'deleted',
-    'delta',
-    'language',
-  ),
-  'indexes' => array(
-    'entity_type' => array(
-      'entity_type',
-    ),
-    'bundle' => array(
-      'bundle',
-    ),
-    'deleted' => array(
-      'deleted',
-    ),
-    'entity_id' => array(
-      'entity_id',
-    ),
-    'revision_id' => array(
-      'revision_id',
-    ),
-    'language' => array(
-      'language',
-    ),
-    'subject_field_format' => array(
-      array(
-        'subject_field_format',
-        '191',
-      ),
-    ),
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->schema()->createTable('field_data_taxonomy_forums', array(
-  'fields' => array(
-    'entity_type' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '128',
-      'default' => '',
-    ),
-    'bundle' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '128',
-      'default' => '',
-    ),
-    'deleted' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'entity_id' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-    'revision_id' => array(
-      'type' => 'int',
-      'not null' => FALSE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-    'language' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '32',
-      'default' => '',
-    ),
-    'delta' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-    'taxonomy_forums_tid' => array(
-      'type' => 'int',
-      'not null' => FALSE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-  ),
-  'primary key' => array(
-    'entity_type',
-    'deleted',
-    'entity_id',
-    'language',
-    'delta',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->insert('field_data_taxonomy_forums')
-->fields(array(
-  'entity_type',
-  'bundle',
-  'deleted',
-  'entity_id',
-  'revision_id',
-  'language',
-  'delta',
-  'taxonomy_forums_tid',
-))
-->values(array(
-  'entity_type' => 'node',
-  'bundle' => 'forum',
-  'deleted' => '0',
-  'entity_id' => '6',
-  'revision_id' => '6',
-  'language' => 'und',
-  'delta' => '0',
-  'taxonomy_forums_tid' => '1',
-))
-->values(array(
-  'entity_type' => 'node',
-  'bundle' => 'forum',
-  'deleted' => '0',
-  'entity_id' => '7',
-  'revision_id' => '7',
-  'language' => 'und',
-  'delta' => '0',
-  'taxonomy_forums_tid' => '1',
-))
-->execute();
-$connection->schema()->createTable('field_revision_body', array(
-  'fields' => array(
-    'entity_type' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '128',
-      'default' => '',
-    ),
-    'bundle' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '128',
-      'default' => '',
-    ),
-    'deleted' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'entity_id' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-    'revision_id' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-    'language' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '32',
-      'default' => '',
-    ),
-    'delta' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-    'body_value' => array(
-      'type' => 'text',
-      'not null' => FALSE,
-      'size' => 'normal',
-    ),
-    'body_summary' => array(
-      'type' => 'text',
-      'not null' => FALSE,
-      'size' => 'normal',
-    ),
-    'body_format' => array(
-      'type' => 'varchar',
-      'not null' => FALSE,
-      'length' => '255',
-    ),
-  ),
-  'primary key' => array(
-    'entity_type',
-    'deleted',
-    'entity_id',
-    'revision_id',
-    'language',
-    'delta',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->insert('field_revision_body')
-->fields(array(
-  'entity_type',
-  'bundle',
-  'deleted',
-  'entity_id',
-  'revision_id',
-  'language',
-  'delta',
-  'body_value',
-  'body_summary',
-  'body_format',
-))
-->values(array(
-  'entity_type' => 'node',
-  'bundle' => 'et',
-  'deleted' => '0',
-  'entity_id' => '11',
-  'revision_id' => '15',
-  'language' => 'und',
-  'delta' => '0',
-  'body_value' => '1st',
-  'body_summary' => '',
-  'body_format' => 'filtered_html',
-))
-->values(array(
-  'entity_type' => 'node',
-  'bundle' => 'et',
-  'deleted' => '0',
-  'entity_id' => '11',
-  'revision_id' => '16',
-  'language' => 'und',
-  'delta' => '0',
-  'body_value' => '1st',
-  'body_summary' => '',
-  'body_format' => 'filtered_html',
-))
-->values(array(
-  'entity_type' => 'node',
-  'bundle' => 'et',
-  'deleted' => '0',
-  'entity_id' => '11',
-  'revision_id' => '17',
-  'language' => 'und',
-  'delta' => '0',
-  'body_value' => '2nd',
-  'body_summary' => '',
-  'body_format' => 'filtered_html',
-))
-->values(array(
-  'entity_type' => 'node',
-  'bundle' => 'et',
-  'deleted' => '0',
-  'entity_id' => '11',
-  'revision_id' => '18',
-  'language' => 'und',
-  'delta' => '0',
-  'body_value' => '2nd',
-  'body_summary' => '',
-  'body_format' => 'filtered_html',
-))
-->execute();
-$connection->schema()->createTable('field_revision_comment_body', array(
-  'fields' => array(
-    'entity_type' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '128',
-      'default' => '',
-    ),
-    'bundle' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '128',
-      'default' => '',
-    ),
-    'deleted' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'entity_id' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-    'revision_id' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-    'language' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '32',
-      'default' => '',
-    ),
-    'delta' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-    'comment_body_value' => array(
-      'type' => 'text',
-      'not null' => FALSE,
-      'size' => 'normal',
-    ),
-    'comment_body_format' => array(
-      'type' => 'varchar',
-      'not null' => FALSE,
-      'length' => '255',
-    ),
-  ),
-  'primary key' => array(
-    'entity_type',
-    'deleted',
-    'entity_id',
-    'revision_id',
-    'language',
-    'delta',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->schema()->createTable('field_revision_field_event', array(
-  'fields' => array(
-    'entity_type' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '128',
-      'default' => '',
-    ),
-    'bundle' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '128',
-      'default' => '',
-    ),
-    'deleted' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'tiny',
-      'default' => '0',
-    ),
-    'entity_id' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-    'revision_id' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-    'language' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '32',
-      'default' => '',
-    ),
-    'delta' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-    'field_event_value' => array(
-      'type' => 'datetime',
-      'not null' => FALSE,
-      'mysql_type' => 'datetime',
-      'pgsql_type' => 'timestamp without time zone',
-      'sqlite_type' => 'varchar',
-      'sqlsrv_type' => 'smalldatetime',
-    ),
-    'field_event_value2' => array(
-      'type' => 'datetime',
-      'not null' => FALSE,
-      'mysql_type' => 'datetime',
-      'pgsql_type' => 'timestamp without time zone',
-      'sqlite_type' => 'varchar',
-      'sqlsrv_type' => 'smalldatetime',
-    ),
-  ),
-  'primary key' => array(
-    'entity_type',
-    'entity_id',
-    'revision_id',
-    'deleted',
-    'delta',
-    'language',
-  ),
-  'indexes' => array(
-    'entity_type' => array(
-      'entity_type',
-    ),
-    'bundle' => array(
-      'bundle',
-    ),
-    'deleted' => array(
-      'deleted',
-    ),
-    'entity_id' => array(
-      'entity_id',
-    ),
-    'revision_id' => array(
-      'revision_id',
-    ),
-    'language' => array(
-      'language',
-    ),
-    'field_event_value' => array(
-      'field_event_value',
-      'field_event_value2',
-    ),
-    'field_event_value2' => array(
-      'field_event_value2',
-    ),
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->insert('field_revision_field_event')
-->fields(array(
-  'entity_type',
-  'bundle',
-  'deleted',
-  'entity_id',
-  'revision_id',
-  'language',
-  'delta',
-  'field_event_value',
-  'field_event_value2',
-))
-->values(array(
-  'entity_type' => 'node',
-  'bundle' => 'forum',
-  'deleted' => '0',
-  'entity_id' => '7',
-  'revision_id' => '7',
-  'language' => 'und',
-  'delta' => '0',
-  'field_event_value' => '1993-01-04 02:00:00',
-  'field_event_value2' => '1999-01-07 04:00:00',
-))
-->execute();
-$connection->schema()->createTable('field_revision_field_image', array(
-  'fields' => array(
-    'entity_type' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '128',
-      'default' => '',
-    ),
-    'bundle' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '128',
-      'default' => '',
-    ),
-    'deleted' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'entity_id' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-    'revision_id' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-    'language' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '32',
-      'default' => '',
-    ),
-    'delta' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-    'field_image_fid' => array(
-      'type' => 'int',
-      'not null' => FALSE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-    'field_image_alt' => array(
-      'type' => 'varchar',
-      'not null' => FALSE,
-      'length' => '512',
-    ),
-    'field_image_title' => array(
-      'type' => 'varchar',
-      'not null' => FALSE,
-      'length' => '1024',
-    ),
-    'field_image_width' => array(
-      'type' => 'int',
-      'not null' => FALSE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-    'field_image_height' => array(
-      'type' => 'int',
-      'not null' => FALSE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-  ),
-  'primary key' => array(
-    'entity_type',
-    'deleted',
-    'entity_id',
-    'revision_id',
-    'language',
-    'delta',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->schema()->createTable('field_revision_field_tags', array(
-  'fields' => array(
-    'entity_type' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '128',
-      'default' => '',
-    ),
-    'bundle' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '128',
-      'default' => '',
-    ),
-    'deleted' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'tiny',
-      'default' => '0',
-    ),
-    'entity_id' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-    'revision_id' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-    'language' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '32',
-      'default' => '',
-    ),
-    'delta' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-    'field_tags_tid' => array(
-      'type' => 'int',
-      'not null' => FALSE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-  ),
-  'primary key' => array(
-    'entity_type',
-    'entity_id',
-    'revision_id',
-    'deleted',
-    'delta',
-    'language',
-  ),
-  'indexes' => array(
-    'entity_type' => array(
-      'entity_type',
-    ),
-    'bundle' => array(
-      'bundle',
-    ),
-    'deleted' => array(
-      'deleted',
-    ),
-    'entity_id' => array(
-      'entity_id',
-    ),
-    'revision_id' => array(
-      'revision_id',
-    ),
-    'language' => array(
-      'language',
-    ),
-    'field_tags_tid' => array(
-      'field_tags_tid',
-    ),
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->schema()->createTable('field_revision_subject_field', array(
-  'fields' => array(
-    'entity_type' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '128',
-      'default' => '',
-    ),
-    'bundle' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '128',
-      'default' => '',
-    ),
-    'deleted' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'tiny',
-      'default' => '0',
-    ),
-    'entity_id' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-    'revision_id' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-    'language' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '32',
-      'default' => '',
-    ),
-    'delta' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-    'subject_field_value' => array(
-      'type' => 'varchar',
-      'not null' => FALSE,
-      'length' => '255',
-    ),
-    'subject_field_format' => array(
-      'type' => 'varchar',
-      'not null' => FALSE,
-      'length' => '255',
-    ),
-  ),
-  'primary key' => array(
-    'entity_type',
-    'entity_id',
-    'revision_id',
-    'deleted',
-    'delta',
-    'language',
-  ),
-  'indexes' => array(
-    'entity_type' => array(
-      'entity_type',
-    ),
-    'bundle' => array(
-      'bundle',
-    ),
-    'deleted' => array(
-      'deleted',
-    ),
-    'entity_id' => array(
-      'entity_id',
-    ),
-    'revision_id' => array(
-      'revision_id',
-    ),
-    'language' => array(
-      'language',
-    ),
-    'subject_field_format' => array(
-      array(
-        'subject_field_format',
-        '191',
-      ),
-    ),
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->schema()->createTable('field_revision_taxonomy_forums', array(
-  'fields' => array(
-    'entity_type' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '128',
-      'default' => '',
-    ),
-    'bundle' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '128',
-      'default' => '',
-    ),
-    'deleted' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'entity_id' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-    'revision_id' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-    'language' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '32',
-      'default' => '',
-    ),
-    'delta' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-    'taxonomy_forums_tid' => array(
-      'type' => 'int',
-      'not null' => FALSE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-  ),
-  'primary key' => array(
-    'entity_type',
-    'deleted',
-    'entity_id',
-    'revision_id',
-    'language',
-    'delta',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->insert('field_revision_taxonomy_forums')
-->fields(array(
-  'entity_type',
-  'bundle',
-  'deleted',
-  'entity_id',
-  'revision_id',
-  'language',
-  'delta',
-  'taxonomy_forums_tid',
-))
-->values(array(
-  'entity_type' => 'node',
-  'bundle' => 'forum',
-  'deleted' => '0',
-  'entity_id' => '6',
-  'revision_id' => '6',
-  'language' => 'und',
-  'delta' => '0',
-  'taxonomy_forums_tid' => '1',
-))
-->values(array(
-  'entity_type' => 'node',
-  'bundle' => 'forum',
-  'deleted' => '0',
-  'entity_id' => '7',
-  'revision_id' => '7',
-  'language' => 'und',
-  'delta' => '0',
-  'taxonomy_forums_tid' => '1',
-))
-->execute();
-$connection->schema()->createTable('file_managed', array(
-  'fields' => array(
-    'fid' => array(
-      'type' => 'serial',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-    'uid' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-    'filename' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'uri' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'filemime' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'filesize' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-    'status' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'timestamp' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-  ),
-  'primary key' => array(
-    'fid',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->insert('file_managed')
-->fields(array(
-  'fid',
-  'uid',
-  'filename',
-  'uri',
-  'filemime',
-  'filesize',
-  'status',
-  'timestamp',
-))
-->values(array(
-  'fid' => '3',
-  'uid' => '1',
-  'filename' => 'Babylon5.txt',
-  'uri' => 'private://Babylon5.txt',
-  'filemime' => 'text/plain',
-  'filesize' => '4',
-  'status' => '1',
-  'timestamp' => '1486104045',
-))
-->values(array(
-  'fid' => '4',
-  'uid' => '1',
-  'filename' => 'TerokNor.txt',
-  'uri' => 'temporary://TerokNor.txt',
-  'filemime' => 'text/plain',
-  'filesize' => '2369',
-  'status' => '1',
-  'timestamp' => '1421747516',
-))
-->execute();
-$connection->schema()->createTable('file_usage', array(
-  'fields' => array(
-    'fid' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-    'module' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'type' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '64',
-      'default' => '',
-    ),
-    'id' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-    'count' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-  ),
-  'primary key' => array(
-    'fid',
-    'module',
-    'type',
-    'id',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->insert('file_usage')
-->fields(array(
-  'fid',
-  'module',
-  'type',
-  'id',
-  'count',
-))
-->values(array(
-  'fid' => '3',
-  'module' => 'file',
-  'type' => 'node',
-  'id' => '1',
-  'count' => '1',
-))
-->execute();
-$connection->schema()->createTable('filter', array(
-  'fields' => array(
-    'format' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-    ),
-    'module' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '64',
-      'default' => '',
-    ),
-    'name' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '32',
-      'default' => '',
-    ),
-    'weight' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'status' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'settings' => array(
-      'type' => 'blob',
-      'not null' => FALSE,
-      'size' => 'normal',
-    ),
-  ),
-  'primary key' => array(
-    'format',
-    'name',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->insert('filter')
-->fields(array(
-  'format',
-  'module',
-  'name',
-  'weight',
-  'status',
-  'settings',
-))
-->values(array(
-  'format' => 'custom_text_format',
-  'module' => 'filter',
-  'name' => 'filter_autop',
-  'weight' => '0',
-  'status' => '1',
-  'settings' => 'a:0:{}',
-))
-->values(array(
-  'format' => 'custom_text_format',
-  'module' => 'filter',
-  'name' => 'filter_html',
-  'weight' => '-10',
-  'status' => '1',
-  'settings' => 'a:3:{s:12:"allowed_html";s:82:"<a> <em> <strong> <cite> <blockquote> <code> <ul> <ol> <li> <dl> <dt> <dd> <table>";s:16:"filter_html_help";i:1;s:20:"filter_html_nofollow";i:1;}',
-))
-->values(array(
-  'format' => 'custom_text_format',
-  'module' => 'filter',
-  'name' => 'filter_htmlcorrector',
-  'weight' => '10',
-  'status' => '0',
-  'settings' => 'a:0:{}',
-))
-->values(array(
-  'format' => 'custom_text_format',
-  'module' => 'filter',
-  'name' => 'filter_html_escape',
-  'weight' => '-10',
-  'status' => '0',
-  'settings' => 'a:0:{}',
-))
-->values(array(
-  'format' => 'custom_text_format',
-  'module' => 'filter',
-  'name' => 'filter_url',
-  'weight' => '0',
-  'status' => '0',
-  'settings' => 'a:1:{s:17:"filter_url_length";s:2:"72";}',
-))
-->values(array(
-  'format' => 'filtered_html',
-  'module' => 'filter',
-  'name' => 'filter_autop',
-  'weight' => '2',
-  'status' => '1',
-  'settings' => 'a:0:{}',
-))
-->values(array(
-  'format' => 'filtered_html',
-  'module' => 'filter',
-  'name' => 'filter_html',
-  'weight' => '1',
-  'status' => '1',
-  'settings' => 'a:3:{s:12:"allowed_html";s:37:"<div> <span> <ul> <li> <ol> <a> <img>";s:16:"filter_html_help";i:1;s:20:"filter_html_nofollow";i:0;}',
-))
-->values(array(
-  'format' => 'filtered_html',
-  'module' => 'filter',
-  'name' => 'filter_htmlcorrector',
-  'weight' => '10',
-  'status' => '1',
-  'settings' => 'a:0:{}',
-))
-->values(array(
-  'format' => 'filtered_html',
-  'module' => 'filter',
-  'name' => 'filter_html_escape',
-  'weight' => '-10',
-  'status' => '0',
-  'settings' => 'a:0:{}',
-))
-->values(array(
-  'format' => 'filtered_html',
-  'module' => 'filter',
-  'name' => 'filter_url',
-  'weight' => '0',
-  'status' => '1',
-  'settings' => 'a:1:{s:17:"filter_url_length";s:3:"128";}',
-))
-->values(array(
-  'format' => 'full_html',
-  'module' => 'filter',
-  'name' => 'filter_autop',
-  'weight' => '1',
-  'status' => '1',
-  'settings' => 'a:0:{}',
-))
-->values(array(
-  'format' => 'full_html',
-  'module' => 'filter',
-  'name' => 'filter_html',
-  'weight' => '-10',
-  'status' => '0',
-  'settings' => 'a:3:{s:12:"allowed_html";s:74:"<a> <em> <strong> <cite> <blockquote> <code> <ul> <ol> <li> <dl> <dt> <dd>";s:16:"filter_html_help";i:1;s:20:"filter_html_nofollow";i:0;}',
-))
-->values(array(
-  'format' => 'full_html',
-  'module' => 'filter',
-  'name' => 'filter_htmlcorrector',
-  'weight' => '10',
-  'status' => '1',
-  'settings' => 'a:0:{}',
-))
-->values(array(
-  'format' => 'full_html',
-  'module' => 'filter',
-  'name' => 'filter_html_escape',
-  'weight' => '-10',
-  'status' => '0',
-  'settings' => 'a:0:{}',
-))
-->values(array(
-  'format' => 'full_html',
-  'module' => 'filter',
-  'name' => 'filter_url',
-  'weight' => '0',
-  'status' => '1',
-  'settings' => 'a:1:{s:17:"filter_url_length";i:72;}',
-))
-->values(array(
-  'format' => 'php_code',
-  'module' => 'filter',
-  'name' => 'filter_autop',
-  'weight' => '0',
-  'status' => '0',
-  'settings' => 'a:0:{}',
-))
-->values(array(
-  'format' => 'php_code',
-  'module' => 'filter',
-  'name' => 'filter_html',
-  'weight' => '-10',
-  'status' => '0',
-  'settings' => 'a:3:{s:12:"allowed_html";s:74:"<a> <em> <strong> <cite> <blockquote> <code> <ul> <ol> <li> <dl> <dt> <dd>";s:16:"filter_html_help";i:1;s:20:"filter_html_nofollow";i:0;}',
-))
-->values(array(
-  'format' => 'php_code',
-  'module' => 'filter',
-  'name' => 'filter_htmlcorrector',
-  'weight' => '10',
-  'status' => '0',
-  'settings' => 'a:0:{}',
-))
-->values(array(
-  'format' => 'php_code',
-  'module' => 'filter',
-  'name' => 'filter_html_escape',
-  'weight' => '-10',
-  'status' => '0',
-  'settings' => 'a:0:{}',
-))
-->values(array(
-  'format' => 'php_code',
-  'module' => 'filter',
-  'name' => 'filter_url',
-  'weight' => '0',
-  'status' => '0',
-  'settings' => 'a:1:{s:17:"filter_url_length";i:72;}',
-))
-->values(array(
-  'format' => 'php_code',
-  'module' => 'php',
-  'name' => 'php_code',
-  'weight' => '0',
-  'status' => '1',
-  'settings' => 'a:0:{}',
-))
-->values(array(
-  'format' => 'plain_text',
-  'module' => 'filter',
-  'name' => 'filter_autop',
-  'weight' => '2',
-  'status' => '1',
-  'settings' => 'a:0:{}',
-))
-->values(array(
-  'format' => 'plain_text',
-  'module' => 'filter',
-  'name' => 'filter_html',
-  'weight' => '-10',
-  'status' => '0',
-  'settings' => 'a:3:{s:12:"allowed_html";s:74:"<a> <em> <strong> <cite> <blockquote> <code> <ul> <ol> <li> <dl> <dt> <dd>";s:16:"filter_html_help";i:1;s:20:"filter_html_nofollow";i:0;}',
-))
-->values(array(
-  'format' => 'plain_text',
-  'module' => 'filter',
-  'name' => 'filter_htmlcorrector',
-  'weight' => '10',
-  'status' => '0',
-  'settings' => 'a:0:{}',
-))
-->values(array(
-  'format' => 'plain_text',
-  'module' => 'filter',
-  'name' => 'filter_html_escape',
-  'weight' => '0',
-  'status' => '1',
-  'settings' => 'a:0:{}',
-))
-->values(array(
-  'format' => 'plain_text',
-  'module' => 'filter',
-  'name' => 'filter_url',
-  'weight' => '1',
-  'status' => '1',
-  'settings' => 'a:1:{s:17:"filter_url_length";i:72;}',
-))
-->execute();
-$connection->schema()->createTable('filter_format', array(
-  'fields' => array(
-    'format' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-    ),
-    'name' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'cache' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'status' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '1',
-      'unsigned' => TRUE,
-    ),
-    'weight' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-  ),
-  'primary key' => array(
-    'format',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->insert('filter_format')
-->fields(array(
-  'format',
-  'name',
-  'cache',
-  'status',
-  'weight',
-))
-->values(array(
-  'format' => 'custom_text_format',
-  'name' => 'Custom Text format',
-  'cache' => '1',
-  'status' => '1',
-  'weight' => '0',
-))
-->values(array(
-  'format' => 'filtered_html',
-  'name' => 'Filtered HTML',
-  'cache' => '1',
-  'status' => '1',
-  'weight' => '0',
-))
-->values(array(
-  'format' => 'full_html',
-  'name' => 'Full HTML',
-  'cache' => '1',
-  'status' => '1',
-  'weight' => '1',
-))
-->values(array(
-  'format' => 'php_code',
-  'name' => 'PHP code',
-  'cache' => '0',
-  'status' => '0',
-  'weight' => '11',
-))
-->values(array(
-  'format' => 'plain_text',
-  'name' => 'Plain text',
-  'cache' => '1',
-  'status' => '1',
-  'weight' => '10',
-))
-->execute();
-$connection->schema()->createTable('flood', array(
-  'fields' => array(
-    'fid' => array(
-      'type' => 'serial',
-      'not null' => TRUE,
-      'size' => 'normal',
-    ),
-    'event' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '64',
-      'default' => '',
-    ),
-    'identifier' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '128',
-      'default' => '',
-    ),
-    'timestamp' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'expiration' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-  ),
-  'primary key' => array(
-    'fid',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->schema()->createTable('forum', array(
-  'fields' => array(
-    'nid' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-    'vid' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-    'tid' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-  ),
-  'primary key' => array(
-    'vid',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->insert('forum')
-->fields(array(
-  'nid',
-  'vid',
-  'tid',
-))
-->values(array(
-  'nid' => '6',
-  'vid' => '6',
-  'tid' => '1',
-))
-->values(array(
-  'nid' => '7',
-  'vid' => '7',
-  'tid' => '1',
-))
-->execute();
-$connection->schema()->createTable('forum_index', array(
-  'fields' => array(
-    'nid' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-    'title' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'tid' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-    'sticky' => array(
-      'type' => 'int',
-      'not null' => FALSE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'created' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-    'last_comment_timestamp' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'comment_count' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->insert('forum_index')
-->fields(array(
-  'nid',
-  'title',
-  'tid',
-  'sticky',
-  'created',
-  'last_comment_timestamp',
-  'comment_count',
-))
-->values(array(
-  'nid' => '6',
-  'title' => 'Comments are closed :-(',
-  'tid' => '1',
-  'sticky' => '0',
-  'created' => '1504715414',
-  'last_comment_timestamp' => '1504715414',
-  'comment_count' => '0',
-))
-->values(array(
-  'nid' => '7',
-  'title' => 'Comments are open :-)',
-  'tid' => '1',
-  'sticky' => '0',
-  'created' => '1504715432',
-  'last_comment_timestamp' => '1504715432',
-  'comment_count' => '0',
-))
-->execute();
-$connection->schema()->createTable('history', array(
-  'fields' => array(
-    'uid' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'nid' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-    'timestamp' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-  ),
-  'primary key' => array(
-    'uid',
-    'nid',
-  ),
-  'indexes' => array(
-    'nid' => array(
-      'nid',
-    ),
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->schema()->createTable('i18n_string', array(
-  'fields' => array(
-    'lid' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'textgroup' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '50',
-      'default' => 'default',
-    ),
-    'context' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'objectid' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'type' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'property' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'objectindex' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'big',
-      'default' => '0',
-    ),
-    'format' => array(
-      'type' => 'varchar',
-      'not null' => FALSE,
-      'length' => '255',
-    ),
-  ),
-  'primary key' => array(
-    'lid',
-  ),
-  'indexes' => array(
-    'group_context' => array(
-      'textgroup',
-      array(
-        'context',
-        '50',
-      ),
-    ),
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->insert('i18n_string')
-->fields(array(
-  'lid',
-  'textgroup',
-  'context',
-  'objectid',
-  'type',
-  'property',
-  'objectindex',
-  'format',
-))
-->values(array(
-  'lid' => '272',
-  'textgroup' => 'taxonomy',
-  'context' => 'vocabulary:2:name',
-  'objectid' => '2',
-  'type' => 'vocabulary',
-  'property' => 'name',
-  'objectindex' => '2',
-  'format' => '',
-))
-->values(array(
-  'lid' => '273',
-  'textgroup' => 'taxonomy',
-  'context' => 'vocabulary:2:description',
-  'objectid' => '2',
-  'type' => 'vocabulary',
-  'property' => 'description',
-  'objectindex' => '2',
-  'format' => '',
-))
-->values(array(
-  'lid' => '274',
-  'textgroup' => 'taxonomy',
-  'context' => 'vocabulary:1:name',
-  'objectid' => '1',
-  'type' => 'vocabulary',
-  'property' => 'name',
-  'objectindex' => '1',
-  'format' => '',
-))
-->values(array(
-  'lid' => '275',
-  'textgroup' => 'taxonomy',
-  'context' => 'vocabulary:1:description',
-  'objectid' => '1',
-  'type' => 'vocabulary',
-  'property' => 'description',
-  'objectindex' => '1',
-  'format' => '',
-))
-->execute();
-$connection->schema()->createTable('i18n_translation_set', array(
-  'fields' => array(
-    'tsid' => array(
-      'type' => 'serial',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-    'title' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'type' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '32',
-      'default' => '',
-    ),
-    'bundle' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '128',
-      'default' => '',
-    ),
-    'master_id' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-    'status' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '1',
-    ),
-    'created' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'changed' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-  ),
-  'primary key' => array(
-    'tsid',
-  ),
-  'indexes' => array(
-    'entity_bundle' => array(
-      'type',
-      'bundle',
-    ),
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->schema()->createTable('image_effects', array(
-  'fields' => array(
-    'ieid' => array(
-      'type' => 'serial',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-    'isid' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-    'weight' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'name' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-    ),
-    'data' => array(
-      'type' => 'blob',
-      'not null' => TRUE,
-      'size' => 'normal',
-    ),
-  ),
-  'primary key' => array(
-    'ieid',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->insert('image_effects')
-->fields(array(
-  'ieid',
-  'isid',
-  'weight',
-  'name',
-  'data',
-))
-->values(array(
-  'ieid' => '3',
-  'isid' => '1',
-  'weight' => '1',
-  'name' => 'image_scale_and_crop',
-  'data' => 'a:2:{s:5:"width";s:2:"55";s:6:"height";s:2:"55";}',
-))
-->values(array(
-  'ieid' => '4',
-  'isid' => '1',
-  'weight' => '2',
-  'name' => 'image_desaturate',
-  'data' => 'a:0:{}',
-))
-->values(array(
-  'ieid' => '5',
-  'isid' => '2',
-  'weight' => '1',
-  'name' => 'image_resize',
-  'data' => 'a:2:{s:5:"width";s:2:"55";s:6:"height";s:3:"100";}',
-))
-->values(array(
-  'ieid' => '6',
-  'isid' => '2',
-  'weight' => '2',
-  'name' => 'image_rotate',
-  'data' => 'a:3:{s:7:"degrees";s:2:"45";s:7:"bgcolor";s:7:"#FFFFFF";s:6:"random";i:0;}',
-))
-->values(array(
-  'ieid' => '7',
-  'isid' => '3',
-  'weight' => '1',
-  'name' => 'image_scale',
-  'data' => 'a:3:{s:5:"width";s:3:"150";s:6:"height";s:0:"";s:7:"upscale";i:0;}',
-))
-->values(array(
-  'ieid' => '8',
-  'isid' => '3',
-  'weight' => '2',
-  'name' => 'image_crop',
-  'data' => 'a:3:{s:5:"width";s:2:"50";s:6:"height";s:2:"50";s:6:"anchor";s:8:"left-top";}',
-))
-->execute();
-$connection->schema()->createTable('image_styles', array(
-  'fields' => array(
-    'isid' => array(
-      'type' => 'serial',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-    'name' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-    ),
-    'label' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-  ),
-  'primary key' => array(
-    'isid',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->insert('image_styles')
-->fields(array(
-  'isid',
-  'name',
-  'label',
-))
-->values(array(
-  'isid' => '1',
-  'name' => 'custom_image_style_1',
-  'label' => 'Custom image style 1',
-))
-->values(array(
-  'isid' => '2',
-  'name' => 'custom_image_style_2',
-  'label' => 'Custom image style 2',
-))
-->values(array(
-  'isid' => '3',
-  'name' => 'custom_image_style_3',
-  'label' => 'Custom image style 3',
-))
-->execute();
-$connection->schema()->createTable('languages', array(
-  'fields' => array(
-    'language' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '12',
-      'default' => '',
-    ),
-    'name' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '64',
-      'default' => '',
-    ),
-    'native' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '64',
-      'default' => '',
-    ),
-    'direction' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'enabled' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'plurals' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'formula' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'domain' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '128',
-      'default' => '',
-    ),
-    'prefix' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '128',
-      'default' => '',
-    ),
-    'weight' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'javascript' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '64',
-      'default' => '',
-    ),
-  ),
-  'primary key' => array(
-    'language',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->insert('languages')
-->fields(array(
-  'language',
-  'name',
-  'native',
-  'direction',
-  'enabled',
-  'plurals',
-  'formula',
-  'domain',
-  'prefix',
-  'weight',
-  'javascript',
-))
-->values(array(
-  'language' => 'en',
-  'name' => 'English',
-  'native' => 'English',
-  'direction' => '0',
-  'enabled' => '1',
-  'plurals' => '0',
-  'formula' => '',
-  'domain' => '',
-  'prefix' => '',
-  'weight' => '0',
-  'javascript' => '',
-))
-->values(array(
-  'language' => 'fr',
-  'name' => 'French',
-  'native' => 'Français',
-  'direction' => '0',
-  'enabled' => '1',
-  'plurals' => '0',
-  'formula' => '',
-  'domain' => 'fr.drupal.org',
-  'prefix' => 'fr',
-  'weight' => '0',
-  'javascript' => '',
-))
-->values(array(
-  'language' => 'is',
-  'name' => 'Icelandic',
-  'native' => 'Íslenska',
-  'direction' => '0',
-  'enabled' => '1',
-  'plurals' => '0',
-  'formula' => '',
-  'domain' => 'is.drupal.org',
-  'prefix' => 'is',
-  'weight' => '0',
-  'javascript' => '',
-))
-->execute();
-$connection->schema()->createTable('locales_source', array(
-  'fields' => array(
-    'lid' => array(
-      'type' => 'serial',
-      'not null' => TRUE,
-      'size' => 'normal',
-    ),
-    'location' => array(
-      'type' => 'text',
-      'not null' => FALSE,
-      'size' => 'normal',
-    ),
-    'textgroup' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => 'default',
-    ),
-    'source' => array(
-      'type' => 'blob',
-      'not null' => TRUE,
-      'size' => 'normal',
-    ),
-    'context' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'version' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '20',
-      'default' => 'none',
-    ),
-  ),
-  'primary key' => array(
-    'lid',
-  ),
-  'indexes' => array(
-    'textgroup_context' => array(
-      'textgroup',
-      array(
-        'context',
-        '50',
-      ),
-    ),
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->insert('locales_source')
-->fields(array(
-  'lid',
-  'location',
-  'textgroup',
-  'source',
-  'context',
-  'version',
-))
-->values(array(
-  'lid' => '1',
-  'location' => 'misc/drupal.js',
-  'textgroup' => 'default',
-  'source' => 'An AJAX HTTP error occurred.',
-  'context' => '',
-  'version' => 'none',
-))
-->values(array(
-  'lid' => '2',
-  'location' => 'misc/drupal.js',
-  'textgroup' => 'default',
-  'source' => 'HTTP Result Code: !status',
-  'context' => '',
-  'version' => 'none',
-))
-->values(array(
-  'lid' => '3',
-  'location' => 'misc/drupal.js',
-  'textgroup' => 'default',
-  'source' => 'An AJAX HTTP request terminated abnormally.',
-  'context' => '',
-  'version' => 'none',
-))
-->values(array(
-  'lid' => '4',
-  'location' => 'misc/drupal.js',
-  'textgroup' => 'default',
-  'source' => 'Debugging information follows.',
-  'context' => '',
-  'version' => 'none',
-))
-->values(array(
-  'lid' => '5',
-  'location' => 'misc/drupal.js',
-  'textgroup' => 'default',
-  'source' => 'Path: !uri',
-  'context' => '',
-  'version' => 'none',
-))
-->values(array(
-  'lid' => '6',
-  'location' => 'misc/drupal.js',
-  'textgroup' => 'default',
-  'source' => 'StatusText: !statusText',
-  'context' => '',
-  'version' => 'none',
-))
-->values(array(
-  'lid' => '7',
-  'location' => 'misc/drupal.js',
-  'textgroup' => 'default',
-  'source' => 'ResponseText: !responseText',
-  'context' => '',
-  'version' => 'none',
-))
-->values(array(
-  'lid' => '8',
-  'location' => 'misc/drupal.js',
-  'textgroup' => 'default',
-  'source' => 'ReadyState: !readyState',
-  'context' => '',
-  'version' => 'none',
-))
-->values(array(
-  'lid' => '9',
-  'location' => 'misc/collapse.js',
-  'textgroup' => 'default',
-  'source' => 'Hide',
-  'context' => '',
-  'version' => 'none',
-))
-->values(array(
-  'lid' => '10',
-  'location' => 'misc/collapse.js',
-  'textgroup' => 'default',
-  'source' => 'Show',
-  'context' => '',
-  'version' => 'none',
-))
-->values(array(
-  'lid' => '11',
-  'location' => 'modules/toolbar/toolbar.js',
-  'textgroup' => 'default',
-  'source' => 'Show shortcuts',
-  'context' => '',
-  'version' => 'none',
-))
-->values(array(
-  'lid' => '12',
-  'location' => 'modules/toolbar/toolbar.js',
-  'textgroup' => 'default',
-  'source' => 'Hide shortcuts',
-  'context' => '',
-  'version' => 'none',
-))
-->values(array(
-  'lid' => '13',
-  'location' => 'misc/machine-name.js',
-  'textgroup' => 'default',
-  'source' => 'Edit',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '14',
-  'location' => 'modules/comment/comment-node-form.js',
-  'textgroup' => 'default',
-  'source' => '@number comments per page',
-  'context' => '',
-  'version' => 'none',
-))
-->values(array(
-  'lid' => '15',
-  'location' => 'misc/vertical-tabs.js',
-  'textgroup' => 'default',
-  'source' => '(active tab)',
-  'context' => '',
-  'version' => 'none',
-))
-->values(array(
-  'lid' => '16',
-  'location' => 'modules/node/content_types.js',
-  'textgroup' => 'default',
-  'source' => 'Requires a title',
-  'context' => '',
-  'version' => 'none',
-))
-->values(array(
-  'lid' => '17',
-  'location' => 'modules/node/content_types.js; modules/node/node.js',
-  'textgroup' => 'default',
-  'source' => 'Not published',
-  'context' => '',
-  'version' => 'none',
-))
-->values(array(
-  'lid' => '18',
-  'location' => 'modules/node/content_types.js',
-  'textgroup' => 'default',
-  'source' => "Don't display post information",
-  'context' => '',
-  'version' => 'none',
-))
-->values(array(
-  'lid' => '19',
-  'location' => 'misc/tabledrag.js',
-  'textgroup' => 'default',
-  'source' => 'Re-order rows by numerical weight instead of dragging.',
-  'context' => '',
-  'version' => 'none',
-))
-->values(array(
-  'lid' => '20',
-  'location' => 'misc/tabledrag.js',
-  'textgroup' => 'default',
-  'source' => 'Show row weights',
-  'context' => '',
-  'version' => 'none',
-))
-->values(array(
-  'lid' => '21',
-  'location' => 'misc/tabledrag.js',
-  'textgroup' => 'default',
-  'source' => 'Hide row weights',
-  'context' => '',
-  'version' => 'none',
-))
-->values(array(
-  'lid' => '22',
-  'location' => 'misc/tabledrag.js',
-  'textgroup' => 'default',
-  'source' => 'Drag to re-order',
-  'context' => '',
-  'version' => 'none',
-))
-->values(array(
-  'lid' => '23',
-  'location' => 'misc/tabledrag.js',
-  'textgroup' => 'default',
-  'source' => 'Changes made in this table will not be saved until the form is submitted.',
-  'context' => '',
-  'version' => 'none',
-))
-->values(array(
-  'lid' => '24',
-  'location' => 'sites/all/modules/date/date_api/date_year_range.js',
-  'textgroup' => 'default',
-  'source' => 'Other',
-  'context' => '',
-  'version' => 'none',
-))
-->values(array(
-  'lid' => '25',
-  'location' => 'sites/all/modules/date/date_api/date_year_range.js',
-  'textgroup' => 'default',
-  'source' => '@count year from now',
-  'context' => '',
-  'version' => 'none',
-))
-->values(array(
-  'lid' => '26',
-  'location' => 'sites/all/modules/date/date_api/date_year_range.js',
-  'textgroup' => 'default',
-  'source' => '@count years from now',
-  'context' => '',
-  'version' => 'none',
-))
-->values(array(
-  'lid' => '27',
-  'location' => 'modules/file/file.js',
-  'textgroup' => 'default',
-  'source' => 'The selected file %filename cannot be uploaded. Only files with the following extensions are allowed: %extensions.',
-  'context' => '',
-  'version' => 'none',
-))
-->values(array(
-  'lid' => '28',
-  'location' => 'misc/ajax.js',
-  'textgroup' => 'default',
-  'source' => 'Please wait...',
-  'context' => '',
-  'version' => 'none',
-))
-->values(array(
-  'lid' => '29',
-  'location' => 'modules/field/modules/text/text.js',
-  'textgroup' => 'default',
-  'source' => 'Hide summary',
-  'context' => '',
-  'version' => 'none',
-))
-->values(array(
-  'lid' => '30',
-  'location' => 'modules/field/modules/text/text.js',
-  'textgroup' => 'default',
-  'source' => 'Edit summary',
-  'context' => '',
-  'version' => 'none',
-))
-->values(array(
-  'lid' => '31',
-  'location' => 'misc/autocomplete.js',
-  'textgroup' => 'default',
-  'source' => 'Autocomplete popup',
-  'context' => '',
-  'version' => 'none',
-))
-->values(array(
-  'lid' => '32',
-  'location' => 'misc/autocomplete.js',
-  'textgroup' => 'default',
-  'source' => 'Searching for matches...',
-  'context' => '',
-  'version' => 'none',
-))
-->values(array(
-  'lid' => '33',
-  'location' => 'modules/contextual/contextual.js',
-  'textgroup' => 'default',
-  'source' => 'Configure',
-  'context' => '',
-  'version' => 'none',
-))
-->values(array(
-  'lid' => '34',
-  'location' => 'misc/tableselect.js',
-  'textgroup' => 'default',
-  'source' => 'Select all rows in this table',
-  'context' => '',
-  'version' => 'none',
-))
-->values(array(
-  'lid' => '35',
-  'location' => 'misc/tableselect.js',
-  'textgroup' => 'default',
-  'source' => 'Deselect all rows in this table',
-  'context' => '',
-  'version' => 'none',
-))
-->values(array(
-  'lid' => '36',
-  'location' => 'modules/user/user.permissions.js',
-  'textgroup' => 'default',
-  'source' => 'This permission is inherited from the authenticated user role.',
-  'context' => '',
-  'version' => 'none',
-))
-->values(array(
-  'lid' => '37',
-  'location' => 'modules/filter/filter.admin.js',
-  'textgroup' => 'default',
-  'source' => 'Enabled',
-  'context' => '',
-  'version' => 'none',
-))
-->values(array(
-  'lid' => '38',
-  'location' => 'modules/filter/filter.admin.js',
-  'textgroup' => 'default',
-  'source' => 'Disabled',
-  'context' => '',
-  'version' => 'none',
-))
-->values(array(
-  'lid' => '39',
-  'location' => 'modules/menu/menu.js',
-  'textgroup' => 'default',
-  'source' => 'Not in menu',
-  'context' => '',
-  'version' => 'none',
-))
-->values(array(
-  'lid' => '40',
-  'location' => 'modules/book/book.js',
-  'textgroup' => 'default',
-  'source' => 'Not in book',
-  'context' => '',
-  'version' => 'none',
-))
-->values(array(
-  'lid' => '41',
-  'location' => 'modules/book/book.js',
-  'textgroup' => 'default',
-  'source' => 'New book',
-  'context' => '',
-  'version' => 'none',
-))
-->values(array(
-  'lid' => '42',
-  'location' => 'modules/node/node.js',
-  'textgroup' => 'default',
-  'source' => 'New revision',
-  'context' => '',
-  'version' => 'none',
-))
-->values(array(
-  'lid' => '43',
-  'location' => 'modules/node/node.js',
-  'textgroup' => 'default',
-  'source' => 'No revision',
-  'context' => '',
-  'version' => 'none',
-))
-->values(array(
-  'lid' => '44',
-  'location' => 'modules/node/node.js',
-  'textgroup' => 'default',
-  'source' => 'By @name on @date',
-  'context' => '',
-  'version' => 'none',
-))
-->values(array(
-  'lid' => '45',
-  'location' => 'modules/node/node.js',
-  'textgroup' => 'default',
-  'source' => 'By @name',
-  'context' => '',
-  'version' => 'none',
-))
-->values(array(
-  'lid' => '46',
-  'location' => 'modules/path/path.js',
-  'textgroup' => 'default',
-  'source' => 'Alias: @alias',
-  'context' => '',
-  'version' => 'none',
-))
-->values(array(
-  'lid' => '47',
-  'location' => 'modules/path/path.js',
-  'textgroup' => 'default',
-  'source' => 'No alias',
-  'context' => '',
-  'version' => 'none',
-))
-->values(array(
-  'lid' => '48',
-  'location' => 'misc/drupal.js',
-  'textgroup' => 'default',
-  'source' => 'CustomMessage: !customMessage',
-  'context' => '',
-  'version' => 'none',
-))
-->values(array(
-  'lid' => '49',
-  'location' => 'modules/block/block.js; sites/all/modules/i18n/i18n_block/i18n_block.js',
-  'textgroup' => 'default',
-  'source' => 'Not restricted',
-  'context' => '',
-  'version' => 'none',
-))
-->values(array(
-  'lid' => '50',
-  'location' => 'modules/block/block.js',
-  'textgroup' => 'default',
-  'source' => 'Restricted to certain pages',
-  'context' => '',
-  'version' => 'none',
-))
-->values(array(
-  'lid' => '51',
-  'location' => 'modules/block/block.js',
-  'textgroup' => 'default',
-  'source' => 'Not customizable',
-  'context' => '',
-  'version' => 'none',
-))
-->values(array(
-  'lid' => '52',
-  'location' => 'modules/block/block.js',
-  'textgroup' => 'default',
-  'source' => 'The changes to these blocks will not be saved until the <em>Save blocks</em> button is clicked.',
-  'context' => '',
-  'version' => 'none',
-))
-->values(array(
-  'lid' => '53',
-  'location' => 'modules/block/block.js',
-  'textgroup' => 'default',
-  'source' => 'The block cannot be placed in this region.',
-  'context' => '',
-  'version' => 'none',
-))
-->values(array(
-  'lid' => '54',
-  'location' => 'sites/all/modules/i18n/i18n_block/i18n_block.js',
-  'textgroup' => 'default',
-  'source' => 'Translatable',
-  'context' => '',
-  'version' => 'none',
-))
-->values(array(
-  'lid' => '55',
-  'location' => 'sites/all/modules/i18n/i18n_block/i18n_block.js',
-  'textgroup' => 'default',
-  'source' => 'Not translatable',
-  'context' => '',
-  'version' => 'none',
-))
-->values(array(
-  'lid' => '56',
-  'location' => 'sites/all/modules/i18n/i18n_block/i18n_block.js',
-  'textgroup' => 'default',
-  'source' => 'Restricted to certain languages',
-  'context' => '',
-  'version' => 'none',
-))
-->values(array(
-  'lid' => '58',
-  'location' => 'misc/ajax.js',
-  'textgroup' => 'default',
-  'source' => 'The response failed verification so will not be processed.',
-  'context' => '',
-  'version' => 'none',
-))
-->values(array(
-  'lid' => '59',
-  'location' => 'misc/ajax.js',
-  'textgroup' => 'default',
-  'source' => 'The callback URL is not local and not trusted: !url',
-  'context' => '',
-  'version' => 'none',
-))
-->values(array(
-  'lid' => '61',
-  'location' => 'node:type:article:name',
-  'textgroup' => 'node',
-  'source' => 'Article',
-  'context' => 'type:article:name',
-  'version' => '1',
-))
-->values(array(
-  'lid' => '62',
-  'location' => 'node:type:article:title_label',
-  'textgroup' => 'node',
-  'source' => 'Title',
-  'context' => 'type:article:title_label',
-  'version' => '1',
-))
-->values(array(
-  'lid' => '63',
-  'location' => 'node:type:article:description',
-  'textgroup' => 'node',
-  'source' => 'Use <em>articles</em> for time-sensitive content like news, press releases or blog posts.',
-  'context' => 'type:article:description',
-  'version' => '1',
-))
-->values(array(
-  'lid' => '64',
-  'location' => 'node:type:article:help',
-  'textgroup' => 'node',
-  'source' => 'Help text for articles',
-  'context' => 'type:article:help',
-  'version' => '1',
-))
-->values(array(
-  'lid' => '65',
-  'location' => 'node:type:book:name',
-  'textgroup' => 'node',
-  'source' => 'Book page',
-  'context' => 'type:book:name',
-  'version' => '1',
-))
-->values(array(
-  'lid' => '66',
-  'location' => 'node:type:book:title_label',
-  'textgroup' => 'node',
-  'source' => 'Title',
-  'context' => 'type:book:title_label',
-  'version' => '1',
-))
-->values(array(
-  'lid' => '67',
-  'location' => 'node:type:book:description',
-  'textgroup' => 'node',
-  'source' => '<em>Books</em> have a built-in hierarchical navigation. Use for handbooks or tutorials.',
-  'context' => 'type:book:description',
-  'version' => '1',
-))
-->values(array(
-  'lid' => '68',
-  'location' => 'node:type:page:name',
-  'textgroup' => 'node',
-  'source' => 'Basic page',
-  'context' => 'type:page:name',
-  'version' => '1',
-))
-->values(array(
-  'lid' => '69',
-  'location' => 'node:type:page:title_label',
-  'textgroup' => 'node',
-  'source' => 'Title',
-  'context' => 'type:page:title_label',
-  'version' => '1',
-))
-->values(array(
-  'lid' => '70',
-  'location' => 'node:type:page:description',
-  'textgroup' => 'node',
-  'source' => "Use <em>basic pages</em> for your static content, such as an 'About us' page.",
-  'context' => 'type:page:description',
-  'version' => '1',
-))
-->values(array(
-  'lid' => '71',
-  'location' => 'node:type:page:help',
-  'textgroup' => 'node',
-  'source' => 'Help text for basic pages',
-  'context' => 'type:page:help',
-  'version' => '1',
-))
-->values(array(
-  'lid' => '72',
-  'location' => 'node:type:test_content_type:name',
-  'textgroup' => 'node',
-  'source' => 'Test content type',
-  'context' => 'type:test_content_type:name',
-  'version' => '1',
-))
-->values(array(
-  'lid' => '73',
-  'location' => 'node:type:test_content_type:title_label',
-  'textgroup' => 'node',
-  'source' => 'Title',
-  'context' => 'type:test_content_type:title_label',
-  'version' => '1',
-))
-->values(array(
-  'lid' => '74',
-  'location' => 'node:type:test_content_type:description',
-  'textgroup' => 'node',
-  'source' => 'This is the description of the test content type.',
-  'context' => 'type:test_content_type:description',
-  'version' => '1',
-))
-->values(array(
-  'lid' => '75',
-  'location' => 'node:type:test_content_type:help',
-  'textgroup' => 'node',
-  'source' => 'Help text for test content type',
-  'context' => 'type:test_content_type:help',
-  'version' => '1',
-))
-->values(array(
-  'lid' => '116',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'Full content',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '117',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'Teaser',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '118',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'RSS',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '120',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'Search result highlighting input',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '121',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'File',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '122',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'Taxonomy term page',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '123',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'Taxonomy vocabulary',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '124',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'User',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '159',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'Site name',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '160',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'The name of the site, optionally links to the front page.',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '161',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'Actions',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '163',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'Page title',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '164',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'Add the page title as content.',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '165',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'Site logo',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '166',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'Add the logo trail as content.',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '167',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'Feed icons',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '168',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'Add the site feed_icons statement as content.',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '169',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'Site slogan',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '170',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => "Add the site's slogan as content.",
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '171',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'Status messages',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '172',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'Add the status messages of the current page as content.',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '173',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'Breadcrumb',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '174',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'Add the breadcrumb trail as content.',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '175',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'Primary navigation links',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '176',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'Add the primary_links (local tasks) as content.',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '177',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'Tabs',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '178',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'Add the tabs (local tasks) as content.',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '179',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'User contact form',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '180',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'The site contact form that allows users to contact other users.',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '181',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'Contact form',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '182',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'The site contact form that allows users to send a message to site administrators.',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '183',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'Vocabulary terms',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '184',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'All the terms in a vocabulary.',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '185',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'Vocabulary',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '186',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'Block',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '187',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'Node form url path settings',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '188',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'Publishing options on the Node form.',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '189',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'Form',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '190',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'Node form submit buttons',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '191',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'Submit buttons for the node form.',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '192',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'Node form comment settings',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '193',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'Comment settings on the Node form.',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '197',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'Book options for the node.',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '198',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'Node form title field',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '199',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'The node title form.',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '200',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'Node form menu settings',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '201',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'Menu settings on the Node form.',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '202',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'Node form revision log message',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '203',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'Revision log message for the node.',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '204',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'Node form publishing options',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '205',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'Node form author information',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '206',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'Author information on the Node form.',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '207',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'Entity extra field',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '208',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'Entity field',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '209',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'Custom content',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '210',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'General form',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '211',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'Everything in the form that is not displayed by other content.',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '212',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'Book navigation',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '213',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'The navigation menu the book the node belongs to.',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '214',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'Node links',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '215',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'Node links of the referenced node.',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '216',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'Comment form',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '217',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'A form to add a new comment.',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '218',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'Node last updated date',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '219',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'The date the referenced node was last updated.',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '220',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'Node terms',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '221',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'Taxonomy terms of the referenced node.',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '222',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'Book children',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '223',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'The children menu the book the node belongs to.',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '224',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'Node comments',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '225',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'The comments of the referenced node.',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '226',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'Attached files',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '227',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'A list of files attached to the node.',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '228',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'Comments and comment form.',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '229',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'The comments and comment form for the referenced node.',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '230',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'Node content',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '231',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'The content of the referenced node.',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '232',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'Node type description',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '233',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'Node type description.',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '234',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'Node title',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '235',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'The title of the referenced node.',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '236',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'Node body',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '237',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'The body of the referenced node.',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '238',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'Node author',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '239',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'The author of the referenced node.',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '240',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'Node created date',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '241',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'The date the referenced node was created.',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '242',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'Existing node',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '243',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'Add a node from your site as content.',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '244',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'Custom',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '245',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'User signature',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '246',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'The signature of a user.',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '247',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'User links',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '248',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'User links of the referenced user.',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '249',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'User profile',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '250',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'The profile of a user.',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '251',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'User picture',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '252',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'The picture of a user.',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '253',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'Comment Reply Form',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '254',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'A form to add a new comment reply.',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '255',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'Comment links',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '256',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'Comment links of the referenced comment.',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '257',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'Comment created date',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '258',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'The date the referenced comment was created.',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '259',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'Term name',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '260',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'The name of this taxonomy term.',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '261',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'Term',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '262',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'List of related terms',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '263',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'Terms related to an existing term; may be child, siblings or top level.',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '264',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'Term description',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '265',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'Term description.',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '266',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'Rendered entity',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '267',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'Status message',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '268',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'Error message',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '269',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'Warning message',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '270',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'Skip to main content',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '271',
-  'location' => '/is/firefly-is',
-  'textgroup' => 'default',
-  'source' => 'Home',
-  'context' => '',
-  'version' => '7.92',
-))
-->values(array(
-  'lid' => '272',
-  'location' => 'taxonomy:vocabulary:2:name',
-  'textgroup' => 'taxonomy',
-  'source' => 'Subject of discussion',
-  'context' => 'vocabulary:2:name',
-  'version' => '1',
-))
-->values(array(
-  'lid' => '273',
-  'location' => 'taxonomy:vocabulary:2:description',
-  'textgroup' => 'taxonomy',
-  'source' => 'Forum navigation vocabulary',
-  'context' => 'vocabulary:2:description',
-  'version' => '1',
-))
-->values(array(
-  'lid' => '274',
-  'location' => 'taxonomy:vocabulary:1:name',
-  'textgroup' => 'taxonomy',
-  'source' => 'Tags',
-  'context' => 'vocabulary:1:name',
-  'version' => '1',
-))
-->values(array(
-  'lid' => '275',
-  'location' => 'taxonomy:vocabulary:1:description',
-  'textgroup' => 'taxonomy',
-  'source' => 'Use tags to group articles on similar topics into categories.',
-  'context' => 'vocabulary:1:description',
-  'version' => '1',
-))
-->execute();
-$connection->schema()->createTable('locales_target', array(
-  'fields' => array(
-    'lid' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'translation' => array(
-      'type' => 'blob',
-      'not null' => TRUE,
-      'size' => 'normal',
-    ),
-    'language' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '12',
-      'default' => '',
-    ),
-    'plid' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'plural' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'i18n_status' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-  ),
-  'primary key' => array(
-    'lid',
-    'language',
-    'plural',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->insert('locales_target')
-->fields(array(
-  'lid',
-  'translation',
-  'language',
-  'plid',
-  'plural',
-  'i18n_status',
-))
-->values(array(
-  'lid' => '163',
-  'translation' => 'fr - User login title',
-  'language' => 'fr',
-  'plid' => '0',
-  'plural' => '0',
-  'i18n_status' => '0',
-))
-->values(array(
-  'lid' => '678',
-  'translation' => 'fr - Body',
-  'language' => 'fr',
-  'plid' => '0',
-  'plural' => '0',
-  'i18n_status' => '0',
-))
-->values(array(
-  'lid' => '684',
-  'translation' => 'fr - Image',
-  'language' => 'fr',
-  'plid' => '0',
-  'plural' => '0',
-  'i18n_status' => '0',
-))
-->values(array(
-  'lid' => '687',
-  'translation' => 'is - Off',
-  'language' => 'is',
-  'plid' => '0',
-  'plural' => '0',
-  'i18n_status' => '0',
-))
-->values(array(
-  'lid' => '688',
-  'translation' => 'is - 1',
-  'language' => 'is',
-  'plid' => '0',
-  'plural' => '0',
-  'i18n_status' => '0',
-))
-->values(array(
-  'lid' => '758',
-  'translation' => 'is field - vocab_localize',
-  'language' => 'is',
-  'plid' => '0',
-  'plural' => '0',
-  'i18n_status' => '0',
-))
-->values(array(
-  'lid' => '761',
-  'translation' => 'Verte',
-  'language' => 'fr',
-  'plid' => '0',
-  'plural' => '0',
-  'i18n_status' => '0',
-))
-->values(array(
-  'lid' => '761',
-  'translation' => 'Grænn',
-  'language' => 'is',
-  'plid' => '0',
-  'plural' => '0',
-  'i18n_status' => '0',
-))
-->values(array(
-  'lid' => '762',
-  'translation' => 'Noire',
-  'language' => 'fr',
-  'plid' => '0',
-  'plural' => '0',
-  'i18n_status' => '0',
-))
-->values(array(
-  'lid' => '762',
-  'translation' => 'Svartur',
-  'language' => 'is',
-  'plid' => '0',
-  'plural' => '0',
-  'i18n_status' => '0',
-))
-->values(array(
-  'lid' => '763',
-  'translation' => 'Blanche',
-  'language' => 'fr',
-  'plid' => '0',
-  'plural' => '0',
-  'i18n_status' => '0',
-))
-->values(array(
-  'lid' => '763',
-  'translation' => 'Hvítur',
-  'language' => 'is',
-  'plid' => '0',
-  'plural' => '0',
-  'i18n_status' => '0',
-))
-->values(array(
-  'lid' => '764',
-  'translation' => 'Color',
-  'language' => 'fr',
-  'plid' => '0',
-  'plural' => '0',
-  'i18n_status' => '0',
-))
-->values(array(
-  'lid' => '764',
-  'translation' => 'Color',
-  'language' => 'is',
-  'plid' => '0',
-  'plural' => '0',
-  'i18n_status' => '0',
-))
-->values(array(
-  'lid' => '765',
-  'translation' => 'Haute',
-  'language' => 'fr',
-  'plid' => '0',
-  'plural' => '0',
-  'i18n_status' => '0',
-))
-->values(array(
-  'lid' => '765',
-  'translation' => 'Hár',
-  'language' => 'is',
-  'plid' => '0',
-  'plural' => '0',
-  'i18n_status' => '0',
-))
-->values(array(
-  'lid' => '766',
-  'translation' => 'Moyenne',
-  'language' => 'fr',
-  'plid' => '0',
-  'plural' => '0',
-  'i18n_status' => '0',
-))
-->values(array(
-  'lid' => '766',
-  'translation' => 'Miðlungs',
-  'language' => 'is',
-  'plid' => '0',
-  'plural' => '0',
-  'i18n_status' => '0',
-))
-->values(array(
-  'lid' => '767',
-  'translation' => 'Faible',
-  'language' => 'fr',
-  'plid' => '0',
-  'plural' => '0',
-  'i18n_status' => '0',
-))
-->values(array(
-  'lid' => '767',
-  'translation' => 'Lágt',
-  'language' => 'is',
-  'plid' => '0',
-  'plural' => '0',
-  'i18n_status' => '0',
-))
-->values(array(
-  'lid' => '768',
-  'translation' => 'Rating',
-  'language' => 'fr',
-  'plid' => '0',
-  'plural' => '0',
-  'i18n_status' => '0',
-))
-->values(array(
-  'lid' => '768',
-  'translation' => 'Rating',
-  'language' => 'is',
-  'plid' => '0',
-  'plural' => '0',
-  'i18n_status' => '0',
-))
-->values(array(
-  'lid' => '797',
-  'translation' => 'fr - Emissary',
-  'language' => 'fr',
-  'plid' => '0',
-  'plural' => '0',
-  'i18n_status' => '0',
-))
-->values(array(
-  'lid' => '798',
-  'translation' => 'fr - Pilot episode',
-  'language' => 'fr',
-  'plid' => '0',
-  'plural' => '0',
-  'i18n_status' => '0',
-))
-->values(array(
-  'lid' => '800',
-  'translation' => 'fr - Main menu',
-  'language' => 'fr',
-  'plid' => '0',
-  'plural' => '0',
-  'i18n_status' => '0',
-))
-->values(array(
-  'lid' => '800',
-  'translation' => 'is - Main menu',
-  'language' => 'is',
-  'plid' => '0',
-  'plural' => '0',
-  'i18n_status' => '0',
-))
-->values(array(
-  'lid' => '801',
-  'translation' => 'fr - Main menu description',
-  'language' => 'fr',
-  'plid' => '0',
-  'plural' => '0',
-  'i18n_status' => '0',
-))
-->values(array(
-  'lid' => '801',
-  'translation' => 'is - Main menu description',
-  'language' => 'is',
-  'plid' => '0',
-  'plural' => '0',
-  'i18n_status' => '0',
-))
-->values(array(
-  'lid' => '802',
-  'translation' => 'fr - Test menu description',
-  'language' => 'fr',
-  'plid' => '0',
-  'plural' => '0',
-  'i18n_status' => '0',
-))
-->values(array(
-  'lid' => '803',
-  'translation' => 'fr - Google',
-  'language' => 'fr',
-  'plid' => '0',
-  'plural' => '0',
-  'i18n_status' => '0',
-))
-->values(array(
-  'lid' => '804',
-  'translation' => 'fr - Google description',
-  'language' => 'fr',
-  'plid' => '0',
-  'plural' => '0',
-  'i18n_status' => '0',
-))
-->values(array(
-  'lid' => '805',
-  'translation' => 'fr - Stop',
-  'language' => 'fr',
-  'plid' => '0',
-  'plural' => '0',
-  'i18n_status' => '0',
-))
-->values(array(
-  'lid' => '805',
-  'translation' => 'is - Stop',
-  'language' => 'is',
-  'plid' => '0',
-  'plural' => '0',
-  'i18n_status' => '0',
-))
-->values(array(
-  'lid' => '806',
-  'translation' => 'Go',
-  'language' => 'fr',
-  'plid' => '0',
-  'plural' => '0',
-  'i18n_status' => '0',
-))
-->values(array(
-  'lid' => '806',
-  'translation' => 'is - Go',
-  'language' => 'is',
-  'plid' => '0',
-  'plural' => '0',
-  'i18n_status' => '0',
-))
-->execute();
-$connection->schema()->createTable('menu_custom', array(
-  'fields' => array(
-    'menu_name' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '32',
-      'default' => '',
-    ),
-    'title' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'description' => array(
-      'type' => 'text',
-      'not null' => FALSE,
-      'size' => 'normal',
-    ),
-  ),
-  'primary key' => array(
-    'menu_name',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->insert('menu_custom')
-->fields(array(
-  'menu_name',
-  'title',
-  'description',
-))
-->values(array(
-  'menu_name' => 'main-menu',
-  'title' => 'Main menu',
-  'description' => 'The <em>Main</em> menu is used on many sites to show the major sections of the site, often in a top navigation bar.',
-))
-->values(array(
-  'menu_name' => 'management',
-  'title' => 'Management',
-  'description' => 'The <em>Management</em> menu contains links for administrative tasks.',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'title' => 'Navigation',
-  'description' => 'The <em>Navigation</em> menu contains links intended for site visitors. Links are added to the <em>Navigation</em> menu automatically by some modules.',
-))
-->values(array(
-  'menu_name' => 'user-menu',
-  'title' => 'User menu',
-  'description' => "The <em>User</em> menu contains links related to the user's account, as well as the 'Log out' link.",
-))
-->execute();
-$connection->schema()->createTable('menu_links', array(
-  'fields' => array(
-    'menu_name' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '32',
-      'default' => '',
-    ),
-    'mlid' => array(
-      'type' => 'serial',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-    'plid' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-    'link_path' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'router_path' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'link_title' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'options' => array(
-      'type' => 'blob',
-      'not null' => FALSE,
-      'size' => 'normal',
-    ),
-    'module' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => 'system',
-    ),
-    'hidden' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'external' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'has_children' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'expanded' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'weight' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'depth' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'customized' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'p1' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-    'p2' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-    'p3' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-    'p4' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-    'p5' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-    'p6' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-    'p7' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-    'p8' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-    'p9' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-    'updated' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-  ),
-  'primary key' => array(
-    'mlid',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->insert('menu_links')
-->fields(array(
-  'menu_name',
-  'mlid',
-  'plid',
-  'link_path',
-  'router_path',
-  'link_title',
-  'options',
-  'module',
-  'hidden',
-  'external',
-  'has_children',
-  'expanded',
-  'weight',
-  'depth',
-  'customized',
-  'p1',
-  'p2',
-  'p3',
-  'p4',
-  'p5',
-  'p6',
-  'p7',
-  'p8',
-  'p9',
-  'updated',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '1',
-  'plid' => '0',
-  'link_path' => 'admin',
-  'router_path' => 'admin',
-  'link_title' => 'Administration',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '1',
-  'expanded' => '0',
-  'weight' => '9',
-  'depth' => '1',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '0',
-  'p3' => '0',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'user-menu',
-  'mlid' => '2',
-  'plid' => '0',
-  'link_path' => 'user',
-  'router_path' => 'user',
-  'link_title' => 'User account',
-  'options' => 'a:1:{s:5:"alter";b:1;}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '-10',
-  'depth' => '1',
-  'customized' => '0',
-  'p1' => '2',
-  'p2' => '0',
-  'p3' => '0',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '3',
-  'plid' => '0',
-  'link_path' => 'comment/%',
-  'router_path' => 'comment/%',
-  'link_title' => 'Comment permalink',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '1',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '1',
-  'customized' => '0',
-  'p1' => '3',
-  'p2' => '0',
-  'p3' => '0',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '4',
-  'plid' => '0',
-  'link_path' => 'filter/tips',
-  'router_path' => 'filter/tips',
-  'link_title' => 'Compose tips',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '1',
-  'external' => '0',
-  'has_children' => '1',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '1',
-  'customized' => '0',
-  'p1' => '4',
-  'p2' => '0',
-  'p3' => '0',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '5',
-  'plid' => '0',
-  'link_path' => 'node/%',
-  'router_path' => 'node/%',
-  'link_title' => '',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '1',
-  'customized' => '0',
-  'p1' => '5',
-  'p2' => '0',
-  'p3' => '0',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '6',
-  'plid' => '0',
-  'link_path' => 'node/add',
-  'router_path' => 'node/add',
-  'link_title' => 'Add content',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '1',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '1',
-  'customized' => '0',
-  'p1' => '6',
-  'p2' => '0',
-  'p3' => '0',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '7',
-  'plid' => '1',
-  'link_path' => 'admin/appearance',
-  'router_path' => 'admin/appearance',
-  'link_title' => 'Appearance',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:33:"Select and configure your themes.";}}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '-6',
-  'depth' => '2',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '7',
-  'p3' => '0',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '8',
-  'plid' => '1',
-  'link_path' => 'admin/config',
-  'router_path' => 'admin/config',
-  'link_title' => 'Configuration',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:20:"Administer settings.";}}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '1',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '2',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '8',
-  'p3' => '0',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '9',
-  'plid' => '1',
-  'link_path' => 'admin/content',
-  'router_path' => 'admin/content',
-  'link_title' => 'Content',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:32:"Administer content and comments.";}}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '1',
-  'expanded' => '0',
-  'weight' => '-10',
-  'depth' => '2',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '9',
-  'p3' => '0',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'user-menu',
-  'mlid' => '10',
-  'plid' => '2',
-  'link_path' => 'user/register',
-  'router_path' => 'user/register',
-  'link_title' => 'Create new account',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '2',
-  'customized' => '0',
-  'p1' => '2',
-  'p2' => '10',
-  'p3' => '0',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '12',
-  'plid' => '1',
-  'link_path' => 'admin/index',
-  'router_path' => 'admin/index',
-  'link_title' => 'Index',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '-18',
-  'depth' => '2',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '12',
-  'p3' => '0',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'user-menu',
-  'mlid' => '13',
-  'plid' => '2',
-  'link_path' => 'user/login',
-  'router_path' => 'user/login',
-  'link_title' => 'Log in',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '2',
-  'customized' => '0',
-  'p1' => '2',
-  'p2' => '13',
-  'p3' => '0',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'user-menu',
-  'mlid' => '14',
-  'plid' => '0',
-  'link_path' => 'user/logout',
-  'router_path' => 'user/logout',
-  'link_title' => 'Log out',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '10',
-  'depth' => '1',
-  'customized' => '0',
-  'p1' => '14',
-  'p2' => '0',
-  'p3' => '0',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '15',
-  'plid' => '1',
-  'link_path' => 'admin/modules',
-  'router_path' => 'admin/modules',
-  'link_title' => 'Modules',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:26:"Extend site functionality.";}}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '-2',
-  'depth' => '2',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '15',
-  'p3' => '0',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '16',
-  'plid' => '0',
-  'link_path' => 'user/%',
-  'router_path' => 'user/%',
-  'link_title' => 'My account',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '1',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '1',
-  'customized' => '0',
-  'p1' => '16',
-  'p2' => '0',
-  'p3' => '0',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '17',
-  'plid' => '1',
-  'link_path' => 'admin/people',
-  'router_path' => 'admin/people',
-  'link_title' => 'People',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:45:"Manage user accounts, roles, and permissions.";}}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '-4',
-  'depth' => '2',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '17',
-  'p3' => '0',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '18',
-  'plid' => '1',
-  'link_path' => 'admin/reports',
-  'router_path' => 'admin/reports',
-  'link_title' => 'Reports',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:34:"View reports, updates, and errors.";}}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '1',
-  'expanded' => '0',
-  'weight' => '5',
-  'depth' => '2',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '18',
-  'p3' => '0',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'user-menu',
-  'mlid' => '19',
-  'plid' => '2',
-  'link_path' => 'user/password',
-  'router_path' => 'user/password',
-  'link_title' => 'Request new password',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '2',
-  'customized' => '0',
-  'p1' => '2',
-  'p2' => '19',
-  'p3' => '0',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '20',
-  'plid' => '1',
-  'link_path' => 'admin/structure',
-  'router_path' => 'admin/structure',
-  'link_title' => 'Structure',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:45:"Administer blocks, content types, menus, etc.";}}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '1',
-  'expanded' => '0',
-  'weight' => '-8',
-  'depth' => '2',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '20',
-  'p3' => '0',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '21',
-  'plid' => '1',
-  'link_path' => 'admin/tasks',
-  'router_path' => 'admin/tasks',
-  'link_title' => 'Tasks',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '-20',
-  'depth' => '2',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '21',
-  'p3' => '0',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '22',
-  'plid' => '0',
-  'link_path' => 'comment/reply/%',
-  'router_path' => 'comment/reply/%',
-  'link_title' => 'Add new comment',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '1',
-  'customized' => '0',
-  'p1' => '22',
-  'p2' => '0',
-  'p3' => '0',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '23',
-  'plid' => '3',
-  'link_path' => 'comment/%/approve',
-  'router_path' => 'comment/%/approve',
-  'link_title' => 'Approve',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '1',
-  'depth' => '2',
-  'customized' => '0',
-  'p1' => '3',
-  'p2' => '23',
-  'p3' => '0',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '24',
-  'plid' => '3',
-  'link_path' => 'comment/%/delete',
-  'router_path' => 'comment/%/delete',
-  'link_title' => 'Delete',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '2',
-  'depth' => '2',
-  'customized' => '0',
-  'p1' => '3',
-  'p2' => '24',
-  'p3' => '0',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '25',
-  'plid' => '3',
-  'link_path' => 'comment/%/edit',
-  'router_path' => 'comment/%/edit',
-  'link_title' => 'Edit',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '2',
-  'customized' => '0',
-  'p1' => '3',
-  'p2' => '25',
-  'p3' => '0',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '26',
-  'plid' => '3',
-  'link_path' => 'comment/%/view',
-  'router_path' => 'comment/%/view',
-  'link_title' => 'View comment',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '-10',
-  'depth' => '2',
-  'customized' => '0',
-  'p1' => '3',
-  'p2' => '26',
-  'p3' => '0',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '27',
-  'plid' => '17',
-  'link_path' => 'admin/people/create',
-  'router_path' => 'admin/people/create',
-  'link_title' => 'Add user',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '3',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '17',
-  'p3' => '27',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '28',
-  'plid' => '20',
-  'link_path' => 'admin/structure/block',
-  'router_path' => 'admin/structure/block',
-  'link_title' => 'Blocks',
-  'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:79:\"Configure what block content appears in your site's sidebars and other regions.\";}}",
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '1',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '3',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '20',
-  'p3' => '28',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '29',
-  'plid' => '16',
-  'link_path' => 'user/%/cancel',
-  'router_path' => 'user/%/cancel',
-  'link_title' => 'Cancel account',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '1',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '2',
-  'customized' => '0',
-  'p1' => '16',
-  'p2' => '29',
-  'p3' => '0',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '30',
-  'plid' => '9',
-  'link_path' => 'admin/content/comment',
-  'router_path' => 'admin/content/comment',
-  'link_title' => 'Comments',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:59:"List and edit site comments and the comment approval queue.";}}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '3',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '9',
-  'p3' => '30',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '32',
-  'plid' => '9',
-  'link_path' => 'admin/content/node',
-  'router_path' => 'admin/content/node',
-  'link_title' => 'Content',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '-10',
-  'depth' => '3',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '9',
-  'p3' => '32',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '33',
-  'plid' => '8',
-  'link_path' => 'admin/config/content',
-  'router_path' => 'admin/config/content',
-  'link_title' => 'Content authoring',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:53:"Settings related to formatting and authoring content.";}}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '1',
-  'expanded' => '0',
-  'weight' => '-15',
-  'depth' => '3',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '8',
-  'p3' => '33',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '34',
-  'plid' => '20',
-  'link_path' => 'admin/structure/types',
-  'router_path' => 'admin/structure/types',
-  'link_title' => 'Content types',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:92:"Manage content types, including default status, front page promotion, comment settings, etc.";}}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '1',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '3',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '20',
-  'p3' => '34',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '36',
-  'plid' => '5',
-  'link_path' => 'node/%/delete',
-  'router_path' => 'node/%/delete',
-  'link_title' => 'Delete',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '1',
-  'depth' => '2',
-  'customized' => '0',
-  'p1' => '5',
-  'p2' => '36',
-  'p3' => '0',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '37',
-  'plid' => '8',
-  'link_path' => 'admin/config/development',
-  'router_path' => 'admin/config/development',
-  'link_title' => 'Development',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:18:"Development tools.";}}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '1',
-  'expanded' => '0',
-  'weight' => '-10',
-  'depth' => '3',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '8',
-  'p3' => '37',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '38',
-  'plid' => '16',
-  'link_path' => 'user/%/edit',
-  'router_path' => 'user/%/edit',
-  'link_title' => 'Edit',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '2',
-  'customized' => '0',
-  'p1' => '16',
-  'p2' => '38',
-  'p3' => '0',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '39',
-  'plid' => '5',
-  'link_path' => 'node/%/edit',
-  'router_path' => 'node/%/edit',
-  'link_title' => 'Edit',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '2',
-  'customized' => '0',
-  'p1' => '5',
-  'p2' => '39',
-  'p3' => '0',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '40',
-  'plid' => '15',
-  'link_path' => 'admin/modules/list',
-  'router_path' => 'admin/modules/list',
-  'link_title' => 'List',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '3',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '15',
-  'p3' => '40',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '41',
-  'plid' => '17',
-  'link_path' => 'admin/people/people',
-  'router_path' => 'admin/people/people',
-  'link_title' => 'List',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:50:"Find and manage people interacting with your site.";}}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '-10',
-  'depth' => '3',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '17',
-  'p3' => '41',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '42',
-  'plid' => '7',
-  'link_path' => 'admin/appearance/list',
-  'router_path' => 'admin/appearance/list',
-  'link_title' => 'List',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:31:"Select and configure your theme";}}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '-1',
-  'depth' => '3',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '7',
-  'p3' => '42',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '43',
-  'plid' => '8',
-  'link_path' => 'admin/config/media',
-  'router_path' => 'admin/config/media',
-  'link_title' => 'Media',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:12:"Media tools.";}}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '1',
-  'expanded' => '0',
-  'weight' => '-10',
-  'depth' => '3',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '8',
-  'p3' => '43',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '44',
-  'plid' => '20',
-  'link_path' => 'admin/structure/menu',
-  'router_path' => 'admin/structure/menu',
-  'link_title' => 'Menus',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:86:"Add new menus to your site, edit existing menus, and rename and reorganize menu links.";}}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '1',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '3',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '20',
-  'p3' => '44',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '45',
-  'plid' => '8',
-  'link_path' => 'admin/config/people',
-  'router_path' => 'admin/config/people',
-  'link_title' => 'People',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:24:"Configure user accounts.";}}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '1',
-  'expanded' => '0',
-  'weight' => '-20',
-  'depth' => '3',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '8',
-  'p3' => '45',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '46',
-  'plid' => '17',
-  'link_path' => 'admin/people/permissions',
-  'router_path' => 'admin/people/permissions',
-  'link_title' => 'Permissions',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:64:"Determine access to features by selecting permissions for roles.";}}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '3',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '17',
-  'p3' => '46',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '48',
-  'plid' => '8',
-  'link_path' => 'admin/config/regional',
-  'router_path' => 'admin/config/regional',
-  'link_title' => 'Regional and language',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:48:"Regional settings, localization and translation.";}}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '1',
-  'expanded' => '0',
-  'weight' => '-5',
-  'depth' => '3',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '8',
-  'p3' => '48',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '49',
-  'plid' => '5',
-  'link_path' => 'node/%/revisions',
-  'router_path' => 'node/%/revisions',
-  'link_title' => 'Revisions',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '1',
-  'expanded' => '0',
-  'weight' => '2',
-  'depth' => '2',
-  'customized' => '0',
-  'p1' => '5',
-  'p2' => '49',
-  'p3' => '0',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '50',
-  'plid' => '8',
-  'link_path' => 'admin/config/search',
-  'router_path' => 'admin/config/search',
-  'link_title' => 'Search and metadata',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:36:"Local site search, metadata and SEO.";}}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '1',
-  'expanded' => '0',
-  'weight' => '-10',
-  'depth' => '3',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '8',
-  'p3' => '50',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '51',
-  'plid' => '7',
-  'link_path' => 'admin/appearance/settings',
-  'router_path' => 'admin/appearance/settings',
-  'link_title' => 'Settings',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:46:"Configure default and theme specific settings.";}}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '20',
-  'depth' => '3',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '7',
-  'p3' => '51',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '52',
-  'plid' => '18',
-  'link_path' => 'admin/reports/status',
-  'router_path' => 'admin/reports/status',
-  'link_title' => 'Status report',
-  'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:74:\"Get a status report about your site's operation and any detected problems.\";}}",
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '-60',
-  'depth' => '3',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '18',
-  'p3' => '52',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '53',
-  'plid' => '8',
-  'link_path' => 'admin/config/system',
-  'router_path' => 'admin/config/system',
-  'link_title' => 'System',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:37:"General system related configuration.";}}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '1',
-  'expanded' => '0',
-  'weight' => '-20',
-  'depth' => '3',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '8',
-  'p3' => '53',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '56',
-  'plid' => '15',
-  'link_path' => 'admin/modules/uninstall',
-  'router_path' => 'admin/modules/uninstall',
-  'link_title' => 'Uninstall',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '20',
-  'depth' => '3',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '15',
-  'p3' => '56',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '57',
-  'plid' => '8',
-  'link_path' => 'admin/config/user-interface',
-  'router_path' => 'admin/config/user-interface',
-  'link_title' => 'User interface',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:38:"Tools that enhance the user interface.";}}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '-15',
-  'depth' => '3',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '8',
-  'p3' => '57',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '58',
-  'plid' => '5',
-  'link_path' => 'node/%/view',
-  'router_path' => 'node/%/view',
-  'link_title' => 'View',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '-10',
-  'depth' => '2',
-  'customized' => '0',
-  'p1' => '5',
-  'p2' => '58',
-  'p3' => '0',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '59',
-  'plid' => '16',
-  'link_path' => 'user/%/view',
-  'router_path' => 'user/%/view',
-  'link_title' => 'View',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '-10',
-  'depth' => '2',
-  'customized' => '0',
-  'p1' => '16',
-  'p2' => '59',
-  'p3' => '0',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '60',
-  'plid' => '8',
-  'link_path' => 'admin/config/services',
-  'router_path' => 'admin/config/services',
-  'link_title' => 'Web services',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:30:"Tools related to web services.";}}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '1',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '3',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '8',
-  'p3' => '60',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '61',
-  'plid' => '8',
-  'link_path' => 'admin/config/workflow',
-  'router_path' => 'admin/config/workflow',
-  'link_title' => 'Workflow',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:43:"Content workflow, editorial workflow tools.";}}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '5',
-  'depth' => '3',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '8',
-  'p3' => '61',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '66',
-  'plid' => '45',
-  'link_path' => 'admin/config/people/accounts',
-  'router_path' => 'admin/config/people/accounts',
-  'link_title' => 'Account settings',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:109:"Configure default behavior of users, including registration requirements, e-mails, fields, and user pictures.";}}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '-10',
-  'depth' => '4',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '8',
-  'p3' => '45',
-  'p4' => '66',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '67',
-  'plid' => '53',
-  'link_path' => 'admin/config/system/actions',
-  'router_path' => 'admin/config/system/actions',
-  'link_title' => 'Actions',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:41:"Manage the actions defined for your site.";}}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '1',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '4',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '8',
-  'p3' => '53',
-  'p4' => '67',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '68',
-  'plid' => '28',
-  'link_path' => 'admin/structure/block/add',
-  'router_path' => 'admin/structure/block/add',
-  'link_title' => 'Add block',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '4',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '20',
-  'p3' => '28',
-  'p4' => '68',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '69',
-  'plid' => '34',
-  'link_path' => 'admin/structure/types/add',
-  'router_path' => 'admin/structure/types/add',
-  'link_title' => 'Add content type',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '4',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '20',
-  'p3' => '34',
-  'p4' => '69',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '70',
-  'plid' => '44',
-  'link_path' => 'admin/structure/menu/add',
-  'router_path' => 'admin/structure/menu/add',
-  'link_title' => 'Add menu',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '4',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '20',
-  'p3' => '44',
-  'p4' => '70',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '71',
-  'plid' => '51',
-  'link_path' => 'admin/appearance/settings/bartik',
-  'router_path' => 'admin/appearance/settings/bartik',
-  'link_title' => 'Bartik',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '4',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '7',
-  'p3' => '51',
-  'p4' => '71',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '72',
-  'plid' => '50',
-  'link_path' => 'admin/config/search/clean-urls',
-  'router_path' => 'admin/config/search/clean-urls',
-  'link_title' => 'Clean URLs',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:43:"Enable or disable clean URLs for your site.";}}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '5',
-  'depth' => '4',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '8',
-  'p3' => '50',
-  'p4' => '72',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '73',
-  'plid' => '53',
-  'link_path' => 'admin/config/system/cron',
-  'router_path' => 'admin/config/system/cron',
-  'link_title' => 'Cron',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:40:"Manage automatic site maintenance tasks.";}}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '20',
-  'depth' => '4',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '8',
-  'p3' => '53',
-  'p4' => '73',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '74',
-  'plid' => '48',
-  'link_path' => 'admin/config/regional/date-time',
-  'router_path' => 'admin/config/regional/date-time',
-  'link_title' => 'Date and time',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:44:"Configure display formats for date and time.";}}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '-15',
-  'depth' => '4',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '8',
-  'p3' => '48',
-  'p4' => '74',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '76',
-  'plid' => '43',
-  'link_path' => 'admin/config/media/file-system',
-  'router_path' => 'admin/config/media/file-system',
-  'link_title' => 'File system',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:68:"Tell Drupal where to store uploaded files and how they are accessed.";}}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '-10',
-  'depth' => '4',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '8',
-  'p3' => '43',
-  'p4' => '76',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '78',
-  'plid' => '51',
-  'link_path' => 'admin/appearance/settings/garland',
-  'router_path' => 'admin/appearance/settings/garland',
-  'link_title' => 'Garland',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '4',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '7',
-  'p3' => '51',
-  'p4' => '78',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '79',
-  'plid' => '51',
-  'link_path' => 'admin/appearance/settings/global',
-  'router_path' => 'admin/appearance/settings/global',
-  'link_title' => 'Global settings',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '-1',
-  'depth' => '4',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '7',
-  'p3' => '51',
-  'p4' => '79',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '80',
-  'plid' => '45',
-  'link_path' => 'admin/config/people/ip-blocking',
-  'router_path' => 'admin/config/people/ip-blocking',
-  'link_title' => 'IP address blocking',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:28:"Manage blocked IP addresses.";}}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '1',
-  'expanded' => '0',
-  'weight' => '10',
-  'depth' => '4',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '8',
-  'p3' => '45',
-  'p4' => '80',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '81',
-  'plid' => '43',
-  'link_path' => 'admin/config/media/image-toolkit',
-  'router_path' => 'admin/config/media/image-toolkit',
-  'link_title' => 'Image toolkit',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:74:"Choose which image toolkit to use if you have installed optional toolkits.";}}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '20',
-  'depth' => '4',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '8',
-  'p3' => '43',
-  'p4' => '81',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '82',
-  'plid' => '40',
-  'link_path' => 'admin/modules/list/confirm',
-  'router_path' => 'admin/modules/list/confirm',
-  'link_title' => 'List',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '4',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '15',
-  'p3' => '40',
-  'p4' => '82',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '83',
-  'plid' => '34',
-  'link_path' => 'admin/structure/types/list',
-  'router_path' => 'admin/structure/types/list',
-  'link_title' => 'List',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '-10',
-  'depth' => '4',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '20',
-  'p3' => '34',
-  'p4' => '83',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '84',
-  'plid' => '44',
-  'link_path' => 'admin/structure/menu/list',
-  'router_path' => 'admin/structure/menu/list',
-  'link_title' => 'List menus',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '-10',
-  'depth' => '4',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '20',
-  'p3' => '44',
-  'p4' => '84',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '85',
-  'plid' => '37',
-  'link_path' => 'admin/config/development/logging',
-  'router_path' => 'admin/config/development/logging',
-  'link_title' => 'Logging and errors',
-  'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:154:\"Settings for logging and alerts modules. Various modules can route Drupal's system events to different destinations, such as syslog, database, email, etc.\";}}",
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '-15',
-  'depth' => '4',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '8',
-  'p3' => '37',
-  'p4' => '85',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '86',
-  'plid' => '37',
-  'link_path' => 'admin/config/development/maintenance',
-  'router_path' => 'admin/config/development/maintenance',
-  'link_title' => 'Maintenance mode',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:62:"Take the site offline for maintenance or bring it back online.";}}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '-10',
-  'depth' => '4',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '8',
-  'p3' => '37',
-  'p4' => '86',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '89',
-  'plid' => '37',
-  'link_path' => 'admin/config/development/performance',
-  'router_path' => 'admin/config/development/performance',
-  'link_title' => 'Performance',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:101:"Enable or disable page caching for anonymous users and set CSS and JS bandwidth optimization options.";}}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '-20',
-  'depth' => '4',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '8',
-  'p3' => '37',
-  'p4' => '89',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '90',
-  'plid' => '46',
-  'link_path' => 'admin/people/permissions/list',
-  'router_path' => 'admin/people/permissions/list',
-  'link_title' => 'Permissions',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:64:"Determine access to features by selecting permissions for roles.";}}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '-8',
-  'depth' => '4',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '17',
-  'p3' => '46',
-  'p4' => '90',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '93',
-  'plid' => '30',
-  'link_path' => 'admin/content/comment/new',
-  'router_path' => 'admin/content/comment/new',
-  'link_title' => 'Published comments',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '-10',
-  'depth' => '4',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '9',
-  'p3' => '30',
-  'p4' => '93',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '94',
-  'plid' => '60',
-  'link_path' => 'admin/config/services/rss-publishing',
-  'router_path' => 'admin/config/services/rss-publishing',
-  'link_title' => 'RSS publishing',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:114:"Configure the site description, the number of items per feed and whether feeds should be titles/teasers/full-text.";}}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '4',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '8',
-  'p3' => '60',
-  'p4' => '94',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '95',
-  'plid' => '48',
-  'link_path' => 'admin/config/regional/settings',
-  'router_path' => 'admin/config/regional/settings',
-  'link_title' => 'Regional settings',
-  'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:54:\"Settings for the site's default time zone and country.\";}}",
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '-20',
-  'depth' => '4',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '8',
-  'p3' => '48',
-  'p4' => '95',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '96',
-  'plid' => '46',
-  'link_path' => 'admin/people/permissions/roles',
-  'router_path' => 'admin/people/permissions/roles',
-  'link_title' => 'Roles',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:30:"List, edit, or add user roles.";}}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '1',
-  'expanded' => '0',
-  'weight' => '-5',
-  'depth' => '4',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '17',
-  'p3' => '46',
-  'p4' => '96',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '97',
-  'plid' => '44',
-  'link_path' => 'admin/structure/menu/settings',
-  'router_path' => 'admin/structure/menu/settings',
-  'link_title' => 'Settings',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '5',
-  'depth' => '4',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '20',
-  'p3' => '44',
-  'p4' => '97',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '98',
-  'plid' => '51',
-  'link_path' => 'admin/appearance/settings/seven',
-  'router_path' => 'admin/appearance/settings/seven',
-  'link_title' => 'Seven',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '4',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '7',
-  'p3' => '51',
-  'p4' => '98',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '99',
-  'plid' => '53',
-  'link_path' => 'admin/config/system/site-information',
-  'router_path' => 'admin/config/system/site-information',
-  'link_title' => 'Site information',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:104:"Change site name, e-mail address, slogan, default front page, and number of posts per page, error pages.";}}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '-20',
-  'depth' => '4',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '8',
-  'p3' => '53',
-  'p4' => '99',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '100',
-  'plid' => '51',
-  'link_path' => 'admin/appearance/settings/stark',
-  'router_path' => 'admin/appearance/settings/stark',
-  'link_title' => 'Stark',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '4',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '7',
-  'p3' => '51',
-  'p4' => '100',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '101',
-  'plid' => '33',
-  'link_path' => 'admin/config/content/formats',
-  'router_path' => 'admin/config/content/formats',
-  'link_title' => 'Text formats',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:127:"Configure how content input by users is filtered, including allowed HTML tags. Also allows enabling of module-provided filters.";}}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '1',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '4',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '8',
-  'p3' => '33',
-  'p4' => '101',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '102',
-  'plid' => '30',
-  'link_path' => 'admin/content/comment/approval',
-  'router_path' => 'admin/content/comment/approval',
-  'link_title' => 'Unapproved comments',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '4',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '9',
-  'p3' => '30',
-  'p4' => '102',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '103',
-  'plid' => '56',
-  'link_path' => 'admin/modules/uninstall/confirm',
-  'router_path' => 'admin/modules/uninstall/confirm',
-  'link_title' => 'Uninstall',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '4',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '15',
-  'p3' => '56',
-  'p4' => '103',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '104',
-  'plid' => '38',
-  'link_path' => 'user/%/edit/account',
-  'router_path' => 'user/%/edit/account',
-  'link_title' => 'Account',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '3',
-  'customized' => '0',
-  'p1' => '16',
-  'p2' => '38',
-  'p3' => '104',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '105',
-  'plid' => '101',
-  'link_path' => 'admin/config/content/formats/%',
-  'router_path' => 'admin/config/content/formats/%',
-  'link_title' => '',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '1',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '5',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '8',
-  'p3' => '33',
-  'p4' => '101',
-  'p5' => '105',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '110',
-  'plid' => '101',
-  'link_path' => 'admin/config/content/formats/add',
-  'router_path' => 'admin/config/content/formats/add',
-  'link_title' => 'Add text format',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '1',
-  'depth' => '5',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '8',
-  'p3' => '33',
-  'p4' => '101',
-  'p5' => '110',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '111',
-  'plid' => '28',
-  'link_path' => 'admin/structure/block/list/bartik',
-  'router_path' => 'admin/structure/block/list/bartik',
-  'link_title' => 'Bartik',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '-10',
-  'depth' => '4',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '20',
-  'p3' => '28',
-  'p4' => '111',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '112',
-  'plid' => '67',
-  'link_path' => 'admin/config/system/actions/configure',
-  'router_path' => 'admin/config/system/actions/configure',
-  'link_title' => 'Configure an advanced action',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '5',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '8',
-  'p3' => '53',
-  'p4' => '67',
-  'p5' => '112',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '113',
-  'plid' => '44',
-  'link_path' => 'admin/structure/menu/manage/%',
-  'router_path' => 'admin/structure/menu/manage/%',
-  'link_title' => 'Customize menu',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '1',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '4',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '20',
-  'p3' => '44',
-  'p4' => '113',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '114',
-  'plid' => '34',
-  'link_path' => 'admin/structure/types/manage/%',
-  'router_path' => 'admin/structure/types/manage/%',
-  'link_title' => 'Edit content type',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '1',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '4',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '20',
-  'p3' => '34',
-  'p4' => '114',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '116',
-  'plid' => '74',
-  'link_path' => 'admin/config/regional/date-time/formats',
-  'router_path' => 'admin/config/regional/date-time/formats',
-  'link_title' => 'Formats',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:51:"Configure display format strings for date and time.";}}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '1',
-  'expanded' => '0',
-  'weight' => '-9',
-  'depth' => '5',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '8',
-  'p3' => '48',
-  'p4' => '74',
-  'p5' => '116',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '117',
-  'plid' => '28',
-  'link_path' => 'admin/structure/block/list/garland',
-  'router_path' => 'admin/structure/block/list/garland',
-  'link_title' => 'Garland',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '4',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '20',
-  'p3' => '28',
-  'p4' => '117',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '118',
-  'plid' => '101',
-  'link_path' => 'admin/config/content/formats/list',
-  'router_path' => 'admin/config/content/formats/list',
-  'link_title' => 'List',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '5',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '8',
-  'p3' => '33',
-  'p4' => '101',
-  'p5' => '118',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '119',
-  'plid' => '67',
-  'link_path' => 'admin/config/system/actions/manage',
-  'router_path' => 'admin/config/system/actions/manage',
-  'link_title' => 'Manage actions',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:41:"Manage the actions defined for your site.";}}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '-2',
-  'depth' => '5',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '8',
-  'p3' => '53',
-  'p4' => '67',
-  'p5' => '119',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '124',
-  'plid' => '66',
-  'link_path' => 'admin/config/people/accounts/settings',
-  'router_path' => 'admin/config/people/accounts/settings',
-  'link_title' => 'Settings',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '-10',
-  'depth' => '5',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '8',
-  'p3' => '45',
-  'p4' => '66',
-  'p5' => '124',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '125',
-  'plid' => '28',
-  'link_path' => 'admin/structure/block/list/seven',
-  'router_path' => 'admin/structure/block/list/seven',
-  'link_title' => 'Seven',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '4',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '20',
-  'p3' => '28',
-  'p4' => '125',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '126',
-  'plid' => '28',
-  'link_path' => 'admin/structure/block/list/stark',
-  'router_path' => 'admin/structure/block/list/stark',
-  'link_title' => 'Stark',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '4',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '20',
-  'p3' => '28',
-  'p4' => '126',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '127',
-  'plid' => '74',
-  'link_path' => 'admin/config/regional/date-time/types',
-  'router_path' => 'admin/config/regional/date-time/types',
-  'link_title' => 'Types',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:44:"Configure display formats for date and time.";}}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '1',
-  'expanded' => '0',
-  'weight' => '-10',
-  'depth' => '5',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '8',
-  'p3' => '48',
-  'p4' => '74',
-  'p5' => '127',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '128',
-  'plid' => '49',
-  'link_path' => 'node/%/revisions/%/delete',
-  'router_path' => 'node/%/revisions/%/delete',
-  'link_title' => 'Delete earlier revision',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '3',
-  'customized' => '0',
-  'p1' => '5',
-  'p2' => '49',
-  'p3' => '128',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '129',
-  'plid' => '49',
-  'link_path' => 'node/%/revisions/%/revert',
-  'router_path' => 'node/%/revisions/%/revert',
-  'link_title' => 'Revert to earlier revision',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '3',
-  'customized' => '0',
-  'p1' => '5',
-  'p2' => '49',
-  'p3' => '129',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '130',
-  'plid' => '49',
-  'link_path' => 'node/%/revisions/%/view',
-  'router_path' => 'node/%/revisions/%/view',
-  'link_title' => 'Revisions',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '3',
-  'customized' => '0',
-  'p1' => '5',
-  'p2' => '49',
-  'p3' => '130',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '136',
-  'plid' => '117',
-  'link_path' => 'admin/structure/block/list/garland/add',
-  'router_path' => 'admin/structure/block/list/garland/add',
-  'link_title' => 'Add block',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '5',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '20',
-  'p3' => '28',
-  'p4' => '117',
-  'p5' => '136',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '141',
-  'plid' => '125',
-  'link_path' => 'admin/structure/block/list/seven/add',
-  'router_path' => 'admin/structure/block/list/seven/add',
-  'link_title' => 'Add block',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '5',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '20',
-  'p3' => '28',
-  'p4' => '125',
-  'p5' => '141',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '142',
-  'plid' => '126',
-  'link_path' => 'admin/structure/block/list/stark/add',
-  'router_path' => 'admin/structure/block/list/stark/add',
-  'link_title' => 'Add block',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '5',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '20',
-  'p3' => '28',
-  'p4' => '126',
-  'p5' => '142',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '143',
-  'plid' => '127',
-  'link_path' => 'admin/config/regional/date-time/types/add',
-  'router_path' => 'admin/config/regional/date-time/types/add',
-  'link_title' => 'Add date type',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:18:"Add new date type.";}}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '-10',
-  'depth' => '6',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '8',
-  'p3' => '48',
-  'p4' => '74',
-  'p5' => '127',
-  'p6' => '143',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '144',
-  'plid' => '116',
-  'link_path' => 'admin/config/regional/date-time/formats/add',
-  'router_path' => 'admin/config/regional/date-time/formats/add',
-  'link_title' => 'Add format',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:43:"Allow users to add additional date formats.";}}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '-10',
-  'depth' => '6',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '8',
-  'p3' => '48',
-  'p4' => '74',
-  'p5' => '116',
-  'p6' => '144',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '145',
-  'plid' => '113',
-  'link_path' => 'admin/structure/menu/manage/%/add',
-  'router_path' => 'admin/structure/menu/manage/%/add',
-  'link_title' => 'Add link',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '5',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '20',
-  'p3' => '44',
-  'p4' => '113',
-  'p5' => '145',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '146',
-  'plid' => '28',
-  'link_path' => 'admin/structure/block/manage/%/%',
-  'router_path' => 'admin/structure/block/manage/%/%',
-  'link_title' => 'Configure block',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '4',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '20',
-  'p3' => '28',
-  'p4' => '146',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '147',
-  'plid' => '29',
-  'link_path' => 'user/%/cancel/confirm/%/%',
-  'router_path' => 'user/%/cancel/confirm/%/%',
-  'link_title' => 'Confirm account cancellation',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '3',
-  'customized' => '0',
-  'p1' => '16',
-  'p2' => '29',
-  'p3' => '147',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '148',
-  'plid' => '114',
-  'link_path' => 'admin/structure/types/manage/%/delete',
-  'router_path' => 'admin/structure/types/manage/%/delete',
-  'link_title' => 'Delete',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '5',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '20',
-  'p3' => '34',
-  'p4' => '114',
-  'p5' => '148',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '149',
-  'plid' => '80',
-  'link_path' => 'admin/config/people/ip-blocking/delete/%',
-  'router_path' => 'admin/config/people/ip-blocking/delete/%',
-  'link_title' => 'Delete IP address',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '5',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '8',
-  'p3' => '45',
-  'p4' => '80',
-  'p5' => '149',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '150',
-  'plid' => '67',
-  'link_path' => 'admin/config/system/actions/delete/%',
-  'router_path' => 'admin/config/system/actions/delete/%',
-  'link_title' => 'Delete action',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:17:"Delete an action.";}}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '5',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '8',
-  'p3' => '53',
-  'p4' => '67',
-  'p5' => '150',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '151',
-  'plid' => '113',
-  'link_path' => 'admin/structure/menu/manage/%/delete',
-  'router_path' => 'admin/structure/menu/manage/%/delete',
-  'link_title' => 'Delete menu',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '5',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '20',
-  'p3' => '44',
-  'p4' => '113',
-  'p5' => '151',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '152',
-  'plid' => '44',
-  'link_path' => 'admin/structure/menu/item/%/delete',
-  'router_path' => 'admin/structure/menu/item/%/delete',
-  'link_title' => 'Delete menu link',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '4',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '20',
-  'p3' => '44',
-  'p4' => '152',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '153',
-  'plid' => '96',
-  'link_path' => 'admin/people/permissions/roles/delete/%',
-  'router_path' => 'admin/people/permissions/roles/delete/%',
-  'link_title' => 'Delete role',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '5',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '17',
-  'p3' => '46',
-  'p4' => '96',
-  'p5' => '153',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '154',
-  'plid' => '105',
-  'link_path' => 'admin/config/content/formats/%/disable',
-  'router_path' => 'admin/config/content/formats/%/disable',
-  'link_title' => 'Disable text format',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '6',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '8',
-  'p3' => '33',
-  'p4' => '101',
-  'p5' => '105',
-  'p6' => '154',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '155',
-  'plid' => '114',
-  'link_path' => 'admin/structure/types/manage/%/edit',
-  'router_path' => 'admin/structure/types/manage/%/edit',
-  'link_title' => 'Edit',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '5',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '20',
-  'p3' => '34',
-  'p4' => '114',
-  'p5' => '155',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '156',
-  'plid' => '113',
-  'link_path' => 'admin/structure/menu/manage/%/edit',
-  'router_path' => 'admin/structure/menu/manage/%/edit',
-  'link_title' => 'Edit menu',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '5',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '20',
-  'p3' => '44',
-  'p4' => '113',
-  'p5' => '156',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '157',
-  'plid' => '44',
-  'link_path' => 'admin/structure/menu/item/%/edit',
-  'router_path' => 'admin/structure/menu/item/%/edit',
-  'link_title' => 'Edit menu link',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '4',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '20',
-  'p3' => '44',
-  'p4' => '157',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '158',
-  'plid' => '96',
-  'link_path' => 'admin/people/permissions/roles/edit/%',
-  'router_path' => 'admin/people/permissions/roles/edit/%',
-  'link_title' => 'Edit role',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '5',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '17',
-  'p3' => '46',
-  'p4' => '96',
-  'p5' => '158',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '159',
-  'plid' => '113',
-  'link_path' => 'admin/structure/menu/manage/%/list',
-  'router_path' => 'admin/structure/menu/manage/%/list',
-  'link_title' => 'List links',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '-10',
-  'depth' => '5',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '20',
-  'p3' => '44',
-  'p4' => '113',
-  'p5' => '159',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '160',
-  'plid' => '44',
-  'link_path' => 'admin/structure/menu/item/%/reset',
-  'router_path' => 'admin/structure/menu/item/%/reset',
-  'link_title' => 'Reset menu link',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '4',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '20',
-  'p3' => '44',
-  'p4' => '160',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '161',
-  'plid' => '114',
-  'link_path' => 'admin/structure/types/manage/%/comment/display',
-  'router_path' => 'admin/structure/types/manage/%/comment/display',
-  'link_title' => 'Comment display',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '4',
-  'depth' => '5',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '20',
-  'p3' => '34',
-  'p4' => '114',
-  'p5' => '161',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '162',
-  'plid' => '114',
-  'link_path' => 'admin/structure/types/manage/%/comment/fields',
-  'router_path' => 'admin/structure/types/manage/%/comment/fields',
-  'link_title' => 'Comment fields',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '1',
-  'expanded' => '0',
-  'weight' => '3',
-  'depth' => '5',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '20',
-  'p3' => '34',
-  'p4' => '114',
-  'p5' => '162',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '163',
-  'plid' => '146',
-  'link_path' => 'admin/structure/block/manage/%/%/configure',
-  'router_path' => 'admin/structure/block/manage/%/%/configure',
-  'link_title' => 'Configure block',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '5',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '20',
-  'p3' => '28',
-  'p4' => '146',
-  'p5' => '163',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '164',
-  'plid' => '146',
-  'link_path' => 'admin/structure/block/manage/%/%/delete',
-  'router_path' => 'admin/structure/block/manage/%/%/delete',
-  'link_title' => 'Delete block',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '5',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '20',
-  'p3' => '28',
-  'p4' => '146',
-  'p5' => '164',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '165',
-  'plid' => '116',
-  'link_path' => 'admin/config/regional/date-time/formats/%/delete',
-  'router_path' => 'admin/config/regional/date-time/formats/%/delete',
-  'link_title' => 'Delete date format',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:47:"Allow users to delete a configured date format.";}}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '6',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '8',
-  'p3' => '48',
-  'p4' => '74',
-  'p5' => '116',
-  'p6' => '165',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '166',
-  'plid' => '127',
-  'link_path' => 'admin/config/regional/date-time/types/%/delete',
-  'router_path' => 'admin/config/regional/date-time/types/%/delete',
-  'link_title' => 'Delete date type',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:45:"Allow users to delete a configured date type.";}}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '6',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '8',
-  'p3' => '48',
-  'p4' => '74',
-  'p5' => '127',
-  'p6' => '166',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '167',
-  'plid' => '116',
-  'link_path' => 'admin/config/regional/date-time/formats/%/edit',
-  'router_path' => 'admin/config/regional/date-time/formats/%/edit',
-  'link_title' => 'Edit date format',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:45:"Allow users to edit a configured date format.";}}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '6',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '8',
-  'p3' => '48',
-  'p4' => '74',
-  'p5' => '116',
-  'p6' => '167',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '168',
-  'plid' => '44',
-  'link_path' => 'admin/structure/menu/manage/main-menu',
-  'router_path' => 'admin/structure/menu/manage/%',
-  'link_title' => 'Main menu',
-  'options' => 'a:0:{}',
-  'module' => 'menu',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '4',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '20',
-  'p3' => '44',
-  'p4' => '168',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '169',
-  'plid' => '44',
-  'link_path' => 'admin/structure/menu/manage/management',
-  'router_path' => 'admin/structure/menu/manage/%',
-  'link_title' => 'Management',
-  'options' => 'a:0:{}',
-  'module' => 'menu',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '4',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '20',
-  'p3' => '44',
-  'p4' => '169',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '170',
-  'plid' => '44',
-  'link_path' => 'admin/structure/menu/manage/navigation',
-  'router_path' => 'admin/structure/menu/manage/%',
-  'link_title' => 'Navigation',
-  'options' => 'a:0:{}',
-  'module' => 'menu',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '4',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '20',
-  'p3' => '44',
-  'p4' => '170',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '171',
-  'plid' => '44',
-  'link_path' => 'admin/structure/menu/manage/user-menu',
-  'router_path' => 'admin/structure/menu/manage/%',
-  'link_title' => 'User menu',
-  'options' => 'a:0:{}',
-  'module' => 'menu',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '4',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '20',
-  'p3' => '44',
-  'p4' => '171',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '172',
-  'plid' => '0',
-  'link_path' => 'search',
-  'router_path' => 'search',
-  'link_title' => 'Search',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '1',
-  'customized' => '0',
-  'p1' => '172',
-  'p2' => '0',
-  'p3' => '0',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '173',
-  'plid' => '172',
-  'link_path' => 'search/node',
-  'router_path' => 'search/node',
-  'link_title' => 'Content',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '-10',
-  'depth' => '2',
-  'customized' => '0',
-  'p1' => '172',
-  'p2' => '173',
-  'p3' => '0',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '176',
-  'plid' => '0',
-  'link_path' => 'taxonomy/term/%',
-  'router_path' => 'taxonomy/term/%',
-  'link_title' => 'Taxonomy term',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '1',
-  'customized' => '0',
-  'p1' => '176',
-  'p2' => '0',
-  'p3' => '0',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '177',
-  'plid' => '173',
-  'link_path' => 'search/node/%',
-  'router_path' => 'search/node/%',
-  'link_title' => 'Content',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '3',
-  'customized' => '0',
-  'p1' => '172',
-  'p2' => '173',
-  'p3' => '177',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '178',
-  'plid' => '18',
-  'link_path' => 'admin/reports/fields',
-  'router_path' => 'admin/reports/fields',
-  'link_title' => 'Field list',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:39:"Overview of fields on all entity types.";}}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '3',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '18',
-  'p3' => '178',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '180',
-  'plid' => '20',
-  'link_path' => 'admin/structure/taxonomy',
-  'router_path' => 'admin/structure/taxonomy',
-  'link_title' => 'Taxonomy',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:67:"Manage tagging, categorization, and classification of your content.";}}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '1',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '3',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '20',
-  'p3' => '180',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '210',
-  'plid' => '176',
-  'link_path' => 'taxonomy/term/%/edit',
-  'router_path' => 'taxonomy/term/%/edit',
-  'link_title' => 'Edit',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '10',
-  'depth' => '2',
-  'customized' => '0',
-  'p1' => '176',
-  'p2' => '210',
-  'p3' => '0',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '211',
-  'plid' => '176',
-  'link_path' => 'taxonomy/term/%/view',
-  'router_path' => 'taxonomy/term/%/view',
-  'link_title' => 'View',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '2',
-  'customized' => '0',
-  'p1' => '176',
-  'p2' => '211',
-  'p3' => '0',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '212',
-  'plid' => '180',
-  'link_path' => 'admin/structure/taxonomy/%',
-  'router_path' => 'admin/structure/taxonomy/%',
-  'link_title' => '',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '4',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '20',
-  'p3' => '180',
-  'p4' => '212',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '213',
-  'plid' => '180',
-  'link_path' => 'admin/structure/taxonomy/add',
-  'router_path' => 'admin/structure/taxonomy/add',
-  'link_title' => 'Add vocabulary',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '4',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '20',
-  'p3' => '180',
-  'p4' => '213',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '214',
-  'plid' => '43',
-  'link_path' => 'admin/config/media/image-styles',
-  'router_path' => 'admin/config/media/image-styles',
-  'link_title' => 'Image styles',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:78:"Configure styles that can be used for resizing or adjusting images on display.";}}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '1',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '4',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '8',
-  'p3' => '43',
-  'p4' => '214',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '215',
-  'plid' => '180',
-  'link_path' => 'admin/structure/taxonomy/list',
-  'router_path' => 'admin/structure/taxonomy/list',
-  'link_title' => 'List',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '-10',
-  'depth' => '4',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '20',
-  'p3' => '180',
-  'p4' => '215',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '216',
-  'plid' => '50',
-  'link_path' => 'admin/config/search/settings',
-  'router_path' => 'admin/config/search/settings',
-  'link_title' => 'Search settings',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:67:"Configure relevance settings for search and other indexing options.";}}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '-10',
-  'depth' => '4',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '8',
-  'p3' => '50',
-  'p4' => '216',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '218',
-  'plid' => '50',
-  'link_path' => 'admin/config/search/path',
-  'router_path' => 'admin/config/search/path',
-  'link_title' => 'URL aliases',
-  'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:46:\"Change your site's URL paths by aliasing them.\";}}",
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '1',
-  'expanded' => '0',
-  'weight' => '-5',
-  'depth' => '4',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '8',
-  'p3' => '50',
-  'p4' => '218',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '219',
-  'plid' => '218',
-  'link_path' => 'admin/config/search/path/add',
-  'router_path' => 'admin/config/search/path/add',
-  'link_title' => 'Add alias',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '5',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '8',
-  'p3' => '50',
-  'p4' => '218',
-  'p5' => '219',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '221',
-  'plid' => '214',
-  'link_path' => 'admin/config/media/image-styles/add',
-  'router_path' => 'admin/config/media/image-styles/add',
-  'link_title' => 'Add style',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:22:"Add a new image style.";}}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '2',
-  'depth' => '5',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '8',
-  'p3' => '43',
-  'p4' => '214',
-  'p5' => '221',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '222',
-  'plid' => '212',
-  'link_path' => 'admin/structure/taxonomy/%/add',
-  'router_path' => 'admin/structure/taxonomy/%/add',
-  'link_title' => 'Add term',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '5',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '20',
-  'p3' => '180',
-  'p4' => '212',
-  'p5' => '222',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '223',
-  'plid' => '216',
-  'link_path' => 'admin/config/search/settings/reindex',
-  'router_path' => 'admin/config/search/settings/reindex',
-  'link_title' => 'Clear index',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '5',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '8',
-  'p3' => '50',
-  'p4' => '216',
-  'p5' => '223',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '224',
-  'plid' => '212',
-  'link_path' => 'admin/structure/taxonomy/%/edit',
-  'router_path' => 'admin/structure/taxonomy/%/edit',
-  'link_title' => 'Edit',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '-10',
-  'depth' => '5',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '20',
-  'p3' => '180',
-  'p4' => '212',
-  'p5' => '224',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '226',
-  'plid' => '212',
-  'link_path' => 'admin/structure/taxonomy/%/list',
-  'router_path' => 'admin/structure/taxonomy/%/list',
-  'link_title' => 'List',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '-20',
-  'depth' => '5',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '20',
-  'p3' => '180',
-  'p4' => '212',
-  'p5' => '226',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '227',
-  'plid' => '218',
-  'link_path' => 'admin/config/search/path/list',
-  'router_path' => 'admin/config/search/path/list',
-  'link_title' => 'List',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '-10',
-  'depth' => '5',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '8',
-  'p3' => '50',
-  'p4' => '218',
-  'p5' => '227',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '228',
-  'plid' => '214',
-  'link_path' => 'admin/config/media/image-styles/list',
-  'router_path' => 'admin/config/media/image-styles/list',
-  'link_title' => 'List',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:42:"List the current image styles on the site.";}}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '1',
-  'depth' => '5',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '8',
-  'p3' => '43',
-  'p4' => '214',
-  'p5' => '228',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '230',
-  'plid' => '218',
-  'link_path' => 'admin/config/search/path/delete/%',
-  'router_path' => 'admin/config/search/path/delete/%',
-  'link_title' => 'Delete alias',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '5',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '8',
-  'p3' => '50',
-  'p4' => '218',
-  'p5' => '230',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '232',
-  'plid' => '218',
-  'link_path' => 'admin/config/search/path/edit/%',
-  'router_path' => 'admin/config/search/path/edit/%',
-  'link_title' => 'Edit alias',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '5',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '8',
-  'p3' => '50',
-  'p4' => '218',
-  'p5' => '232',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '235',
-  'plid' => '214',
-  'link_path' => 'admin/config/media/image-styles/edit/%',
-  'router_path' => 'admin/config/media/image-styles/edit/%',
-  'link_title' => 'Edit style',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:25:"Configure an image style.";}}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '1',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '5',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '8',
-  'p3' => '43',
-  'p4' => '214',
-  'p5' => '235',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '237',
-  'plid' => '214',
-  'link_path' => 'admin/config/media/image-styles/delete/%',
-  'router_path' => 'admin/config/media/image-styles/delete/%',
-  'link_title' => 'Delete style',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:22:"Delete an image style.";}}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '5',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '8',
-  'p3' => '43',
-  'p4' => '214',
-  'p5' => '237',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '238',
-  'plid' => '214',
-  'link_path' => 'admin/config/media/image-styles/revert/%',
-  'router_path' => 'admin/config/media/image-styles/revert/%',
-  'link_title' => 'Revert style',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:22:"Revert an image style.";}}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '5',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '8',
-  'p3' => '43',
-  'p4' => '214',
-  'p5' => '238',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '240',
-  'plid' => '235',
-  'link_path' => 'admin/config/media/image-styles/edit/%/add/%',
-  'router_path' => 'admin/config/media/image-styles/edit/%/add/%',
-  'link_title' => 'Add image effect',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:28:"Add a new effect to a style.";}}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '6',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '8',
-  'p3' => '43',
-  'p4' => '214',
-  'p5' => '235',
-  'p6' => '240',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '241',
-  'plid' => '235',
-  'link_path' => 'admin/config/media/image-styles/edit/%/effects/%',
-  'router_path' => 'admin/config/media/image-styles/edit/%/effects/%',
-  'link_title' => 'Edit image effect',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:39:"Edit an existing effect within a style.";}}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '1',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '6',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '8',
-  'p3' => '43',
-  'p4' => '214',
-  'p5' => '235',
-  'p6' => '241',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '242',
-  'plid' => '241',
-  'link_path' => 'admin/config/media/image-styles/edit/%/effects/%/delete',
-  'router_path' => 'admin/config/media/image-styles/edit/%/effects/%/delete',
-  'link_title' => 'Delete image effect',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:39:"Delete an existing effect from a style.";}}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '7',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '8',
-  'p3' => '43',
-  'p4' => '214',
-  'p5' => '235',
-  'p6' => '241',
-  'p7' => '242',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'main-menu',
-  'mlid' => '245',
-  'plid' => '0',
-  'link_path' => '<front>',
-  'router_path' => '',
-  'link_title' => 'Home',
-  'options' => 'a:0:{}',
-  'module' => 'menu',
-  'hidden' => '0',
-  'external' => '1',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '1',
-  'customized' => '0',
-  'p1' => '245',
-  'p2' => '0',
-  'p3' => '0',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '246',
-  'plid' => '6',
-  'link_path' => 'node/add/article',
-  'router_path' => 'node/add/article',
-  'link_title' => 'Article',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:89:"Use <em>articles</em> for time-sensitive content like news, press releases or blog posts.";}}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '2',
-  'customized' => '0',
-  'p1' => '6',
-  'p2' => '246',
-  'p3' => '0',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '247',
-  'plid' => '6',
-  'link_path' => 'node/add/page',
-  'router_path' => 'node/add/page',
-  'link_title' => 'Basic page',
-  'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:77:\"Use <em>basic pages</em> for your static content, such as an 'About us' page.\";}}",
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '2',
-  'customized' => '0',
-  'p1' => '6',
-  'p2' => '247',
-  'p3' => '0',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '339',
-  'plid' => '0',
-  'link_path' => 'forum',
-  'router_path' => 'forum',
-  'link_title' => 'Forums',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '1',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '1',
-  'customized' => '0',
-  'p1' => '339',
-  'p2' => '0',
-  'p3' => '0',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '343',
-  'plid' => '339',
-  'link_path' => 'forum/%',
-  'router_path' => 'forum/%',
-  'link_title' => 'Forums',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '2',
-  'customized' => '0',
-  'p1' => '339',
-  'p2' => '343',
-  'p3' => '0',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '354',
-  'plid' => '8',
-  'link_path' => 'admin/config/date',
-  'router_path' => 'admin/config/date',
-  'link_title' => 'Date API',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:42:"Settings for modules the use the Date API.";}}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '-10',
-  'depth' => '3',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '8',
-  'p3' => '354',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '355',
-  'plid' => '6',
-  'link_path' => 'node/add/forum',
-  'router_path' => 'node/add/forum',
-  'link_title' => 'Forum topic',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:69:"A <em>forum topic</em> starts a new discussion thread within a forum.";}}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '2',
-  'customized' => '0',
-  'p1' => '6',
-  'p2' => '355',
-  'p3' => '0',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '356',
-  'plid' => '20',
-  'link_path' => 'admin/structure/forum',
-  'router_path' => 'admin/structure/forum',
-  'link_title' => 'Forums',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:33:"Control forum hierarchy settings.";}}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '1',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '3',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '20',
-  'p3' => '356',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '365',
-  'plid' => '5',
-  'link_path' => 'node/%/translate',
-  'router_path' => 'node/%/translate',
-  'link_title' => 'Translate',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '1',
-  'expanded' => '0',
-  'weight' => '1',
-  'depth' => '2',
-  'customized' => '0',
-  'p1' => '5',
-  'p2' => '365',
-  'p3' => '0',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '395',
-  'plid' => '48',
-  'link_path' => 'admin/config/regional/language',
-  'router_path' => 'admin/config/regional/language',
-  'link_title' => 'Languages',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:55:"Configure languages for content and the user interface.";}}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '1',
-  'expanded' => '0',
-  'weight' => '-10',
-  'depth' => '4',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '8',
-  'p3' => '48',
-  'p4' => '395',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '398',
-  'plid' => '356',
-  'link_path' => 'admin/structure/forum/list',
-  'router_path' => 'admin/structure/forum/list',
-  'link_title' => 'List',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '-10',
-  'depth' => '4',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '20',
-  'p3' => '356',
-  'p4' => '398',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '413',
-  'plid' => '48',
-  'link_path' => 'admin/config/regional/translate',
-  'router_path' => 'admin/config/regional/translate',
-  'link_title' => 'Translate interface',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:59:"Translate the built in interface and optionally other text.";}}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '1',
-  'expanded' => '0',
-  'weight' => '-5',
-  'depth' => '4',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '8',
-  'p3' => '48',
-  'p4' => '413',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '417',
-  'plid' => '356',
-  'link_path' => 'admin/structure/forum/settings',
-  'router_path' => 'admin/structure/forum/settings',
-  'link_title' => 'Settings',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '5',
-  'depth' => '4',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '20',
-  'p3' => '356',
-  'p4' => '417',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '418',
-  'plid' => '395',
-  'link_path' => 'admin/config/regional/language/add',
-  'router_path' => 'admin/config/regional/language/add',
-  'link_title' => 'Add language',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '5',
-  'depth' => '5',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '8',
-  'p3' => '48',
-  'p4' => '395',
-  'p5' => '418',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '422',
-  'plid' => '395',
-  'link_path' => 'admin/config/regional/language/configure',
-  'router_path' => 'admin/config/regional/language/configure',
-  'link_title' => 'Detection and selection',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '10',
-  'depth' => '5',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '8',
-  'p3' => '48',
-  'p4' => '395',
-  'p5' => '422',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '424',
-  'plid' => '413',
-  'link_path' => 'admin/config/regional/translate/export',
-  'router_path' => 'admin/config/regional/translate/export',
-  'link_title' => 'Export',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '30',
-  'depth' => '5',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '8',
-  'p3' => '48',
-  'p4' => '413',
-  'p5' => '424',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '425',
-  'plid' => '413',
-  'link_path' => 'admin/config/regional/translate/import',
-  'router_path' => 'admin/config/regional/translate/import',
-  'link_title' => 'Import',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '20',
-  'depth' => '5',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '8',
-  'p3' => '48',
-  'p4' => '413',
-  'p5' => '425',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '427',
-  'plid' => '395',
-  'link_path' => 'admin/config/regional/language/overview',
-  'router_path' => 'admin/config/regional/language/overview',
-  'link_title' => 'List',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '5',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '8',
-  'p3' => '48',
-  'p4' => '395',
-  'p5' => '427',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '429',
-  'plid' => '74',
-  'link_path' => 'admin/config/regional/date-time/locale',
-  'router_path' => 'admin/config/regional/date-time/locale',
-  'link_title' => 'Localize',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:38:"Configure date formats for each locale";}}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '1',
-  'expanded' => '0',
-  'weight' => '-8',
-  'depth' => '5',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '8',
-  'p3' => '48',
-  'p4' => '74',
-  'p5' => '429',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '430',
-  'plid' => '413',
-  'link_path' => 'admin/config/regional/translate/overview',
-  'router_path' => 'admin/config/regional/translate/overview',
-  'link_title' => 'Overview',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '5',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '8',
-  'p3' => '48',
-  'p4' => '413',
-  'p5' => '430',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '433',
-  'plid' => '413',
-  'link_path' => 'admin/config/regional/translate/translate',
-  'router_path' => 'admin/config/regional/translate/translate',
-  'link_title' => 'Translate',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '10',
-  'depth' => '5',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '8',
-  'p3' => '48',
-  'p4' => '413',
-  'p5' => '433',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '435',
-  'plid' => '356',
-  'link_path' => 'admin/structure/forum/add/container',
-  'router_path' => 'admin/structure/forum/add/container',
-  'link_title' => 'Add container',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '4',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '20',
-  'p3' => '356',
-  'p4' => '435',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '436',
-  'plid' => '356',
-  'link_path' => 'admin/structure/forum/add/forum',
-  'router_path' => 'admin/structure/forum/add/forum',
-  'link_title' => 'Add forum',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '4',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '20',
-  'p3' => '356',
-  'p4' => '436',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '440',
-  'plid' => '395',
-  'link_path' => 'admin/config/regional/language/delete/%',
-  'router_path' => 'admin/config/regional/language/delete/%',
-  'link_title' => 'Confirm',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '5',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '8',
-  'p3' => '48',
-  'p4' => '395',
-  'p5' => '440',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '441',
-  'plid' => '413',
-  'link_path' => 'admin/config/regional/translate/delete/%',
-  'router_path' => 'admin/config/regional/translate/delete/%',
-  'link_title' => 'Delete string',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '5',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '8',
-  'p3' => '48',
-  'p4' => '413',
-  'p5' => '441',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '442',
-  'plid' => '356',
-  'link_path' => 'admin/structure/forum/edit/container/%',
-  'router_path' => 'admin/structure/forum/edit/container/%',
-  'link_title' => 'Edit container',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '4',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '20',
-  'p3' => '356',
-  'p4' => '442',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '443',
-  'plid' => '356',
-  'link_path' => 'admin/structure/forum/edit/forum/%',
-  'router_path' => 'admin/structure/forum/edit/forum/%',
-  'link_title' => 'Edit forum',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '4',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '20',
-  'p3' => '356',
-  'p4' => '443',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '444',
-  'plid' => '395',
-  'link_path' => 'admin/config/regional/language/edit/%',
-  'router_path' => 'admin/config/regional/language/edit/%',
-  'link_title' => 'Edit language',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '5',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '8',
-  'p3' => '48',
-  'p4' => '395',
-  'p5' => '444',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '445',
-  'plid' => '413',
-  'link_path' => 'admin/config/regional/translate/edit/%',
-  'router_path' => 'admin/config/regional/translate/edit/%',
-  'link_title' => 'Edit string',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '5',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '8',
-  'p3' => '48',
-  'p4' => '413',
-  'p5' => '445',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '449',
-  'plid' => '422',
-  'link_path' => 'admin/config/regional/language/configure/session',
-  'router_path' => 'admin/config/regional/language/configure/session',
-  'link_title' => 'Session language detection configuration',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '6',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '8',
-  'p3' => '48',
-  'p4' => '395',
-  'p5' => '422',
-  'p6' => '449',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '451',
-  'plid' => '422',
-  'link_path' => 'admin/config/regional/language/configure/url',
-  'router_path' => 'admin/config/regional/language/configure/url',
-  'link_title' => 'URL language detection configuration',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '6',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '8',
-  'p3' => '48',
-  'p4' => '395',
-  'p5' => '422',
-  'p6' => '451',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '461',
-  'plid' => '429',
-  'link_path' => 'admin/config/regional/date-time/locale/%/edit',
-  'router_path' => 'admin/config/regional/date-time/locale/%/edit',
-  'link_title' => 'Localize date formats',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:38:"Configure date formats for each locale";}}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '6',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '8',
-  'p3' => '48',
-  'p4' => '74',
-  'p5' => '429',
-  'p6' => '461',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '463',
-  'plid' => '429',
-  'link_path' => 'admin/config/regional/date-time/locale/%/reset',
-  'router_path' => 'admin/config/regional/date-time/locale/%/reset',
-  'link_title' => 'Reset date formats',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:47:"Reset localized date formats to global defaults";}}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '6',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '8',
-  'p3' => '48',
-  'p4' => '74',
-  'p5' => '429',
-  'p6' => '463',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '474',
-  'plid' => '4',
-  'link_path' => 'filter/tips/%',
-  'router_path' => 'filter/tips/%',
-  'link_title' => 'Compose tips',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '2',
-  'customized' => '0',
-  'p1' => '4',
-  'p2' => '474',
-  'p3' => '0',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '478',
-  'plid' => '20',
-  'link_path' => 'admin/content',
-  'router_path' => 'admin/content',
-  'link_title' => 'custom link test',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:0:"";}}',
-  'module' => 'menu',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '3',
-  'customized' => '1',
-  'p1' => '1',
-  'p2' => '20',
-  'p3' => '478',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '923',
-  'plid' => '212',
-  'link_path' => 'admin/structure/taxonomy/%/display',
-  'router_path' => 'admin/structure/taxonomy/%/display',
-  'link_title' => 'Manage display',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '2',
-  'depth' => '5',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '20',
-  'p3' => '180',
-  'p4' => '212',
-  'p5' => '923',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '924',
-  'plid' => '66',
-  'link_path' => 'admin/config/people/accounts/display',
-  'router_path' => 'admin/config/people/accounts/display',
-  'link_title' => 'Manage display',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '2',
-  'depth' => '5',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '8',
-  'p3' => '45',
-  'p4' => '66',
-  'p5' => '924',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '925',
-  'plid' => '212',
-  'link_path' => 'admin/structure/taxonomy/%/fields',
-  'router_path' => 'admin/structure/taxonomy/%/fields',
-  'link_title' => 'Manage fields',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '1',
-  'expanded' => '0',
-  'weight' => '1',
-  'depth' => '5',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '20',
-  'p3' => '180',
-  'p4' => '212',
-  'p5' => '925',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '926',
-  'plid' => '66',
-  'link_path' => 'admin/config/people/accounts/fields',
-  'router_path' => 'admin/config/people/accounts/fields',
-  'link_title' => 'Manage fields',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '1',
-  'expanded' => '0',
-  'weight' => '1',
-  'depth' => '5',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '8',
-  'p3' => '45',
-  'p4' => '66',
-  'p5' => '926',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '927',
-  'plid' => '923',
-  'link_path' => 'admin/structure/taxonomy/%/display/default',
-  'router_path' => 'admin/structure/taxonomy/%/display/default',
-  'link_title' => 'Default',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '-10',
-  'depth' => '6',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '20',
-  'p3' => '180',
-  'p4' => '212',
-  'p5' => '923',
-  'p6' => '927',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '928',
-  'plid' => '924',
-  'link_path' => 'admin/config/people/accounts/display/default',
-  'router_path' => 'admin/config/people/accounts/display/default',
-  'link_title' => 'Default',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '-10',
-  'depth' => '6',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '8',
-  'p3' => '45',
-  'p4' => '66',
-  'p5' => '924',
-  'p6' => '928',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '929',
-  'plid' => '114',
-  'link_path' => 'admin/structure/types/manage/%/display',
-  'router_path' => 'admin/structure/types/manage/%/display',
-  'link_title' => 'Manage display',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '2',
-  'depth' => '5',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '20',
-  'p3' => '34',
-  'p4' => '114',
-  'p5' => '929',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '930',
-  'plid' => '114',
-  'link_path' => 'admin/structure/types/manage/%/fields',
-  'router_path' => 'admin/structure/types/manage/%/fields',
-  'link_title' => 'Manage fields',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '1',
-  'expanded' => '0',
-  'weight' => '1',
-  'depth' => '5',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '20',
-  'p3' => '34',
-  'p4' => '114',
-  'p5' => '930',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '931',
-  'plid' => '923',
-  'link_path' => 'admin/structure/taxonomy/%/display/full',
-  'router_path' => 'admin/structure/taxonomy/%/display/full',
-  'link_title' => 'Taxonomy term page',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '6',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '20',
-  'p3' => '180',
-  'p4' => '212',
-  'p5' => '923',
-  'p6' => '931',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '932',
-  'plid' => '924',
-  'link_path' => 'admin/config/people/accounts/display/full',
-  'router_path' => 'admin/config/people/accounts/display/full',
-  'link_title' => 'User account',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '6',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '8',
-  'p3' => '45',
-  'p4' => '66',
-  'p5' => '924',
-  'p6' => '932',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '933',
-  'plid' => '925',
-  'link_path' => 'admin/structure/taxonomy/%/fields/%',
-  'router_path' => 'admin/structure/taxonomy/%/fields/%',
-  'link_title' => '',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '6',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '20',
-  'p3' => '180',
-  'p4' => '212',
-  'p5' => '925',
-  'p6' => '933',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '934',
-  'plid' => '926',
-  'link_path' => 'admin/config/people/accounts/fields/%',
-  'router_path' => 'admin/config/people/accounts/fields/%',
-  'link_title' => '',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '6',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '8',
-  'p3' => '45',
-  'p4' => '66',
-  'p5' => '926',
-  'p6' => '934',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '935',
-  'plid' => '929',
-  'link_path' => 'admin/structure/types/manage/%/display/default',
-  'router_path' => 'admin/structure/types/manage/%/display/default',
-  'link_title' => 'Default',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '-10',
-  'depth' => '6',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '20',
-  'p3' => '34',
-  'p4' => '114',
-  'p5' => '929',
-  'p6' => '935',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '936',
-  'plid' => '929',
-  'link_path' => 'admin/structure/types/manage/%/display/full',
-  'router_path' => 'admin/structure/types/manage/%/display/full',
-  'link_title' => 'Full content',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '6',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '20',
-  'p3' => '34',
-  'p4' => '114',
-  'p5' => '929',
-  'p6' => '936',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '938',
-  'plid' => '929',
-  'link_path' => 'admin/structure/types/manage/%/display/rss',
-  'router_path' => 'admin/structure/types/manage/%/display/rss',
-  'link_title' => 'RSS',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '2',
-  'depth' => '6',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '20',
-  'p3' => '34',
-  'p4' => '114',
-  'p5' => '929',
-  'p6' => '938',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '939',
-  'plid' => '929',
-  'link_path' => 'admin/structure/types/manage/%/display/search_index',
-  'router_path' => 'admin/structure/types/manage/%/display/search_index',
-  'link_title' => 'Search index',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '3',
-  'depth' => '6',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '20',
-  'p3' => '34',
-  'p4' => '114',
-  'p5' => '929',
-  'p6' => '939',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '940',
-  'plid' => '929',
-  'link_path' => 'admin/structure/types/manage/%/display/search_result',
-  'router_path' => 'admin/structure/types/manage/%/display/search_result',
-  'link_title' => 'Search result highlighting input',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '4',
-  'depth' => '6',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '20',
-  'p3' => '34',
-  'p4' => '114',
-  'p5' => '929',
-  'p6' => '940',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '941',
-  'plid' => '929',
-  'link_path' => 'admin/structure/types/manage/%/display/teaser',
-  'router_path' => 'admin/structure/types/manage/%/display/teaser',
-  'link_title' => 'Teaser',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '1',
-  'depth' => '6',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '20',
-  'p3' => '34',
-  'p4' => '114',
-  'p5' => '929',
-  'p6' => '941',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '942',
-  'plid' => '930',
-  'link_path' => 'admin/structure/types/manage/%/fields/%',
-  'router_path' => 'admin/structure/types/manage/%/fields/%',
-  'link_title' => '',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '6',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '20',
-  'p3' => '34',
-  'p4' => '114',
-  'p5' => '930',
-  'p6' => '942',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '943',
-  'plid' => '933',
-  'link_path' => 'admin/structure/taxonomy/%/fields/%/delete',
-  'router_path' => 'admin/structure/taxonomy/%/fields/%/delete',
-  'link_title' => 'Delete',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '10',
-  'depth' => '7',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '20',
-  'p3' => '180',
-  'p4' => '212',
-  'p5' => '925',
-  'p6' => '933',
-  'p7' => '943',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '944',
-  'plid' => '933',
-  'link_path' => 'admin/structure/taxonomy/%/fields/%/edit',
-  'router_path' => 'admin/structure/taxonomy/%/fields/%/edit',
-  'link_title' => 'Edit',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '7',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '20',
-  'p3' => '180',
-  'p4' => '212',
-  'p5' => '925',
-  'p6' => '933',
-  'p7' => '944',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '945',
-  'plid' => '933',
-  'link_path' => 'admin/structure/taxonomy/%/fields/%/field-settings',
-  'router_path' => 'admin/structure/taxonomy/%/fields/%/field-settings',
-  'link_title' => 'Field settings',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '7',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '20',
-  'p3' => '180',
-  'p4' => '212',
-  'p5' => '925',
-  'p6' => '933',
-  'p7' => '945',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '947',
-  'plid' => '933',
-  'link_path' => 'admin/structure/taxonomy/%/fields/%/widget-type',
-  'router_path' => 'admin/structure/taxonomy/%/fields/%/widget-type',
-  'link_title' => 'Widget type',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '7',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '20',
-  'p3' => '180',
-  'p4' => '212',
-  'p5' => '925',
-  'p6' => '933',
-  'p7' => '947',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '948',
-  'plid' => '934',
-  'link_path' => 'admin/config/people/accounts/fields/%/delete',
-  'router_path' => 'admin/config/people/accounts/fields/%/delete',
-  'link_title' => 'Delete',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '10',
-  'depth' => '7',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '8',
-  'p3' => '45',
-  'p4' => '66',
-  'p5' => '926',
-  'p6' => '934',
-  'p7' => '948',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '949',
-  'plid' => '934',
-  'link_path' => 'admin/config/people/accounts/fields/%/edit',
-  'router_path' => 'admin/config/people/accounts/fields/%/edit',
-  'link_title' => 'Edit',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '7',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '8',
-  'p3' => '45',
-  'p4' => '66',
-  'p5' => '926',
-  'p6' => '934',
-  'p7' => '949',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '950',
-  'plid' => '934',
-  'link_path' => 'admin/config/people/accounts/fields/%/field-settings',
-  'router_path' => 'admin/config/people/accounts/fields/%/field-settings',
-  'link_title' => 'Field settings',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '7',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '8',
-  'p3' => '45',
-  'p4' => '66',
-  'p5' => '926',
-  'p6' => '934',
-  'p7' => '950',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '952',
-  'plid' => '934',
-  'link_path' => 'admin/config/people/accounts/fields/%/widget-type',
-  'router_path' => 'admin/config/people/accounts/fields/%/widget-type',
-  'link_title' => 'Widget type',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '7',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '8',
-  'p3' => '45',
-  'p4' => '66',
-  'p5' => '926',
-  'p6' => '934',
-  'p7' => '952',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '953',
-  'plid' => '161',
-  'link_path' => 'admin/structure/types/manage/%/comment/display/default',
-  'router_path' => 'admin/structure/types/manage/%/comment/display/default',
-  'link_title' => 'Default',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '-10',
-  'depth' => '6',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '20',
-  'p3' => '34',
-  'p4' => '114',
-  'p5' => '161',
-  'p6' => '953',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '954',
-  'plid' => '161',
-  'link_path' => 'admin/structure/types/manage/%/comment/display/full',
-  'router_path' => 'admin/structure/types/manage/%/comment/display/full',
-  'link_title' => 'Full comment',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '6',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '20',
-  'p3' => '34',
-  'p4' => '114',
-  'p5' => '161',
-  'p6' => '954',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '955',
-  'plid' => '162',
-  'link_path' => 'admin/structure/types/manage/%/comment/fields/%',
-  'router_path' => 'admin/structure/types/manage/%/comment/fields/%',
-  'link_title' => '',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '6',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '20',
-  'p3' => '34',
-  'p4' => '114',
-  'p5' => '162',
-  'p6' => '955',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '956',
-  'plid' => '942',
-  'link_path' => 'admin/structure/types/manage/%/fields/%/delete',
-  'router_path' => 'admin/structure/types/manage/%/fields/%/delete',
-  'link_title' => 'Delete',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '10',
-  'depth' => '7',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '20',
-  'p3' => '34',
-  'p4' => '114',
-  'p5' => '930',
-  'p6' => '942',
-  'p7' => '956',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '957',
-  'plid' => '942',
-  'link_path' => 'admin/structure/types/manage/%/fields/%/edit',
-  'router_path' => 'admin/structure/types/manage/%/fields/%/edit',
-  'link_title' => 'Edit',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '7',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '20',
-  'p3' => '34',
-  'p4' => '114',
-  'p5' => '930',
-  'p6' => '942',
-  'p7' => '957',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '958',
-  'plid' => '942',
-  'link_path' => 'admin/structure/types/manage/%/fields/%/field-settings',
-  'router_path' => 'admin/structure/types/manage/%/fields/%/field-settings',
-  'link_title' => 'Field settings',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '7',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '20',
-  'p3' => '34',
-  'p4' => '114',
-  'p5' => '930',
-  'p6' => '942',
-  'p7' => '958',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '960',
-  'plid' => '942',
-  'link_path' => 'admin/structure/types/manage/%/fields/%/widget-type',
-  'router_path' => 'admin/structure/types/manage/%/fields/%/widget-type',
-  'link_title' => 'Widget type',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '7',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '20',
-  'p3' => '34',
-  'p4' => '114',
-  'p5' => '930',
-  'p6' => '942',
-  'p7' => '960',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '961',
-  'plid' => '955',
-  'link_path' => 'admin/structure/types/manage/%/comment/fields/%/delete',
-  'router_path' => 'admin/structure/types/manage/%/comment/fields/%/delete',
-  'link_title' => 'Delete',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '10',
-  'depth' => '7',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '20',
-  'p3' => '34',
-  'p4' => '114',
-  'p5' => '162',
-  'p6' => '955',
-  'p7' => '961',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '962',
-  'plid' => '955',
-  'link_path' => 'admin/structure/types/manage/%/comment/fields/%/edit',
-  'router_path' => 'admin/structure/types/manage/%/comment/fields/%/edit',
-  'link_title' => 'Edit',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '7',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '20',
-  'p3' => '34',
-  'p4' => '114',
-  'p5' => '162',
-  'p6' => '955',
-  'p7' => '962',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '963',
-  'plid' => '955',
-  'link_path' => 'admin/structure/types/manage/%/comment/fields/%/field-settings',
-  'router_path' => 'admin/structure/types/manage/%/comment/fields/%/field-settings',
-  'link_title' => 'Field settings',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '7',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '20',
-  'p3' => '34',
-  'p4' => '114',
-  'p5' => '162',
-  'p6' => '955',
-  'p7' => '963',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '965',
-  'plid' => '955',
-  'link_path' => 'admin/structure/types/manage/%/comment/fields/%/widget-type',
-  'router_path' => 'admin/structure/types/manage/%/comment/fields/%/widget-type',
-  'link_title' => 'Widget type',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '7',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '20',
-  'p3' => '34',
-  'p4' => '114',
-  'p5' => '162',
-  'p6' => '955',
-  'p7' => '965',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '966',
-  'plid' => '6',
-  'link_path' => 'node/add/et',
-  'router_path' => 'node/add/et',
-  'link_title' => 'et',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '2',
-  'customized' => '0',
-  'p1' => '6',
-  'p2' => '966',
-  'p3' => '0',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '967',
-  'plid' => '6',
-  'link_path' => 'node/add/test-content-type',
-  'router_path' => 'node/add/test-content-type',
-  'link_title' => 'test_content_type',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '2',
-  'customized' => '0',
-  'p1' => '6',
-  'p2' => '967',
-  'p3' => '0',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '968',
-  'plid' => '48',
-  'link_path' => 'admin/config/regional/i18n',
-  'router_path' => 'admin/config/regional/i18n',
-  'link_title' => 'Multilingual settings',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:69:"Configure extended options for multilingual content and translations.";}}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '10',
-  'depth' => '4',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '8',
-  'p3' => '48',
-  'p4' => '968',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '969',
-  'plid' => '968',
-  'link_path' => 'admin/config/regional/i18n/configure',
-  'router_path' => 'admin/config/regional/i18n/configure',
-  'link_title' => 'Multilingual system',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:69:"Configure extended options for multilingual content and translations.";}}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '5',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '8',
-  'p3' => '48',
-  'p4' => '968',
-  'p5' => '969',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '970',
-  'plid' => '48',
-  'link_path' => 'admin/config/regional/entity_translation',
-  'router_path' => 'admin/config/regional/entity_translation',
-  'link_title' => 'Entity translation',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:83:"Configure which entities can be translated and enable or disable language fallback.";}}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '1',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '4',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '8',
-  'p3' => '48',
-  'p4' => '970',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '971',
-  'plid' => '39',
-  'link_path' => 'node/%/edit/%',
-  'router_path' => 'node/%/edit/%',
-  'link_title' => 'Edit',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '3',
-  'customized' => '0',
-  'p1' => '5',
-  'p2' => '39',
-  'p3' => '971',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '972',
-  'plid' => '365',
-  'link_path' => 'node/%/translate/delete/%',
-  'router_path' => 'node/%/translate/delete/%',
-  'link_title' => 'Delete',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '3',
-  'customized' => '0',
-  'p1' => '5',
-  'p2' => '365',
-  'p3' => '972',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '973',
-  'plid' => '39',
-  'link_path' => 'node/%/edit/add/%/%',
-  'router_path' => 'node/%/edit/add/%/%',
-  'link_title' => 'Edit',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '3',
-  'customized' => '0',
-  'p1' => '5',
-  'p2' => '39',
-  'p3' => '973',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '974',
-  'plid' => '970',
-  'link_path' => 'admin/config/regional/entity_translation/translatable/%',
-  'router_path' => 'admin/config/regional/entity_translation/translatable/%',
-  'link_title' => 'Confirm change in translatability.',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:53:"Confirmation page for changing field translatability.";}}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '5',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '8',
-  'p3' => '48',
-  'p4' => '970',
-  'p5' => '974',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '975',
-  'plid' => '968',
-  'link_path' => 'admin/config/regional/i18n/strings',
-  'router_path' => 'admin/config/regional/i18n/strings',
-  'link_title' => 'Strings',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:33:"Options for user defined strings.";}}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '20',
-  'depth' => '5',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '8',
-  'p3' => '48',
-  'p4' => '968',
-  'p5' => '975',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '976',
-  'plid' => '413',
-  'link_path' => 'admin/config/regional/translate/i18n_string',
-  'router_path' => 'admin/config/regional/translate/i18n_string',
-  'link_title' => 'Strings',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:29:"Refresh user defined strings.";}}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '20',
-  'depth' => '5',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '8',
-  'p3' => '48',
-  'p4' => '413',
-  'p5' => '976',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'navigation',
-  'mlid' => '977',
-  'plid' => '176',
-  'link_path' => 'taxonomy/term/%/translate',
-  'router_path' => 'taxonomy/term/%/translate',
-  'link_title' => 'Translate',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '10',
-  'depth' => '2',
-  'customized' => '0',
-  'p1' => '176',
-  'p2' => '977',
-  'p3' => '0',
-  'p4' => '0',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '978',
-  'plid' => '48',
-  'link_path' => 'admin/config/regional/i18n_translation',
-  'router_path' => 'admin/config/regional/i18n_translation',
-  'link_title' => 'Translation sets',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:26:"Translation sets overview.";}}',
-  'module' => 'system',
-  'hidden' => '0',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '10',
-  'depth' => '4',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '8',
-  'p3' => '48',
-  'p4' => '978',
-  'p5' => '0',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '979',
-  'plid' => '212',
-  'link_path' => 'admin/structure/taxonomy/%/translate',
-  'router_path' => 'admin/structure/taxonomy/%/translate',
-  'link_title' => 'Translate',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '10',
-  'depth' => '5',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '20',
-  'p3' => '180',
-  'p4' => '212',
-  'p5' => '979',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '980',
-  'plid' => '978',
-  'link_path' => 'admin/config/regional/i18n_translation/configure',
-  'router_path' => 'admin/config/regional/i18n_translation/configure',
-  'link_title' => 'Translation sets',
-  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:38:"Overview of existing translation sets.";}}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '5',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '8',
-  'p3' => '48',
-  'p4' => '978',
-  'p5' => '980',
-  'p6' => '0',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '981',
-  'plid' => '226',
-  'link_path' => 'admin/structure/taxonomy/%/list/list',
-  'router_path' => 'admin/structure/taxonomy/%/list/list',
-  'link_title' => 'Terms',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '-20',
-  'depth' => '6',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '20',
-  'p3' => '180',
-  'p4' => '212',
-  'p5' => '226',
-  'p6' => '981',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '982',
-  'plid' => '226',
-  'link_path' => 'admin/structure/taxonomy/%/list/sets',
-  'router_path' => 'admin/structure/taxonomy/%/list/sets',
-  'link_title' => 'Translation sets',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '6',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '20',
-  'p3' => '180',
-  'p4' => '212',
-  'p5' => '226',
-  'p6' => '982',
-  'p7' => '0',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->values(array(
-  'menu_name' => 'management',
-  'mlid' => '983',
-  'plid' => '982',
-  'link_path' => 'admin/structure/taxonomy/%/list/sets/add',
-  'router_path' => 'admin/structure/taxonomy/%/list/sets/add',
-  'link_title' => 'Create new translation',
-  'options' => 'a:0:{}',
-  'module' => 'system',
-  'hidden' => '-1',
-  'external' => '0',
-  'has_children' => '0',
-  'expanded' => '0',
-  'weight' => '0',
-  'depth' => '7',
-  'customized' => '0',
-  'p1' => '1',
-  'p2' => '20',
-  'p3' => '180',
-  'p4' => '212',
-  'p5' => '226',
-  'p6' => '982',
-  'p7' => '983',
-  'p8' => '0',
-  'p9' => '0',
-  'updated' => '0',
-))
-->execute();
-$connection->schema()->createTable('menu_router', array(
-  'fields' => array(
-    'path' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'load_functions' => array(
-      'type' => 'blob',
-      'not null' => TRUE,
-      'size' => 'normal',
-    ),
-    'to_arg_functions' => array(
-      'type' => 'blob',
-      'not null' => TRUE,
-      'size' => 'normal',
-    ),
-    'access_callback' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'access_arguments' => array(
-      'type' => 'blob',
-      'not null' => FALSE,
-      'size' => 'normal',
-    ),
-    'page_callback' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'page_arguments' => array(
-      'type' => 'blob',
-      'not null' => FALSE,
-      'size' => 'normal',
-    ),
-    'delivery_callback' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'fit' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'number_parts' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'context' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'tab_parent' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'tab_root' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'title' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'title_callback' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'title_arguments' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'theme_callback' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'theme_arguments' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'type' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'description' => array(
-      'type' => 'text',
-      'not null' => TRUE,
-      'size' => 'normal',
-    ),
-    'position' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'weight' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'include_file' => array(
-      'type' => 'text',
-      'not null' => FALSE,
-      'size' => 'normal',
-    ),
-  ),
-  'primary key' => array(
-    'path',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->insert('menu_router')
-->fields(array(
-  'path',
-  'load_functions',
-  'to_arg_functions',
-  'access_callback',
-  'access_arguments',
-  'page_callback',
-  'page_arguments',
-  'delivery_callback',
-  'fit',
-  'number_parts',
-  'context',
-  'tab_parent',
-  'tab_root',
-  'title',
-  'title_callback',
-  'title_arguments',
-  'theme_callback',
-  'theme_arguments',
-  'type',
-  'description',
-  'position',
-  'weight',
-  'include_file',
-))
-->values(array(
-  'path' => 'admin',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
-  'page_callback' => 'system_admin_menu_block_page',
-  'page_arguments' => 'a:0:{}',
-  'delivery_callback' => '',
-  'fit' => '1',
-  'number_parts' => '1',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin',
-  'title' => 'Administration',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => '',
-  'position' => '',
-  'weight' => '9',
-  'include_file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'admin/appearance',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:17:"administer themes";}',
-  'page_callback' => 'system_themes_page',
-  'page_arguments' => 'a:0:{}',
-  'delivery_callback' => '',
-  'fit' => '3',
-  'number_parts' => '2',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/appearance',
-  'title' => 'Appearance',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => 'Select and configure your themes.',
-  'position' => 'left',
-  'weight' => '-6',
-  'include_file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'admin/appearance/default',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:17:"administer themes";}',
-  'page_callback' => 'system_theme_default',
-  'page_arguments' => 'a:0:{}',
-  'delivery_callback' => '',
-  'fit' => '7',
-  'number_parts' => '3',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/appearance/default',
-  'title' => 'Set default theme',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '0',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'admin/appearance/disable',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:17:"administer themes";}',
-  'page_callback' => 'system_theme_disable',
-  'page_arguments' => 'a:0:{}',
-  'delivery_callback' => '',
-  'fit' => '7',
-  'number_parts' => '3',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/appearance/disable',
-  'title' => 'Disable theme',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '0',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'admin/appearance/enable',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:17:"administer themes";}',
-  'page_callback' => 'system_theme_enable',
-  'page_arguments' => 'a:0:{}',
-  'delivery_callback' => '',
-  'fit' => '7',
-  'number_parts' => '3',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/appearance/enable',
-  'title' => 'Enable theme',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '0',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'admin/appearance/list',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:17:"administer themes";}',
-  'page_callback' => 'system_themes_page',
-  'page_arguments' => 'a:0:{}',
-  'delivery_callback' => '',
-  'fit' => '7',
-  'number_parts' => '3',
-  'context' => '1',
-  'tab_parent' => 'admin/appearance',
-  'tab_root' => 'admin/appearance',
-  'title' => 'List',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '140',
-  'description' => 'Select and configure your theme',
-  'position' => '',
-  'weight' => '-1',
-  'include_file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'admin/appearance/settings',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:17:"administer themes";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:21:"system_theme_settings";}',
-  'delivery_callback' => '',
-  'fit' => '7',
-  'number_parts' => '3',
-  'context' => '1',
-  'tab_parent' => 'admin/appearance',
-  'tab_root' => 'admin/appearance',
-  'title' => 'Settings',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '132',
-  'description' => 'Configure default and theme specific settings.',
-  'position' => '',
-  'weight' => '20',
-  'include_file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'admin/appearance/settings/bartik',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => '_system_themes_access',
-  'access_arguments' => 'a:1:{i:0;O:8:"stdClass":12:{s:8:"filename";s:25:"themes/bartik/bartik.info";s:4:"name";s:6:"bartik";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"1";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:15:{s:4:"name";s:6:"Bartik";s:11:"description";s:48:"A flexible, recolorable theme with many regions.";s:7:"package";s:4:"Core";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:11:"stylesheets";a:2:{s:3:"all";a:3:{s:14:"css/layout.css";s:28:"themes/bartik/css/layout.css";s:13:"css/style.css";s:27:"themes/bartik/css/style.css";s:14:"css/colors.css";s:28:"themes/bartik/css/colors.css";}s:5:"print";a:1:{s:13:"css/print.css";s:27:"themes/bartik/css/print.css";}}s:7:"regions";a:17:{s:6:"header";s:6:"Header";s:4:"help";s:4:"Help";s:8:"page_top";s:8:"Page top";s:11:"page_bottom";s:11:"Page bottom";s:11:"highlighted";s:11:"Highlighted";s:8:"featured";s:8:"Featured";s:7:"content";s:7:"Content";s:13:"sidebar_first";s:13:"Sidebar first";s:14:"sidebar_second";s:14:"Sidebar second";s:14:"triptych_first";s:14:"Triptych first";s:15:"triptych_middle";s:15:"Triptych middle";s:13:"triptych_last";s:13:"Triptych last";s:18:"footer_firstcolumn";s:19:"Footer first column";s:19:"footer_secondcolumn";s:20:"Footer second column";s:18:"footer_thirdcolumn";s:19:"Footer third column";s:19:"footer_fourthcolumn";s:20:"Footer fourth column";s:6:"footer";s:6:"Footer";}s:8:"settings";a:1:{s:20:"shortcut_module_link";s:1:"0";}s:6:"engine";s:11:"phptemplate";s:8:"features";a:9:{i:0;s:4:"logo";i:1;s:7:"favicon";i:2;s:4:"name";i:3;s:6:"slogan";i:4;s:17:"node_user_picture";i:5;s:20:"comment_user_picture";i:6;s:25:"comment_user_verification";i:7;s:9:"main_menu";i:8;s:14:"secondary_menu";}s:10:"screenshot";s:28:"themes/bartik/screenshot.png";s:3:"php";s:5:"5.2.4";s:7:"scripts";a:0:{}s:5:"mtime";i:1664863480;s:14:"regions_hidden";a:2:{i:0;s:8:"page_top";i:1;s:11:"page_bottom";}}s:6:"prefix";s:11:"phptemplate";s:11:"stylesheets";a:2:{s:3:"all";a:3:{s:14:"css/layout.css";s:28:"themes/bartik/css/layout.css";s:13:"css/style.css";s:27:"themes/bartik/css/style.css";s:14:"css/colors.css";s:28:"themes/bartik/css/colors.css";}s:5:"print";a:1:{s:13:"css/print.css";s:27:"themes/bartik/css/print.css";}}s:6:"engine";s:11:"phptemplate";}}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:21:"system_theme_settings";i:1;s:6:"bartik";}',
-  'delivery_callback' => '',
-  'fit' => '15',
-  'number_parts' => '4',
-  'context' => '1',
-  'tab_parent' => 'admin/appearance/settings',
-  'tab_root' => 'admin/appearance',
-  'title' => 'Bartik',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '132',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'admin/appearance/settings/garland',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => '_system_themes_access',
-  'access_arguments' => 'a:1:{i:0;O:8:"stdClass":12:{s:8:"filename";s:27:"themes/garland/garland.info";s:4:"name";s:7:"garland";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:15:{s:4:"name";s:7:"Garland";s:11:"description";s:111:"A multi-column theme which can be configured to modify colors and switch between fixed and fluid width layouts.";s:7:"package";s:4:"Core";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:11:"stylesheets";a:2:{s:3:"all";a:1:{s:9:"style.css";s:24:"themes/garland/style.css";}s:5:"print";a:1:{s:9:"print.css";s:24:"themes/garland/print.css";}}s:8:"settings";a:1:{s:13:"garland_width";s:5:"fluid";}s:6:"engine";s:11:"phptemplate";s:7:"regions";a:9:{s:13:"sidebar_first";s:12:"Left sidebar";s:14:"sidebar_second";s:13:"Right sidebar";s:7:"content";s:7:"Content";s:6:"header";s:6:"Header";s:6:"footer";s:6:"Footer";s:11:"highlighted";s:11:"Highlighted";s:4:"help";s:4:"Help";s:8:"page_top";s:8:"Page top";s:11:"page_bottom";s:11:"Page bottom";}s:8:"features";a:9:{i:0;s:4:"logo";i:1;s:7:"favicon";i:2;s:4:"name";i:3;s:6:"slogan";i:4;s:17:"node_user_picture";i:5;s:20:"comment_user_picture";i:6;s:25:"comment_user_verification";i:7;s:9:"main_menu";i:8;s:14:"secondary_menu";}s:10:"screenshot";s:29:"themes/garland/screenshot.png";s:3:"php";s:5:"5.2.4";s:7:"scripts";a:0:{}s:5:"mtime";i:1664863480;s:14:"regions_hidden";a:2:{i:0;s:8:"page_top";i:1;s:11:"page_bottom";}}s:6:"prefix";s:11:"phptemplate";s:11:"stylesheets";a:2:{s:3:"all";a:1:{s:9:"style.css";s:24:"themes/garland/style.css";}s:5:"print";a:1:{s:9:"print.css";s:24:"themes/garland/print.css";}}s:6:"engine";s:11:"phptemplate";}}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:21:"system_theme_settings";i:1;s:7:"garland";}',
-  'delivery_callback' => '',
-  'fit' => '15',
-  'number_parts' => '4',
-  'context' => '1',
-  'tab_parent' => 'admin/appearance/settings',
-  'tab_root' => 'admin/appearance',
-  'title' => 'Garland',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '132',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'admin/appearance/settings/global',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:17:"administer themes";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:21:"system_theme_settings";}',
-  'delivery_callback' => '',
-  'fit' => '15',
-  'number_parts' => '4',
-  'context' => '1',
-  'tab_parent' => 'admin/appearance/settings',
-  'tab_root' => 'admin/appearance',
-  'title' => 'Global settings',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '140',
-  'description' => '',
-  'position' => '',
-  'weight' => '-1',
-  'include_file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'admin/appearance/settings/seven',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => '_system_themes_access',
-  'access_arguments' => 'a:1:{i:0;O:8:"stdClass":12:{s:8:"filename";s:23:"themes/seven/seven.info";s:4:"name";s:5:"seven";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"1";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:15:{s:4:"name";s:5:"Seven";s:11:"description";s:65:"A simple one-column, tableless, fluid width administration theme.";s:7:"package";s:4:"Core";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:11:"stylesheets";a:1:{s:6:"screen";a:2:{s:9:"reset.css";s:22:"themes/seven/reset.css";s:9:"style.css";s:22:"themes/seven/style.css";}}s:8:"settings";a:1:{s:20:"shortcut_module_link";s:1:"1";}s:7:"regions";a:5:{s:7:"content";s:7:"Content";s:4:"help";s:4:"Help";s:8:"page_top";s:8:"Page top";s:11:"page_bottom";s:11:"Page bottom";s:13:"sidebar_first";s:13:"First sidebar";}s:14:"regions_hidden";a:3:{i:0;s:13:"sidebar_first";i:1;s:8:"page_top";i:2;s:11:"page_bottom";}s:6:"engine";s:11:"phptemplate";s:8:"features";a:9:{i:0;s:4:"logo";i:1;s:7:"favicon";i:2;s:4:"name";i:3;s:6:"slogan";i:4;s:17:"node_user_picture";i:5;s:20:"comment_user_picture";i:6;s:25:"comment_user_verification";i:7;s:9:"main_menu";i:8;s:14:"secondary_menu";}s:10:"screenshot";s:27:"themes/seven/screenshot.png";s:3:"php";s:5:"5.2.4";s:7:"scripts";a:0:{}s:5:"mtime";i:1664863480;}s:6:"prefix";s:11:"phptemplate";s:11:"stylesheets";a:1:{s:6:"screen";a:2:{s:9:"reset.css";s:22:"themes/seven/reset.css";s:9:"style.css";s:22:"themes/seven/style.css";}}s:6:"engine";s:11:"phptemplate";}}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:21:"system_theme_settings";i:1;s:5:"seven";}',
-  'delivery_callback' => '',
-  'fit' => '15',
-  'number_parts' => '4',
-  'context' => '1',
-  'tab_parent' => 'admin/appearance/settings',
-  'tab_root' => 'admin/appearance',
-  'title' => 'Seven',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '132',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'admin/appearance/settings/stark',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => '_system_themes_access',
-  'access_arguments' => "a:1:{i:0;O:8:\"stdClass\":12:{s:8:\"filename\";s:23:\"themes/stark/stark.info\";s:4:\"name\";s:5:\"stark\";s:4:\"type\";s:5:\"theme\";s:5:\"owner\";s:45:\"themes/engines/phptemplate/phptemplate.engine\";s:6:\"status\";s:1:\"0\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:14:{s:4:\"name\";s:5:\"Stark\";s:11:\"description\";s:208:\"This theme demonstrates Drupal's default HTML markup and CSS styles. To learn how to build your own theme and override Drupal's default code, see the <a href=\"http://drupal.org/theme-guide\">Theming Guide</a>.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:4:\"7.92\";s:4:\"core\";s:3:\"7.x\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:1:{s:10:\"layout.css\";s:23:\"themes/stark/layout.css\";}}s:6:\"engine\";s:11:\"phptemplate\";s:7:\"regions\";a:9:{s:13:\"sidebar_first\";s:12:\"Left sidebar\";s:14:\"sidebar_second\";s:13:\"Right sidebar\";s:7:\"content\";s:7:\"Content\";s:6:\"header\";s:6:\"Header\";s:6:\"footer\";s:6:\"Footer\";s:11:\"highlighted\";s:11:\"Highlighted\";s:4:\"help\";s:4:\"Help\";s:8:\"page_top\";s:8:\"Page top\";s:11:\"page_bottom\";s:11:\"Page bottom\";}s:8:\"features\";a:9:{i:0;s:4:\"logo\";i:1;s:7:\"favicon\";i:2;s:4:\"name\";i:3;s:6:\"slogan\";i:4;s:17:\"node_user_picture\";i:5;s:20:\"comment_user_picture\";i:6;s:25:\"comment_user_verification\";i:7;s:9:\"main_menu\";i:8;s:14:\"secondary_menu\";}s:10:\"screenshot\";s:27:\"themes/stark/screenshot.png\";s:3:\"php\";s:5:\"5.2.4\";s:7:\"scripts\";a:0:{}s:5:\"mtime\";i:1664863480;s:14:\"regions_hidden\";a:2:{i:0;s:8:\"page_top\";i:1;s:11:\"page_bottom\";}}s:6:\"prefix\";s:11:\"phptemplate\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:1:{s:10:\"layout.css\";s:23:\"themes/stark/layout.css\";}}s:6:\"engine\";s:11:\"phptemplate\";}}",
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:21:"system_theme_settings";i:1;s:5:"stark";}',
-  'delivery_callback' => '',
-  'fit' => '15',
-  'number_parts' => '4',
-  'context' => '1',
-  'tab_parent' => 'admin/appearance/settings',
-  'tab_root' => 'admin/appearance',
-  'title' => 'Stark',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '132',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'admin/compact',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
-  'page_callback' => 'system_admin_compact_page',
-  'page_arguments' => 'a:0:{}',
-  'delivery_callback' => '',
-  'fit' => '3',
-  'number_parts' => '2',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/compact',
-  'title' => 'Compact mode',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '0',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'admin/config',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
-  'page_callback' => 'system_admin_config_page',
-  'page_arguments' => 'a:0:{}',
-  'delivery_callback' => '',
-  'fit' => '3',
-  'number_parts' => '2',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/config',
-  'title' => 'Configuration',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => 'Administer settings.',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'admin/config/content',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
-  'page_callback' => 'system_admin_menu_block_page',
-  'page_arguments' => 'a:0:{}',
-  'delivery_callback' => '',
-  'fit' => '7',
-  'number_parts' => '3',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/config/content',
-  'title' => 'Content authoring',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => 'Settings related to formatting and authoring content.',
-  'position' => 'left',
-  'weight' => '-15',
-  'include_file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'admin/config/content/formats',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:18:"administer filters";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:21:"filter_admin_overview";}',
-  'delivery_callback' => '',
-  'fit' => '15',
-  'number_parts' => '4',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/config/content/formats',
-  'title' => 'Text formats',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => 'Configure how content input by users is filtered, including allowed HTML tags. Also allows enabling of module-provided filters.',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/filter/filter.admin.inc',
-))
-->values(array(
-  'path' => 'admin/config/content/formats/%',
-  'load_functions' => 'a:1:{i:4;s:18:"filter_format_load";}',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:18:"administer filters";}',
-  'page_callback' => 'filter_admin_format_page',
-  'page_arguments' => 'a:1:{i:0;i:4;}',
-  'delivery_callback' => '',
-  'fit' => '30',
-  'number_parts' => '5',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/config/content/formats/%',
-  'title' => '',
-  'title_callback' => 'filter_admin_format_title',
-  'title_arguments' => 'a:1:{i:0;i:4;}',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/filter/filter.admin.inc',
-))
-->values(array(
-  'path' => 'admin/config/content/formats/%/disable',
-  'load_functions' => 'a:1:{i:4;s:18:"filter_format_load";}',
-  'to_arg_functions' => '',
-  'access_callback' => '_filter_disable_format_access',
-  'access_arguments' => 'a:1:{i:0;i:4;}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:20:"filter_admin_disable";i:1;i:4;}',
-  'delivery_callback' => '',
-  'fit' => '61',
-  'number_parts' => '6',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/config/content/formats/%/disable',
-  'title' => 'Disable text format',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/filter/filter.admin.inc',
-))
-->values(array(
-  'path' => 'admin/config/content/formats/add',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:18:"administer filters";}',
-  'page_callback' => 'filter_admin_format_page',
-  'page_arguments' => 'a:0:{}',
-  'delivery_callback' => '',
-  'fit' => '31',
-  'number_parts' => '5',
-  'context' => '1',
-  'tab_parent' => 'admin/config/content/formats',
-  'tab_root' => 'admin/config/content/formats',
-  'title' => 'Add text format',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '388',
-  'description' => '',
-  'position' => '',
-  'weight' => '1',
-  'include_file' => 'modules/filter/filter.admin.inc',
-))
-->values(array(
-  'path' => 'admin/config/content/formats/list',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:18:"administer filters";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:21:"filter_admin_overview";}',
-  'delivery_callback' => '',
-  'fit' => '31',
-  'number_parts' => '5',
-  'context' => '1',
-  'tab_parent' => 'admin/config/content/formats',
-  'tab_root' => 'admin/config/content/formats',
-  'title' => 'List',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '140',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/filter/filter.admin.inc',
-))
-->values(array(
-  'path' => 'admin/config/date',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
-  'page_callback' => 'system_admin_menu_block_page',
-  'page_arguments' => 'a:0:{}',
-  'delivery_callback' => '',
-  'fit' => '7',
-  'number_parts' => '3',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/config/date',
-  'title' => 'Date API',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => 'Settings for modules the use the Date API.',
-  'position' => 'left',
-  'weight' => '-10',
-  'include_file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'admin/config/development',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
-  'page_callback' => 'system_admin_menu_block_page',
-  'page_arguments' => 'a:0:{}',
-  'delivery_callback' => '',
-  'fit' => '7',
-  'number_parts' => '3',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/config/development',
-  'title' => 'Development',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => 'Development tools.',
-  'position' => 'right',
-  'weight' => '-10',
-  'include_file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'admin/config/development/logging',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:23:"system_logging_settings";}',
-  'delivery_callback' => '',
-  'fit' => '15',
-  'number_parts' => '4',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/config/development/logging',
-  'title' => 'Logging and errors',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => "Settings for logging and alerts modules. Various modules can route Drupal's system events to different destinations, such as syslog, database, email, etc.",
-  'position' => '',
-  'weight' => '-15',
-  'include_file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'admin/config/development/maintenance',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:28:"system_site_maintenance_mode";}',
-  'delivery_callback' => '',
-  'fit' => '15',
-  'number_parts' => '4',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/config/development/maintenance',
-  'title' => 'Maintenance mode',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => 'Take the site offline for maintenance or bring it back online.',
-  'position' => '',
-  'weight' => '-10',
-  'include_file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'admin/config/development/performance',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:27:"system_performance_settings";}',
-  'delivery_callback' => '',
-  'fit' => '15',
-  'number_parts' => '4',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/config/development/performance',
-  'title' => 'Performance',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => 'Enable or disable page caching for anonymous users and set CSS and JS bandwidth optimization options.',
-  'position' => '',
-  'weight' => '-20',
-  'include_file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'admin/config/media',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
-  'page_callback' => 'system_admin_menu_block_page',
-  'page_arguments' => 'a:0:{}',
-  'delivery_callback' => '',
-  'fit' => '7',
-  'number_parts' => '3',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/config/media',
-  'title' => 'Media',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => 'Media tools.',
-  'position' => 'left',
-  'weight' => '-10',
-  'include_file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'admin/config/media/file-system',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:27:"system_file_system_settings";}',
-  'delivery_callback' => '',
-  'fit' => '15',
-  'number_parts' => '4',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/config/media/file-system',
-  'title' => 'File system',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => 'Tell Drupal where to store uploaded files and how they are accessed.',
-  'position' => '',
-  'weight' => '-10',
-  'include_file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'admin/config/media/image-styles',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:23:"administer image styles";}',
-  'page_callback' => 'image_style_list',
-  'page_arguments' => 'a:0:{}',
-  'delivery_callback' => '',
-  'fit' => '15',
-  'number_parts' => '4',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/config/media/image-styles',
-  'title' => 'Image styles',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => 'Configure styles that can be used for resizing or adjusting images on display.',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/image/image.admin.inc',
-))
-->values(array(
-  'path' => 'admin/config/media/image-styles/add',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:23:"administer image styles";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:20:"image_style_add_form";}',
-  'delivery_callback' => '',
-  'fit' => '31',
-  'number_parts' => '5',
-  'context' => '1',
-  'tab_parent' => 'admin/config/media/image-styles',
-  'tab_root' => 'admin/config/media/image-styles',
-  'title' => 'Add style',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '388',
-  'description' => 'Add a new image style.',
-  'position' => '',
-  'weight' => '2',
-  'include_file' => 'modules/image/image.admin.inc',
-))
-->values(array(
-  'path' => 'admin/config/media/image-styles/delete/%',
-  'load_functions' => 'a:1:{i:5;a:1:{s:16:"image_style_load";a:2:{i:0;N;i:1;s:1:"1";}}}',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:23:"administer image styles";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:23:"image_style_delete_form";i:1;i:5;}',
-  'delivery_callback' => '',
-  'fit' => '62',
-  'number_parts' => '6',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/config/media/image-styles/delete/%',
-  'title' => 'Delete style',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => 'Delete an image style.',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/image/image.admin.inc',
-))
-->values(array(
-  'path' => 'admin/config/media/image-styles/edit/%',
-  'load_functions' => 'a:1:{i:5;s:16:"image_style_load";}',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:23:"administer image styles";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:16:"image_style_form";i:1;i:5;}',
-  'delivery_callback' => '',
-  'fit' => '62',
-  'number_parts' => '6',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/config/media/image-styles/edit/%',
-  'title' => 'Edit style',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => 'Configure an image style.',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/image/image.admin.inc',
-))
-->values(array(
-  'path' => 'admin/config/media/image-styles/edit/%/add/%',
-  'load_functions' => 'a:2:{i:5;a:1:{s:16:"image_style_load";a:1:{i:0;i:5;}}i:7;a:1:{s:28:"image_effect_definition_load";a:1:{i:0;i:5;}}}',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:23:"administer image styles";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:3:{i:0;s:17:"image_effect_form";i:1;i:5;i:2;i:7;}',
-  'delivery_callback' => '',
-  'fit' => '250',
-  'number_parts' => '8',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/config/media/image-styles/edit/%/add/%',
-  'title' => 'Add image effect',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => 'Add a new effect to a style.',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/image/image.admin.inc',
-))
-->values(array(
-  'path' => 'admin/config/media/image-styles/edit/%/effects/%',
-  'load_functions' => 'a:2:{i:5;a:1:{s:16:"image_style_load";a:2:{i:0;i:5;i:1;s:1:"3";}}i:7;a:1:{s:17:"image_effect_load";a:2:{i:0;i:5;i:1;s:1:"3";}}}',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:23:"administer image styles";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:3:{i:0;s:17:"image_effect_form";i:1;i:5;i:2;i:7;}',
-  'delivery_callback' => '',
-  'fit' => '250',
-  'number_parts' => '8',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/config/media/image-styles/edit/%/effects/%',
-  'title' => 'Edit image effect',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => 'Edit an existing effect within a style.',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/image/image.admin.inc',
-))
-->values(array(
-  'path' => 'admin/config/media/image-styles/edit/%/effects/%/delete',
-  'load_functions' => 'a:2:{i:5;a:1:{s:16:"image_style_load";a:2:{i:0;i:5;i:1;s:1:"3";}}i:7;a:1:{s:17:"image_effect_load";a:2:{i:0;i:5;i:1;s:1:"3";}}}',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:23:"administer image styles";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:3:{i:0;s:24:"image_effect_delete_form";i:1;i:5;i:2;i:7;}',
-  'delivery_callback' => '',
-  'fit' => '501',
-  'number_parts' => '9',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/config/media/image-styles/edit/%/effects/%/delete',
-  'title' => 'Delete image effect',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => 'Delete an existing effect from a style.',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/image/image.admin.inc',
-))
-->values(array(
-  'path' => 'admin/config/media/image-styles/list',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:23:"administer image styles";}',
-  'page_callback' => 'image_style_list',
-  'page_arguments' => 'a:0:{}',
-  'delivery_callback' => '',
-  'fit' => '31',
-  'number_parts' => '5',
-  'context' => '1',
-  'tab_parent' => 'admin/config/media/image-styles',
-  'tab_root' => 'admin/config/media/image-styles',
-  'title' => 'List',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '140',
-  'description' => 'List the current image styles on the site.',
-  'position' => '',
-  'weight' => '1',
-  'include_file' => 'modules/image/image.admin.inc',
-))
-->values(array(
-  'path' => 'admin/config/media/image-styles/revert/%',
-  'load_functions' => 'a:1:{i:5;a:1:{s:16:"image_style_load";a:2:{i:0;N;i:1;s:1:"2";}}}',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:23:"administer image styles";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:23:"image_style_revert_form";i:1;i:5;}',
-  'delivery_callback' => '',
-  'fit' => '62',
-  'number_parts' => '6',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/config/media/image-styles/revert/%',
-  'title' => 'Revert style',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => 'Revert an image style.',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/image/image.admin.inc',
-))
-->values(array(
-  'path' => 'admin/config/media/image-toolkit',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:29:"system_image_toolkit_settings";}',
-  'delivery_callback' => '',
-  'fit' => '15',
-  'number_parts' => '4',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/config/media/image-toolkit',
-  'title' => 'Image toolkit',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => 'Choose which image toolkit to use if you have installed optional toolkits.',
-  'position' => '',
-  'weight' => '20',
-  'include_file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'admin/config/people',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
-  'page_callback' => 'system_admin_menu_block_page',
-  'page_arguments' => 'a:0:{}',
-  'delivery_callback' => '',
-  'fit' => '7',
-  'number_parts' => '3',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/config/people',
-  'title' => 'People',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => 'Configure user accounts.',
-  'position' => 'left',
-  'weight' => '-20',
-  'include_file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'admin/config/people/accounts',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:16:"administer users";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:19:"user_admin_settings";}',
-  'delivery_callback' => '',
-  'fit' => '15',
-  'number_parts' => '4',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/config/people/accounts',
-  'title' => 'Account settings',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => 'Configure default behavior of users, including registration requirements, e-mails, fields, and user pictures.',
-  'position' => '',
-  'weight' => '-10',
-  'include_file' => 'modules/user/user.admin.inc',
-))
-->values(array(
-  'path' => 'admin/config/people/accounts/display',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'field_ui_admin_access',
-  'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:16:"administer users";}}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:4:{i:0;s:30:"field_ui_display_overview_form";i:1;s:4:"user";i:2;s:4:"user";i:3;s:7:"default";}',
-  'delivery_callback' => '',
-  'fit' => '31',
-  'number_parts' => '5',
-  'context' => '1',
-  'tab_parent' => 'admin/config/people/accounts',
-  'tab_root' => 'admin/config/people/accounts',
-  'title' => 'Manage display',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '132',
-  'description' => '',
-  'position' => '',
-  'weight' => '2',
-  'include_file' => 'modules/field_ui/field_ui.admin.inc',
-))
-->values(array(
-  'path' => 'admin/config/people/accounts/display/default',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => '_field_ui_view_mode_menu_access',
-  'access_arguments' => 'a:6:{i:0;s:4:"user";i:1;s:4:"user";i:2;s:7:"default";i:3;s:21:"field_ui_admin_access";i:4;s:11:"user_access";i:5;a:1:{i:0;s:16:"administer users";}}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:4:{i:0;s:30:"field_ui_display_overview_form";i:1;s:4:"user";i:2;s:4:"user";i:3;s:7:"default";}',
-  'delivery_callback' => '',
-  'fit' => '63',
-  'number_parts' => '6',
-  'context' => '1',
-  'tab_parent' => 'admin/config/people/accounts/display',
-  'tab_root' => 'admin/config/people/accounts',
-  'title' => 'Default',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '140',
-  'description' => '',
-  'position' => '',
-  'weight' => '-10',
-  'include_file' => 'modules/field_ui/field_ui.admin.inc',
-))
-->values(array(
-  'path' => 'admin/config/people/accounts/display/full',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => '_field_ui_view_mode_menu_access',
-  'access_arguments' => 'a:6:{i:0;s:4:"user";i:1;s:4:"user";i:2;s:4:"full";i:3;s:21:"field_ui_admin_access";i:4;s:11:"user_access";i:5;a:1:{i:0;s:16:"administer users";}}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:4:{i:0;s:30:"field_ui_display_overview_form";i:1;s:4:"user";i:2;s:4:"user";i:3;s:4:"full";}',
-  'delivery_callback' => '',
-  'fit' => '63',
-  'number_parts' => '6',
-  'context' => '1',
-  'tab_parent' => 'admin/config/people/accounts/display',
-  'tab_root' => 'admin/config/people/accounts',
-  'title' => 'User account',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '132',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/field_ui/field_ui.admin.inc',
-))
-->values(array(
-  'path' => 'admin/config/people/accounts/fields',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'field_ui_admin_access',
-  'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:16:"administer users";}}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:3:{i:0;s:28:"field_ui_field_overview_form";i:1;s:4:"user";i:2;s:4:"user";}',
-  'delivery_callback' => '',
-  'fit' => '31',
-  'number_parts' => '5',
-  'context' => '1',
-  'tab_parent' => 'admin/config/people/accounts',
-  'tab_root' => 'admin/config/people/accounts',
-  'title' => 'Manage fields',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '132',
-  'description' => '',
-  'position' => '',
-  'weight' => '1',
-  'include_file' => 'modules/field_ui/field_ui.admin.inc',
-))
-->values(array(
-  'path' => 'admin/config/people/accounts/fields/%',
-  'load_functions' => 'a:1:{i:5;a:1:{s:18:"field_ui_menu_load";a:4:{i:0;s:4:"user";i:1;s:4:"user";i:2;s:1:"0";i:3;s:4:"%map";}}}',
-  'to_arg_functions' => '',
-  'access_callback' => 'field_ui_admin_access',
-  'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:16:"administer users";}}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:24:"field_ui_field_edit_form";i:1;i:5;}',
-  'delivery_callback' => '',
-  'fit' => '62',
-  'number_parts' => '6',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/config/people/accounts/fields/%',
-  'title' => '',
-  'title_callback' => 'field_ui_menu_title',
-  'title_arguments' => 'a:1:{i:0;i:5;}',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/field_ui/field_ui.admin.inc',
-))
-->values(array(
-  'path' => 'admin/config/people/accounts/fields/%/delete',
-  'load_functions' => 'a:1:{i:5;a:1:{s:18:"field_ui_menu_load";a:4:{i:0;s:4:"user";i:1;s:4:"user";i:2;s:1:"0";i:3;s:4:"%map";}}}',
-  'to_arg_functions' => '',
-  'access_callback' => 'field_ui_admin_access',
-  'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:16:"administer users";}}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:26:"field_ui_field_delete_form";i:1;i:5;}',
-  'delivery_callback' => '',
-  'fit' => '125',
-  'number_parts' => '7',
-  'context' => '1',
-  'tab_parent' => 'admin/config/people/accounts/fields/%',
-  'tab_root' => 'admin/config/people/accounts/fields/%',
-  'title' => 'Delete',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '132',
-  'description' => '',
-  'position' => '',
-  'weight' => '10',
-  'include_file' => 'modules/field_ui/field_ui.admin.inc',
-))
-->values(array(
-  'path' => 'admin/config/people/accounts/fields/%/edit',
-  'load_functions' => 'a:1:{i:5;a:1:{s:18:"field_ui_menu_load";a:4:{i:0;s:4:"user";i:1;s:4:"user";i:2;s:1:"0";i:3;s:4:"%map";}}}',
-  'to_arg_functions' => '',
-  'access_callback' => 'field_ui_admin_access',
-  'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:16:"administer users";}}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:24:"field_ui_field_edit_form";i:1;i:5;}',
-  'delivery_callback' => '',
-  'fit' => '125',
-  'number_parts' => '7',
-  'context' => '1',
-  'tab_parent' => 'admin/config/people/accounts/fields/%',
-  'tab_root' => 'admin/config/people/accounts/fields/%',
-  'title' => 'Edit',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '140',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/field_ui/field_ui.admin.inc',
-))
-->values(array(
-  'path' => 'admin/config/people/accounts/fields/%/field-settings',
-  'load_functions' => 'a:1:{i:5;a:1:{s:18:"field_ui_menu_load";a:4:{i:0;s:4:"user";i:1;s:4:"user";i:2;s:1:"0";i:3;s:4:"%map";}}}',
-  'to_arg_functions' => '',
-  'access_callback' => 'field_ui_admin_access',
-  'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:16:"administer users";}}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:28:"field_ui_field_settings_form";i:1;i:5;}',
-  'delivery_callback' => '',
-  'fit' => '125',
-  'number_parts' => '7',
-  'context' => '1',
-  'tab_parent' => 'admin/config/people/accounts/fields/%',
-  'tab_root' => 'admin/config/people/accounts/fields/%',
-  'title' => 'Field settings',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '132',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/field_ui/field_ui.admin.inc',
-))
-->values(array(
-  'path' => 'admin/config/people/accounts/fields/%/widget-type',
-  'load_functions' => 'a:1:{i:5;a:1:{s:18:"field_ui_menu_load";a:4:{i:0;s:4:"user";i:1;s:4:"user";i:2;s:1:"0";i:3;s:4:"%map";}}}',
-  'to_arg_functions' => '',
-  'access_callback' => 'field_ui_admin_access',
-  'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:16:"administer users";}}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:25:"field_ui_widget_type_form";i:1;i:5;}',
-  'delivery_callback' => '',
-  'fit' => '125',
-  'number_parts' => '7',
-  'context' => '1',
-  'tab_parent' => 'admin/config/people/accounts/fields/%',
-  'tab_root' => 'admin/config/people/accounts/fields/%',
-  'title' => 'Widget type',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '132',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/field_ui/field_ui.admin.inc',
-))
-->values(array(
-  'path' => 'admin/config/people/accounts/settings',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:16:"administer users";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:19:"user_admin_settings";}',
-  'delivery_callback' => '',
-  'fit' => '31',
-  'number_parts' => '5',
-  'context' => '1',
-  'tab_parent' => 'admin/config/people/accounts',
-  'tab_root' => 'admin/config/people/accounts',
-  'title' => 'Settings',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '140',
-  'description' => '',
-  'position' => '',
-  'weight' => '-10',
-  'include_file' => 'modules/user/user.admin.inc',
-))
-->values(array(
-  'path' => 'admin/config/people/ip-blocking',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:18:"block IP addresses";}',
-  'page_callback' => 'system_ip_blocking',
-  'page_arguments' => 'a:0:{}',
-  'delivery_callback' => '',
-  'fit' => '15',
-  'number_parts' => '4',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/config/people/ip-blocking',
-  'title' => 'IP address blocking',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => 'Manage blocked IP addresses.',
-  'position' => '',
-  'weight' => '10',
-  'include_file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'admin/config/people/ip-blocking/delete/%',
-  'load_functions' => 'a:1:{i:5;s:15:"blocked_ip_load";}',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:18:"block IP addresses";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:25:"system_ip_blocking_delete";i:1;i:5;}',
-  'delivery_callback' => '',
-  'fit' => '62',
-  'number_parts' => '6',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/config/people/ip-blocking/delete/%',
-  'title' => 'Delete IP address',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'admin/config/regional',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
-  'page_callback' => 'system_admin_menu_block_page',
-  'page_arguments' => 'a:0:{}',
-  'delivery_callback' => '',
-  'fit' => '7',
-  'number_parts' => '3',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/config/regional',
-  'title' => 'Regional and language',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => 'Regional settings, localization and translation.',
-  'position' => 'left',
-  'weight' => '-5',
-  'include_file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'admin/config/regional/date-time',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:25:"system_date_time_settings";}',
-  'delivery_callback' => '',
-  'fit' => '15',
-  'number_parts' => '4',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/config/regional/date-time',
-  'title' => 'Date and time',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => 'Configure display formats for date and time.',
-  'position' => '',
-  'weight' => '-15',
-  'include_file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'admin/config/regional/date-time/formats',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
-  'page_callback' => 'system_date_time_formats',
-  'page_arguments' => 'a:0:{}',
-  'delivery_callback' => '',
-  'fit' => '31',
-  'number_parts' => '5',
-  'context' => '1',
-  'tab_parent' => 'admin/config/regional/date-time',
-  'tab_root' => 'admin/config/regional/date-time',
-  'title' => 'Formats',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '132',
-  'description' => 'Configure display format strings for date and time.',
-  'position' => '',
-  'weight' => '-9',
-  'include_file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'admin/config/regional/date-time/formats/%/delete',
-  'load_functions' => 'a:1:{i:5;N;}',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:30:"system_date_delete_format_form";i:1;i:5;}',
-  'delivery_callback' => '',
-  'fit' => '125',
-  'number_parts' => '7',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/config/regional/date-time/formats/%/delete',
-  'title' => 'Delete date format',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => 'Allow users to delete a configured date format.',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'admin/config/regional/date-time/formats/%/edit',
-  'load_functions' => 'a:1:{i:5;N;}',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:34:"system_configure_date_formats_form";i:1;i:5;}',
-  'delivery_callback' => '',
-  'fit' => '125',
-  'number_parts' => '7',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/config/regional/date-time/formats/%/edit',
-  'title' => 'Edit date format',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => 'Allow users to edit a configured date format.',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'admin/config/regional/date-time/formats/add',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:34:"system_configure_date_formats_form";}',
-  'delivery_callback' => '',
-  'fit' => '63',
-  'number_parts' => '6',
-  'context' => '1',
-  'tab_parent' => 'admin/config/regional/date-time/formats',
-  'tab_root' => 'admin/config/regional/date-time',
-  'title' => 'Add format',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '388',
-  'description' => 'Allow users to add additional date formats.',
-  'position' => '',
-  'weight' => '-10',
-  'include_file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'admin/config/regional/date-time/formats/lookup',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
-  'page_callback' => 'system_date_time_lookup',
-  'page_arguments' => 'a:0:{}',
-  'delivery_callback' => '',
-  'fit' => '63',
-  'number_parts' => '6',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/config/regional/date-time/formats/lookup',
-  'title' => 'Date and time lookup',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '0',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'admin/config/regional/date-time/locale',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
-  'page_callback' => 'locale_date_format_language_overview_page',
-  'page_arguments' => 'a:0:{}',
-  'delivery_callback' => '',
-  'fit' => '31',
-  'number_parts' => '5',
-  'context' => '1',
-  'tab_parent' => 'admin/config/regional/date-time',
-  'tab_root' => 'admin/config/regional/date-time',
-  'title' => 'Localize',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '132',
-  'description' => 'Configure date formats for each locale',
-  'position' => '',
-  'weight' => '-8',
-  'include_file' => 'modules/locale/locale.admin.inc',
-))
-->values(array(
-  'path' => 'admin/config/regional/date-time/locale/%/edit',
-  'load_functions' => 'a:1:{i:5;N;}',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:23:"locale_date_format_form";i:1;i:5;}',
-  'delivery_callback' => '',
-  'fit' => '125',
-  'number_parts' => '7',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/config/regional/date-time/locale/%/edit',
-  'title' => 'Localize date formats',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => 'Configure date formats for each locale',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/locale/locale.admin.inc',
-))
-->values(array(
-  'path' => 'admin/config/regional/date-time/locale/%/reset',
-  'load_functions' => 'a:1:{i:5;N;}',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:29:"locale_date_format_reset_form";i:1;i:5;}',
-  'delivery_callback' => '',
-  'fit' => '125',
-  'number_parts' => '7',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/config/regional/date-time/locale/%/reset',
-  'title' => 'Reset date formats',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => 'Reset localized date formats to global defaults',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/locale/locale.admin.inc',
-))
-->values(array(
-  'path' => 'admin/config/regional/date-time/types',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:25:"system_date_time_settings";}',
-  'delivery_callback' => '',
-  'fit' => '31',
-  'number_parts' => '5',
-  'context' => '1',
-  'tab_parent' => 'admin/config/regional/date-time',
-  'tab_root' => 'admin/config/regional/date-time',
-  'title' => 'Types',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '140',
-  'description' => 'Configure display formats for date and time.',
-  'position' => '',
-  'weight' => '-10',
-  'include_file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'admin/config/regional/date-time/types/%/delete',
-  'load_functions' => 'a:1:{i:5;N;}',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:35:"system_delete_date_format_type_form";i:1;i:5;}',
-  'delivery_callback' => '',
-  'fit' => '125',
-  'number_parts' => '7',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/config/regional/date-time/types/%/delete',
-  'title' => 'Delete date type',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => 'Allow users to delete a configured date type.',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'admin/config/regional/date-time/types/add',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:32:"system_add_date_format_type_form";}',
-  'delivery_callback' => '',
-  'fit' => '63',
-  'number_parts' => '6',
-  'context' => '1',
-  'tab_parent' => 'admin/config/regional/date-time/types',
-  'tab_root' => 'admin/config/regional/date-time',
-  'title' => 'Add date type',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '388',
-  'description' => 'Add new date type.',
-  'position' => '',
-  'weight' => '-10',
-  'include_file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'admin/config/regional/entity_translation',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:29:"administer entity translation";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:29:"entity_translation_admin_form";}',
-  'delivery_callback' => '',
-  'fit' => '15',
-  'number_parts' => '4',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/config/regional/entity_translation',
-  'title' => 'Entity translation',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => 'Configure which entities can be translated and enable or disable language fallback.',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'sites/all/modules/entity_translation/entity_translation.admin.inc',
-))
-->values(array(
-  'path' => 'admin/config/regional/entity_translation/translatable/%',
-  'load_functions' => 'a:1:{i:5;N;}',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:28:"toggle field translatability";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:36:"entity_translation_translatable_form";i:1;i:5;}',
-  'delivery_callback' => '',
-  'fit' => '62',
-  'number_parts' => '6',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/config/regional/entity_translation/translatable/%',
-  'title' => 'Confirm change in translatability.',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => 'Confirmation page for changing field translatability.',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'sites/all/modules/entity_translation/entity_translation.admin.inc',
-))
-->values(array(
-  'path' => 'admin/config/regional/i18n',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:20:"variable_module_form";i:1;s:4:"i18n";}',
-  'delivery_callback' => '',
-  'fit' => '15',
-  'number_parts' => '4',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/config/regional/i18n',
-  'title' => 'Multilingual settings',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => 'Configure extended options for multilingual content and translations.',
-  'position' => '',
-  'weight' => '10',
-  'include_file' => '',
-))
-->values(array(
-  'path' => 'admin/config/regional/i18n/configure',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:20:"variable_module_form";i:1;s:4:"i18n";}',
-  'delivery_callback' => '',
-  'fit' => '31',
-  'number_parts' => '5',
-  'context' => '1',
-  'tab_parent' => 'admin/config/regional/i18n',
-  'tab_root' => 'admin/config/regional/i18n',
-  'title' => 'Multilingual system',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '140',
-  'description' => 'Configure extended options for multilingual content and translations.',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => '',
-))
-->values(array(
-  'path' => 'admin/config/regional/i18n/strings',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:18:"variable_edit_form";i:1;a:3:{i:0;s:27:"i18n_string_allowed_formats";i:1;s:27:"i18n_string_source_language";i:2;s:39:"i18n_string_textgroup_class_[textgroup]";}}',
-  'delivery_callback' => '',
-  'fit' => '31',
-  'number_parts' => '5',
-  'context' => '1',
-  'tab_parent' => 'admin/config/regional/i18n',
-  'tab_root' => 'admin/config/regional/i18n',
-  'title' => 'Strings',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '132',
-  'description' => 'Options for user defined strings.',
-  'position' => '',
-  'weight' => '20',
-  'include_file' => '',
-))
-->values(array(
-  'path' => 'admin/config/regional/i18n_translation',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
-  'page_callback' => 'i18n_translation_admin_overview',
-  'page_arguments' => 'a:0:{}',
-  'delivery_callback' => '',
-  'fit' => '15',
-  'number_parts' => '4',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/config/regional/i18n_translation',
-  'title' => 'Translation sets',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => 'Translation sets overview.',
-  'position' => '',
-  'weight' => '10',
-  'include_file' => 'sites/all/modules/i18n/i18n_translation/i18n_translation.admin.inc',
-))
-->values(array(
-  'path' => 'admin/config/regional/i18n_translation/configure',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
-  'page_callback' => 'i18n_translation_admin_overview',
-  'page_arguments' => 'a:0:{}',
-  'delivery_callback' => '',
-  'fit' => '31',
-  'number_parts' => '5',
-  'context' => '1',
-  'tab_parent' => 'admin/config/regional/i18n_translation',
-  'tab_root' => 'admin/config/regional/i18n_translation',
-  'title' => 'Translation sets',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '140',
-  'description' => 'Overview of existing translation sets.',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'sites/all/modules/i18n/i18n_translation/i18n_translation.admin.inc',
-))
-->values(array(
-  'path' => 'admin/config/regional/language',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:20:"administer languages";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:30:"locale_languages_overview_form";}',
-  'delivery_callback' => '',
-  'fit' => '15',
-  'number_parts' => '4',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/config/regional/language',
-  'title' => 'Languages',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => 'Configure languages for content and the user interface.',
-  'position' => '',
-  'weight' => '-10',
-  'include_file' => 'modules/locale/locale.admin.inc',
-))
-->values(array(
-  'path' => 'admin/config/regional/language/add',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:20:"administer languages";}',
-  'page_callback' => 'locale_languages_add_screen',
-  'page_arguments' => 'a:0:{}',
-  'delivery_callback' => '',
-  'fit' => '31',
-  'number_parts' => '5',
-  'context' => '1',
-  'tab_parent' => 'admin/config/regional/language',
-  'tab_root' => 'admin/config/regional/language',
-  'title' => 'Add language',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '388',
-  'description' => '',
-  'position' => '',
-  'weight' => '5',
-  'include_file' => 'modules/locale/locale.admin.inc',
-))
-->values(array(
-  'path' => 'admin/config/regional/language/configure',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:20:"administer languages";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:31:"locale_languages_configure_form";}',
-  'delivery_callback' => '',
-  'fit' => '31',
-  'number_parts' => '5',
-  'context' => '1',
-  'tab_parent' => 'admin/config/regional/language',
-  'tab_root' => 'admin/config/regional/language',
-  'title' => 'Detection and selection',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '132',
-  'description' => '',
-  'position' => '',
-  'weight' => '10',
-  'include_file' => 'modules/locale/locale.admin.inc',
-))
-->values(array(
-  'path' => 'admin/config/regional/language/configure/session',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:20:"administer languages";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:38:"locale_language_providers_session_form";}',
-  'delivery_callback' => '',
-  'fit' => '63',
-  'number_parts' => '6',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/config/regional/language/configure/session',
-  'title' => 'Session language detection configuration',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '4',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/locale/locale.admin.inc',
-))
-->values(array(
-  'path' => 'admin/config/regional/language/configure/url',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:20:"administer languages";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:34:"locale_language_providers_url_form";}',
-  'delivery_callback' => '',
-  'fit' => '63',
-  'number_parts' => '6',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/config/regional/language/configure/url',
-  'title' => 'URL language detection configuration',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '4',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/locale/locale.admin.inc',
-))
-->values(array(
-  'path' => 'admin/config/regional/language/delete/%',
-  'load_functions' => 'a:1:{i:5;N;}',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:20:"administer languages";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:28:"locale_languages_delete_form";i:1;i:5;}',
-  'delivery_callback' => '',
-  'fit' => '62',
-  'number_parts' => '6',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/config/regional/language/delete/%',
-  'title' => 'Confirm',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/locale/locale.admin.inc',
-))
-->values(array(
-  'path' => 'admin/config/regional/language/edit/%',
-  'load_functions' => 'a:1:{i:5;N;}',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:20:"administer languages";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:26:"locale_languages_edit_form";i:1;i:5;}',
-  'delivery_callback' => '',
-  'fit' => '62',
-  'number_parts' => '6',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/config/regional/language/edit/%',
-  'title' => 'Edit language',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/locale/locale.admin.inc',
-))
-->values(array(
-  'path' => 'admin/config/regional/language/overview',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:20:"administer languages";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:30:"locale_languages_overview_form";}',
-  'delivery_callback' => '',
-  'fit' => '31',
-  'number_parts' => '5',
-  'context' => '1',
-  'tab_parent' => 'admin/config/regional/language',
-  'tab_root' => 'admin/config/regional/language',
-  'title' => 'List',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '140',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/locale/locale.admin.inc',
-))
-->values(array(
-  'path' => 'admin/config/regional/settings',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:24:"system_regional_settings";}',
-  'delivery_callback' => '',
-  'fit' => '15',
-  'number_parts' => '4',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/config/regional/settings',
-  'title' => 'Regional settings',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => "Settings for the site's default time zone and country.",
-  'position' => '',
-  'weight' => '-20',
-  'include_file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'admin/config/regional/translate',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:19:"translate interface";}',
-  'page_callback' => 'locale_translate_overview_screen',
-  'page_arguments' => 'a:0:{}',
-  'delivery_callback' => '',
-  'fit' => '15',
-  'number_parts' => '4',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/config/regional/translate',
-  'title' => 'Translate interface',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => 'Translate the built in interface and optionally other text.',
-  'position' => '',
-  'weight' => '-5',
-  'include_file' => 'modules/locale/locale.admin.inc',
-))
-->values(array(
-  'path' => 'admin/config/regional/translate/delete/%',
-  'load_functions' => 'a:1:{i:5;N;}',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:19:"translate interface";}',
-  'page_callback' => 'locale_translate_delete_page',
-  'page_arguments' => 'a:1:{i:0;i:5;}',
-  'delivery_callback' => '',
-  'fit' => '62',
-  'number_parts' => '6',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/config/regional/translate/delete/%',
-  'title' => 'Delete string',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/locale/locale.admin.inc',
-))
-->values(array(
-  'path' => 'admin/config/regional/translate/edit/%',
-  'load_functions' => 'a:1:{i:5;N;}',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:19:"translate interface";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:38:"i18n_string_locale_translate_edit_form";i:1;i:5;}',
-  'delivery_callback' => '',
-  'fit' => '62',
-  'number_parts' => '6',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/config/regional/translate/edit/%',
-  'title' => 'Edit string',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'sites/all/modules/i18n/i18n_string/i18n_string.pages.inc',
-))
-->values(array(
-  'path' => 'admin/config/regional/translate/export',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:19:"translate interface";}',
-  'page_callback' => 'locale_translate_export_screen',
-  'page_arguments' => 'a:0:{}',
-  'delivery_callback' => '',
-  'fit' => '31',
-  'number_parts' => '5',
-  'context' => '1',
-  'tab_parent' => 'admin/config/regional/translate',
-  'tab_root' => 'admin/config/regional/translate',
-  'title' => 'Export',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '132',
-  'description' => '',
-  'position' => '',
-  'weight' => '30',
-  'include_file' => 'modules/locale/locale.admin.inc',
-))
-->values(array(
-  'path' => 'admin/config/regional/translate/i18n_string',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:19:"translate interface";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:30:"i18n_string_admin_refresh_form";}',
-  'delivery_callback' => '',
-  'fit' => '31',
-  'number_parts' => '5',
-  'context' => '1',
-  'tab_parent' => 'admin/config/regional/translate',
-  'tab_root' => 'admin/config/regional/translate',
-  'title' => 'Strings',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '132',
-  'description' => 'Refresh user defined strings.',
-  'position' => '',
-  'weight' => '20',
-  'include_file' => 'sites/all/modules/i18n/i18n_string/i18n_string.admin.inc',
-))
-->values(array(
-  'path' => 'admin/config/regional/translate/import',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:19:"translate interface";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:28:"locale_translate_import_form";}',
-  'delivery_callback' => '',
-  'fit' => '31',
-  'number_parts' => '5',
-  'context' => '1',
-  'tab_parent' => 'admin/config/regional/translate',
-  'tab_root' => 'admin/config/regional/translate',
-  'title' => 'Import',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '132',
-  'description' => '',
-  'position' => '',
-  'weight' => '20',
-  'include_file' => 'modules/locale/locale.admin.inc',
-))
-->values(array(
-  'path' => 'admin/config/regional/translate/overview',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:19:"translate interface";}',
-  'page_callback' => 'locale_translate_overview_screen',
-  'page_arguments' => 'a:0:{}',
-  'delivery_callback' => '',
-  'fit' => '31',
-  'number_parts' => '5',
-  'context' => '1',
-  'tab_parent' => 'admin/config/regional/translate',
-  'tab_root' => 'admin/config/regional/translate',
-  'title' => 'Overview',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '140',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/locale/locale.admin.inc',
-))
-->values(array(
-  'path' => 'admin/config/regional/translate/translate',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:19:"translate interface";}',
-  'page_callback' => 'i18n_string_locale_translate_seek_screen',
-  'page_arguments' => 'a:0:{}',
-  'delivery_callback' => '',
-  'fit' => '31',
-  'number_parts' => '5',
-  'context' => '1',
-  'tab_parent' => 'admin/config/regional/translate',
-  'tab_root' => 'admin/config/regional/translate',
-  'title' => 'Translate',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '132',
-  'description' => '',
-  'position' => '',
-  'weight' => '10',
-  'include_file' => 'sites/all/modules/i18n/i18n_string/i18n_string.pages.inc',
-))
-->values(array(
-  'path' => 'admin/config/search',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
-  'page_callback' => 'system_admin_menu_block_page',
-  'page_arguments' => 'a:0:{}',
-  'delivery_callback' => '',
-  'fit' => '7',
-  'number_parts' => '3',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/config/search',
-  'title' => 'Search and metadata',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => 'Local site search, metadata and SEO.',
-  'position' => 'left',
-  'weight' => '-10',
-  'include_file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'admin/config/search/clean-urls',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:25:"system_clean_url_settings";}',
-  'delivery_callback' => '',
-  'fit' => '15',
-  'number_parts' => '4',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/config/search/clean-urls',
-  'title' => 'Clean URLs',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => 'Enable or disable clean URLs for your site.',
-  'position' => '',
-  'weight' => '5',
-  'include_file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'admin/config/search/clean-urls/check',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => '1',
-  'access_arguments' => 'a:0:{}',
-  'page_callback' => 'drupal_json_output',
-  'page_arguments' => 'a:1:{i:0;a:1:{s:6:"status";b:1;}}',
-  'delivery_callback' => '',
-  'fit' => '31',
-  'number_parts' => '5',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/config/search/clean-urls/check',
-  'title' => 'Clean URL check',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '0',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'admin/config/search/path',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:22:"administer url aliases";}',
-  'page_callback' => 'path_admin_overview',
-  'page_arguments' => 'a:0:{}',
-  'delivery_callback' => '',
-  'fit' => '15',
-  'number_parts' => '4',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/config/search/path',
-  'title' => 'URL aliases',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => "Change your site's URL paths by aliasing them.",
-  'position' => '',
-  'weight' => '-5',
-  'include_file' => 'modules/path/path.admin.inc',
-))
-->values(array(
-  'path' => 'admin/config/search/path/add',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:22:"administer url aliases";}',
-  'page_callback' => 'path_admin_edit',
-  'page_arguments' => 'a:0:{}',
-  'delivery_callback' => '',
-  'fit' => '31',
-  'number_parts' => '5',
-  'context' => '1',
-  'tab_parent' => 'admin/config/search/path',
-  'tab_root' => 'admin/config/search/path',
-  'title' => 'Add alias',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '388',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/path/path.admin.inc',
-))
-->values(array(
-  'path' => 'admin/config/search/path/delete/%',
-  'load_functions' => 'a:1:{i:5;s:9:"path_load";}',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:22:"administer url aliases";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:25:"path_admin_delete_confirm";i:1;i:5;}',
-  'delivery_callback' => '',
-  'fit' => '62',
-  'number_parts' => '6',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/config/search/path/delete/%',
-  'title' => 'Delete alias',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/path/path.admin.inc',
-))
-->values(array(
-  'path' => 'admin/config/search/path/edit/%',
-  'load_functions' => 'a:1:{i:5;s:9:"path_load";}',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:22:"administer url aliases";}',
-  'page_callback' => 'path_admin_edit',
-  'page_arguments' => 'a:1:{i:0;i:5;}',
-  'delivery_callback' => '',
-  'fit' => '62',
-  'number_parts' => '6',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/config/search/path/edit/%',
-  'title' => 'Edit alias',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/path/path.admin.inc',
-))
-->values(array(
-  'path' => 'admin/config/search/path/list',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:22:"administer url aliases";}',
-  'page_callback' => 'path_admin_overview',
-  'page_arguments' => 'a:0:{}',
-  'delivery_callback' => '',
-  'fit' => '31',
-  'number_parts' => '5',
-  'context' => '1',
-  'tab_parent' => 'admin/config/search/path',
-  'tab_root' => 'admin/config/search/path',
-  'title' => 'List',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '140',
-  'description' => '',
-  'position' => '',
-  'weight' => '-10',
-  'include_file' => 'modules/path/path.admin.inc',
-))
-->values(array(
-  'path' => 'admin/config/search/settings',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:17:"administer search";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:21:"search_admin_settings";}',
-  'delivery_callback' => '',
-  'fit' => '15',
-  'number_parts' => '4',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/config/search/settings',
-  'title' => 'Search settings',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => 'Configure relevance settings for search and other indexing options.',
-  'position' => '',
-  'weight' => '-10',
-  'include_file' => 'modules/search/search.admin.inc',
-))
-->values(array(
-  'path' => 'admin/config/search/settings/reindex',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:17:"administer search";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:22:"search_reindex_confirm";}',
-  'delivery_callback' => '',
-  'fit' => '31',
-  'number_parts' => '5',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/config/search/settings/reindex',
-  'title' => 'Clear index',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '4',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/search/search.admin.inc',
-))
-->values(array(
-  'path' => 'admin/config/services',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
-  'page_callback' => 'system_admin_menu_block_page',
-  'page_arguments' => 'a:0:{}',
-  'delivery_callback' => '',
-  'fit' => '7',
-  'number_parts' => '3',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/config/services',
-  'title' => 'Web services',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => 'Tools related to web services.',
-  'position' => 'right',
-  'weight' => '0',
-  'include_file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'admin/config/services/rss-publishing',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:25:"system_rss_feeds_settings";}',
-  'delivery_callback' => '',
-  'fit' => '15',
-  'number_parts' => '4',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/config/services/rss-publishing',
-  'title' => 'RSS publishing',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => 'Configure the site description, the number of items per feed and whether feeds should be titles/teasers/full-text.',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'admin/config/system',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
-  'page_callback' => 'system_admin_menu_block_page',
-  'page_arguments' => 'a:0:{}',
-  'delivery_callback' => '',
-  'fit' => '7',
-  'number_parts' => '3',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/config/system',
-  'title' => 'System',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => 'General system related configuration.',
-  'position' => 'right',
-  'weight' => '-20',
-  'include_file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'admin/config/system/actions',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:18:"administer actions";}',
-  'page_callback' => 'system_actions_manage',
-  'page_arguments' => 'a:0:{}',
-  'delivery_callback' => '',
-  'fit' => '15',
-  'number_parts' => '4',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/config/system/actions',
-  'title' => 'Actions',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => 'Manage the actions defined for your site.',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'admin/config/system/actions/configure',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:18:"administer actions";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:24:"system_actions_configure";}',
-  'delivery_callback' => '',
-  'fit' => '31',
-  'number_parts' => '5',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/config/system/actions/configure',
-  'title' => 'Configure an advanced action',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '4',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'admin/config/system/actions/delete/%',
-  'load_functions' => 'a:1:{i:5;s:12:"actions_load";}',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:18:"administer actions";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:26:"system_actions_delete_form";i:1;i:5;}',
-  'delivery_callback' => '',
-  'fit' => '62',
-  'number_parts' => '6',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/config/system/actions/delete/%',
-  'title' => 'Delete action',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => 'Delete an action.',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'admin/config/system/actions/manage',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:18:"administer actions";}',
-  'page_callback' => 'system_actions_manage',
-  'page_arguments' => 'a:0:{}',
-  'delivery_callback' => '',
-  'fit' => '31',
-  'number_parts' => '5',
-  'context' => '1',
-  'tab_parent' => 'admin/config/system/actions',
-  'tab_root' => 'admin/config/system/actions',
-  'title' => 'Manage actions',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '140',
-  'description' => 'Manage the actions defined for your site.',
-  'position' => '',
-  'weight' => '-2',
-  'include_file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'admin/config/system/actions/orphan',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:18:"administer actions";}',
-  'page_callback' => 'system_actions_remove_orphans',
-  'page_arguments' => 'a:0:{}',
-  'delivery_callback' => '',
-  'fit' => '31',
-  'number_parts' => '5',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/config/system/actions/orphan',
-  'title' => 'Remove orphans',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '0',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'admin/config/system/cron',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:20:"system_cron_settings";}',
-  'delivery_callback' => '',
-  'fit' => '15',
-  'number_parts' => '4',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/config/system/cron',
-  'title' => 'Cron',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => 'Manage automatic site maintenance tasks.',
-  'position' => '',
-  'weight' => '20',
-  'include_file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'admin/config/system/site-information',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:32:"system_site_information_settings";}',
-  'delivery_callback' => '',
-  'fit' => '15',
-  'number_parts' => '4',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/config/system/site-information',
-  'title' => 'Site information',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => 'Change site name, e-mail address, slogan, default front page, and number of posts per page, error pages.',
-  'position' => '',
-  'weight' => '-20',
-  'include_file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'admin/config/user-interface',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
-  'page_callback' => 'system_admin_menu_block_page',
-  'page_arguments' => 'a:0:{}',
-  'delivery_callback' => '',
-  'fit' => '7',
-  'number_parts' => '3',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/config/user-interface',
-  'title' => 'User interface',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => 'Tools that enhance the user interface.',
-  'position' => 'right',
-  'weight' => '-15',
-  'include_file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'admin/config/workflow',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
-  'page_callback' => 'system_admin_menu_block_page',
-  'page_arguments' => 'a:0:{}',
-  'delivery_callback' => '',
-  'fit' => '7',
-  'number_parts' => '3',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/config/workflow',
-  'title' => 'Workflow',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => 'Content workflow, editorial workflow tools.',
-  'position' => 'right',
-  'weight' => '5',
-  'include_file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'admin/content',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:23:"access content overview";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:18:"node_admin_content";}',
-  'delivery_callback' => '',
-  'fit' => '3',
-  'number_parts' => '2',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/content',
-  'title' => 'Content',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => 'Administer content and comments.',
-  'position' => '',
-  'weight' => '-10',
-  'include_file' => 'modules/node/node.admin.inc',
-))
-->values(array(
-  'path' => 'admin/content/comment',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:19:"administer comments";}',
-  'page_callback' => 'comment_admin',
-  'page_arguments' => 'a:0:{}',
-  'delivery_callback' => '',
-  'fit' => '7',
-  'number_parts' => '3',
-  'context' => '1',
-  'tab_parent' => 'admin/content',
-  'tab_root' => 'admin/content',
-  'title' => 'Comments',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '134',
-  'description' => 'List and edit site comments and the comment approval queue.',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/comment/comment.admin.inc',
-))
-->values(array(
-  'path' => 'admin/content/comment/approval',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:19:"administer comments";}',
-  'page_callback' => 'comment_admin',
-  'page_arguments' => 'a:1:{i:0;s:8:"approval";}',
-  'delivery_callback' => '',
-  'fit' => '15',
-  'number_parts' => '4',
-  'context' => '1',
-  'tab_parent' => 'admin/content/comment',
-  'tab_root' => 'admin/content',
-  'title' => 'Unapproved comments',
-  'title_callback' => 'comment_count_unpublished',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '132',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/comment/comment.admin.inc',
-))
-->values(array(
-  'path' => 'admin/content/comment/new',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:19:"administer comments";}',
-  'page_callback' => 'comment_admin',
-  'page_arguments' => 'a:0:{}',
-  'delivery_callback' => '',
-  'fit' => '15',
-  'number_parts' => '4',
-  'context' => '1',
-  'tab_parent' => 'admin/content/comment',
-  'tab_root' => 'admin/content',
-  'title' => 'Published comments',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '140',
-  'description' => '',
-  'position' => '',
-  'weight' => '-10',
-  'include_file' => 'modules/comment/comment.admin.inc',
-))
-->values(array(
-  'path' => 'admin/content/node',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:23:"access content overview";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:18:"node_admin_content";}',
-  'delivery_callback' => '',
-  'fit' => '7',
-  'number_parts' => '3',
-  'context' => '1',
-  'tab_parent' => 'admin/content',
-  'tab_root' => 'admin/content',
-  'title' => 'Content',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '140',
-  'description' => '',
-  'position' => '',
-  'weight' => '-10',
-  'include_file' => 'modules/node/node.admin.inc',
-))
-->values(array(
-  'path' => 'admin/index',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
-  'page_callback' => 'system_admin_index',
-  'page_arguments' => 'a:0:{}',
-  'delivery_callback' => '',
-  'fit' => '3',
-  'number_parts' => '2',
-  'context' => '1',
-  'tab_parent' => 'admin',
-  'tab_root' => 'admin',
-  'title' => 'Index',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '132',
-  'description' => '',
-  'position' => '',
-  'weight' => '-18',
-  'include_file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'admin/modules',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:18:"administer modules";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:14:"system_modules";}',
-  'delivery_callback' => '',
-  'fit' => '3',
-  'number_parts' => '2',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/modules',
-  'title' => 'Modules',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => 'Extend site functionality.',
-  'position' => '',
-  'weight' => '-2',
-  'include_file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'admin/modules/list',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:18:"administer modules";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:14:"system_modules";}',
-  'delivery_callback' => '',
-  'fit' => '7',
-  'number_parts' => '3',
-  'context' => '1',
-  'tab_parent' => 'admin/modules',
-  'tab_root' => 'admin/modules',
-  'title' => 'List',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '140',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'admin/modules/list/confirm',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:18:"administer modules";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:14:"system_modules";}',
-  'delivery_callback' => '',
-  'fit' => '15',
-  'number_parts' => '4',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/modules/list/confirm',
-  'title' => 'List',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '4',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'admin/modules/uninstall',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:18:"administer modules";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:24:"system_modules_uninstall";}',
-  'delivery_callback' => '',
-  'fit' => '7',
-  'number_parts' => '3',
-  'context' => '1',
-  'tab_parent' => 'admin/modules',
-  'tab_root' => 'admin/modules',
-  'title' => 'Uninstall',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '132',
-  'description' => '',
-  'position' => '',
-  'weight' => '20',
-  'include_file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'admin/modules/uninstall/confirm',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:18:"administer modules";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:24:"system_modules_uninstall";}',
-  'delivery_callback' => '',
-  'fit' => '15',
-  'number_parts' => '4',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/modules/uninstall/confirm',
-  'title' => 'Uninstall',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '4',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'admin/people',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:16:"administer users";}',
-  'page_callback' => 'user_admin',
-  'page_arguments' => 'a:1:{i:0;s:4:"list";}',
-  'delivery_callback' => '',
-  'fit' => '3',
-  'number_parts' => '2',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/people',
-  'title' => 'People',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => 'Manage user accounts, roles, and permissions.',
-  'position' => 'left',
-  'weight' => '-4',
-  'include_file' => 'modules/user/user.admin.inc',
-))
-->values(array(
-  'path' => 'admin/people/create',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:16:"administer users";}',
-  'page_callback' => 'user_admin',
-  'page_arguments' => 'a:1:{i:0;s:6:"create";}',
-  'delivery_callback' => '',
-  'fit' => '7',
-  'number_parts' => '3',
-  'context' => '1',
-  'tab_parent' => 'admin/people',
-  'tab_root' => 'admin/people',
-  'title' => 'Add user',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '388',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/user/user.admin.inc',
-))
-->values(array(
-  'path' => 'admin/people/people',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:16:"administer users";}',
-  'page_callback' => 'user_admin',
-  'page_arguments' => 'a:1:{i:0;s:4:"list";}',
-  'delivery_callback' => '',
-  'fit' => '7',
-  'number_parts' => '3',
-  'context' => '1',
-  'tab_parent' => 'admin/people',
-  'tab_root' => 'admin/people',
-  'title' => 'List',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '140',
-  'description' => 'Find and manage people interacting with your site.',
-  'position' => '',
-  'weight' => '-10',
-  'include_file' => 'modules/user/user.admin.inc',
-))
-->values(array(
-  'path' => 'admin/people/permissions',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:22:"administer permissions";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:22:"user_admin_permissions";}',
-  'delivery_callback' => '',
-  'fit' => '7',
-  'number_parts' => '3',
-  'context' => '1',
-  'tab_parent' => 'admin/people',
-  'tab_root' => 'admin/people',
-  'title' => 'Permissions',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '132',
-  'description' => 'Determine access to features by selecting permissions for roles.',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/user/user.admin.inc',
-))
-->values(array(
-  'path' => 'admin/people/permissions/list',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:22:"administer permissions";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:22:"user_admin_permissions";}',
-  'delivery_callback' => '',
-  'fit' => '15',
-  'number_parts' => '4',
-  'context' => '1',
-  'tab_parent' => 'admin/people/permissions',
-  'tab_root' => 'admin/people',
-  'title' => 'Permissions',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '140',
-  'description' => 'Determine access to features by selecting permissions for roles.',
-  'position' => '',
-  'weight' => '-8',
-  'include_file' => 'modules/user/user.admin.inc',
-))
-->values(array(
-  'path' => 'admin/people/permissions/roles',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:22:"administer permissions";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:16:"user_admin_roles";}',
-  'delivery_callback' => '',
-  'fit' => '15',
-  'number_parts' => '4',
-  'context' => '1',
-  'tab_parent' => 'admin/people/permissions',
-  'tab_root' => 'admin/people',
-  'title' => 'Roles',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '132',
-  'description' => 'List, edit, or add user roles.',
-  'position' => '',
-  'weight' => '-5',
-  'include_file' => 'modules/user/user.admin.inc',
-))
-->values(array(
-  'path' => 'admin/people/permissions/roles/delete/%',
-  'load_functions' => 'a:1:{i:5;s:14:"user_role_load";}',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_role_edit_access',
-  'access_arguments' => 'a:1:{i:0;i:5;}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:30:"user_admin_role_delete_confirm";i:1;i:5;}',
-  'delivery_callback' => '',
-  'fit' => '62',
-  'number_parts' => '6',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/people/permissions/roles/delete/%',
-  'title' => 'Delete role',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/user/user.admin.inc',
-))
-->values(array(
-  'path' => 'admin/people/permissions/roles/edit/%',
-  'load_functions' => 'a:1:{i:5;s:14:"user_role_load";}',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_role_edit_access',
-  'access_arguments' => 'a:1:{i:0;i:5;}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:15:"user_admin_role";i:1;i:5;}',
-  'delivery_callback' => '',
-  'fit' => '62',
-  'number_parts' => '6',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/people/permissions/roles/edit/%',
-  'title' => 'Edit role',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/user/user.admin.inc',
-))
-->values(array(
-  'path' => 'admin/reports',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:19:"access site reports";}',
-  'page_callback' => 'system_admin_menu_block_page',
-  'page_arguments' => 'a:0:{}',
-  'delivery_callback' => '',
-  'fit' => '3',
-  'number_parts' => '2',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/reports',
-  'title' => 'Reports',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => 'View reports, updates, and errors.',
-  'position' => 'left',
-  'weight' => '5',
-  'include_file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'admin/reports/fields',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
-  'page_callback' => 'field_ui_fields_list',
-  'page_arguments' => 'a:0:{}',
-  'delivery_callback' => '',
-  'fit' => '7',
-  'number_parts' => '3',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/reports/fields',
-  'title' => 'Field list',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => 'Overview of fields on all entity types.',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/field_ui/field_ui.admin.inc',
-))
-->values(array(
-  'path' => 'admin/reports/status',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
-  'page_callback' => 'system_status',
-  'page_arguments' => 'a:0:{}',
-  'delivery_callback' => '',
-  'fit' => '7',
-  'number_parts' => '3',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/reports/status',
-  'title' => 'Status report',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => "Get a status report about your site's operation and any detected problems.",
-  'position' => '',
-  'weight' => '-60',
-  'include_file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'admin/reports/status/php',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
-  'page_callback' => 'system_php',
-  'page_arguments' => 'a:0:{}',
-  'delivery_callback' => '',
-  'fit' => '15',
-  'number_parts' => '4',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/reports/status/php',
-  'title' => 'PHP',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '0',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'admin/reports/status/rebuild',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:30:"node_configure_rebuild_confirm";}',
-  'delivery_callback' => '',
-  'fit' => '15',
-  'number_parts' => '4',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/reports/status/rebuild',
-  'title' => 'Rebuild permissions',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '0',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/node/node.admin.inc',
-))
-->values(array(
-  'path' => 'admin/reports/status/run-cron',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
-  'page_callback' => 'system_run_cron',
-  'page_arguments' => 'a:0:{}',
-  'delivery_callback' => '',
-  'fit' => '15',
-  'number_parts' => '4',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/reports/status/run-cron',
-  'title' => 'Run cron',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '0',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'admin/structure',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
-  'page_callback' => 'system_admin_menu_block_page',
-  'page_arguments' => 'a:0:{}',
-  'delivery_callback' => '',
-  'fit' => '3',
-  'number_parts' => '2',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/structure',
-  'title' => 'Structure',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => 'Administer blocks, content types, menus, etc.',
-  'position' => 'right',
-  'weight' => '-8',
-  'include_file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'admin/structure/block',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}',
-  'page_callback' => 'block_admin_display',
-  'page_arguments' => 'a:1:{i:0;s:6:"bartik";}',
-  'delivery_callback' => '',
-  'fit' => '7',
-  'number_parts' => '3',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/structure/block',
-  'title' => 'Blocks',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => "Configure what block content appears in your site's sidebars and other regions.",
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/block/block.admin.inc',
-))
-->values(array(
-  'path' => 'admin/structure/block/add',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:20:"block_add_block_form";}',
-  'delivery_callback' => '',
-  'fit' => '15',
-  'number_parts' => '4',
-  'context' => '1',
-  'tab_parent' => 'admin/structure/block',
-  'tab_root' => 'admin/structure/block',
-  'title' => 'Add block',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '388',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/block/block.admin.inc',
-))
-->values(array(
-  'path' => 'admin/structure/block/demo/bartik',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => '_block_themes_access',
-  'access_arguments' => 'a:1:{i:0;O:8:"stdClass":12:{s:8:"filename";s:25:"themes/bartik/bartik.info";s:4:"name";s:6:"bartik";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"1";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:15:{s:4:"name";s:6:"Bartik";s:11:"description";s:48:"A flexible, recolorable theme with many regions.";s:7:"package";s:4:"Core";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:11:"stylesheets";a:2:{s:3:"all";a:3:{s:14:"css/layout.css";s:28:"themes/bartik/css/layout.css";s:13:"css/style.css";s:27:"themes/bartik/css/style.css";s:14:"css/colors.css";s:28:"themes/bartik/css/colors.css";}s:5:"print";a:1:{s:13:"css/print.css";s:27:"themes/bartik/css/print.css";}}s:7:"regions";a:17:{s:6:"header";s:6:"Header";s:4:"help";s:4:"Help";s:8:"page_top";s:8:"Page top";s:11:"page_bottom";s:11:"Page bottom";s:11:"highlighted";s:11:"Highlighted";s:8:"featured";s:8:"Featured";s:7:"content";s:7:"Content";s:13:"sidebar_first";s:13:"Sidebar first";s:14:"sidebar_second";s:14:"Sidebar second";s:14:"triptych_first";s:14:"Triptych first";s:15:"triptych_middle";s:15:"Triptych middle";s:13:"triptych_last";s:13:"Triptych last";s:18:"footer_firstcolumn";s:19:"Footer first column";s:19:"footer_secondcolumn";s:20:"Footer second column";s:18:"footer_thirdcolumn";s:19:"Footer third column";s:19:"footer_fourthcolumn";s:20:"Footer fourth column";s:6:"footer";s:6:"Footer";}s:8:"settings";a:1:{s:20:"shortcut_module_link";s:1:"0";}s:6:"engine";s:11:"phptemplate";s:8:"features";a:9:{i:0;s:4:"logo";i:1;s:7:"favicon";i:2;s:4:"name";i:3;s:6:"slogan";i:4;s:17:"node_user_picture";i:5;s:20:"comment_user_picture";i:6;s:25:"comment_user_verification";i:7;s:9:"main_menu";i:8;s:14:"secondary_menu";}s:10:"screenshot";s:28:"themes/bartik/screenshot.png";s:3:"php";s:5:"5.2.4";s:7:"scripts";a:0:{}s:5:"mtime";i:1664863480;s:14:"regions_hidden";a:2:{i:0;s:8:"page_top";i:1;s:11:"page_bottom";}}s:6:"prefix";s:11:"phptemplate";s:11:"stylesheets";a:2:{s:3:"all";a:3:{s:14:"css/layout.css";s:28:"themes/bartik/css/layout.css";s:13:"css/style.css";s:27:"themes/bartik/css/style.css";s:14:"css/colors.css";s:28:"themes/bartik/css/colors.css";}s:5:"print";a:1:{s:13:"css/print.css";s:27:"themes/bartik/css/print.css";}}s:6:"engine";s:11:"phptemplate";}}',
-  'page_callback' => 'block_admin_demo',
-  'page_arguments' => 'a:1:{i:0;s:6:"bartik";}',
-  'delivery_callback' => '',
-  'fit' => '31',
-  'number_parts' => '5',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/structure/block/demo/bartik',
-  'title' => 'Bartik',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '_block_custom_theme',
-  'theme_arguments' => 'a:1:{i:0;s:6:"bartik";}',
-  'type' => '0',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/block/block.admin.inc',
-))
-->values(array(
-  'path' => 'admin/structure/block/demo/garland',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => '_block_themes_access',
-  'access_arguments' => 'a:1:{i:0;O:8:"stdClass":12:{s:8:"filename";s:27:"themes/garland/garland.info";s:4:"name";s:7:"garland";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:15:{s:4:"name";s:7:"Garland";s:11:"description";s:111:"A multi-column theme which can be configured to modify colors and switch between fixed and fluid width layouts.";s:7:"package";s:4:"Core";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:11:"stylesheets";a:2:{s:3:"all";a:1:{s:9:"style.css";s:24:"themes/garland/style.css";}s:5:"print";a:1:{s:9:"print.css";s:24:"themes/garland/print.css";}}s:8:"settings";a:1:{s:13:"garland_width";s:5:"fluid";}s:6:"engine";s:11:"phptemplate";s:7:"regions";a:9:{s:13:"sidebar_first";s:12:"Left sidebar";s:14:"sidebar_second";s:13:"Right sidebar";s:7:"content";s:7:"Content";s:6:"header";s:6:"Header";s:6:"footer";s:6:"Footer";s:11:"highlighted";s:11:"Highlighted";s:4:"help";s:4:"Help";s:8:"page_top";s:8:"Page top";s:11:"page_bottom";s:11:"Page bottom";}s:8:"features";a:9:{i:0;s:4:"logo";i:1;s:7:"favicon";i:2;s:4:"name";i:3;s:6:"slogan";i:4;s:17:"node_user_picture";i:5;s:20:"comment_user_picture";i:6;s:25:"comment_user_verification";i:7;s:9:"main_menu";i:8;s:14:"secondary_menu";}s:10:"screenshot";s:29:"themes/garland/screenshot.png";s:3:"php";s:5:"5.2.4";s:7:"scripts";a:0:{}s:5:"mtime";i:1664863480;s:14:"regions_hidden";a:2:{i:0;s:8:"page_top";i:1;s:11:"page_bottom";}}s:6:"prefix";s:11:"phptemplate";s:11:"stylesheets";a:2:{s:3:"all";a:1:{s:9:"style.css";s:24:"themes/garland/style.css";}s:5:"print";a:1:{s:9:"print.css";s:24:"themes/garland/print.css";}}s:6:"engine";s:11:"phptemplate";}}',
-  'page_callback' => 'block_admin_demo',
-  'page_arguments' => 'a:1:{i:0;s:7:"garland";}',
-  'delivery_callback' => '',
-  'fit' => '31',
-  'number_parts' => '5',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/structure/block/demo/garland',
-  'title' => 'Garland',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '_block_custom_theme',
-  'theme_arguments' => 'a:1:{i:0;s:7:"garland";}',
-  'type' => '0',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/block/block.admin.inc',
-))
-->values(array(
-  'path' => 'admin/structure/block/demo/seven',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => '_block_themes_access',
-  'access_arguments' => 'a:1:{i:0;O:8:"stdClass":12:{s:8:"filename";s:23:"themes/seven/seven.info";s:4:"name";s:5:"seven";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"1";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:15:{s:4:"name";s:5:"Seven";s:11:"description";s:65:"A simple one-column, tableless, fluid width administration theme.";s:7:"package";s:4:"Core";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:11:"stylesheets";a:1:{s:6:"screen";a:2:{s:9:"reset.css";s:22:"themes/seven/reset.css";s:9:"style.css";s:22:"themes/seven/style.css";}}s:8:"settings";a:1:{s:20:"shortcut_module_link";s:1:"1";}s:7:"regions";a:5:{s:7:"content";s:7:"Content";s:4:"help";s:4:"Help";s:8:"page_top";s:8:"Page top";s:11:"page_bottom";s:11:"Page bottom";s:13:"sidebar_first";s:13:"First sidebar";}s:14:"regions_hidden";a:3:{i:0;s:13:"sidebar_first";i:1;s:8:"page_top";i:2;s:11:"page_bottom";}s:6:"engine";s:11:"phptemplate";s:8:"features";a:9:{i:0;s:4:"logo";i:1;s:7:"favicon";i:2;s:4:"name";i:3;s:6:"slogan";i:4;s:17:"node_user_picture";i:5;s:20:"comment_user_picture";i:6;s:25:"comment_user_verification";i:7;s:9:"main_menu";i:8;s:14:"secondary_menu";}s:10:"screenshot";s:27:"themes/seven/screenshot.png";s:3:"php";s:5:"5.2.4";s:7:"scripts";a:0:{}s:5:"mtime";i:1664863480;}s:6:"prefix";s:11:"phptemplate";s:11:"stylesheets";a:1:{s:6:"screen";a:2:{s:9:"reset.css";s:22:"themes/seven/reset.css";s:9:"style.css";s:22:"themes/seven/style.css";}}s:6:"engine";s:11:"phptemplate";}}',
-  'page_callback' => 'block_admin_demo',
-  'page_arguments' => 'a:1:{i:0;s:5:"seven";}',
-  'delivery_callback' => '',
-  'fit' => '31',
-  'number_parts' => '5',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/structure/block/demo/seven',
-  'title' => 'Seven',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '_block_custom_theme',
-  'theme_arguments' => 'a:1:{i:0;s:5:"seven";}',
-  'type' => '0',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/block/block.admin.inc',
-))
-->values(array(
-  'path' => 'admin/structure/block/demo/stark',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => '_block_themes_access',
-  'access_arguments' => "a:1:{i:0;O:8:\"stdClass\":12:{s:8:\"filename\";s:23:\"themes/stark/stark.info\";s:4:\"name\";s:5:\"stark\";s:4:\"type\";s:5:\"theme\";s:5:\"owner\";s:45:\"themes/engines/phptemplate/phptemplate.engine\";s:6:\"status\";s:1:\"0\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:14:{s:4:\"name\";s:5:\"Stark\";s:11:\"description\";s:208:\"This theme demonstrates Drupal's default HTML markup and CSS styles. To learn how to build your own theme and override Drupal's default code, see the <a href=\"http://drupal.org/theme-guide\">Theming Guide</a>.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:4:\"7.92\";s:4:\"core\";s:3:\"7.x\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:1:{s:10:\"layout.css\";s:23:\"themes/stark/layout.css\";}}s:6:\"engine\";s:11:\"phptemplate\";s:7:\"regions\";a:9:{s:13:\"sidebar_first\";s:12:\"Left sidebar\";s:14:\"sidebar_second\";s:13:\"Right sidebar\";s:7:\"content\";s:7:\"Content\";s:6:\"header\";s:6:\"Header\";s:6:\"footer\";s:6:\"Footer\";s:11:\"highlighted\";s:11:\"Highlighted\";s:4:\"help\";s:4:\"Help\";s:8:\"page_top\";s:8:\"Page top\";s:11:\"page_bottom\";s:11:\"Page bottom\";}s:8:\"features\";a:9:{i:0;s:4:\"logo\";i:1;s:7:\"favicon\";i:2;s:4:\"name\";i:3;s:6:\"slogan\";i:4;s:17:\"node_user_picture\";i:5;s:20:\"comment_user_picture\";i:6;s:25:\"comment_user_verification\";i:7;s:9:\"main_menu\";i:8;s:14:\"secondary_menu\";}s:10:\"screenshot\";s:27:\"themes/stark/screenshot.png\";s:3:\"php\";s:5:\"5.2.4\";s:7:\"scripts\";a:0:{}s:5:\"mtime\";i:1664863480;s:14:\"regions_hidden\";a:2:{i:0;s:8:\"page_top\";i:1;s:11:\"page_bottom\";}}s:6:\"prefix\";s:11:\"phptemplate\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:1:{s:10:\"layout.css\";s:23:\"themes/stark/layout.css\";}}s:6:\"engine\";s:11:\"phptemplate\";}}",
-  'page_callback' => 'block_admin_demo',
-  'page_arguments' => 'a:1:{i:0;s:5:"stark";}',
-  'delivery_callback' => '',
-  'fit' => '31',
-  'number_parts' => '5',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/structure/block/demo/stark',
-  'title' => 'Stark',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '_block_custom_theme',
-  'theme_arguments' => 'a:1:{i:0;s:5:"stark";}',
-  'type' => '0',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/block/block.admin.inc',
-))
-->values(array(
-  'path' => 'admin/structure/block/list/bartik',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => '_block_themes_access',
-  'access_arguments' => 'a:1:{i:0;O:8:"stdClass":12:{s:8:"filename";s:25:"themes/bartik/bartik.info";s:4:"name";s:6:"bartik";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"1";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:15:{s:4:"name";s:6:"Bartik";s:11:"description";s:48:"A flexible, recolorable theme with many regions.";s:7:"package";s:4:"Core";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:11:"stylesheets";a:2:{s:3:"all";a:3:{s:14:"css/layout.css";s:28:"themes/bartik/css/layout.css";s:13:"css/style.css";s:27:"themes/bartik/css/style.css";s:14:"css/colors.css";s:28:"themes/bartik/css/colors.css";}s:5:"print";a:1:{s:13:"css/print.css";s:27:"themes/bartik/css/print.css";}}s:7:"regions";a:17:{s:6:"header";s:6:"Header";s:4:"help";s:4:"Help";s:8:"page_top";s:8:"Page top";s:11:"page_bottom";s:11:"Page bottom";s:11:"highlighted";s:11:"Highlighted";s:8:"featured";s:8:"Featured";s:7:"content";s:7:"Content";s:13:"sidebar_first";s:13:"Sidebar first";s:14:"sidebar_second";s:14:"Sidebar second";s:14:"triptych_first";s:14:"Triptych first";s:15:"triptych_middle";s:15:"Triptych middle";s:13:"triptych_last";s:13:"Triptych last";s:18:"footer_firstcolumn";s:19:"Footer first column";s:19:"footer_secondcolumn";s:20:"Footer second column";s:18:"footer_thirdcolumn";s:19:"Footer third column";s:19:"footer_fourthcolumn";s:20:"Footer fourth column";s:6:"footer";s:6:"Footer";}s:8:"settings";a:1:{s:20:"shortcut_module_link";s:1:"0";}s:6:"engine";s:11:"phptemplate";s:8:"features";a:9:{i:0;s:4:"logo";i:1;s:7:"favicon";i:2;s:4:"name";i:3;s:6:"slogan";i:4;s:17:"node_user_picture";i:5;s:20:"comment_user_picture";i:6;s:25:"comment_user_verification";i:7;s:9:"main_menu";i:8;s:14:"secondary_menu";}s:10:"screenshot";s:28:"themes/bartik/screenshot.png";s:3:"php";s:5:"5.2.4";s:7:"scripts";a:0:{}s:5:"mtime";i:1664863480;s:14:"regions_hidden";a:2:{i:0;s:8:"page_top";i:1;s:11:"page_bottom";}}s:6:"prefix";s:11:"phptemplate";s:11:"stylesheets";a:2:{s:3:"all";a:3:{s:14:"css/layout.css";s:28:"themes/bartik/css/layout.css";s:13:"css/style.css";s:27:"themes/bartik/css/style.css";s:14:"css/colors.css";s:28:"themes/bartik/css/colors.css";}s:5:"print";a:1:{s:13:"css/print.css";s:27:"themes/bartik/css/print.css";}}s:6:"engine";s:11:"phptemplate";}}',
-  'page_callback' => 'block_admin_display',
-  'page_arguments' => 'a:1:{i:0;s:6:"bartik";}',
-  'delivery_callback' => '',
-  'fit' => '31',
-  'number_parts' => '5',
-  'context' => '1',
-  'tab_parent' => 'admin/structure/block',
-  'tab_root' => 'admin/structure/block',
-  'title' => 'Bartik',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '140',
-  'description' => '',
-  'position' => '',
-  'weight' => '-10',
-  'include_file' => 'modules/block/block.admin.inc',
-))
-->values(array(
-  'path' => 'admin/structure/block/list/garland',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => '_block_themes_access',
-  'access_arguments' => 'a:1:{i:0;O:8:"stdClass":12:{s:8:"filename";s:27:"themes/garland/garland.info";s:4:"name";s:7:"garland";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:15:{s:4:"name";s:7:"Garland";s:11:"description";s:111:"A multi-column theme which can be configured to modify colors and switch between fixed and fluid width layouts.";s:7:"package";s:4:"Core";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:11:"stylesheets";a:2:{s:3:"all";a:1:{s:9:"style.css";s:24:"themes/garland/style.css";}s:5:"print";a:1:{s:9:"print.css";s:24:"themes/garland/print.css";}}s:8:"settings";a:1:{s:13:"garland_width";s:5:"fluid";}s:6:"engine";s:11:"phptemplate";s:7:"regions";a:9:{s:13:"sidebar_first";s:12:"Left sidebar";s:14:"sidebar_second";s:13:"Right sidebar";s:7:"content";s:7:"Content";s:6:"header";s:6:"Header";s:6:"footer";s:6:"Footer";s:11:"highlighted";s:11:"Highlighted";s:4:"help";s:4:"Help";s:8:"page_top";s:8:"Page top";s:11:"page_bottom";s:11:"Page bottom";}s:8:"features";a:9:{i:0;s:4:"logo";i:1;s:7:"favicon";i:2;s:4:"name";i:3;s:6:"slogan";i:4;s:17:"node_user_picture";i:5;s:20:"comment_user_picture";i:6;s:25:"comment_user_verification";i:7;s:9:"main_menu";i:8;s:14:"secondary_menu";}s:10:"screenshot";s:29:"themes/garland/screenshot.png";s:3:"php";s:5:"5.2.4";s:7:"scripts";a:0:{}s:5:"mtime";i:1664863480;s:14:"regions_hidden";a:2:{i:0;s:8:"page_top";i:1;s:11:"page_bottom";}}s:6:"prefix";s:11:"phptemplate";s:11:"stylesheets";a:2:{s:3:"all";a:1:{s:9:"style.css";s:24:"themes/garland/style.css";}s:5:"print";a:1:{s:9:"print.css";s:24:"themes/garland/print.css";}}s:6:"engine";s:11:"phptemplate";}}',
-  'page_callback' => 'block_admin_display',
-  'page_arguments' => 'a:1:{i:0;s:7:"garland";}',
-  'delivery_callback' => '',
-  'fit' => '31',
-  'number_parts' => '5',
-  'context' => '1',
-  'tab_parent' => 'admin/structure/block',
-  'tab_root' => 'admin/structure/block',
-  'title' => 'Garland',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '132',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/block/block.admin.inc',
-))
-->values(array(
-  'path' => 'admin/structure/block/list/garland/add',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:20:"block_add_block_form";}',
-  'delivery_callback' => '',
-  'fit' => '63',
-  'number_parts' => '6',
-  'context' => '1',
-  'tab_parent' => 'admin/structure/block/list/garland',
-  'tab_root' => 'admin/structure/block',
-  'title' => 'Add block',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '388',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/block/block.admin.inc',
-))
-->values(array(
-  'path' => 'admin/structure/block/list/seven',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => '_block_themes_access',
-  'access_arguments' => 'a:1:{i:0;O:8:"stdClass":12:{s:8:"filename";s:23:"themes/seven/seven.info";s:4:"name";s:5:"seven";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"1";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:15:{s:4:"name";s:5:"Seven";s:11:"description";s:65:"A simple one-column, tableless, fluid width administration theme.";s:7:"package";s:4:"Core";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:11:"stylesheets";a:1:{s:6:"screen";a:2:{s:9:"reset.css";s:22:"themes/seven/reset.css";s:9:"style.css";s:22:"themes/seven/style.css";}}s:8:"settings";a:1:{s:20:"shortcut_module_link";s:1:"1";}s:7:"regions";a:5:{s:7:"content";s:7:"Content";s:4:"help";s:4:"Help";s:8:"page_top";s:8:"Page top";s:11:"page_bottom";s:11:"Page bottom";s:13:"sidebar_first";s:13:"First sidebar";}s:14:"regions_hidden";a:3:{i:0;s:13:"sidebar_first";i:1;s:8:"page_top";i:2;s:11:"page_bottom";}s:6:"engine";s:11:"phptemplate";s:8:"features";a:9:{i:0;s:4:"logo";i:1;s:7:"favicon";i:2;s:4:"name";i:3;s:6:"slogan";i:4;s:17:"node_user_picture";i:5;s:20:"comment_user_picture";i:6;s:25:"comment_user_verification";i:7;s:9:"main_menu";i:8;s:14:"secondary_menu";}s:10:"screenshot";s:27:"themes/seven/screenshot.png";s:3:"php";s:5:"5.2.4";s:7:"scripts";a:0:{}s:5:"mtime";i:1664863480;}s:6:"prefix";s:11:"phptemplate";s:11:"stylesheets";a:1:{s:6:"screen";a:2:{s:9:"reset.css";s:22:"themes/seven/reset.css";s:9:"style.css";s:22:"themes/seven/style.css";}}s:6:"engine";s:11:"phptemplate";}}',
-  'page_callback' => 'block_admin_display',
-  'page_arguments' => 'a:1:{i:0;s:5:"seven";}',
-  'delivery_callback' => '',
-  'fit' => '31',
-  'number_parts' => '5',
-  'context' => '1',
-  'tab_parent' => 'admin/structure/block',
-  'tab_root' => 'admin/structure/block',
-  'title' => 'Seven',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '132',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/block/block.admin.inc',
-))
-->values(array(
-  'path' => 'admin/structure/block/list/seven/add',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:20:"block_add_block_form";}',
-  'delivery_callback' => '',
-  'fit' => '63',
-  'number_parts' => '6',
-  'context' => '1',
-  'tab_parent' => 'admin/structure/block/list/seven',
-  'tab_root' => 'admin/structure/block',
-  'title' => 'Add block',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '388',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/block/block.admin.inc',
-))
-->values(array(
-  'path' => 'admin/structure/block/list/stark',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => '_block_themes_access',
-  'access_arguments' => "a:1:{i:0;O:8:\"stdClass\":12:{s:8:\"filename\";s:23:\"themes/stark/stark.info\";s:4:\"name\";s:5:\"stark\";s:4:\"type\";s:5:\"theme\";s:5:\"owner\";s:45:\"themes/engines/phptemplate/phptemplate.engine\";s:6:\"status\";s:1:\"0\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:14:{s:4:\"name\";s:5:\"Stark\";s:11:\"description\";s:208:\"This theme demonstrates Drupal's default HTML markup and CSS styles. To learn how to build your own theme and override Drupal's default code, see the <a href=\"http://drupal.org/theme-guide\">Theming Guide</a>.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:4:\"7.92\";s:4:\"core\";s:3:\"7.x\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:1:{s:10:\"layout.css\";s:23:\"themes/stark/layout.css\";}}s:6:\"engine\";s:11:\"phptemplate\";s:7:\"regions\";a:9:{s:13:\"sidebar_first\";s:12:\"Left sidebar\";s:14:\"sidebar_second\";s:13:\"Right sidebar\";s:7:\"content\";s:7:\"Content\";s:6:\"header\";s:6:\"Header\";s:6:\"footer\";s:6:\"Footer\";s:11:\"highlighted\";s:11:\"Highlighted\";s:4:\"help\";s:4:\"Help\";s:8:\"page_top\";s:8:\"Page top\";s:11:\"page_bottom\";s:11:\"Page bottom\";}s:8:\"features\";a:9:{i:0;s:4:\"logo\";i:1;s:7:\"favicon\";i:2;s:4:\"name\";i:3;s:6:\"slogan\";i:4;s:17:\"node_user_picture\";i:5;s:20:\"comment_user_picture\";i:6;s:25:\"comment_user_verification\";i:7;s:9:\"main_menu\";i:8;s:14:\"secondary_menu\";}s:10:\"screenshot\";s:27:\"themes/stark/screenshot.png\";s:3:\"php\";s:5:\"5.2.4\";s:7:\"scripts\";a:0:{}s:5:\"mtime\";i:1664863480;s:14:\"regions_hidden\";a:2:{i:0;s:8:\"page_top\";i:1;s:11:\"page_bottom\";}}s:6:\"prefix\";s:11:\"phptemplate\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:1:{s:10:\"layout.css\";s:23:\"themes/stark/layout.css\";}}s:6:\"engine\";s:11:\"phptemplate\";}}",
-  'page_callback' => 'block_admin_display',
-  'page_arguments' => 'a:1:{i:0;s:5:"stark";}',
-  'delivery_callback' => '',
-  'fit' => '31',
-  'number_parts' => '5',
-  'context' => '1',
-  'tab_parent' => 'admin/structure/block',
-  'tab_root' => 'admin/structure/block',
-  'title' => 'Stark',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '132',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/block/block.admin.inc',
-))
-->values(array(
-  'path' => 'admin/structure/block/list/stark/add',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:20:"block_add_block_form";}',
-  'delivery_callback' => '',
-  'fit' => '63',
-  'number_parts' => '6',
-  'context' => '1',
-  'tab_parent' => 'admin/structure/block/list/stark',
-  'tab_root' => 'admin/structure/block',
-  'title' => 'Add block',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '388',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/block/block.admin.inc',
-))
-->values(array(
-  'path' => 'admin/structure/block/manage/%/%',
-  'load_functions' => 'a:2:{i:4;N;i:5;N;}',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:3:{i:0;s:21:"block_admin_configure";i:1;i:4;i:2;i:5;}',
-  'delivery_callback' => '',
-  'fit' => '60',
-  'number_parts' => '6',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/structure/block/manage/%/%',
-  'title' => 'Configure block',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/block/block.admin.inc',
-))
-->values(array(
-  'path' => 'admin/structure/block/manage/%/%/configure',
-  'load_functions' => 'a:2:{i:4;N;i:5;N;}',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:3:{i:0;s:21:"block_admin_configure";i:1;i:4;i:2;i:5;}',
-  'delivery_callback' => '',
-  'fit' => '121',
-  'number_parts' => '7',
-  'context' => '2',
-  'tab_parent' => 'admin/structure/block/manage/%/%',
-  'tab_root' => 'admin/structure/block/manage/%/%',
-  'title' => 'Configure block',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '140',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/block/block.admin.inc',
-))
-->values(array(
-  'path' => 'admin/structure/block/manage/%/%/delete',
-  'load_functions' => 'a:2:{i:4;N;i:5;N;}',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:3:{i:0;s:25:"block_custom_block_delete";i:1;i:4;i:2;i:5;}',
-  'delivery_callback' => '',
-  'fit' => '121',
-  'number_parts' => '7',
-  'context' => '0',
-  'tab_parent' => 'admin/structure/block/manage/%/%',
-  'tab_root' => 'admin/structure/block/manage/%/%',
-  'title' => 'Delete block',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '132',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/block/block.admin.inc',
-))
-->values(array(
-  'path' => 'admin/structure/forum',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:17:"administer forums";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:14:"forum_overview";}',
-  'delivery_callback' => '',
-  'fit' => '7',
-  'number_parts' => '3',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/structure/forum',
-  'title' => 'Forums',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => 'Control forum hierarchy settings.',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/forum/forum.admin.inc',
-))
-->values(array(
-  'path' => 'admin/structure/forum/add/container',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:17:"administer forums";}',
-  'page_callback' => 'forum_form_main',
-  'page_arguments' => 'a:1:{i:0;s:9:"container";}',
-  'delivery_callback' => '',
-  'fit' => '31',
-  'number_parts' => '5',
-  'context' => '1',
-  'tab_parent' => 'admin/structure/forum',
-  'tab_root' => 'admin/structure/forum',
-  'title' => 'Add container',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '388',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/forum/forum.admin.inc',
-))
-->values(array(
-  'path' => 'admin/structure/forum/add/forum',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:17:"administer forums";}',
-  'page_callback' => 'forum_form_main',
-  'page_arguments' => 'a:1:{i:0;s:5:"forum";}',
-  'delivery_callback' => '',
-  'fit' => '31',
-  'number_parts' => '5',
-  'context' => '1',
-  'tab_parent' => 'admin/structure/forum',
-  'tab_root' => 'admin/structure/forum',
-  'title' => 'Add forum',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '388',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/forum/forum.admin.inc',
-))
-->values(array(
-  'path' => 'admin/structure/forum/edit/container/%',
-  'load_functions' => 'a:1:{i:5;s:18:"taxonomy_term_load";}',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:17:"administer forums";}',
-  'page_callback' => 'forum_form_main',
-  'page_arguments' => 'a:2:{i:0;s:9:"container";i:1;i:5;}',
-  'delivery_callback' => '',
-  'fit' => '62',
-  'number_parts' => '6',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/structure/forum/edit/container/%',
-  'title' => 'Edit container',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/forum/forum.admin.inc',
-))
-->values(array(
-  'path' => 'admin/structure/forum/edit/forum/%',
-  'load_functions' => 'a:1:{i:5;s:18:"taxonomy_term_load";}',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:17:"administer forums";}',
-  'page_callback' => 'forum_form_main',
-  'page_arguments' => 'a:2:{i:0;s:5:"forum";i:1;i:5;}',
-  'delivery_callback' => '',
-  'fit' => '62',
-  'number_parts' => '6',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/structure/forum/edit/forum/%',
-  'title' => 'Edit forum',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/forum/forum.admin.inc',
-))
-->values(array(
-  'path' => 'admin/structure/forum/list',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:17:"administer forums";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:14:"forum_overview";}',
-  'delivery_callback' => '',
-  'fit' => '15',
-  'number_parts' => '4',
-  'context' => '1',
-  'tab_parent' => 'admin/structure/forum',
-  'tab_root' => 'admin/structure/forum',
-  'title' => 'List',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '140',
-  'description' => '',
-  'position' => '',
-  'weight' => '-10',
-  'include_file' => 'modules/forum/forum.admin.inc',
-))
-->values(array(
-  'path' => 'admin/structure/forum/settings',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:17:"administer forums";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:20:"forum_admin_settings";}',
-  'delivery_callback' => '',
-  'fit' => '15',
-  'number_parts' => '4',
-  'context' => '1',
-  'tab_parent' => 'admin/structure/forum',
-  'tab_root' => 'admin/structure/forum',
-  'title' => 'Settings',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '132',
-  'description' => '',
-  'position' => '',
-  'weight' => '5',
-  'include_file' => 'modules/forum/forum.admin.inc',
-))
-->values(array(
-  'path' => 'admin/structure/menu',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
-  'page_callback' => 'menu_overview_page',
-  'page_arguments' => 'a:0:{}',
-  'delivery_callback' => '',
-  'fit' => '7',
-  'number_parts' => '3',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/structure/menu',
-  'title' => 'Menus',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => 'Add new menus to your site, edit existing menus, and rename and reorganize menu links.',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/menu/menu.admin.inc',
-))
-->values(array(
-  'path' => 'admin/structure/menu/add',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:14:"menu_edit_menu";i:1;s:3:"add";}',
-  'delivery_callback' => '',
-  'fit' => '15',
-  'number_parts' => '4',
-  'context' => '1',
-  'tab_parent' => 'admin/structure/menu',
-  'tab_root' => 'admin/structure/menu',
-  'title' => 'Add menu',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '388',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/menu/menu.admin.inc',
-))
-->values(array(
-  'path' => 'admin/structure/menu/item/%/delete',
-  'load_functions' => 'a:1:{i:4;s:14:"menu_link_load";}',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
-  'page_callback' => 'menu_item_delete_page',
-  'page_arguments' => 'a:1:{i:0;i:4;}',
-  'delivery_callback' => '',
-  'fit' => '61',
-  'number_parts' => '6',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/structure/menu/item/%/delete',
-  'title' => 'Delete menu link',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/menu/menu.admin.inc',
-))
-->values(array(
-  'path' => 'admin/structure/menu/item/%/edit',
-  'load_functions' => 'a:1:{i:4;s:14:"menu_link_load";}',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:4:{i:0;s:14:"menu_edit_item";i:1;s:4:"edit";i:2;i:4;i:3;N;}',
-  'delivery_callback' => '',
-  'fit' => '61',
-  'number_parts' => '6',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/structure/menu/item/%/edit',
-  'title' => 'Edit menu link',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/menu/menu.admin.inc',
-))
-->values(array(
-  'path' => 'admin/structure/menu/item/%/reset',
-  'load_functions' => 'a:1:{i:4;s:14:"menu_link_load";}',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:23:"menu_reset_item_confirm";i:1;i:4;}',
-  'delivery_callback' => '',
-  'fit' => '61',
-  'number_parts' => '6',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/structure/menu/item/%/reset',
-  'title' => 'Reset menu link',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/menu/menu.admin.inc',
-))
-->values(array(
-  'path' => 'admin/structure/menu/list',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
-  'page_callback' => 'menu_overview_page',
-  'page_arguments' => 'a:0:{}',
-  'delivery_callback' => '',
-  'fit' => '15',
-  'number_parts' => '4',
-  'context' => '1',
-  'tab_parent' => 'admin/structure/menu',
-  'tab_root' => 'admin/structure/menu',
-  'title' => 'List menus',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '140',
-  'description' => '',
-  'position' => '',
-  'weight' => '-10',
-  'include_file' => 'modules/menu/menu.admin.inc',
-))
-->values(array(
-  'path' => 'admin/structure/menu/manage/%',
-  'load_functions' => 'a:1:{i:4;s:9:"menu_load";}',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:18:"menu_overview_form";i:1;i:4;}',
-  'delivery_callback' => '',
-  'fit' => '30',
-  'number_parts' => '5',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/structure/menu/manage/%',
-  'title' => 'Customize menu',
-  'title_callback' => 'menu_overview_title',
-  'title_arguments' => 'a:1:{i:0;i:4;}',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/menu/menu.admin.inc',
-))
-->values(array(
-  'path' => 'admin/structure/menu/manage/%/add',
-  'load_functions' => 'a:1:{i:4;s:9:"menu_load";}',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:4:{i:0;s:14:"menu_edit_item";i:1;s:3:"add";i:2;N;i:3;i:4;}',
-  'delivery_callback' => '',
-  'fit' => '61',
-  'number_parts' => '6',
-  'context' => '1',
-  'tab_parent' => 'admin/structure/menu/manage/%',
-  'tab_root' => 'admin/structure/menu/manage/%',
-  'title' => 'Add link',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '388',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/menu/menu.admin.inc',
-))
-->values(array(
-  'path' => 'admin/structure/menu/manage/%/delete',
-  'load_functions' => 'a:1:{i:4;s:9:"menu_load";}',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
-  'page_callback' => 'menu_delete_menu_page',
-  'page_arguments' => 'a:1:{i:0;i:4;}',
-  'delivery_callback' => '',
-  'fit' => '61',
-  'number_parts' => '6',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/structure/menu/manage/%/delete',
-  'title' => 'Delete menu',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/menu/menu.admin.inc',
-))
-->values(array(
-  'path' => 'admin/structure/menu/manage/%/edit',
-  'load_functions' => 'a:1:{i:4;s:9:"menu_load";}',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:3:{i:0;s:14:"menu_edit_menu";i:1;s:4:"edit";i:2;i:4;}',
-  'delivery_callback' => '',
-  'fit' => '61',
-  'number_parts' => '6',
-  'context' => '3',
-  'tab_parent' => 'admin/structure/menu/manage/%',
-  'tab_root' => 'admin/structure/menu/manage/%',
-  'title' => 'Edit menu',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '132',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/menu/menu.admin.inc',
-))
-->values(array(
-  'path' => 'admin/structure/menu/manage/%/list',
-  'load_functions' => 'a:1:{i:4;s:9:"menu_load";}',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:18:"menu_overview_form";i:1;i:4;}',
-  'delivery_callback' => '',
-  'fit' => '61',
-  'number_parts' => '6',
-  'context' => '3',
-  'tab_parent' => 'admin/structure/menu/manage/%',
-  'tab_root' => 'admin/structure/menu/manage/%',
-  'title' => 'List links',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '140',
-  'description' => '',
-  'position' => '',
-  'weight' => '-10',
-  'include_file' => 'modules/menu/menu.admin.inc',
-))
-->values(array(
-  'path' => 'admin/structure/menu/parents',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
-  'page_callback' => 'menu_parent_options_js',
-  'page_arguments' => 'a:0:{}',
-  'delivery_callback' => '',
-  'fit' => '15',
-  'number_parts' => '4',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/structure/menu/parents',
-  'title' => 'Parent menu items',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '0',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => '',
-))
-->values(array(
-  'path' => 'admin/structure/menu/settings',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:14:"menu_configure";}',
-  'delivery_callback' => '',
-  'fit' => '15',
-  'number_parts' => '4',
-  'context' => '1',
-  'tab_parent' => 'admin/structure/menu',
-  'tab_root' => 'admin/structure/menu',
-  'title' => 'Settings',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '132',
-  'description' => '',
-  'position' => '',
-  'weight' => '5',
-  'include_file' => 'modules/menu/menu.admin.inc',
-))
-->values(array(
-  'path' => 'admin/structure/taxonomy',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:19:"administer taxonomy";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:30:"taxonomy_overview_vocabularies";}',
-  'delivery_callback' => '',
-  'fit' => '7',
-  'number_parts' => '3',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/structure/taxonomy',
-  'title' => 'Taxonomy',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => 'Manage tagging, categorization, and classification of your content.',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/taxonomy/taxonomy.admin.inc',
-))
-->values(array(
-  'path' => 'admin/structure/taxonomy/%',
-  'load_functions' => 'a:1:{i:3;s:37:"taxonomy_vocabulary_machine_name_load";}',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:19:"administer taxonomy";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:23:"taxonomy_overview_terms";i:1;i:3;}',
-  'delivery_callback' => '',
-  'fit' => '14',
-  'number_parts' => '4',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/structure/taxonomy/%',
-  'title' => '',
-  'title_callback' => 'entity_label',
-  'title_arguments' => 'a:2:{i:0;s:19:"taxonomy_vocabulary";i:1;i:3;}',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/taxonomy/taxonomy.admin.inc',
-))
-->values(array(
-  'path' => 'admin/structure/taxonomy/%/add',
-  'load_functions' => 'a:1:{i:3;s:37:"taxonomy_vocabulary_machine_name_load";}',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:19:"administer taxonomy";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:3:{i:0;s:18:"taxonomy_form_term";i:1;a:0:{}i:2;i:3;}',
-  'delivery_callback' => '',
-  'fit' => '29',
-  'number_parts' => '5',
-  'context' => '1',
-  'tab_parent' => 'admin/structure/taxonomy/%',
-  'tab_root' => 'admin/structure/taxonomy/%',
-  'title' => 'Add term',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '388',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/taxonomy/taxonomy.admin.inc',
-))
-->values(array(
-  'path' => 'admin/structure/taxonomy/%/display',
-  'load_functions' => 'a:1:{i:3;s:37:"taxonomy_vocabulary_machine_name_load";}',
-  'to_arg_functions' => '',
-  'access_callback' => 'field_ui_admin_access',
-  'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:19:"administer taxonomy";}}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:4:{i:0;s:30:"field_ui_display_overview_form";i:1;s:13:"taxonomy_term";i:2;i:3;i:3;s:7:"default";}',
-  'delivery_callback' => '',
-  'fit' => '29',
-  'number_parts' => '5',
-  'context' => '1',
-  'tab_parent' => 'admin/structure/taxonomy/%',
-  'tab_root' => 'admin/structure/taxonomy/%',
-  'title' => 'Manage display',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '132',
-  'description' => '',
-  'position' => '',
-  'weight' => '2',
-  'include_file' => 'modules/field_ui/field_ui.admin.inc',
-))
-->values(array(
-  'path' => 'admin/structure/taxonomy/%/display/default',
-  'load_functions' => 'a:1:{i:3;s:37:"taxonomy_vocabulary_machine_name_load";}',
-  'to_arg_functions' => '',
-  'access_callback' => '_field_ui_view_mode_menu_access',
-  'access_arguments' => 'a:6:{i:0;s:13:"taxonomy_term";i:1;i:3;i:2;s:7:"default";i:3;s:21:"field_ui_admin_access";i:4;s:11:"user_access";i:5;a:1:{i:0;s:19:"administer taxonomy";}}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:4:{i:0;s:30:"field_ui_display_overview_form";i:1;s:13:"taxonomy_term";i:2;i:3;i:3;s:7:"default";}',
-  'delivery_callback' => '',
-  'fit' => '59',
-  'number_parts' => '6',
-  'context' => '1',
-  'tab_parent' => 'admin/structure/taxonomy/%/display',
-  'tab_root' => 'admin/structure/taxonomy/%',
-  'title' => 'Default',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '140',
-  'description' => '',
-  'position' => '',
-  'weight' => '-10',
-  'include_file' => 'modules/field_ui/field_ui.admin.inc',
-))
-->values(array(
-  'path' => 'admin/structure/taxonomy/%/display/full',
-  'load_functions' => 'a:1:{i:3;s:37:"taxonomy_vocabulary_machine_name_load";}',
-  'to_arg_functions' => '',
-  'access_callback' => '_field_ui_view_mode_menu_access',
-  'access_arguments' => 'a:6:{i:0;s:13:"taxonomy_term";i:1;i:3;i:2;s:4:"full";i:3;s:21:"field_ui_admin_access";i:4;s:11:"user_access";i:5;a:1:{i:0;s:19:"administer taxonomy";}}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:4:{i:0;s:30:"field_ui_display_overview_form";i:1;s:13:"taxonomy_term";i:2;i:3;i:3;s:4:"full";}',
-  'delivery_callback' => '',
-  'fit' => '59',
-  'number_parts' => '6',
-  'context' => '1',
-  'tab_parent' => 'admin/structure/taxonomy/%/display',
-  'tab_root' => 'admin/structure/taxonomy/%',
-  'title' => 'Taxonomy term page',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '132',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/field_ui/field_ui.admin.inc',
-))
-->values(array(
-  'path' => 'admin/structure/taxonomy/%/edit',
-  'load_functions' => 'a:1:{i:3;s:37:"taxonomy_vocabulary_machine_name_load";}',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:19:"administer taxonomy";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:24:"taxonomy_form_vocabulary";i:1;i:3;}',
-  'delivery_callback' => '',
-  'fit' => '29',
-  'number_parts' => '5',
-  'context' => '1',
-  'tab_parent' => 'admin/structure/taxonomy/%',
-  'tab_root' => 'admin/structure/taxonomy/%',
-  'title' => 'Edit',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '132',
-  'description' => '',
-  'position' => '',
-  'weight' => '-10',
-  'include_file' => 'modules/taxonomy/taxonomy.admin.inc',
-))
-->values(array(
-  'path' => 'admin/structure/taxonomy/%/fields',
-  'load_functions' => 'a:1:{i:3;s:37:"taxonomy_vocabulary_machine_name_load";}',
-  'to_arg_functions' => '',
-  'access_callback' => 'field_ui_admin_access',
-  'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:19:"administer taxonomy";}}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:3:{i:0;s:28:"field_ui_field_overview_form";i:1;s:13:"taxonomy_term";i:2;i:3;}',
-  'delivery_callback' => '',
-  'fit' => '29',
-  'number_parts' => '5',
-  'context' => '1',
-  'tab_parent' => 'admin/structure/taxonomy/%',
-  'tab_root' => 'admin/structure/taxonomy/%',
-  'title' => 'Manage fields',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '132',
-  'description' => '',
-  'position' => '',
-  'weight' => '1',
-  'include_file' => 'modules/field_ui/field_ui.admin.inc',
-))
-->values(array(
-  'path' => 'admin/structure/taxonomy/%/fields/%',
-  'load_functions' => 'a:2:{i:3;a:1:{s:37:"taxonomy_vocabulary_machine_name_load";a:4:{i:0;s:13:"taxonomy_term";i:1;i:3;i:2;s:1:"3";i:3;s:4:"%map";}}i:5;a:1:{s:18:"field_ui_menu_load";a:4:{i:0;s:13:"taxonomy_term";i:1;i:3;i:2;s:1:"3";i:3;s:4:"%map";}}}',
-  'to_arg_functions' => '',
-  'access_callback' => 'field_ui_admin_access',
-  'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:19:"administer taxonomy";}}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:24:"field_ui_field_edit_form";i:1;i:5;}',
-  'delivery_callback' => '',
-  'fit' => '58',
-  'number_parts' => '6',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/structure/taxonomy/%/fields/%',
-  'title' => '',
-  'title_callback' => 'field_ui_menu_title',
-  'title_arguments' => 'a:1:{i:0;i:5;}',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/field_ui/field_ui.admin.inc',
-))
-->values(array(
-  'path' => 'admin/structure/taxonomy/%/fields/%/delete',
-  'load_functions' => 'a:2:{i:3;a:1:{s:37:"taxonomy_vocabulary_machine_name_load";a:4:{i:0;s:13:"taxonomy_term";i:1;i:3;i:2;s:1:"3";i:3;s:4:"%map";}}i:5;a:1:{s:18:"field_ui_menu_load";a:4:{i:0;s:13:"taxonomy_term";i:1;i:3;i:2;s:1:"3";i:3;s:4:"%map";}}}',
-  'to_arg_functions' => '',
-  'access_callback' => 'field_ui_admin_access',
-  'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:19:"administer taxonomy";}}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:26:"field_ui_field_delete_form";i:1;i:5;}',
-  'delivery_callback' => '',
-  'fit' => '117',
-  'number_parts' => '7',
-  'context' => '1',
-  'tab_parent' => 'admin/structure/taxonomy/%/fields/%',
-  'tab_root' => 'admin/structure/taxonomy/%/fields/%',
-  'title' => 'Delete',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '132',
-  'description' => '',
-  'position' => '',
-  'weight' => '10',
-  'include_file' => 'modules/field_ui/field_ui.admin.inc',
-))
-->values(array(
-  'path' => 'admin/structure/taxonomy/%/fields/%/edit',
-  'load_functions' => 'a:2:{i:3;a:1:{s:37:"taxonomy_vocabulary_machine_name_load";a:4:{i:0;s:13:"taxonomy_term";i:1;i:3;i:2;s:1:"3";i:3;s:4:"%map";}}i:5;a:1:{s:18:"field_ui_menu_load";a:4:{i:0;s:13:"taxonomy_term";i:1;i:3;i:2;s:1:"3";i:3;s:4:"%map";}}}',
-  'to_arg_functions' => '',
-  'access_callback' => 'field_ui_admin_access',
-  'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:19:"administer taxonomy";}}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:24:"field_ui_field_edit_form";i:1;i:5;}',
-  'delivery_callback' => '',
-  'fit' => '117',
-  'number_parts' => '7',
-  'context' => '1',
-  'tab_parent' => 'admin/structure/taxonomy/%/fields/%',
-  'tab_root' => 'admin/structure/taxonomy/%/fields/%',
-  'title' => 'Edit',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '140',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/field_ui/field_ui.admin.inc',
-))
-->values(array(
-  'path' => 'admin/structure/taxonomy/%/fields/%/field-settings',
-  'load_functions' => 'a:2:{i:3;a:1:{s:37:"taxonomy_vocabulary_machine_name_load";a:4:{i:0;s:13:"taxonomy_term";i:1;i:3;i:2;s:1:"3";i:3;s:4:"%map";}}i:5;a:1:{s:18:"field_ui_menu_load";a:4:{i:0;s:13:"taxonomy_term";i:1;i:3;i:2;s:1:"3";i:3;s:4:"%map";}}}',
-  'to_arg_functions' => '',
-  'access_callback' => 'field_ui_admin_access',
-  'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:19:"administer taxonomy";}}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:28:"field_ui_field_settings_form";i:1;i:5;}',
-  'delivery_callback' => '',
-  'fit' => '117',
-  'number_parts' => '7',
-  'context' => '1',
-  'tab_parent' => 'admin/structure/taxonomy/%/fields/%',
-  'tab_root' => 'admin/structure/taxonomy/%/fields/%',
-  'title' => 'Field settings',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '132',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/field_ui/field_ui.admin.inc',
-))
-->values(array(
-  'path' => 'admin/structure/taxonomy/%/fields/%/widget-type',
-  'load_functions' => 'a:2:{i:3;a:1:{s:37:"taxonomy_vocabulary_machine_name_load";a:4:{i:0;s:13:"taxonomy_term";i:1;i:3;i:2;s:1:"3";i:3;s:4:"%map";}}i:5;a:1:{s:18:"field_ui_menu_load";a:4:{i:0;s:13:"taxonomy_term";i:1;i:3;i:2;s:1:"3";i:3;s:4:"%map";}}}',
-  'to_arg_functions' => '',
-  'access_callback' => 'field_ui_admin_access',
-  'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:19:"administer taxonomy";}}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:25:"field_ui_widget_type_form";i:1;i:5;}',
-  'delivery_callback' => '',
-  'fit' => '117',
-  'number_parts' => '7',
-  'context' => '1',
-  'tab_parent' => 'admin/structure/taxonomy/%/fields/%',
-  'tab_root' => 'admin/structure/taxonomy/%/fields/%',
-  'title' => 'Widget type',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '132',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/field_ui/field_ui.admin.inc',
-))
-->values(array(
-  'path' => 'admin/structure/taxonomy/%/list',
-  'load_functions' => 'a:1:{i:3;s:37:"taxonomy_vocabulary_machine_name_load";}',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:19:"administer taxonomy";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:23:"taxonomy_overview_terms";i:1;i:3;}',
-  'delivery_callback' => '',
-  'fit' => '29',
-  'number_parts' => '5',
-  'context' => '1',
-  'tab_parent' => 'admin/structure/taxonomy/%',
-  'tab_root' => 'admin/structure/taxonomy/%',
-  'title' => 'List',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '140',
-  'description' => '',
-  'position' => '',
-  'weight' => '-20',
-  'include_file' => 'modules/taxonomy/taxonomy.admin.inc',
-))
-->values(array(
-  'path' => 'admin/structure/taxonomy/%/list/list',
-  'load_functions' => 'a:1:{i:3;s:37:"taxonomy_vocabulary_machine_name_load";}',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:19:"administer taxonomy";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:23:"taxonomy_overview_terms";i:1;i:3;}',
-  'delivery_callback' => '',
-  'fit' => '59',
-  'number_parts' => '6',
-  'context' => '1',
-  'tab_parent' => 'admin/structure/taxonomy/%/list',
-  'tab_root' => 'admin/structure/taxonomy/%',
-  'title' => 'Terms',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '140',
-  'description' => '',
-  'position' => '',
-  'weight' => '-20',
-  'include_file' => 'modules/taxonomy/taxonomy.admin.inc',
-))
-->values(array(
-  'path' => 'admin/structure/taxonomy/%/list/sets',
-  'load_functions' => 'a:1:{i:3;s:37:"taxonomy_vocabulary_machine_name_load";}',
-  'to_arg_functions' => '',
-  'access_callback' => 'i18n_taxonomy_vocabulary_translation_tab_sets_access',
-  'access_arguments' => 'a:1:{i:0;i:3;}',
-  'page_callback' => 'i18n_taxonomy_translation_sets_overview',
-  'page_arguments' => 'a:1:{i:0;i:3;}',
-  'delivery_callback' => '',
-  'fit' => '59',
-  'number_parts' => '6',
-  'context' => '1',
-  'tab_parent' => 'admin/structure/taxonomy/%/list',
-  'tab_root' => 'admin/structure/taxonomy/%',
-  'title' => 'Translation sets',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '132',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'sites/all/modules/i18n/i18n_taxonomy/i18n_taxonomy.admin.inc',
-))
-->values(array(
-  'path' => 'admin/structure/taxonomy/%/list/sets/add',
-  'load_functions' => 'a:1:{i:3;s:37:"taxonomy_vocabulary_machine_name_load";}',
-  'to_arg_functions' => '',
-  'access_callback' => 'i18n_taxonomy_vocabulary_translation_tab_sets_access',
-  'access_arguments' => 'a:1:{i:0;i:3;}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:35:"i18n_taxonomy_translation_term_form";i:1;i:3;}',
-  'delivery_callback' => '',
-  'fit' => '119',
-  'number_parts' => '7',
-  'context' => '1',
-  'tab_parent' => 'admin/structure/taxonomy/%/list/sets',
-  'tab_root' => 'admin/structure/taxonomy/%',
-  'title' => 'Create new translation',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '388',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'sites/all/modules/i18n/i18n_taxonomy/i18n_taxonomy.admin.inc',
-))
-->values(array(
-  'path' => 'admin/structure/taxonomy/%/list/sets/delete/%',
-  'load_functions' => 'a:2:{i:3;s:37:"taxonomy_vocabulary_machine_name_load";i:7;s:34:"i18n_taxonomy_translation_set_load";}',
-  'to_arg_functions' => '',
-  'access_callback' => 'i18n_taxonomy_vocabulary_translation_tab_sets_access',
-  'access_arguments' => 'a:1:{i:0;i:3;}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:35:"i18n_translation_set_delete_confirm";i:1;i:7;}',
-  'delivery_callback' => '',
-  'fit' => '238',
-  'number_parts' => '8',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/structure/taxonomy/%/list/sets/delete/%',
-  'title' => 'Delete translation',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '0',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => '',
-))
-->values(array(
-  'path' => 'admin/structure/taxonomy/%/list/sets/edit/%',
-  'load_functions' => 'a:2:{i:3;s:37:"taxonomy_vocabulary_machine_name_load";i:7;s:34:"i18n_taxonomy_translation_set_load";}',
-  'to_arg_functions' => '',
-  'access_callback' => 'i18n_taxonomy_vocabulary_translation_tab_sets_access',
-  'access_arguments' => 'a:1:{i:0;i:3;}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:3:{i:0;s:35:"i18n_taxonomy_translation_term_form";i:1;i:3;i:2;i:7;}',
-  'delivery_callback' => '',
-  'fit' => '238',
-  'number_parts' => '8',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/structure/taxonomy/%/list/sets/edit/%',
-  'title' => 'Edit translation',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '0',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'sites/all/modules/i18n/i18n_taxonomy/i18n_taxonomy.admin.inc',
-))
-->values(array(
-  'path' => 'admin/structure/taxonomy/%/translate',
-  'load_functions' => 'a:1:{i:3;s:37:"taxonomy_vocabulary_machine_name_load";}',
-  'to_arg_functions' => '',
-  'access_callback' => 'i18n_object_translate_access',
-  'access_arguments' => 'a:2:{i:0;s:19:"taxonomy_vocabulary";i:1;i:3;}',
-  'page_callback' => 'i18n_page_translate_localize',
-  'page_arguments' => 'a:2:{i:0;s:19:"taxonomy_vocabulary";i:1;i:3;}',
-  'delivery_callback' => '',
-  'fit' => '29',
-  'number_parts' => '5',
-  'context' => '1',
-  'tab_parent' => 'admin/structure/taxonomy/%',
-  'tab_root' => 'admin/structure/taxonomy/%',
-  'title' => 'Translate',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '132',
-  'description' => '',
-  'position' => '',
-  'weight' => '10',
-  'include_file' => 'sites/all/modules/i18n/i18n.pages.inc',
-))
-->values(array(
-  'path' => 'admin/structure/taxonomy/%/translate/%',
-  'load_functions' => 'a:2:{i:3;s:37:"taxonomy_vocabulary_machine_name_load";i:5;s:18:"i18n_language_load";}',
-  'to_arg_functions' => '',
-  'access_callback' => 'i18n_object_translate_access',
-  'access_arguments' => 'a:2:{i:0;s:19:"taxonomy_vocabulary";i:1;i:3;}',
-  'page_callback' => 'i18n_page_translate_localize',
-  'page_arguments' => 'a:3:{i:0;s:19:"taxonomy_vocabulary";i:1;i:3;i:2;i:5;}',
-  'delivery_callback' => '',
-  'fit' => '58',
-  'number_parts' => '6',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/structure/taxonomy/%/translate/%',
-  'title' => 'Translate',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '0',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'sites/all/modules/i18n/i18n.pages.inc',
-))
-->values(array(
-  'path' => 'admin/structure/taxonomy/add',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:19:"administer taxonomy";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:24:"taxonomy_form_vocabulary";}',
-  'delivery_callback' => '',
-  'fit' => '15',
-  'number_parts' => '4',
-  'context' => '1',
-  'tab_parent' => 'admin/structure/taxonomy',
-  'tab_root' => 'admin/structure/taxonomy',
-  'title' => 'Add vocabulary',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '388',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/taxonomy/taxonomy.admin.inc',
-))
-->values(array(
-  'path' => 'admin/structure/taxonomy/list',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:19:"administer taxonomy";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:30:"taxonomy_overview_vocabularies";}',
-  'delivery_callback' => '',
-  'fit' => '15',
-  'number_parts' => '4',
-  'context' => '1',
-  'tab_parent' => 'admin/structure/taxonomy',
-  'tab_root' => 'admin/structure/taxonomy',
-  'title' => 'List',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '140',
-  'description' => '',
-  'position' => '',
-  'weight' => '-10',
-  'include_file' => 'modules/taxonomy/taxonomy.admin.inc',
-))
-->values(array(
-  'path' => 'admin/structure/types',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
-  'page_callback' => 'node_overview_types',
-  'page_arguments' => 'a:0:{}',
-  'delivery_callback' => '',
-  'fit' => '7',
-  'number_parts' => '3',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/structure/types',
-  'title' => 'Content types',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => 'Manage content types, including default status, front page promotion, comment settings, etc.',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/node/content_types.inc',
-))
-->values(array(
-  'path' => 'admin/structure/types/add',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:14:"node_type_form";}',
-  'delivery_callback' => '',
-  'fit' => '15',
-  'number_parts' => '4',
-  'context' => '1',
-  'tab_parent' => 'admin/structure/types',
-  'tab_root' => 'admin/structure/types',
-  'title' => 'Add content type',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '388',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/node/content_types.inc',
-))
-->values(array(
-  'path' => 'admin/structure/types/list',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
-  'page_callback' => 'node_overview_types',
-  'page_arguments' => 'a:0:{}',
-  'delivery_callback' => '',
-  'fit' => '15',
-  'number_parts' => '4',
-  'context' => '1',
-  'tab_parent' => 'admin/structure/types',
-  'tab_root' => 'admin/structure/types',
-  'title' => 'List',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '140',
-  'description' => '',
-  'position' => '',
-  'weight' => '-10',
-  'include_file' => 'modules/node/content_types.inc',
-))
-->values(array(
-  'path' => 'admin/structure/types/manage/%',
-  'load_functions' => 'a:1:{i:4;s:14:"node_type_load";}',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:14:"node_type_form";i:1;i:4;}',
-  'delivery_callback' => '',
-  'fit' => '30',
-  'number_parts' => '5',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/structure/types/manage/%',
-  'title' => 'Edit content type',
-  'title_callback' => 'node_type_page_title',
-  'title_arguments' => 'a:1:{i:0;i:4;}',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/node/content_types.inc',
-))
-->values(array(
-  'path' => 'admin/structure/types/manage/%/comment/display',
-  'load_functions' => 'a:1:{i:4;s:22:"comment_node_type_load";}',
-  'to_arg_functions' => '',
-  'access_callback' => 'field_ui_admin_access',
-  'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:24:"administer content types";}}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:4:{i:0;s:30:"field_ui_display_overview_form";i:1;s:7:"comment";i:2;i:4;i:3;s:7:"default";}',
-  'delivery_callback' => '',
-  'fit' => '123',
-  'number_parts' => '7',
-  'context' => '1',
-  'tab_parent' => 'admin/structure/types/manage/%',
-  'tab_root' => 'admin/structure/types/manage/%',
-  'title' => 'Comment display',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '132',
-  'description' => '',
-  'position' => '',
-  'weight' => '4',
-  'include_file' => 'modules/field_ui/field_ui.admin.inc',
-))
-->values(array(
-  'path' => 'admin/structure/types/manage/%/comment/display/default',
-  'load_functions' => 'a:1:{i:4;s:22:"comment_node_type_load";}',
-  'to_arg_functions' => '',
-  'access_callback' => '_field_ui_view_mode_menu_access',
-  'access_arguments' => 'a:6:{i:0;s:7:"comment";i:1;i:4;i:2;s:7:"default";i:3;s:21:"field_ui_admin_access";i:4;s:11:"user_access";i:5;a:1:{i:0;s:24:"administer content types";}}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:4:{i:0;s:30:"field_ui_display_overview_form";i:1;s:7:"comment";i:2;i:4;i:3;s:7:"default";}',
-  'delivery_callback' => '',
-  'fit' => '247',
-  'number_parts' => '8',
-  'context' => '1',
-  'tab_parent' => 'admin/structure/types/manage/%/comment/display',
-  'tab_root' => 'admin/structure/types/manage/%',
-  'title' => 'Default',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '140',
-  'description' => '',
-  'position' => '',
-  'weight' => '-10',
-  'include_file' => 'modules/field_ui/field_ui.admin.inc',
-))
-->values(array(
-  'path' => 'admin/structure/types/manage/%/comment/display/full',
-  'load_functions' => 'a:1:{i:4;s:22:"comment_node_type_load";}',
-  'to_arg_functions' => '',
-  'access_callback' => '_field_ui_view_mode_menu_access',
-  'access_arguments' => 'a:6:{i:0;s:7:"comment";i:1;i:4;i:2;s:4:"full";i:3;s:21:"field_ui_admin_access";i:4;s:11:"user_access";i:5;a:1:{i:0;s:24:"administer content types";}}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:4:{i:0;s:30:"field_ui_display_overview_form";i:1;s:7:"comment";i:2;i:4;i:3;s:4:"full";}',
-  'delivery_callback' => '',
-  'fit' => '247',
-  'number_parts' => '8',
-  'context' => '1',
-  'tab_parent' => 'admin/structure/types/manage/%/comment/display',
-  'tab_root' => 'admin/structure/types/manage/%',
-  'title' => 'Full comment',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '132',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/field_ui/field_ui.admin.inc',
-))
-->values(array(
-  'path' => 'admin/structure/types/manage/%/comment/fields',
-  'load_functions' => 'a:1:{i:4;s:22:"comment_node_type_load";}',
-  'to_arg_functions' => '',
-  'access_callback' => 'field_ui_admin_access',
-  'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:24:"administer content types";}}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:3:{i:0;s:28:"field_ui_field_overview_form";i:1;s:7:"comment";i:2;i:4;}',
-  'delivery_callback' => '',
-  'fit' => '123',
-  'number_parts' => '7',
-  'context' => '1',
-  'tab_parent' => 'admin/structure/types/manage/%',
-  'tab_root' => 'admin/structure/types/manage/%',
-  'title' => 'Comment fields',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '132',
-  'description' => '',
-  'position' => '',
-  'weight' => '3',
-  'include_file' => 'modules/field_ui/field_ui.admin.inc',
-))
-->values(array(
-  'path' => 'admin/structure/types/manage/%/comment/fields/%',
-  'load_functions' => 'a:2:{i:4;a:1:{s:22:"comment_node_type_load";a:4:{i:0;s:7:"comment";i:1;i:4;i:2;s:1:"4";i:3;s:4:"%map";}}i:7;a:1:{s:18:"field_ui_menu_load";a:4:{i:0;s:7:"comment";i:1;i:4;i:2;s:1:"4";i:3;s:4:"%map";}}}',
-  'to_arg_functions' => '',
-  'access_callback' => 'field_ui_admin_access',
-  'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:24:"administer content types";}}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:24:"field_ui_field_edit_form";i:1;i:7;}',
-  'delivery_callback' => '',
-  'fit' => '246',
-  'number_parts' => '8',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/structure/types/manage/%/comment/fields/%',
-  'title' => '',
-  'title_callback' => 'field_ui_menu_title',
-  'title_arguments' => 'a:1:{i:0;i:7;}',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/field_ui/field_ui.admin.inc',
-))
-->values(array(
-  'path' => 'admin/structure/types/manage/%/comment/fields/%/delete',
-  'load_functions' => 'a:2:{i:4;a:1:{s:22:"comment_node_type_load";a:4:{i:0;s:7:"comment";i:1;i:4;i:2;s:1:"4";i:3;s:4:"%map";}}i:7;a:1:{s:18:"field_ui_menu_load";a:4:{i:0;s:7:"comment";i:1;i:4;i:2;s:1:"4";i:3;s:4:"%map";}}}',
-  'to_arg_functions' => '',
-  'access_callback' => 'field_ui_admin_access',
-  'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:24:"administer content types";}}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:26:"field_ui_field_delete_form";i:1;i:7;}',
-  'delivery_callback' => '',
-  'fit' => '493',
-  'number_parts' => '9',
-  'context' => '1',
-  'tab_parent' => 'admin/structure/types/manage/%/comment/fields/%',
-  'tab_root' => 'admin/structure/types/manage/%/comment/fields/%',
-  'title' => 'Delete',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '132',
-  'description' => '',
-  'position' => '',
-  'weight' => '10',
-  'include_file' => 'modules/field_ui/field_ui.admin.inc',
-))
-->values(array(
-  'path' => 'admin/structure/types/manage/%/comment/fields/%/edit',
-  'load_functions' => 'a:2:{i:4;a:1:{s:22:"comment_node_type_load";a:4:{i:0;s:7:"comment";i:1;i:4;i:2;s:1:"4";i:3;s:4:"%map";}}i:7;a:1:{s:18:"field_ui_menu_load";a:4:{i:0;s:7:"comment";i:1;i:4;i:2;s:1:"4";i:3;s:4:"%map";}}}',
-  'to_arg_functions' => '',
-  'access_callback' => 'field_ui_admin_access',
-  'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:24:"administer content types";}}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:24:"field_ui_field_edit_form";i:1;i:7;}',
-  'delivery_callback' => '',
-  'fit' => '493',
-  'number_parts' => '9',
-  'context' => '1',
-  'tab_parent' => 'admin/structure/types/manage/%/comment/fields/%',
-  'tab_root' => 'admin/structure/types/manage/%/comment/fields/%',
-  'title' => 'Edit',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '140',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/field_ui/field_ui.admin.inc',
-))
-->values(array(
-  'path' => 'admin/structure/types/manage/%/comment/fields/%/field-settings',
-  'load_functions' => 'a:2:{i:4;a:1:{s:22:"comment_node_type_load";a:4:{i:0;s:7:"comment";i:1;i:4;i:2;s:1:"4";i:3;s:4:"%map";}}i:7;a:1:{s:18:"field_ui_menu_load";a:4:{i:0;s:7:"comment";i:1;i:4;i:2;s:1:"4";i:3;s:4:"%map";}}}',
-  'to_arg_functions' => '',
-  'access_callback' => 'field_ui_admin_access',
-  'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:24:"administer content types";}}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:28:"field_ui_field_settings_form";i:1;i:7;}',
-  'delivery_callback' => '',
-  'fit' => '493',
-  'number_parts' => '9',
-  'context' => '1',
-  'tab_parent' => 'admin/structure/types/manage/%/comment/fields/%',
-  'tab_root' => 'admin/structure/types/manage/%/comment/fields/%',
-  'title' => 'Field settings',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '132',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/field_ui/field_ui.admin.inc',
-))
-->values(array(
-  'path' => 'admin/structure/types/manage/%/comment/fields/%/widget-type',
-  'load_functions' => 'a:2:{i:4;a:1:{s:22:"comment_node_type_load";a:4:{i:0;s:7:"comment";i:1;i:4;i:2;s:1:"4";i:3;s:4:"%map";}}i:7;a:1:{s:18:"field_ui_menu_load";a:4:{i:0;s:7:"comment";i:1;i:4;i:2;s:1:"4";i:3;s:4:"%map";}}}',
-  'to_arg_functions' => '',
-  'access_callback' => 'field_ui_admin_access',
-  'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:24:"administer content types";}}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:25:"field_ui_widget_type_form";i:1;i:7;}',
-  'delivery_callback' => '',
-  'fit' => '493',
-  'number_parts' => '9',
-  'context' => '1',
-  'tab_parent' => 'admin/structure/types/manage/%/comment/fields/%',
-  'tab_root' => 'admin/structure/types/manage/%/comment/fields/%',
-  'title' => 'Widget type',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '132',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/field_ui/field_ui.admin.inc',
-))
-->values(array(
-  'path' => 'admin/structure/types/manage/%/delete',
-  'load_functions' => 'a:1:{i:4;s:14:"node_type_load";}',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:24:"node_type_delete_confirm";i:1;i:4;}',
-  'delivery_callback' => '',
-  'fit' => '61',
-  'number_parts' => '6',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/structure/types/manage/%/delete',
-  'title' => 'Delete',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/node/content_types.inc',
-))
-->values(array(
-  'path' => 'admin/structure/types/manage/%/display',
-  'load_functions' => 'a:1:{i:4;s:14:"node_type_load";}',
-  'to_arg_functions' => '',
-  'access_callback' => 'field_ui_admin_access',
-  'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:24:"administer content types";}}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:4:{i:0;s:30:"field_ui_display_overview_form";i:1;s:4:"node";i:2;i:4;i:3;s:7:"default";}',
-  'delivery_callback' => '',
-  'fit' => '61',
-  'number_parts' => '6',
-  'context' => '1',
-  'tab_parent' => 'admin/structure/types/manage/%',
-  'tab_root' => 'admin/structure/types/manage/%',
-  'title' => 'Manage display',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '132',
-  'description' => '',
-  'position' => '',
-  'weight' => '2',
-  'include_file' => 'modules/field_ui/field_ui.admin.inc',
-))
-->values(array(
-  'path' => 'admin/structure/types/manage/%/display/default',
-  'load_functions' => 'a:1:{i:4;s:14:"node_type_load";}',
-  'to_arg_functions' => '',
-  'access_callback' => '_field_ui_view_mode_menu_access',
-  'access_arguments' => 'a:6:{i:0;s:4:"node";i:1;i:4;i:2;s:7:"default";i:3;s:21:"field_ui_admin_access";i:4;s:11:"user_access";i:5;a:1:{i:0;s:24:"administer content types";}}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:4:{i:0;s:30:"field_ui_display_overview_form";i:1;s:4:"node";i:2;i:4;i:3;s:7:"default";}',
-  'delivery_callback' => '',
-  'fit' => '123',
-  'number_parts' => '7',
-  'context' => '1',
-  'tab_parent' => 'admin/structure/types/manage/%/display',
-  'tab_root' => 'admin/structure/types/manage/%',
-  'title' => 'Default',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '140',
-  'description' => '',
-  'position' => '',
-  'weight' => '-10',
-  'include_file' => 'modules/field_ui/field_ui.admin.inc',
-))
-->values(array(
-  'path' => 'admin/structure/types/manage/%/display/full',
-  'load_functions' => 'a:1:{i:4;s:14:"node_type_load";}',
-  'to_arg_functions' => '',
-  'access_callback' => '_field_ui_view_mode_menu_access',
-  'access_arguments' => 'a:6:{i:0;s:4:"node";i:1;i:4;i:2;s:4:"full";i:3;s:21:"field_ui_admin_access";i:4;s:11:"user_access";i:5;a:1:{i:0;s:24:"administer content types";}}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:4:{i:0;s:30:"field_ui_display_overview_form";i:1;s:4:"node";i:2;i:4;i:3;s:4:"full";}',
-  'delivery_callback' => '',
-  'fit' => '123',
-  'number_parts' => '7',
-  'context' => '1',
-  'tab_parent' => 'admin/structure/types/manage/%/display',
-  'tab_root' => 'admin/structure/types/manage/%',
-  'title' => 'Full content',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '132',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/field_ui/field_ui.admin.inc',
-))
-->values(array(
-  'path' => 'admin/structure/types/manage/%/display/rss',
-  'load_functions' => 'a:1:{i:4;s:14:"node_type_load";}',
-  'to_arg_functions' => '',
-  'access_callback' => '_field_ui_view_mode_menu_access',
-  'access_arguments' => 'a:6:{i:0;s:4:"node";i:1;i:4;i:2;s:3:"rss";i:3;s:21:"field_ui_admin_access";i:4;s:11:"user_access";i:5;a:1:{i:0;s:24:"administer content types";}}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:4:{i:0;s:30:"field_ui_display_overview_form";i:1;s:4:"node";i:2;i:4;i:3;s:3:"rss";}',
-  'delivery_callback' => '',
-  'fit' => '123',
-  'number_parts' => '7',
-  'context' => '1',
-  'tab_parent' => 'admin/structure/types/manage/%/display',
-  'tab_root' => 'admin/structure/types/manage/%',
-  'title' => 'RSS',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '132',
-  'description' => '',
-  'position' => '',
-  'weight' => '2',
-  'include_file' => 'modules/field_ui/field_ui.admin.inc',
-))
-->values(array(
-  'path' => 'admin/structure/types/manage/%/display/search_index',
-  'load_functions' => 'a:1:{i:4;s:14:"node_type_load";}',
-  'to_arg_functions' => '',
-  'access_callback' => '_field_ui_view_mode_menu_access',
-  'access_arguments' => 'a:6:{i:0;s:4:"node";i:1;i:4;i:2;s:12:"search_index";i:3;s:21:"field_ui_admin_access";i:4;s:11:"user_access";i:5;a:1:{i:0;s:24:"administer content types";}}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:4:{i:0;s:30:"field_ui_display_overview_form";i:1;s:4:"node";i:2;i:4;i:3;s:12:"search_index";}',
-  'delivery_callback' => '',
-  'fit' => '123',
-  'number_parts' => '7',
-  'context' => '1',
-  'tab_parent' => 'admin/structure/types/manage/%/display',
-  'tab_root' => 'admin/structure/types/manage/%',
-  'title' => 'Search index',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '132',
-  'description' => '',
-  'position' => '',
-  'weight' => '3',
-  'include_file' => 'modules/field_ui/field_ui.admin.inc',
-))
-->values(array(
-  'path' => 'admin/structure/types/manage/%/display/search_result',
-  'load_functions' => 'a:1:{i:4;s:14:"node_type_load";}',
-  'to_arg_functions' => '',
-  'access_callback' => '_field_ui_view_mode_menu_access',
-  'access_arguments' => 'a:6:{i:0;s:4:"node";i:1;i:4;i:2;s:13:"search_result";i:3;s:21:"field_ui_admin_access";i:4;s:11:"user_access";i:5;a:1:{i:0;s:24:"administer content types";}}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:4:{i:0;s:30:"field_ui_display_overview_form";i:1;s:4:"node";i:2;i:4;i:3;s:13:"search_result";}',
-  'delivery_callback' => '',
-  'fit' => '123',
-  'number_parts' => '7',
-  'context' => '1',
-  'tab_parent' => 'admin/structure/types/manage/%/display',
-  'tab_root' => 'admin/structure/types/manage/%',
-  'title' => 'Search result highlighting input',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '132',
-  'description' => '',
-  'position' => '',
-  'weight' => '4',
-  'include_file' => 'modules/field_ui/field_ui.admin.inc',
-))
-->values(array(
-  'path' => 'admin/structure/types/manage/%/display/teaser',
-  'load_functions' => 'a:1:{i:4;s:14:"node_type_load";}',
-  'to_arg_functions' => '',
-  'access_callback' => '_field_ui_view_mode_menu_access',
-  'access_arguments' => 'a:6:{i:0;s:4:"node";i:1;i:4;i:2;s:6:"teaser";i:3;s:21:"field_ui_admin_access";i:4;s:11:"user_access";i:5;a:1:{i:0;s:24:"administer content types";}}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:4:{i:0;s:30:"field_ui_display_overview_form";i:1;s:4:"node";i:2;i:4;i:3;s:6:"teaser";}',
-  'delivery_callback' => '',
-  'fit' => '123',
-  'number_parts' => '7',
-  'context' => '1',
-  'tab_parent' => 'admin/structure/types/manage/%/display',
-  'tab_root' => 'admin/structure/types/manage/%',
-  'title' => 'Teaser',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '132',
-  'description' => '',
-  'position' => '',
-  'weight' => '1',
-  'include_file' => 'modules/field_ui/field_ui.admin.inc',
-))
-->values(array(
-  'path' => 'admin/structure/types/manage/%/edit',
-  'load_functions' => 'a:1:{i:4;s:14:"node_type_load";}',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:14:"node_type_form";i:1;i:4;}',
-  'delivery_callback' => '',
-  'fit' => '61',
-  'number_parts' => '6',
-  'context' => '1',
-  'tab_parent' => 'admin/structure/types/manage/%',
-  'tab_root' => 'admin/structure/types/manage/%',
-  'title' => 'Edit',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '140',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/node/content_types.inc',
-))
-->values(array(
-  'path' => 'admin/structure/types/manage/%/fields',
-  'load_functions' => 'a:1:{i:4;s:14:"node_type_load";}',
-  'to_arg_functions' => '',
-  'access_callback' => 'field_ui_admin_access',
-  'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:24:"administer content types";}}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:3:{i:0;s:28:"field_ui_field_overview_form";i:1;s:4:"node";i:2;i:4;}',
-  'delivery_callback' => '',
-  'fit' => '61',
-  'number_parts' => '6',
-  'context' => '1',
-  'tab_parent' => 'admin/structure/types/manage/%',
-  'tab_root' => 'admin/structure/types/manage/%',
-  'title' => 'Manage fields',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '132',
-  'description' => '',
-  'position' => '',
-  'weight' => '1',
-  'include_file' => 'modules/field_ui/field_ui.admin.inc',
-))
-->values(array(
-  'path' => 'admin/structure/types/manage/%/fields/%',
-  'load_functions' => 'a:2:{i:4;a:1:{s:14:"node_type_load";a:4:{i:0;s:4:"node";i:1;i:4;i:2;s:1:"4";i:3;s:4:"%map";}}i:6;a:1:{s:18:"field_ui_menu_load";a:4:{i:0;s:4:"node";i:1;i:4;i:2;s:1:"4";i:3;s:4:"%map";}}}',
-  'to_arg_functions' => '',
-  'access_callback' => 'field_ui_admin_access',
-  'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:24:"administer content types";}}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:24:"field_ui_field_edit_form";i:1;i:6;}',
-  'delivery_callback' => '',
-  'fit' => '122',
-  'number_parts' => '7',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'admin/structure/types/manage/%/fields/%',
-  'title' => '',
-  'title_callback' => 'field_ui_menu_title',
-  'title_arguments' => 'a:1:{i:0;i:6;}',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/field_ui/field_ui.admin.inc',
-))
-->values(array(
-  'path' => 'admin/structure/types/manage/%/fields/%/delete',
-  'load_functions' => 'a:2:{i:4;a:1:{s:14:"node_type_load";a:4:{i:0;s:4:"node";i:1;i:4;i:2;s:1:"4";i:3;s:4:"%map";}}i:6;a:1:{s:18:"field_ui_menu_load";a:4:{i:0;s:4:"node";i:1;i:4;i:2;s:1:"4";i:3;s:4:"%map";}}}',
-  'to_arg_functions' => '',
-  'access_callback' => 'field_ui_admin_access',
-  'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:24:"administer content types";}}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:26:"field_ui_field_delete_form";i:1;i:6;}',
-  'delivery_callback' => '',
-  'fit' => '245',
-  'number_parts' => '8',
-  'context' => '1',
-  'tab_parent' => 'admin/structure/types/manage/%/fields/%',
-  'tab_root' => 'admin/structure/types/manage/%/fields/%',
-  'title' => 'Delete',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '132',
-  'description' => '',
-  'position' => '',
-  'weight' => '10',
-  'include_file' => 'modules/field_ui/field_ui.admin.inc',
-))
-->values(array(
-  'path' => 'admin/structure/types/manage/%/fields/%/edit',
-  'load_functions' => 'a:2:{i:4;a:1:{s:14:"node_type_load";a:4:{i:0;s:4:"node";i:1;i:4;i:2;s:1:"4";i:3;s:4:"%map";}}i:6;a:1:{s:18:"field_ui_menu_load";a:4:{i:0;s:4:"node";i:1;i:4;i:2;s:1:"4";i:3;s:4:"%map";}}}',
-  'to_arg_functions' => '',
-  'access_callback' => 'field_ui_admin_access',
-  'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:24:"administer content types";}}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:24:"field_ui_field_edit_form";i:1;i:6;}',
-  'delivery_callback' => '',
-  'fit' => '245',
-  'number_parts' => '8',
-  'context' => '1',
-  'tab_parent' => 'admin/structure/types/manage/%/fields/%',
-  'tab_root' => 'admin/structure/types/manage/%/fields/%',
-  'title' => 'Edit',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '140',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/field_ui/field_ui.admin.inc',
-))
-->values(array(
-  'path' => 'admin/structure/types/manage/%/fields/%/field-settings',
-  'load_functions' => 'a:2:{i:4;a:1:{s:14:"node_type_load";a:4:{i:0;s:4:"node";i:1;i:4;i:2;s:1:"4";i:3;s:4:"%map";}}i:6;a:1:{s:18:"field_ui_menu_load";a:4:{i:0;s:4:"node";i:1;i:4;i:2;s:1:"4";i:3;s:4:"%map";}}}',
-  'to_arg_functions' => '',
-  'access_callback' => 'field_ui_admin_access',
-  'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:24:"administer content types";}}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:28:"field_ui_field_settings_form";i:1;i:6;}',
-  'delivery_callback' => '',
-  'fit' => '245',
-  'number_parts' => '8',
-  'context' => '1',
-  'tab_parent' => 'admin/structure/types/manage/%/fields/%',
-  'tab_root' => 'admin/structure/types/manage/%/fields/%',
-  'title' => 'Field settings',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '132',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/field_ui/field_ui.admin.inc',
-))
-->values(array(
-  'path' => 'admin/structure/types/manage/%/fields/%/widget-type',
-  'load_functions' => 'a:2:{i:4;a:1:{s:14:"node_type_load";a:4:{i:0;s:4:"node";i:1;i:4;i:2;s:1:"4";i:3;s:4:"%map";}}i:6;a:1:{s:18:"field_ui_menu_load";a:4:{i:0;s:4:"node";i:1;i:4;i:2;s:1:"4";i:3;s:4:"%map";}}}',
-  'to_arg_functions' => '',
-  'access_callback' => 'field_ui_admin_access',
-  'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:24:"administer content types";}}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:25:"field_ui_widget_type_form";i:1;i:6;}',
-  'delivery_callback' => '',
-  'fit' => '245',
-  'number_parts' => '8',
-  'context' => '1',
-  'tab_parent' => 'admin/structure/types/manage/%/fields/%',
-  'tab_root' => 'admin/structure/types/manage/%/fields/%',
-  'title' => 'Widget type',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '132',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/field_ui/field_ui.admin.inc',
-))
-->values(array(
-  'path' => 'admin/tasks',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
-  'page_callback' => 'system_admin_menu_block_page',
-  'page_arguments' => 'a:0:{}',
-  'delivery_callback' => '',
-  'fit' => '3',
-  'number_parts' => '2',
-  'context' => '1',
-  'tab_parent' => 'admin',
-  'tab_root' => 'admin',
-  'title' => 'Tasks',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '140',
-  'description' => '',
-  'position' => '',
-  'weight' => '-20',
-  'include_file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'batch',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => '1',
-  'access_arguments' => 'a:0:{}',
-  'page_callback' => 'system_batch_page',
-  'page_arguments' => 'a:0:{}',
-  'delivery_callback' => '',
-  'fit' => '1',
-  'number_parts' => '1',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'batch',
-  'title' => '',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '_system_batch_theme',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '0',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'comment/%',
-  'load_functions' => 'a:1:{i:1;N;}',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:15:"access comments";}',
-  'page_callback' => 'comment_permalink',
-  'page_arguments' => 'a:1:{i:0;i:1;}',
-  'delivery_callback' => '',
-  'fit' => '2',
-  'number_parts' => '2',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'comment/%',
-  'title' => 'Comment permalink',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => '',
-))
-->values(array(
-  'path' => 'comment/%/approve',
-  'load_functions' => 'a:1:{i:1;N;}',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:19:"administer comments";}',
-  'page_callback' => 'comment_approve',
-  'page_arguments' => 'a:1:{i:0;i:1;}',
-  'delivery_callback' => '',
-  'fit' => '5',
-  'number_parts' => '3',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'comment/%/approve',
-  'title' => 'Approve',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => '',
-  'position' => '',
-  'weight' => '1',
-  'include_file' => 'modules/comment/comment.pages.inc',
-))
-->values(array(
-  'path' => 'comment/%/delete',
-  'load_functions' => 'a:1:{i:1;N;}',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:19:"administer comments";}',
-  'page_callback' => 'comment_confirm_delete_page',
-  'page_arguments' => 'a:1:{i:0;i:1;}',
-  'delivery_callback' => '',
-  'fit' => '5',
-  'number_parts' => '3',
-  'context' => '1',
-  'tab_parent' => 'comment/%',
-  'tab_root' => 'comment/%',
-  'title' => 'Delete',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '132',
-  'description' => '',
-  'position' => '',
-  'weight' => '2',
-  'include_file' => 'modules/comment/comment.admin.inc',
-))
-->values(array(
-  'path' => 'comment/%/edit',
-  'load_functions' => 'a:1:{i:1;s:12:"comment_load";}',
-  'to_arg_functions' => '',
-  'access_callback' => 'comment_access',
-  'access_arguments' => 'a:2:{i:0;s:4:"edit";i:1;i:1;}',
-  'page_callback' => 'comment_edit_page',
-  'page_arguments' => 'a:1:{i:0;i:1;}',
-  'delivery_callback' => '',
-  'fit' => '5',
-  'number_parts' => '3',
-  'context' => '1',
-  'tab_parent' => 'comment/%',
-  'tab_root' => 'comment/%',
-  'title' => 'Edit',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '132',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => '',
-))
-->values(array(
-  'path' => 'comment/%/view',
-  'load_functions' => 'a:1:{i:1;N;}',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:15:"access comments";}',
-  'page_callback' => 'comment_permalink',
-  'page_arguments' => 'a:1:{i:0;i:1;}',
-  'delivery_callback' => '',
-  'fit' => '5',
-  'number_parts' => '3',
-  'context' => '1',
-  'tab_parent' => 'comment/%',
-  'tab_root' => 'comment/%',
-  'title' => 'View comment',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '140',
-  'description' => '',
-  'position' => '',
-  'weight' => '-10',
-  'include_file' => '',
-))
-->values(array(
-  'path' => 'comment/reply/%',
-  'load_functions' => 'a:1:{i:2;s:9:"node_load";}',
-  'to_arg_functions' => '',
-  'access_callback' => 'node_access',
-  'access_arguments' => 'a:2:{i:0;s:4:"view";i:1;i:2;}',
-  'page_callback' => 'comment_reply',
-  'page_arguments' => 'a:1:{i:0;i:2;}',
-  'delivery_callback' => '',
-  'fit' => '6',
-  'number_parts' => '3',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'comment/reply/%',
-  'title' => 'Add new comment',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/comment/comment.pages.inc',
-))
-->values(array(
-  'path' => 'entity_translation/taxonomy_term/autocomplete',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
-  'page_callback' => 'entity_translation_taxonomy_term_autocomplete',
-  'page_arguments' => 'a:0:{}',
-  'delivery_callback' => '',
-  'fit' => '7',
-  'number_parts' => '3',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'entity_translation/taxonomy_term/autocomplete',
-  'title' => 'Entity translation autocomplete',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '0',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => '',
-))
-->values(array(
-  'path' => 'file/ajax',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
-  'page_callback' => 'file_ajax_upload',
-  'page_arguments' => 'a:0:{}',
-  'delivery_callback' => 'ajax_deliver',
-  'fit' => '3',
-  'number_parts' => '2',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'file/ajax',
-  'title' => '',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => 'ajax_base_page_theme',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '0',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => '',
-))
-->values(array(
-  'path' => 'file/progress',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
-  'page_callback' => 'file_ajax_progress',
-  'page_arguments' => 'a:0:{}',
-  'delivery_callback' => '',
-  'fit' => '3',
-  'number_parts' => '2',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'file/progress',
-  'title' => '',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => 'ajax_base_page_theme',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '0',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => '',
-))
-->values(array(
-  'path' => 'filter/tips',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => '1',
-  'access_arguments' => 'a:0:{}',
-  'page_callback' => 'filter_tips_long',
-  'page_arguments' => 'a:0:{}',
-  'delivery_callback' => '',
-  'fit' => '3',
-  'number_parts' => '2',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'filter/tips',
-  'title' => 'Compose tips',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '20',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/filter/filter.pages.inc',
-))
-->values(array(
-  'path' => 'filter/tips/%',
-  'load_functions' => 'a:1:{i:2;s:18:"filter_format_load";}',
-  'to_arg_functions' => '',
-  'access_callback' => 'filter_access',
-  'access_arguments' => 'a:1:{i:0;i:2;}',
-  'page_callback' => 'filter_tips_long',
-  'page_arguments' => 'a:1:{i:0;i:2;}',
-  'delivery_callback' => '',
-  'fit' => '6',
-  'number_parts' => '3',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'filter/tips/%',
-  'title' => 'Compose tips',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/filter/filter.pages.inc',
-))
-->values(array(
-  'path' => 'forum',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
-  'page_callback' => 'forum_page',
-  'page_arguments' => 'a:0:{}',
-  'delivery_callback' => '',
-  'fit' => '1',
-  'number_parts' => '1',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'forum',
-  'title' => 'Forums',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/forum/forum.pages.inc',
-))
-->values(array(
-  'path' => 'forum/%',
-  'load_functions' => 'a:1:{i:1;s:16:"forum_forum_load";}',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
-  'page_callback' => 'forum_page',
-  'page_arguments' => 'a:1:{i:0;i:1;}',
-  'delivery_callback' => '',
-  'fit' => '2',
-  'number_parts' => '2',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'forum/%',
-  'title' => 'Forums',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/forum/forum.pages.inc',
-))
-->values(array(
-  'path' => 'i18n/taxonomy/autocomplete/language/%',
-  'load_functions' => 'a:1:{i:4;N;}',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
-  'page_callback' => 'i18n_taxonomy_autocomplete_language',
-  'page_arguments' => 'a:2:{i:0;i:4;i:1;N;}',
-  'delivery_callback' => '',
-  'fit' => '30',
-  'number_parts' => '5',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'i18n/taxonomy/autocomplete/language/%',
-  'title' => 'Autocomplete taxonomy',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '0',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'sites/all/modules/i18n/i18n_taxonomy/i18n_taxonomy.pages.inc',
-))
-->values(array(
-  'path' => 'i18n/taxonomy/autocomplete/vocabulary/%/%',
-  'load_functions' => 'a:2:{i:4;s:37:"taxonomy_vocabulary_machine_name_load";i:5;N;}',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
-  'page_callback' => 'i18n_taxonomy_autocomplete_language',
-  'page_arguments' => 'a:2:{i:0;i:5;i:1;i:4;}',
-  'delivery_callback' => '',
-  'fit' => '60',
-  'number_parts' => '6',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'i18n/taxonomy/autocomplete/vocabulary/%/%',
-  'title' => 'Autocomplete taxonomy',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '0',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'sites/all/modules/i18n/i18n_taxonomy/i18n_taxonomy.pages.inc',
-))
-->values(array(
-  'path' => 'i18n_string/save',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:23:"use on-page translation";}',
-  'page_callback' => 'i18n_string_l10n_client_save_string',
-  'page_arguments' => 'a:0:{}',
-  'delivery_callback' => '',
-  'fit' => '3',
-  'number_parts' => '2',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'i18n_string/save',
-  'title' => 'Save string',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '0',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'sites/all/modules/i18n/i18n_string/i18n_string.pages.inc',
-))
-->values(array(
-  'path' => 'node',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
-  'page_callback' => 'node_page_default',
-  'page_arguments' => 'a:0:{}',
-  'delivery_callback' => '',
-  'fit' => '1',
-  'number_parts' => '1',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'node',
-  'title' => '',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '0',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => '',
-))
-->values(array(
-  'path' => 'node/%',
-  'load_functions' => 'a:1:{i:1;s:9:"node_load";}',
-  'to_arg_functions' => '',
-  'access_callback' => 'node_access',
-  'access_arguments' => 'a:2:{i:0;s:4:"view";i:1;i:1;}',
-  'page_callback' => 'node_page_view',
-  'page_arguments' => 'a:1:{i:0;i:1;}',
-  'delivery_callback' => '',
-  'fit' => '2',
-  'number_parts' => '2',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'node/%',
-  'title' => '',
-  'title_callback' => 'node_page_title',
-  'title_arguments' => 'a:1:{i:0;i:1;}',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => '',
-))
-->values(array(
-  'path' => 'node/%/delete',
-  'load_functions' => 'a:1:{i:1;s:9:"node_load";}',
-  'to_arg_functions' => '',
-  'access_callback' => 'node_access',
-  'access_arguments' => 'a:2:{i:0;s:6:"delete";i:1;i:1;}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:19:"node_delete_confirm";i:1;i:1;}',
-  'delivery_callback' => '',
-  'fit' => '5',
-  'number_parts' => '3',
-  'context' => '2',
-  'tab_parent' => 'node/%',
-  'tab_root' => 'node/%',
-  'title' => 'Delete',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '132',
-  'description' => '',
-  'position' => '',
-  'weight' => '1',
-  'include_file' => 'modules/node/node.pages.inc',
-))
-->values(array(
-  'path' => 'node/%/edit',
-  'load_functions' => 'a:1:{i:1;s:9:"node_load";}',
-  'to_arg_functions' => '',
-  'access_callback' => 'entity_translation_edit_access',
-  'access_arguments' => 'a:6:{i:0;s:4:"node";i:1;i:1;i:2;b:0;i:3;a:10:{s:5:"title";s:4:"Edit";s:13:"page callback";s:14:"node_page_edit";s:14:"page arguments";a:1:{i:0;i:1;}s:15:"access callback";s:11:"node_access";s:16:"access arguments";a:2:{i:0;s:6:"update";i:1;i:1;}s:6:"weight";i:0;s:4:"type";i:132;s:7:"context";i:3;s:4:"file";s:14:"node.pages.inc";s:6:"module";s:4:"node";}i:4;s:6:"update";i:5;i:1;}',
-  'page_callback' => 'entity_translation_edit_page',
-  'page_arguments' => 'a:5:{i:0;s:4:"node";i:1;i:1;i:2;b:0;i:3;a:10:{s:5:"title";s:4:"Edit";s:13:"page callback";s:14:"node_page_edit";s:14:"page arguments";a:1:{i:0;i:1;}s:15:"access callback";s:11:"node_access";s:16:"access arguments";a:2:{i:0;s:6:"update";i:1;i:1;}s:6:"weight";i:0;s:4:"type";i:132;s:7:"context";i:3;s:4:"file";s:14:"node.pages.inc";s:6:"module";s:4:"node";}i:4;i:1;}',
-  'delivery_callback' => '',
-  'fit' => '5',
-  'number_parts' => '3',
-  'context' => '3',
-  'tab_parent' => 'node/%',
-  'tab_root' => 'node/%',
-  'title' => 'Edit',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '132',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/node/node.pages.inc',
-))
-->values(array(
-  'path' => 'node/%/edit/%',
-  'load_functions' => 'a:2:{i:1;s:9:"node_load";i:3;s:32:"entity_translation_language_load";}',
-  'to_arg_functions' => '',
-  'access_callback' => 'entity_translation_edit_access',
-  'access_arguments' => 'a:6:{i:0;s:4:"node";i:1;i:1;i:2;i:3;i:3;a:10:{s:5:"title";s:4:"Edit";s:13:"page callback";s:14:"node_page_edit";s:14:"page arguments";a:1:{i:0;i:1;}s:15:"access callback";s:11:"node_access";s:16:"access arguments";a:2:{i:0;s:6:"update";i:1;i:1;}s:6:"weight";i:0;s:4:"type";i:132;s:7:"context";i:3;s:4:"file";s:14:"node.pages.inc";s:6:"module";s:4:"node";}i:4;s:6:"update";i:5;i:1;}',
-  'page_callback' => 'entity_translation_edit_page',
-  'page_arguments' => 'a:5:{i:0;s:4:"node";i:1;i:1;i:2;i:3;i:3;a:10:{s:5:"title";s:4:"Edit";s:13:"page callback";s:14:"node_page_edit";s:14:"page arguments";a:1:{i:0;i:1;}s:15:"access callback";s:11:"node_access";s:16:"access arguments";a:2:{i:0;s:6:"update";i:1;i:1;}s:6:"weight";i:0;s:4:"type";i:132;s:7:"context";i:3;s:4:"file";s:14:"node.pages.inc";s:6:"module";s:4:"node";}i:4;i:1;}',
-  'delivery_callback' => '',
-  'fit' => '10',
-  'number_parts' => '4',
-  'context' => '3',
-  'tab_parent' => 'node/%/edit',
-  'tab_root' => 'node/%',
-  'title' => 'Edit',
-  'title_callback' => 'entity_translation_edit_title',
-  'title_arguments' => 'a:1:{i:0;i:3;}',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '140',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/node/node.pages.inc',
-))
-->values(array(
-  'path' => 'node/%/edit/add/%/%',
-  'load_functions' => 'a:3:{i:1;s:9:"node_load";i:4;s:32:"entity_translation_language_load";i:5;s:32:"entity_translation_language_load";}',
-  'to_arg_functions' => '',
-  'access_callback' => 'entity_translation_add_access',
-  'access_arguments' => 'a:7:{i:0;s:4:"node";i:1;i:1;i:2;i:4;i:3;i:5;i:4;a:10:{s:5:"title";s:4:"Edit";s:13:"page callback";s:14:"node_page_edit";s:14:"page arguments";a:1:{i:0;i:1;}s:15:"access callback";s:11:"node_access";s:16:"access arguments";a:2:{i:0;s:6:"update";i:1;i:1;}s:6:"weight";i:0;s:4:"type";i:132;s:7:"context";i:3;s:4:"file";s:14:"node.pages.inc";s:6:"module";s:4:"node";}i:5;s:6:"update";i:6;i:1;}',
-  'page_callback' => 'entity_translation_add_page',
-  'page_arguments' => 'a:6:{i:0;s:4:"node";i:1;i:1;i:2;i:4;i:3;i:5;i:4;a:10:{s:5:"title";s:4:"Edit";s:13:"page callback";s:14:"node_page_edit";s:14:"page arguments";a:1:{i:0;i:1;}s:15:"access callback";s:11:"node_access";s:16:"access arguments";a:2:{i:0;s:6:"update";i:1;i:1;}s:6:"weight";i:0;s:4:"type";i:132;s:7:"context";i:3;s:4:"file";s:14:"node.pages.inc";s:6:"module";s:4:"node";}i:5;i:1;}',
-  'delivery_callback' => '',
-  'fit' => '44',
-  'number_parts' => '6',
-  'context' => '3',
-  'tab_parent' => 'node/%/edit',
-  'tab_root' => 'node/%',
-  'title' => 'Edit',
-  'title_callback' => 'Add translation',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '132',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/node/node.pages.inc',
-))
-->values(array(
-  'path' => 'node/%/revisions',
-  'load_functions' => 'a:1:{i:1;s:9:"node_load";}',
-  'to_arg_functions' => '',
-  'access_callback' => '_node_revision_access',
-  'access_arguments' => 'a:1:{i:0;i:1;}',
-  'page_callback' => 'node_revision_overview',
-  'page_arguments' => 'a:1:{i:0;i:1;}',
-  'delivery_callback' => '',
-  'fit' => '5',
-  'number_parts' => '3',
-  'context' => '1',
-  'tab_parent' => 'node/%',
-  'tab_root' => 'node/%',
-  'title' => 'Revisions',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '132',
-  'description' => '',
-  'position' => '',
-  'weight' => '2',
-  'include_file' => 'modules/node/node.pages.inc',
-))
-->values(array(
-  'path' => 'node/%/revisions/%/delete',
-  'load_functions' => 'a:2:{i:1;a:1:{s:9:"node_load";a:1:{i:0;i:3;}}i:3;N;}',
-  'to_arg_functions' => '',
-  'access_callback' => '_node_revision_access',
-  'access_arguments' => 'a:2:{i:0;i:1;i:1;s:6:"delete";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:28:"node_revision_delete_confirm";i:1;i:1;}',
-  'delivery_callback' => '',
-  'fit' => '21',
-  'number_parts' => '5',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'node/%/revisions/%/delete',
-  'title' => 'Delete earlier revision',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/node/node.pages.inc',
-))
-->values(array(
-  'path' => 'node/%/revisions/%/revert',
-  'load_functions' => 'a:2:{i:1;a:1:{s:9:"node_load";a:1:{i:0;i:3;}}i:3;N;}',
-  'to_arg_functions' => '',
-  'access_callback' => '_node_revision_access',
-  'access_arguments' => 'a:2:{i:0;i:1;i:1;s:6:"update";}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:28:"node_revision_revert_confirm";i:1;i:1;}',
-  'delivery_callback' => '',
-  'fit' => '21',
-  'number_parts' => '5',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'node/%/revisions/%/revert',
-  'title' => 'Revert to earlier revision',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/node/node.pages.inc',
-))
-->values(array(
-  'path' => 'node/%/revisions/%/view',
-  'load_functions' => 'a:2:{i:1;a:1:{s:9:"node_load";a:1:{i:0;i:3;}}i:3;N;}',
-  'to_arg_functions' => '',
-  'access_callback' => '_node_revision_access',
-  'access_arguments' => 'a:1:{i:0;i:1;}',
-  'page_callback' => 'node_show',
-  'page_arguments' => 'a:2:{i:0;i:1;i:1;b:1;}',
-  'delivery_callback' => '',
-  'fit' => '21',
-  'number_parts' => '5',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'node/%/revisions/%/view',
-  'title' => 'Revisions',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => '',
-))
-->values(array(
-  'path' => 'node/%/translate',
-  'load_functions' => 'a:1:{i:1;s:9:"node_load";}',
-  'to_arg_functions' => '',
-  'access_callback' => 'entity_translation_node_tab_access',
-  'access_arguments' => 'a:3:{i:0;i:1;i:1;s:23:"_translation_tab_access";i:2;i:1;}',
-  'page_callback' => 'entity_translation_overview',
-  'page_arguments' => 'a:4:{i:0;s:4:"node";i:1;i:1;i:2;a:3:{s:13:"page callback";s:25:"translation_node_overview";s:4:"file";s:21:"translation.pages.inc";s:6:"module";s:11:"translation";}i:3;i:1;}',
-  'delivery_callback' => '',
-  'fit' => '5',
-  'number_parts' => '3',
-  'context' => '3',
-  'tab_parent' => 'node/%',
-  'tab_root' => 'node/%',
-  'title' => 'Translate',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '132',
-  'description' => '',
-  'position' => '',
-  'weight' => '1',
-  'include_file' => 'sites/all/modules/entity_translation/entity_translation.admin.inc',
-))
-->values(array(
-  'path' => 'node/%/translate/delete/%',
-  'load_functions' => 'a:2:{i:1;s:9:"node_load";i:4;s:32:"entity_translation_language_load";}',
-  'to_arg_functions' => '',
-  'access_callback' => 'entity_translation_node_tab_access',
-  'access_arguments' => 'a:1:{i:0;i:1;}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:4:{i:0;s:33:"entity_translation_delete_confirm";i:1;s:4:"node";i:2;i:1;i:3;i:4;}',
-  'delivery_callback' => '',
-  'fit' => '22',
-  'number_parts' => '5',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'node/%/translate/delete/%',
-  'title' => 'Delete',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'sites/all/modules/entity_translation/entity_translation.admin.inc',
-))
-->values(array(
-  'path' => 'node/%/view',
-  'load_functions' => 'a:1:{i:1;s:9:"node_load";}',
-  'to_arg_functions' => '',
-  'access_callback' => 'node_access',
-  'access_arguments' => 'a:2:{i:0;s:4:"view";i:1;i:1;}',
-  'page_callback' => 'node_page_view',
-  'page_arguments' => 'a:1:{i:0;i:1;}',
-  'delivery_callback' => '',
-  'fit' => '5',
-  'number_parts' => '3',
-  'context' => '1',
-  'tab_parent' => 'node/%',
-  'tab_root' => 'node/%',
-  'title' => 'View',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '140',
-  'description' => '',
-  'position' => '',
-  'weight' => '-10',
-  'include_file' => '',
-))
-->values(array(
-  'path' => 'node/add',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => '_node_add_access',
-  'access_arguments' => 'a:0:{}',
-  'page_callback' => 'node_add_page',
-  'page_arguments' => 'a:0:{}',
-  'delivery_callback' => '',
-  'fit' => '3',
-  'number_parts' => '2',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'node/add',
-  'title' => 'Add content',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/node/node.pages.inc',
-))
-->values(array(
-  'path' => 'node/add/article',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'node_access',
-  'access_arguments' => 'a:2:{i:0;s:6:"create";i:1;s:7:"article";}',
-  'page_callback' => 'node_add',
-  'page_arguments' => 'a:1:{i:0;s:7:"article";}',
-  'delivery_callback' => '',
-  'fit' => '7',
-  'number_parts' => '3',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'node/add/article',
-  'title' => 'Article',
-  'title_callback' => 'check_plain',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => 'Use <em>articles</em> for time-sensitive content like news, press releases or blog posts.',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/node/node.pages.inc',
-))
-->values(array(
-  'path' => 'node/add/et',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'node_access',
-  'access_arguments' => 'a:2:{i:0;s:6:"create";i:1;s:2:"et";}',
-  'page_callback' => 'node_add',
-  'page_arguments' => 'a:1:{i:0;s:2:"et";}',
-  'delivery_callback' => '',
-  'fit' => '7',
-  'number_parts' => '3',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'node/add/et',
-  'title' => 'et',
-  'title_callback' => 'check_plain',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/node/node.pages.inc',
-))
-->values(array(
-  'path' => 'node/add/forum',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'node_access',
-  'access_arguments' => 'a:2:{i:0;s:6:"create";i:1;s:5:"forum";}',
-  'page_callback' => 'node_add',
-  'page_arguments' => 'a:1:{i:0;s:5:"forum";}',
-  'delivery_callback' => '',
-  'fit' => '7',
-  'number_parts' => '3',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'node/add/forum',
-  'title' => 'Forum topic',
-  'title_callback' => 'check_plain',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => 'A <em>forum topic</em> starts a new discussion thread within a forum.',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/node/node.pages.inc',
-))
-->values(array(
-  'path' => 'node/add/page',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'node_access',
-  'access_arguments' => 'a:2:{i:0;s:6:"create";i:1;s:4:"page";}',
-  'page_callback' => 'node_add',
-  'page_arguments' => 'a:1:{i:0;s:4:"page";}',
-  'delivery_callback' => '',
-  'fit' => '7',
-  'number_parts' => '3',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'node/add/page',
-  'title' => 'Basic page',
-  'title_callback' => 'check_plain',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => "Use <em>basic pages</em> for your static content, such as an 'About us' page.",
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/node/node.pages.inc',
-))
-->values(array(
-  'path' => 'node/add/test-content-type',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'node_access',
-  'access_arguments' => 'a:2:{i:0;s:6:"create";i:1;s:17:"test_content_type";}',
-  'page_callback' => 'node_add',
-  'page_arguments' => 'a:1:{i:0;s:17:"test_content_type";}',
-  'delivery_callback' => '',
-  'fit' => '7',
-  'number_parts' => '3',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'node/add/test-content-type',
-  'title' => 'test_content_type',
-  'title_callback' => 'check_plain',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/node/node.pages.inc',
-))
-->values(array(
-  'path' => 'rss.xml',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
-  'page_callback' => 'node_feed',
-  'page_arguments' => 'a:2:{i:0;b:0;i:1;a:0:{}}',
-  'delivery_callback' => '',
-  'fit' => '1',
-  'number_parts' => '1',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'rss.xml',
-  'title' => 'RSS feed',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '0',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => '',
-))
-->values(array(
-  'path' => 'search',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'search_is_active',
-  'access_arguments' => 'a:0:{}',
-  'page_callback' => 'search_view',
-  'page_arguments' => 'a:0:{}',
-  'delivery_callback' => '',
-  'fit' => '1',
-  'number_parts' => '1',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'search',
-  'title' => 'Search',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '20',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/search/search.pages.inc',
-))
-->values(array(
-  'path' => 'search/node',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => '_search_menu_access',
-  'access_arguments' => 'a:1:{i:0;s:4:"node";}',
-  'page_callback' => 'search_view',
-  'page_arguments' => 'a:2:{i:0;s:4:"node";i:1;s:0:"";}',
-  'delivery_callback' => '',
-  'fit' => '3',
-  'number_parts' => '2',
-  'context' => '1',
-  'tab_parent' => 'search',
-  'tab_root' => 'search',
-  'title' => 'Content',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '132',
-  'description' => '',
-  'position' => '',
-  'weight' => '-10',
-  'include_file' => 'modules/search/search.pages.inc',
-))
-->values(array(
-  'path' => 'search/node/%',
-  'load_functions' => 'a:1:{i:2;a:1:{s:14:"menu_tail_load";a:2:{i:0;s:4:"%map";i:1;s:6:"%index";}}}',
-  'to_arg_functions' => 'a:1:{i:2;s:16:"menu_tail_to_arg";}',
-  'access_callback' => '_search_menu_access',
-  'access_arguments' => 'a:1:{i:0;s:4:"node";}',
-  'page_callback' => 'search_view',
-  'page_arguments' => 'a:2:{i:0;s:4:"node";i:1;i:2;}',
-  'delivery_callback' => '',
-  'fit' => '6',
-  'number_parts' => '3',
-  'context' => '1',
-  'tab_parent' => 'search/node',
-  'tab_root' => 'search/node/%',
-  'title' => 'Content',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '132',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/search/search.pages.inc',
-))
-->values(array(
-  'path' => 'sites/default/files/styles/%',
-  'load_functions' => 'a:1:{i:4;s:16:"image_style_load";}',
-  'to_arg_functions' => '',
-  'access_callback' => '1',
-  'access_arguments' => 'a:0:{}',
-  'page_callback' => 'image_style_deliver',
-  'page_arguments' => 'a:1:{i:0;i:4;}',
-  'delivery_callback' => '',
-  'fit' => '30',
-  'number_parts' => '5',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'sites/default/files/styles/%',
-  'title' => 'Generate image style',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '0',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => '',
-))
-->values(array(
-  'path' => 'system/ajax',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => '1',
-  'access_arguments' => 'a:0:{}',
-  'page_callback' => 'ajax_form_callback',
-  'page_arguments' => 'a:0:{}',
-  'delivery_callback' => 'ajax_deliver',
-  'fit' => '3',
-  'number_parts' => '2',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'system/ajax',
-  'title' => 'AHAH callback',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => 'ajax_base_page_theme',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '0',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'includes/form.inc',
-))
-->values(array(
-  'path' => 'system/files',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => '1',
-  'access_arguments' => 'a:0:{}',
-  'page_callback' => 'file_download',
-  'page_arguments' => 'a:1:{i:0;s:7:"private";}',
-  'delivery_callback' => '',
-  'fit' => '3',
-  'number_parts' => '2',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'system/files',
-  'title' => 'File download',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '0',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => '',
-))
-->values(array(
-  'path' => 'system/files/styles/%',
-  'load_functions' => 'a:1:{i:3;s:16:"image_style_load";}',
-  'to_arg_functions' => '',
-  'access_callback' => '1',
-  'access_arguments' => 'a:0:{}',
-  'page_callback' => 'image_style_deliver',
-  'page_arguments' => 'a:1:{i:0;i:3;}',
-  'delivery_callback' => '',
-  'fit' => '14',
-  'number_parts' => '4',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'system/files/styles/%',
-  'title' => 'Generate image style',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '0',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => '',
-))
-->values(array(
-  'path' => 'system/temporary',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => '1',
-  'access_arguments' => 'a:0:{}',
-  'page_callback' => 'file_download',
-  'page_arguments' => 'a:1:{i:0;s:9:"temporary";}',
-  'delivery_callback' => '',
-  'fit' => '3',
-  'number_parts' => '2',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'system/temporary',
-  'title' => 'Temporary files',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '0',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => '',
-))
-->values(array(
-  'path' => 'system/timezone',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => '1',
-  'access_arguments' => 'a:0:{}',
-  'page_callback' => 'system_timezone',
-  'page_arguments' => 'a:0:{}',
-  'delivery_callback' => '',
-  'fit' => '3',
-  'number_parts' => '2',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'system/timezone',
-  'title' => 'Time zone',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '0',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/system/system.admin.inc',
-))
-->values(array(
-  'path' => 'taxonomy/autocomplete',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
-  'page_callback' => 'i18n_taxonomy_autocomplete_field',
-  'page_arguments' => 'a:0:{}',
-  'delivery_callback' => '',
-  'fit' => '3',
-  'number_parts' => '2',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'taxonomy/autocomplete',
-  'title' => 'Autocomplete taxonomy',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '0',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'sites/all/modules/i18n/i18n_taxonomy/i18n_taxonomy.pages.inc',
-))
-->values(array(
-  'path' => 'taxonomy/term/%',
-  'load_functions' => 'a:1:{i:2;s:18:"taxonomy_term_load";}',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
-  'page_callback' => 'i18n_taxonomy_term_page',
-  'page_arguments' => 'a:1:{i:0;i:2;}',
-  'delivery_callback' => '',
-  'fit' => '6',
-  'number_parts' => '3',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'taxonomy/term/%',
-  'title' => 'Taxonomy term',
-  'title_callback' => 'i18n_taxonomy_term_name',
-  'title_arguments' => 'a:1:{i:0;i:2;}',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'sites/all/modules/i18n/i18n_taxonomy/i18n_taxonomy.pages.inc',
-))
-->values(array(
-  'path' => 'taxonomy/term/%/edit',
-  'load_functions' => 'a:1:{i:2;s:18:"taxonomy_term_load";}',
-  'to_arg_functions' => '',
-  'access_callback' => 'taxonomy_term_edit_access',
-  'access_arguments' => 'a:1:{i:0;i:2;}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:3:{i:0;s:18:"taxonomy_form_term";i:1;i:2;i:2;N;}',
-  'delivery_callback' => '',
-  'fit' => '13',
-  'number_parts' => '4',
-  'context' => '1',
-  'tab_parent' => 'taxonomy/term/%',
-  'tab_root' => 'taxonomy/term/%',
-  'title' => 'Edit',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '132',
-  'description' => '',
-  'position' => '',
-  'weight' => '10',
-  'include_file' => 'modules/taxonomy/taxonomy.admin.inc',
-))
-->values(array(
-  'path' => 'taxonomy/term/%/feed',
-  'load_functions' => 'a:1:{i:2;s:18:"taxonomy_term_load";}',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
-  'page_callback' => 'taxonomy_term_feed',
-  'page_arguments' => 'a:1:{i:0;i:2;}',
-  'delivery_callback' => '',
-  'fit' => '13',
-  'number_parts' => '4',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'taxonomy/term/%/feed',
-  'title' => 'Taxonomy term',
-  'title_callback' => 'taxonomy_term_title',
-  'title_arguments' => 'a:1:{i:0;i:2;}',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '0',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/taxonomy/taxonomy.pages.inc',
-))
-->values(array(
-  'path' => 'taxonomy/term/%/translate',
-  'load_functions' => 'a:1:{i:2;s:18:"taxonomy_term_load";}',
-  'to_arg_functions' => '',
-  'access_callback' => 'i18n_object_translate_access',
-  'access_arguments' => 'a:2:{i:0;s:13:"taxonomy_term";i:1;i:2;}',
-  'page_callback' => 'i18n_page_translate_tab',
-  'page_arguments' => 'a:2:{i:0;s:13:"taxonomy_term";i:1;i:2;}',
-  'delivery_callback' => '',
-  'fit' => '13',
-  'number_parts' => '4',
-  'context' => '1',
-  'tab_parent' => 'taxonomy/term/%',
-  'tab_root' => 'taxonomy/term/%',
-  'title' => 'Translate',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '132',
-  'description' => '',
-  'position' => '',
-  'weight' => '10',
-  'include_file' => 'sites/all/modules/i18n/i18n.pages.inc',
-))
-->values(array(
-  'path' => 'taxonomy/term/%/translate/%',
-  'load_functions' => 'a:2:{i:2;s:18:"taxonomy_term_load";i:4;s:18:"i18n_language_load";}',
-  'to_arg_functions' => '',
-  'access_callback' => 'i18n_object_translate_access',
-  'access_arguments' => 'a:2:{i:0;s:13:"taxonomy_term";i:1;i:2;}',
-  'page_callback' => 'i18n_page_translate_tab',
-  'page_arguments' => 'a:3:{i:0;s:13:"taxonomy_term";i:1;i:2;i:2;i:4;}',
-  'delivery_callback' => '',
-  'fit' => '26',
-  'number_parts' => '5',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'taxonomy/term/%/translate/%',
-  'title' => 'Translate',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '0',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'sites/all/modules/i18n/i18n.pages.inc',
-))
-->values(array(
-  'path' => 'taxonomy/term/%/view',
-  'load_functions' => 'a:1:{i:2;s:18:"taxonomy_term_load";}',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
-  'page_callback' => 'i18n_taxonomy_term_page',
-  'page_arguments' => 'a:1:{i:0;i:2;}',
-  'delivery_callback' => '',
-  'fit' => '13',
-  'number_parts' => '4',
-  'context' => '1',
-  'tab_parent' => 'taxonomy/term/%',
-  'tab_root' => 'taxonomy/term/%',
-  'title' => 'View',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '140',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'sites/all/modules/i18n/i18n_taxonomy/i18n_taxonomy.pages.inc',
-))
-->values(array(
-  'path' => 'user',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => '1',
-  'access_arguments' => 'a:0:{}',
-  'page_callback' => 'user_page',
-  'page_arguments' => 'a:0:{}',
-  'delivery_callback' => '',
-  'fit' => '1',
-  'number_parts' => '1',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'user',
-  'title' => 'User account',
-  'title_callback' => 'user_menu_title',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => '',
-  'position' => '',
-  'weight' => '-10',
-  'include_file' => 'modules/user/user.pages.inc',
-))
-->values(array(
-  'path' => 'user/%',
-  'load_functions' => 'a:1:{i:1;s:9:"user_load";}',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_view_access',
-  'access_arguments' => 'a:1:{i:0;i:1;}',
-  'page_callback' => 'user_view_page',
-  'page_arguments' => 'a:1:{i:0;i:1;}',
-  'delivery_callback' => '',
-  'fit' => '2',
-  'number_parts' => '2',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'user/%',
-  'title' => 'My account',
-  'title_callback' => 'user_page_title',
-  'title_arguments' => 'a:1:{i:0;i:1;}',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => '',
-))
-->values(array(
-  'path' => 'user/%/cancel',
-  'load_functions' => 'a:1:{i:1;s:9:"user_load";}',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_cancel_access',
-  'access_arguments' => 'a:1:{i:0;i:1;}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:24:"user_cancel_confirm_form";i:1;i:1;}',
-  'delivery_callback' => '',
-  'fit' => '5',
-  'number_parts' => '3',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'user/%/cancel',
-  'title' => 'Cancel account',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/user/user.pages.inc',
-))
-->values(array(
-  'path' => 'user/%/cancel/confirm/%/%',
-  'load_functions' => 'a:3:{i:1;s:9:"user_load";i:4;N;i:5;N;}',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_cancel_access',
-  'access_arguments' => 'a:1:{i:0;i:1;}',
-  'page_callback' => 'user_cancel_confirm',
-  'page_arguments' => 'a:3:{i:0;i:1;i:1;i:4;i:2;i:5;}',
-  'delivery_callback' => '',
-  'fit' => '44',
-  'number_parts' => '6',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'user/%/cancel/confirm/%/%',
-  'title' => 'Confirm account cancellation',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/user/user.pages.inc',
-))
-->values(array(
-  'path' => 'user/%/edit',
-  'load_functions' => 'a:1:{i:1;s:9:"user_load";}',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_edit_access',
-  'access_arguments' => 'a:1:{i:0;i:1;}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:17:"user_profile_form";i:1;i:1;}',
-  'delivery_callback' => '',
-  'fit' => '5',
-  'number_parts' => '3',
-  'context' => '1',
-  'tab_parent' => 'user/%',
-  'tab_root' => 'user/%',
-  'title' => 'Edit',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '132',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/user/user.pages.inc',
-))
-->values(array(
-  'path' => 'user/%/edit/account',
-  'load_functions' => 'a:1:{i:1;a:1:{s:18:"user_category_load";a:2:{i:0;s:4:"%map";i:1;s:6:"%index";}}}',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_edit_access',
-  'access_arguments' => 'a:1:{i:0;i:1;}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:2:{i:0;s:17:"user_profile_form";i:1;i:1;}',
-  'delivery_callback' => '',
-  'fit' => '11',
-  'number_parts' => '4',
-  'context' => '1',
-  'tab_parent' => 'user/%/edit',
-  'tab_root' => 'user/%',
-  'title' => 'Account',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '140',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/user/user.pages.inc',
-))
-->values(array(
-  'path' => 'user/%/view',
-  'load_functions' => 'a:1:{i:1;s:9:"user_load";}',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_view_access',
-  'access_arguments' => 'a:1:{i:0;i:1;}',
-  'page_callback' => 'user_view_page',
-  'page_arguments' => 'a:1:{i:0;i:1;}',
-  'delivery_callback' => '',
-  'fit' => '5',
-  'number_parts' => '3',
-  'context' => '1',
-  'tab_parent' => 'user/%',
-  'tab_root' => 'user/%',
-  'title' => 'View',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '140',
-  'description' => '',
-  'position' => '',
-  'weight' => '-10',
-  'include_file' => '',
-))
-->values(array(
-  'path' => 'user/autocomplete',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_access',
-  'access_arguments' => 'a:1:{i:0;s:20:"access user profiles";}',
-  'page_callback' => 'user_autocomplete',
-  'page_arguments' => 'a:0:{}',
-  'delivery_callback' => '',
-  'fit' => '3',
-  'number_parts' => '2',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'user/autocomplete',
-  'title' => 'User autocomplete',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '0',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/user/user.pages.inc',
-))
-->values(array(
-  'path' => 'user/login',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_is_anonymous',
-  'access_arguments' => 'a:0:{}',
-  'page_callback' => 'user_page',
-  'page_arguments' => 'a:0:{}',
-  'delivery_callback' => '',
-  'fit' => '3',
-  'number_parts' => '2',
-  'context' => '1',
-  'tab_parent' => 'user',
-  'tab_root' => 'user',
-  'title' => 'Log in',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '140',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/user/user.pages.inc',
-))
-->values(array(
-  'path' => 'user/logout',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_is_logged_in',
-  'access_arguments' => 'a:0:{}',
-  'page_callback' => 'user_logout',
-  'page_arguments' => 'a:0:{}',
-  'delivery_callback' => '',
-  'fit' => '3',
-  'number_parts' => '2',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'user/logout',
-  'title' => 'Log out',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '6',
-  'description' => '',
-  'position' => '',
-  'weight' => '10',
-  'include_file' => 'modules/user/user.pages.inc',
-))
-->values(array(
-  'path' => 'user/password',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => '1',
-  'access_arguments' => 'a:0:{}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:9:"user_pass";}',
-  'delivery_callback' => '',
-  'fit' => '3',
-  'number_parts' => '2',
-  'context' => '1',
-  'tab_parent' => 'user',
-  'tab_root' => 'user',
-  'title' => 'Request new password',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '132',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/user/user.pages.inc',
-))
-->values(array(
-  'path' => 'user/register',
-  'load_functions' => '',
-  'to_arg_functions' => '',
-  'access_callback' => 'user_register_access',
-  'access_arguments' => 'a:0:{}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:1:{i:0;s:18:"user_register_form";}',
-  'delivery_callback' => '',
-  'fit' => '3',
-  'number_parts' => '2',
-  'context' => '1',
-  'tab_parent' => 'user',
-  'tab_root' => 'user',
-  'title' => 'Create new account',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '132',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => '',
-))
-->values(array(
-  'path' => 'user/reset/%/%/%',
-  'load_functions' => 'a:3:{i:2;N;i:3;N;i:4;N;}',
-  'to_arg_functions' => '',
-  'access_callback' => '1',
-  'access_arguments' => 'a:0:{}',
-  'page_callback' => 'drupal_get_form',
-  'page_arguments' => 'a:4:{i:0;s:15:"user_pass_reset";i:1;i:2;i:2;i:3;i:3;i:4;}',
-  'delivery_callback' => '',
-  'fit' => '24',
-  'number_parts' => '5',
-  'context' => '0',
-  'tab_parent' => '',
-  'tab_root' => 'user/reset/%/%/%',
-  'title' => 'Reset password',
-  'title_callback' => 't',
-  'title_arguments' => '',
-  'theme_callback' => '',
-  'theme_arguments' => 'a:0:{}',
-  'type' => '0',
-  'description' => '',
-  'position' => '',
-  'weight' => '0',
-  'include_file' => 'modules/user/user.pages.inc',
-))
-->execute();
-$connection->schema()->createTable('node', array(
-  'fields' => array(
-    'nid' => array(
-      'type' => 'serial',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-    'vid' => array(
-      'type' => 'int',
-      'not null' => FALSE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-    'type' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '32',
-      'default' => '',
-    ),
-    'language' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '12',
-      'default' => '',
-    ),
-    'title' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'uid' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'status' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '1',
-    ),
-    'created' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'changed' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'comment' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'promote' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'sticky' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'tnid' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-    'translate' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-  ),
-  'primary key' => array(
-    'nid',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->insert('node')
-->fields(array(
-  'nid',
-  'vid',
-  'type',
-  'language',
-  'title',
-  'uid',
-  'status',
-  'created',
-  'changed',
-  'comment',
-  'promote',
-  'sticky',
-  'tnid',
-  'translate',
-))
-->values(array(
-  'nid' => '6',
-  'vid' => '6',
-  'type' => 'forum',
-  'language' => 'en',
-  'title' => 'Comments are closed :-(',
-  'uid' => '1',
-  'status' => '1',
-  'created' => '1504715414',
-  'changed' => '1504715414',
-  'comment' => '1',
-  'promote' => '0',
-  'sticky' => '0',
-  'tnid' => '0',
-  'translate' => '0',
-))
-->values(array(
-  'nid' => '7',
-  'vid' => '7',
-  'type' => 'forum',
-  'language' => 'en',
-  'title' => 'Comments are open :-)',
-  'uid' => '1',
-  'status' => '1',
-  'created' => '1504715432',
-  'changed' => '1504715432',
-  'comment' => '2',
-  'promote' => '0',
-  'sticky' => '0',
-  'tnid' => '0',
-  'translate' => '0',
-))
-->execute();
-$connection->schema()->createTable('node_access', array(
-  'fields' => array(
-    'nid' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-    'gid' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-    'realm' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'grant_view' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-    'grant_update' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-    'grant_delete' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-  ),
-  'primary key' => array(
-    'nid',
-    'gid',
-    'realm',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->insert('node_access')
-->fields(array(
-  'nid',
-  'gid',
-  'realm',
-  'grant_view',
-  'grant_update',
-  'grant_delete',
-))
-->values(array(
-  'nid' => '0',
-  'gid' => '0',
-  'realm' => 'all',
-  'grant_view' => '1',
-  'grant_update' => '0',
-  'grant_delete' => '0',
-))
-->execute();
-$connection->schema()->createTable('node_comment_statistics', array(
-  'fields' => array(
-    'nid' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-    'cid' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'last_comment_timestamp' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'last_comment_name' => array(
-      'type' => 'varchar',
-      'not null' => FALSE,
-      'length' => '60',
-    ),
-    'last_comment_uid' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'comment_count' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-  ),
-  'primary key' => array(
-    'nid',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->insert('node_comment_statistics')
-->fields(array(
-  'nid',
-  'cid',
-  'last_comment_timestamp',
-  'last_comment_name',
-  'last_comment_uid',
-  'comment_count',
-))
-->values(array(
-  'nid' => '6',
-  'cid' => '0',
-  'last_comment_timestamp' => '1504715414',
-  'last_comment_name' => NULL,
-  'last_comment_uid' => '1',
-  'comment_count' => '0',
-))
-->values(array(
-  'nid' => '7',
-  'cid' => '0',
-  'last_comment_timestamp' => '1504715432',
-  'last_comment_name' => NULL,
-  'last_comment_uid' => '1',
-  'comment_count' => '0',
-))
-->execute();
-$connection->schema()->createTable('node_revision', array(
-  'fields' => array(
-    'nid' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-    'vid' => array(
-      'type' => 'serial',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-    'uid' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'title' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'log' => array(
-      'type' => 'text',
-      'not null' => TRUE,
-      'size' => 'normal',
-    ),
-    'timestamp' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'status' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '1',
-    ),
-    'comment' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'promote' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'sticky' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-  ),
-  'primary key' => array(
-    'vid',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->insert('node_revision')
-->fields(array(
-  'nid',
-  'vid',
-  'uid',
-  'title',
-  'log',
-  'timestamp',
-  'status',
-  'comment',
-  'promote',
-  'sticky',
-))
-->values(array(
-  'nid' => '6',
-  'vid' => '6',
-  'uid' => '1',
-  'title' => 'Comments are closed :-(',
-  'log' => '',
-  'timestamp' => '1504715414',
-  'status' => '1',
-  'comment' => '1',
-  'promote' => '0',
-  'sticky' => '0',
-))
-->values(array(
-  'nid' => '7',
-  'vid' => '7',
-  'uid' => '1',
-  'title' => 'Comments are open :-)',
-  'log' => '',
-  'timestamp' => '1504715432',
-  'status' => '1',
-  'comment' => '2',
-  'promote' => '0',
-  'sticky' => '0',
-))
-->execute();
-$connection->schema()->createTable('node_type', array(
-  'fields' => array(
-    'type' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '32',
-    ),
-    'name' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'base' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-    ),
-    'module' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-    ),
-    'description' => array(
-      'type' => 'text',
-      'not null' => TRUE,
-      'size' => 'normal',
-    ),
-    'help' => array(
-      'type' => 'text',
-      'not null' => TRUE,
-      'size' => 'normal',
-    ),
-    'has_title' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-    'title_label' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'custom' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'modified' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'locked' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'disabled' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'orig_type' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-  ),
-  'primary key' => array(
-    'type',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->insert('node_type')
-->fields(array(
-  'type',
-  'name',
-  'base',
-  'module',
-  'description',
-  'help',
-  'has_title',
-  'title_label',
-  'custom',
-  'modified',
-  'locked',
-  'disabled',
-  'orig_type',
-))
-->values(array(
-  'type' => 'article',
-  'name' => 'Article',
-  'base' => 'node_content',
-  'module' => 'node',
-  'description' => 'Use <em>articles</em> for time-sensitive content like news, press releases or blog posts.',
-  'help' => 'Help text for articles',
-  'has_title' => '1',
-  'title_label' => 'Title',
-  'custom' => '1',
-  'modified' => '1',
-  'locked' => '0',
-  'disabled' => '0',
-  'orig_type' => 'article',
-))
-->values(array(
-  'type' => 'blog',
-  'name' => 'Blog entry',
-  'base' => 'blog',
-  'module' => 'blog',
-  'description' => 'Use for multi-user blogs. Every user gets a personal blog.',
-  'help' => 'Blog away, good sir!',
-  'has_title' => '1',
-  'title_label' => 'Title',
-  'custom' => '0',
-  'modified' => '1',
-  'locked' => '1',
-  'disabled' => '1',
-  'orig_type' => 'blog',
-))
-->values(array(
-  'type' => 'et',
-  'name' => 'et',
-  'base' => 'node_content',
-  'module' => 'node',
-  'description' => '',
-  'help' => '',
-  'has_title' => '1',
-  'title_label' => 'Title',
-  'custom' => '1',
-  'modified' => '1',
-  'locked' => '0',
-  'disabled' => '0',
-  'orig_type' => 'et',
-))
-->values(array(
-  'type' => 'forum',
-  'name' => 'Forum topic',
-  'base' => 'forum',
-  'module' => 'forum',
-  'description' => 'A <em>forum topic</em> starts a new discussion thread within a forum.',
-  'help' => 'No name-calling, no flame wars. Be nice.',
-  'has_title' => '1',
-  'title_label' => 'Subject',
-  'custom' => '0',
-  'modified' => '1',
-  'locked' => '1',
-  'disabled' => '0',
-  'orig_type' => 'forum',
-))
-->values(array(
-  'type' => 'page',
-  'name' => 'Basic page',
-  'base' => 'node_content',
-  'module' => 'node',
-  'description' => "Use <em>basic pages</em> for your static content, such as an 'About us' page.",
-  'help' => 'Help text for basic pages',
-  'has_title' => '1',
-  'title_label' => 'Title',
-  'custom' => '1',
-  'modified' => '1',
-  'locked' => '0',
-  'disabled' => '0',
-  'orig_type' => 'page',
-))
-->values(array(
-  'type' => 'test_content_type',
-  'name' => 'test_content_type',
-  'base' => 'node_content',
-  'module' => 'node',
-  'description' => '',
-  'help' => '',
-  'has_title' => '1',
-  'title_label' => 'Title',
-  'custom' => '1',
-  'modified' => '1',
-  'locked' => '0',
-  'disabled' => '0',
-  'orig_type' => 'test_content_type',
-))
-->execute();
-$connection->schema()->createTable('queue', array(
-  'fields' => array(
-    'item_id' => array(
-      'type' => 'serial',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-    'name' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'data' => array(
-      'type' => 'blob',
-      'not null' => FALSE,
-      'size' => 'normal',
-    ),
-    'expire' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'created' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-  ),
-  'primary key' => array(
-    'item_id',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->schema()->createTable('registry', array(
-  'fields' => array(
-    'name' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'type' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '9',
-      'default' => '',
-    ),
-    'filename' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-    ),
-    'module' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'weight' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-  ),
-  'primary key' => array(
-    'name',
-    'type',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->insert('registry')
-->fields(array(
-  'name',
-  'type',
-  'filename',
-  'module',
-  'weight',
-))
-->values(array(
-  'name' => 'AccessDeniedTestCase',
-  'type' => 'class',
-  'filename' => 'modules/system/system.test',
-  'module' => 'system',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'AdminMetaTagTestCase',
-  'type' => 'class',
-  'filename' => 'modules/system/system.test',
-  'module' => 'system',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'ArchiverInterface',
-  'type' => 'interface',
-  'filename' => 'includes/archiver.inc',
-  'module' => '',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'ArchiverTar',
-  'type' => 'class',
-  'filename' => 'modules/system/system.archiver.inc',
-  'module' => 'system',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'ArchiverZip',
-  'type' => 'class',
-  'filename' => 'modules/system/system.archiver.inc',
-  'module' => 'system',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'Archive_Tar',
-  'type' => 'class',
-  'filename' => 'modules/system/system.tar.inc',
-  'module' => 'system',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'BatchMemoryQueue',
-  'type' => 'class',
-  'filename' => 'includes/batch.queue.inc',
-  'module' => '',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'BatchQueue',
-  'type' => 'class',
-  'filename' => 'includes/batch.queue.inc',
-  'module' => '',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'BlockAdminThemeTestCase',
-  'type' => 'class',
-  'filename' => 'modules/block/block.test',
-  'module' => 'block',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'BlockCacheTestCase',
-  'type' => 'class',
-  'filename' => 'modules/block/block.test',
-  'module' => 'block',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'BlockHashTestCase',
-  'type' => 'class',
-  'filename' => 'modules/block/block.test',
-  'module' => 'block',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'BlockHiddenRegionTestCase',
-  'type' => 'class',
-  'filename' => 'modules/block/block.test',
-  'module' => 'block',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'BlockHTMLIdTestCase',
-  'type' => 'class',
-  'filename' => 'modules/block/block.test',
-  'module' => 'block',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'BlockInvalidRegionTestCase',
-  'type' => 'class',
-  'filename' => 'modules/block/block.test',
-  'module' => 'block',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'BlockTemplateSuggestionsUnitTest',
-  'type' => 'class',
-  'filename' => 'modules/block/block.test',
-  'module' => 'block',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'BlockTestCase',
-  'type' => 'class',
-  'filename' => 'modules/block/block.test',
-  'module' => 'block',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'BlockViewModuleDeltaAlterWebTest',
-  'type' => 'class',
-  'filename' => 'modules/block/block.test',
-  'module' => 'block',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'CommentActionsTestCase',
-  'type' => 'class',
-  'filename' => 'modules/comment/comment.test',
-  'module' => 'comment',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'CommentAnonymous',
-  'type' => 'class',
-  'filename' => 'modules/comment/comment.test',
-  'module' => 'comment',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'CommentApprovalTest',
-  'type' => 'class',
-  'filename' => 'modules/comment/comment.test',
-  'module' => 'comment',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'CommentBlockFunctionalTest',
-  'type' => 'class',
-  'filename' => 'modules/comment/comment.test',
-  'module' => 'comment',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'CommentContentRebuild',
-  'type' => 'class',
-  'filename' => 'modules/comment/comment.test',
-  'module' => 'comment',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'CommentController',
-  'type' => 'class',
-  'filename' => 'modules/comment/comment.module',
-  'module' => 'comment',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'CommentFieldsTest',
-  'type' => 'class',
-  'filename' => 'modules/comment/comment.test',
-  'module' => 'comment',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'CommentHelperCase',
-  'type' => 'class',
-  'filename' => 'modules/comment/comment.test',
-  'module' => 'comment',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'CommentInterfaceTest',
-  'type' => 'class',
-  'filename' => 'modules/comment/comment.test',
-  'module' => 'comment',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'CommentNodeAccessTest',
-  'type' => 'class',
-  'filename' => 'modules/comment/comment.test',
-  'module' => 'comment',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'CommentNodeChangesTestCase',
-  'type' => 'class',
-  'filename' => 'modules/comment/comment.test',
-  'module' => 'comment',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'CommentPagerTest',
-  'type' => 'class',
-  'filename' => 'modules/comment/comment.test',
-  'module' => 'comment',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'CommentPreviewTest',
-  'type' => 'class',
-  'filename' => 'modules/comment/comment.test',
-  'module' => 'comment',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'CommentRSSUnitTest',
-  'type' => 'class',
-  'filename' => 'modules/comment/comment.test',
-  'module' => 'comment',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'CommentThreadingTestCase',
-  'type' => 'class',
-  'filename' => 'modules/comment/comment.test',
-  'module' => 'comment',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'CommentTokenReplaceTestCase',
-  'type' => 'class',
-  'filename' => 'modules/comment/comment.test',
-  'module' => 'comment',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'CommentUninstallTestCase',
-  'type' => 'class',
-  'filename' => 'modules/comment/comment.test',
-  'module' => 'comment',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'ConfirmFormTest',
-  'type' => 'class',
-  'filename' => 'modules/system/system.test',
-  'module' => 'system',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'ContextualDynamicContextTestCase',
-  'type' => 'class',
-  'filename' => 'modules/contextual/contextual.test',
-  'module' => 'contextual',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'CronQueueTestCase',
-  'type' => 'class',
-  'filename' => 'modules/system/system.test',
-  'module' => 'system',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'CronRunTestCase',
-  'type' => 'class',
-  'filename' => 'modules/system/system.test',
-  'module' => 'system',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'Database',
-  'type' => 'class',
-  'filename' => 'includes/database/database.inc',
-  'module' => '',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'DatabaseCondition',
-  'type' => 'class',
-  'filename' => 'includes/database/query.inc',
-  'module' => '',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'DatabaseConnection',
-  'type' => 'class',
-  'filename' => 'includes/database/database.inc',
-  'module' => '',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'DatabaseConnectionNotDefinedException',
-  'type' => 'class',
-  'filename' => 'includes/database/database.inc',
-  'module' => '',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'DatabaseConnection_mysql',
-  'type' => 'class',
-  'filename' => 'includes/database/mysql/database.inc',
-  'module' => '',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'DatabaseConnection_pgsql',
-  'type' => 'class',
-  'filename' => 'includes/database/pgsql/database.inc',
-  'module' => '',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'DatabaseConnection_sqlite',
-  'type' => 'class',
-  'filename' => 'includes/database/sqlite/database.inc',
-  'module' => '',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'DatabaseDriverNotSpecifiedException',
-  'type' => 'class',
-  'filename' => 'includes/database/database.inc',
-  'module' => '',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'DatabaseLog',
-  'type' => 'class',
-  'filename' => 'includes/database/log.inc',
-  'module' => '',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'DatabaseSchema',
-  'type' => 'class',
-  'filename' => 'includes/database/schema.inc',
-  'module' => '',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'DatabaseSchemaObjectDoesNotExistException',
-  'type' => 'class',
-  'filename' => 'includes/database/schema.inc',
-  'module' => '',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'DatabaseSchemaObjectExistsException',
-  'type' => 'class',
-  'filename' => 'includes/database/schema.inc',
-  'module' => '',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'DatabaseSchema_mysql',
-  'type' => 'class',
-  'filename' => 'includes/database/mysql/schema.inc',
-  'module' => '',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'DatabaseSchema_pgsql',
-  'type' => 'class',
-  'filename' => 'includes/database/pgsql/schema.inc',
-  'module' => '',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'DatabaseSchema_sqlite',
-  'type' => 'class',
-  'filename' => 'includes/database/sqlite/schema.inc',
-  'module' => '',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'DatabaseStatementBase',
-  'type' => 'class',
-  'filename' => 'includes/database/database.inc',
-  'module' => '',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'DatabaseStatementEmpty',
-  'type' => 'class',
-  'filename' => 'includes/database/database.inc',
-  'module' => '',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'DatabaseStatementInterface',
-  'type' => 'interface',
-  'filename' => 'includes/database/database.inc',
-  'module' => '',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'DatabaseStatementPrefetch',
-  'type' => 'class',
-  'filename' => 'includes/database/prefetch.inc',
-  'module' => '',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'DatabaseStatement_sqlite',
-  'type' => 'class',
-  'filename' => 'includes/database/sqlite/database.inc',
-  'module' => '',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'DatabaseTaskException',
-  'type' => 'class',
-  'filename' => 'includes/install.inc',
-  'module' => '',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'DatabaseTasks',
-  'type' => 'class',
-  'filename' => 'includes/install.inc',
-  'module' => '',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'DatabaseTasks_mysql',
-  'type' => 'class',
-  'filename' => 'includes/database/mysql/install.inc',
-  'module' => '',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'DatabaseTasks_pgsql',
-  'type' => 'class',
-  'filename' => 'includes/database/pgsql/install.inc',
-  'module' => '',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'DatabaseTasks_sqlite',
-  'type' => 'class',
-  'filename' => 'includes/database/sqlite/install.inc',
-  'module' => '',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'DatabaseTransaction',
-  'type' => 'class',
-  'filename' => 'includes/database/database.inc',
-  'module' => '',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'DatabaseTransactionCommitFailedException',
-  'type' => 'class',
-  'filename' => 'includes/database/database.inc',
-  'module' => '',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'DatabaseTransactionExplicitCommitNotAllowedException',
-  'type' => 'class',
-  'filename' => 'includes/database/database.inc',
-  'module' => '',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'DatabaseTransactionNameNonUniqueException',
-  'type' => 'class',
-  'filename' => 'includes/database/database.inc',
-  'module' => '',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'DatabaseTransactionNoActiveException',
-  'type' => 'class',
-  'filename' => 'includes/database/database.inc',
-  'module' => '',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'DatabaseTransactionOutOfOrderException',
-  'type' => 'class',
-  'filename' => 'includes/database/database.inc',
-  'module' => '',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'DateApiTestCase',
-  'type' => 'class',
-  'filename' => 'sites/all/modules/date/date_api/tests/DateApiTestCase.test',
-  'module' => 'date_api',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'DateApiUnitTestCase',
-  'type' => 'class',
-  'filename' => 'sites/all/modules/date/date_api/tests/DateApiUnitTestCase.test',
-  'module' => 'date_api',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'DateEmwTestCase',
-  'type' => 'class',
-  'filename' => 'sites/all/modules/date/tests/DateEmwTestCase.test',
-  'module' => 'date',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'DateFieldTestBase',
-  'type' => 'class',
-  'filename' => 'sites/all/modules/date/tests/DateFieldTestBase.test',
-  'module' => 'date',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'DateFieldTestCase',
-  'type' => 'class',
-  'filename' => 'sites/all/modules/date/tests/DateFieldTestCase.test',
-  'module' => 'date',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'DateFormatTestCase',
-  'type' => 'class',
-  'filename' => 'modules/system/system.test',
-  'module' => 'system',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'DateFormTestCase',
-  'type' => 'class',
-  'filename' => 'sites/all/modules/date/tests/DateFormTestCase.test',
-  'module' => 'date',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'DateMigrateFieldHandler',
-  'type' => 'class',
-  'filename' => 'sites/all/modules/date/date.migrate.inc',
-  'module' => 'date',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'DateMigrateTestCase',
-  'type' => 'class',
-  'filename' => 'sites/all/modules/date/tests/DateMigrateTestCase.test',
-  'module' => 'date',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'DateNowUnitTestCase',
-  'type' => 'class',
-  'filename' => 'sites/all/modules/date/tests/DateNowUnitTestCase.test',
-  'module' => 'date',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'DateObject',
-  'type' => 'class',
-  'filename' => 'sites/all/modules/date/date_api/date_api.module',
-  'module' => 'date_api',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'DateTimeFunctionalTest',
-  'type' => 'class',
-  'filename' => 'modules/system/system.test',
-  'module' => 'system',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'DateTimezoneTestCase',
-  'type' => 'class',
-  'filename' => 'sites/all/modules/date/tests/DateTimezoneTestCase.test',
-  'module' => 'date',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'DateUiTestCase',
-  'type' => 'class',
-  'filename' => 'sites/all/modules/date/tests/DateUiTestCase.test',
-  'module' => 'date',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'DateValidationTestCase',
-  'type' => 'class',
-  'filename' => 'sites/all/modules/date/tests/DateValidationTestCase.test',
-  'module' => 'date',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'date_sql_handler',
-  'type' => 'class',
-  'filename' => 'sites/all/modules/date/date_api/date_api_sql.inc',
-  'module' => 'date_api',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'DefaultMailSystem',
-  'type' => 'class',
-  'filename' => 'modules/system/system.mail.inc',
-  'module' => 'system',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'DeleteQuery',
-  'type' => 'class',
-  'filename' => 'includes/database/query.inc',
-  'module' => '',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'DeleteQuery_sqlite',
-  'type' => 'class',
-  'filename' => 'includes/database/sqlite/query.inc',
-  'module' => '',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'DrupalCacheArray',
-  'type' => 'class',
-  'filename' => 'includes/bootstrap.inc',
-  'module' => '',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'DrupalCacheInterface',
-  'type' => 'interface',
-  'filename' => 'includes/cache.inc',
-  'module' => '',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'DrupalDatabaseCache',
-  'type' => 'class',
-  'filename' => 'includes/cache.inc',
-  'module' => '',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'DrupalDefaultEntityController',
-  'type' => 'class',
-  'filename' => 'includes/entity.inc',
-  'module' => '',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'DrupalEntityControllerInterface',
-  'type' => 'interface',
-  'filename' => 'includes/entity.inc',
-  'module' => '',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'DrupalFakeCache',
-  'type' => 'class',
-  'filename' => 'includes/cache-install.inc',
-  'module' => '',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'Drupali18nConfigTestCase',
-  'type' => 'class',
-  'filename' => 'sites/all/modules/i18n/i18n.test',
-  'module' => 'i18n',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'Drupali18nTestCase',
-  'type' => 'class',
-  'filename' => 'sites/all/modules/i18n/i18n.test',
-  'module' => 'i18n',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'DrupalLocalStreamWrapper',
-  'type' => 'class',
-  'filename' => 'includes/stream_wrappers.inc',
-  'module' => '',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'DrupalPrivateStreamWrapper',
-  'type' => 'class',
-  'filename' => 'includes/stream_wrappers.inc',
-  'module' => '',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'DrupalPublicStreamWrapper',
-  'type' => 'class',
-  'filename' => 'includes/stream_wrappers.inc',
-  'module' => '',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'DrupalQueue',
-  'type' => 'class',
-  'filename' => 'modules/system/system.queue.inc',
-  'module' => 'system',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'DrupalQueueInterface',
-  'type' => 'interface',
-  'filename' => 'modules/system/system.queue.inc',
-  'module' => 'system',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'DrupalReliableQueueInterface',
-  'type' => 'interface',
-  'filename' => 'modules/system/system.queue.inc',
-  'module' => 'system',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'DrupalRequestSanitizer',
-  'type' => 'class',
-  'filename' => 'includes/request-sanitizer.inc',
-  'module' => '',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'DrupalSetMessageTest',
-  'type' => 'class',
-  'filename' => 'modules/system/system.test',
-  'module' => 'system',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'DrupalStreamWrapperInterface',
-  'type' => 'interface',
-  'filename' => 'includes/stream_wrappers.inc',
-  'module' => '',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'DrupalTemporaryStreamWrapper',
-  'type' => 'class',
-  'filename' => 'includes/stream_wrappers.inc',
-  'module' => '',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'DrupalUpdateException',
-  'type' => 'class',
-  'filename' => 'includes/update.inc',
-  'module' => '',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'DrupalUpdaterInterface',
-  'type' => 'interface',
-  'filename' => 'includes/updater.inc',
-  'module' => '',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'EnableDisableTestCase',
-  'type' => 'class',
-  'filename' => 'modules/system/system.test',
-  'module' => 'system',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'EntityFieldQuery',
-  'type' => 'class',
-  'filename' => 'includes/entity.inc',
-  'module' => '',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'EntityFieldQueryException',
-  'type' => 'class',
-  'filename' => 'includes/entity.inc',
-  'module' => '',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'EntityMalformedException',
-  'type' => 'class',
-  'filename' => 'includes/entity.inc',
-  'module' => '',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'EntityPropertiesTestCase',
-  'type' => 'class',
-  'filename' => 'modules/field/tests/field.test',
-  'module' => 'field',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'EntityTranslationCommentHandler',
-  'type' => 'class',
-  'filename' => 'sites/all/modules/entity_translation/includes/translation.handler.comment.inc',
-  'module' => 'entity_translation',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'EntityTranslationCommentTestCase',
-  'type' => 'class',
-  'filename' => 'sites/all/modules/entity_translation/tests/entity_translation.test',
-  'module' => 'entity_translation',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'EntityTranslationContentTranslationTestCase',
-  'type' => 'class',
-  'filename' => 'sites/all/modules/entity_translation/tests/entity_translation.test',
-  'module' => 'entity_translation',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'EntityTranslationDefaultHandler',
-  'type' => 'class',
-  'filename' => 'sites/all/modules/entity_translation/includes/translation.handler.inc',
-  'module' => 'entity_translation',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'EntityTranslationHandlerFactory',
-  'type' => 'class',
-  'filename' => 'sites/all/modules/entity_translation/includes/translation.handler_factory.inc',
-  'module' => 'entity_translation',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'EntityTranslationHandlerInterface',
-  'type' => 'interface',
-  'filename' => 'sites/all/modules/entity_translation/includes/translation.handler.inc',
-  'module' => 'entity_translation',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'EntityTranslationHierarchyTestCase',
-  'type' => 'class',
-  'filename' => 'sites/all/modules/entity_translation/tests/entity_translation.test',
-  'module' => 'entity_translation',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'EntityTranslationHookTestCase',
-  'type' => 'class',
-  'filename' => 'sites/all/modules/entity_translation/tests/entity_translation.test',
-  'module' => 'entity_translation',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'EntityTranslationIntegrationTestCase',
-  'type' => 'class',
-  'filename' => 'sites/all/modules/entity_translation/tests/entity_translation.test',
-  'module' => 'entity_translation',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'EntityTranslationNodeHandler',
-  'type' => 'class',
-  'filename' => 'sites/all/modules/entity_translation/includes/translation.handler.node.inc',
-  'module' => 'entity_translation',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'EntityTranslationTaxonomyAutocompleteTestCase',
-  'type' => 'class',
-  'filename' => 'sites/all/modules/entity_translation/tests/entity_translation.test',
-  'module' => 'entity_translation',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'EntityTranslationTaxonomyTermHandler',
-  'type' => 'class',
-  'filename' => 'sites/all/modules/entity_translation/includes/translation.handler.taxonomy_term.inc',
-  'module' => 'entity_translation',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'EntityTranslationTestCase',
-  'type' => 'class',
-  'filename' => 'sites/all/modules/entity_translation/tests/entity_translation.test',
-  'module' => 'entity_translation',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'EntityTranslationToggleFieldsTranslatabilityTestCase',
-  'type' => 'class',
-  'filename' => 'sites/all/modules/entity_translation/tests/entity_translation.test',
-  'module' => 'entity_translation',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'EntityTranslationTranslationTestCase',
-  'type' => 'class',
-  'filename' => 'sites/all/modules/entity_translation/tests/entity_translation.test',
-  'module' => 'entity_translation',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'EntityTranslationUserHandler',
-  'type' => 'class',
-  'filename' => 'sites/all/modules/entity_translation/includes/translation.handler.user.inc',
-  'module' => 'entity_translation',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'entity_translation_handler_field_field',
-  'type' => 'class',
-  'filename' => 'sites/all/modules/entity_translation/views/entity_translation_handler_field_field.inc',
-  'module' => 'entity_translation',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'entity_translation_handler_field_label',
-  'type' => 'class',
-  'filename' => 'sites/all/modules/entity_translation/views/entity_translation_handler_field_label.inc',
-  'module' => 'entity_translation',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'entity_translation_handler_field_translate_link',
-  'type' => 'class',
-  'filename' => 'sites/all/modules/entity_translation/views/entity_translation_handler_field_translate_link.inc',
-  'module' => 'entity_translation',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'entity_translation_handler_filter_entity_type',
-  'type' => 'class',
-  'filename' => 'sites/all/modules/entity_translation/views/entity_translation_handler_filter_entity_type.inc',
-  'module' => 'entity_translation',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'entity_translation_handler_filter_language',
-  'type' => 'class',
-  'filename' => 'sites/all/modules/entity_translation/views/entity_translation_handler_filter_language.inc',
-  'module' => 'entity_translation',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'entity_translation_handler_filter_translation_exists',
-  'type' => 'class',
-  'filename' => 'sites/all/modules/entity_translation/views/entity_translation_handler_filter_translation_exists.inc',
-  'module' => 'entity_translation',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'entity_translation_handler_relationship',
-  'type' => 'class',
-  'filename' => 'sites/all/modules/entity_translation/views/entity_translation_handler_relationship.inc',
-  'module' => 'entity_translation',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'FieldAttachOtherTestCase',
-  'type' => 'class',
-  'filename' => 'modules/field/tests/field.test',
-  'module' => 'field',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'FieldAttachStorageTestCase',
-  'type' => 'class',
-  'filename' => 'modules/field/tests/field.test',
-  'module' => 'field',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'FieldAttachTestCase',
-  'type' => 'class',
-  'filename' => 'modules/field/tests/field.test',
-  'module' => 'field',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'FieldBulkDeleteTestCase',
-  'type' => 'class',
-  'filename' => 'modules/field/tests/field.test',
-  'module' => 'field',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'FieldCrudTestCase',
-  'type' => 'class',
-  'filename' => 'modules/field/tests/field.test',
-  'module' => 'field',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'FieldDisplayAPITestCase',
-  'type' => 'class',
-  'filename' => 'modules/field/tests/field.test',
-  'module' => 'field',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'FieldException',
-  'type' => 'class',
-  'filename' => 'modules/field/field.module',
-  'module' => 'field',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'FieldFormTestCase',
-  'type' => 'class',
-  'filename' => 'modules/field/tests/field.test',
-  'module' => 'field',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'FieldInfo',
-  'type' => 'class',
-  'filename' => 'modules/field/field.info.class.inc',
-  'module' => 'field',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'FieldInfoTestCase',
-  'type' => 'class',
-  'filename' => 'modules/field/tests/field.test',
-  'module' => 'field',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'FieldInstanceCrudTestCase',
-  'type' => 'class',
-  'filename' => 'modules/field/tests/field.test',
-  'module' => 'field',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'FieldsOverlapException',
-  'type' => 'class',
-  'filename' => 'includes/database/database.inc',
-  'module' => '',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'FieldSqlStorageTestCase',
-  'type' => 'class',
-  'filename' => 'modules/field/modules/field_sql_storage/field_sql_storage.test',
-  'module' => 'field_sql_storage',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'FieldTestCase',
-  'type' => 'class',
-  'filename' => 'modules/field/tests/field.test',
-  'module' => 'field',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'FieldTranslationsTestCase',
-  'type' => 'class',
-  'filename' => 'modules/field/tests/field.test',
-  'module' => 'field',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'FieldUIAlterTestCase',
-  'type' => 'class',
-  'filename' => 'modules/field_ui/field_ui.test',
-  'module' => 'field_ui',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'FieldUIManageDisplayTestCase',
-  'type' => 'class',
-  'filename' => 'modules/field_ui/field_ui.test',
-  'module' => 'field_ui',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'FieldUIManageFieldsTestCase',
-  'type' => 'class',
-  'filename' => 'modules/field_ui/field_ui.test',
-  'module' => 'field_ui',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'FieldUITestCase',
-  'type' => 'class',
-  'filename' => 'modules/field_ui/field_ui.test',
-  'module' => 'field_ui',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'FieldUpdateForbiddenException',
-  'type' => 'class',
-  'filename' => 'modules/field/field.module',
-  'module' => 'field',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'FieldValidationException',
-  'type' => 'class',
-  'filename' => 'modules/field/field.attach.inc',
-  'module' => 'field',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'FileFieldAnonymousSubmission',
-  'type' => 'class',
-  'filename' => 'modules/file/tests/file.test',
-  'module' => 'file',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'FileFieldDisplayTestCase',
-  'type' => 'class',
-  'filename' => 'modules/file/tests/file.test',
-  'module' => 'file',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'FileFieldPathTestCase',
-  'type' => 'class',
-  'filename' => 'modules/file/tests/file.test',
-  'module' => 'file',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'FileFieldRevisionTestCase',
-  'type' => 'class',
-  'filename' => 'modules/file/tests/file.test',
-  'module' => 'file',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'FileFieldTestCase',
-  'type' => 'class',
-  'filename' => 'modules/file/tests/file.test',
-  'module' => 'file',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'FileFieldValidateTestCase',
-  'type' => 'class',
-  'filename' => 'modules/file/tests/file.test',
-  'module' => 'file',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'FileFieldWidgetTestCase',
-  'type' => 'class',
-  'filename' => 'modules/file/tests/file.test',
-  'module' => 'file',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'FileManagedFileElementTestCase',
-  'type' => 'class',
-  'filename' => 'modules/file/tests/file.test',
-  'module' => 'file',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'FilePrivateTestCase',
-  'type' => 'class',
-  'filename' => 'modules/file/tests/file.test',
-  'module' => 'file',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'FileScanDirectory',
-  'type' => 'class',
-  'filename' => 'modules/file/tests/file.test',
-  'module' => 'file',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'FileTaxonomyTermTestCase',
-  'type' => 'class',
-  'filename' => 'modules/file/tests/file.test',
-  'module' => 'file',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'FileThemeImplementationsTestCase',
-  'type' => 'class',
-  'filename' => 'modules/file/tests/file.test',
-  'module' => 'file',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'FileTokenReplaceTestCase',
-  'type' => 'class',
-  'filename' => 'modules/file/tests/file.test',
-  'module' => 'file',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'FileTransfer',
-  'type' => 'class',
-  'filename' => 'includes/filetransfer/filetransfer.inc',
-  'module' => '',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'FileTransferChmodInterface',
-  'type' => 'interface',
-  'filename' => 'includes/filetransfer/filetransfer.inc',
-  'module' => '',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'FileTransferException',
-  'type' => 'class',
-  'filename' => 'includes/filetransfer/filetransfer.inc',
-  'module' => '',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'FileTransferFTP',
-  'type' => 'class',
-  'filename' => 'includes/filetransfer/ftp.inc',
-  'module' => '',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'FileTransferFTPExtension',
-  'type' => 'class',
-  'filename' => 'includes/filetransfer/ftp.inc',
-  'module' => '',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'FileTransferLocal',
-  'type' => 'class',
-  'filename' => 'includes/filetransfer/local.inc',
-  'module' => '',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'FileTransferSSH',
-  'type' => 'class',
-  'filename' => 'includes/filetransfer/ssh.inc',
-  'module' => '',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'FilterAdminTestCase',
-  'type' => 'class',
-  'filename' => 'modules/filter/filter.test',
-  'module' => 'filter',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'FilterCRUDTestCase',
-  'type' => 'class',
-  'filename' => 'modules/filter/filter.test',
-  'module' => 'filter',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'FilterDefaultFormatTestCase',
-  'type' => 'class',
-  'filename' => 'modules/filter/filter.test',
-  'module' => 'filter',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'FilterDOMSerializeTestCase',
-  'type' => 'class',
-  'filename' => 'modules/filter/filter.test',
-  'module' => 'filter',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'FilterFormatAccessTestCase',
-  'type' => 'class',
-  'filename' => 'modules/filter/filter.test',
-  'module' => 'filter',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'FilterHooksTestCase',
-  'type' => 'class',
-  'filename' => 'modules/filter/filter.test',
-  'module' => 'filter',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'FilterNoFormatTestCase',
-  'type' => 'class',
-  'filename' => 'modules/filter/filter.test',
-  'module' => 'filter',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'FilterSecurityTestCase',
-  'type' => 'class',
-  'filename' => 'modules/filter/filter.test',
-  'module' => 'filter',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'FilterSettingsTestCase',
-  'type' => 'class',
-  'filename' => 'modules/filter/filter.test',
-  'module' => 'filter',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'FilterUnitTestCase',
-  'type' => 'class',
-  'filename' => 'modules/filter/filter.test',
-  'module' => 'filter',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'FloodFunctionalTest',
-  'type' => 'class',
-  'filename' => 'modules/system/system.test',
-  'module' => 'system',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'ForumIndexTestCase',
-  'type' => 'class',
-  'filename' => 'modules/forum/forum.test',
-  'module' => 'forum',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'ForumTestCase',
-  'type' => 'class',
-  'filename' => 'modules/forum/forum.test',
-  'module' => 'forum',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'FrontPageTestCase',
-  'type' => 'class',
-  'filename' => 'modules/system/system.test',
-  'module' => 'system',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'HookRequirementsTestCase',
-  'type' => 'class',
-  'filename' => 'modules/system/system.test',
-  'module' => 'system',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'HtaccessTest',
-  'type' => 'class',
-  'filename' => 'modules/system/system.test',
-  'module' => 'system',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'i18nStringTestCase',
-  'type' => 'class',
-  'filename' => 'sites/all/modules/i18n/i18n_string/i18n_string.test',
-  'module' => 'i18n_string',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'i18nTaxonomyTestCase',
-  'type' => 'class',
-  'filename' => 'sites/all/modules/i18n/i18n_taxonomy/i18n_taxonomy.test',
-  'module' => 'i18n_taxonomy',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'i18n_object_wrapper',
-  'type' => 'class',
-  'filename' => 'sites/all/modules/i18n/i18n_object.inc',
-  'module' => 'i18n',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'i18n_string_object',
-  'type' => 'class',
-  'filename' => 'sites/all/modules/i18n/i18n_string/i18n_string.inc',
-  'module' => 'i18n_string',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'i18n_string_object_wrapper',
-  'type' => 'class',
-  'filename' => 'sites/all/modules/i18n/i18n_string/i18n_string.inc',
-  'module' => 'i18n_string',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'i18n_string_textgroup_cached',
-  'type' => 'class',
-  'filename' => 'sites/all/modules/i18n/i18n_string/i18n_string.inc',
-  'module' => 'i18n_string',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'i18n_string_textgroup_default',
-  'type' => 'class',
-  'filename' => 'sites/all/modules/i18n/i18n_string/i18n_string.inc',
-  'module' => 'i18n_string',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'i18n_taxonomy_term',
-  'type' => 'class',
-  'filename' => 'sites/all/modules/i18n/i18n_taxonomy/i18n_taxonomy.inc',
-  'module' => 'i18n_taxonomy',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'i18n_taxonomy_translation_set',
-  'type' => 'class',
-  'filename' => 'sites/all/modules/i18n/i18n_taxonomy/i18n_taxonomy.inc',
-  'module' => 'i18n_taxonomy',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'i18n_translation_set',
-  'type' => 'class',
-  'filename' => 'sites/all/modules/i18n/i18n_translation/i18n_translation.inc',
-  'module' => 'i18n_translation',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'ImageAdminStylesUnitTest',
-  'type' => 'class',
-  'filename' => 'modules/image/image.test',
-  'module' => 'image',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'ImageAdminUiTestCase',
-  'type' => 'class',
-  'filename' => 'modules/image/image.test',
-  'module' => 'image',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'ImageDimensionsScaleTestCase',
-  'type' => 'class',
-  'filename' => 'modules/image/image.test',
-  'module' => 'image',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'ImageDimensionsTestCase',
-  'type' => 'class',
-  'filename' => 'modules/image/image.test',
-  'module' => 'image',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'ImageEffectsUnitTest',
-  'type' => 'class',
-  'filename' => 'modules/image/image.test',
-  'module' => 'image',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'ImageFieldDefaultImagesTestCase',
-  'type' => 'class',
-  'filename' => 'modules/image/image.test',
-  'module' => 'image',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'ImageFieldDisplayTestCase',
-  'type' => 'class',
-  'filename' => 'modules/image/image.test',
-  'module' => 'image',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'ImageFieldTestCase',
-  'type' => 'class',
-  'filename' => 'modules/image/image.test',
-  'module' => 'image',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'ImageFieldValidateTestCase',
-  'type' => 'class',
-  'filename' => 'modules/image/image.test',
-  'module' => 'image',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'ImageStyleFlushTest',
-  'type' => 'class',
-  'filename' => 'modules/image/image.test',
-  'module' => 'image',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'ImageStylesPathAndUrlTestCase',
-  'type' => 'class',
-  'filename' => 'modules/image/image.test',
-  'module' => 'image',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'ImageThemeFunctionWebTestCase',
-  'type' => 'class',
-  'filename' => 'modules/image/image.test',
-  'module' => 'image',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'InfoFileParserTestCase',
-  'type' => 'class',
-  'filename' => 'modules/system/system.test',
-  'module' => 'system',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'InsertQuery',
-  'type' => 'class',
-  'filename' => 'includes/database/query.inc',
-  'module' => '',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'InsertQuery_mysql',
-  'type' => 'class',
-  'filename' => 'includes/database/mysql/query.inc',
-  'module' => '',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'InsertQuery_pgsql',
-  'type' => 'class',
-  'filename' => 'includes/database/pgsql/query.inc',
-  'module' => '',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'InsertQuery_sqlite',
-  'type' => 'class',
-  'filename' => 'includes/database/sqlite/query.inc',
-  'module' => '',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'InvalidMergeQueryException',
-  'type' => 'class',
-  'filename' => 'includes/database/database.inc',
-  'module' => '',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'InvalidQueryConditionOperatorException',
-  'type' => 'class',
-  'filename' => 'includes/database/database.inc',
-  'module' => '',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'IPAddressBlockingTestCase',
-  'type' => 'class',
-  'filename' => 'modules/system/system.test',
-  'module' => 'system',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'LocaleBrowserDetectionTest',
-  'type' => 'class',
-  'filename' => 'modules/locale/locale.test',
-  'module' => 'locale',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'LocaleCommentLanguageFunctionalTest',
-  'type' => 'class',
-  'filename' => 'modules/locale/locale.test',
-  'module' => 'locale',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'LocaleConfigurationTest',
-  'type' => 'class',
-  'filename' => 'modules/locale/locale.test',
-  'module' => 'locale',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'LocaleContentFunctionalTest',
-  'type' => 'class',
-  'filename' => 'modules/locale/locale.test',
-  'module' => 'locale',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'LocaleCSSAlterTest',
-  'type' => 'class',
-  'filename' => 'modules/locale/locale.test',
-  'module' => 'locale',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'LocaleDateFormatsFunctionalTest',
-  'type' => 'class',
-  'filename' => 'modules/locale/locale.test',
-  'module' => 'locale',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'LocaleExportFunctionalTest',
-  'type' => 'class',
-  'filename' => 'modules/locale/locale.test',
-  'module' => 'locale',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'LocaleImportFunctionalTest',
-  'type' => 'class',
-  'filename' => 'modules/locale/locale.test',
-  'module' => 'locale',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'LocaleInstallTest',
-  'type' => 'class',
-  'filename' => 'modules/locale/locale.test',
-  'module' => 'locale',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'LocaleJavascriptTranslationTest',
-  'type' => 'class',
-  'filename' => 'modules/locale/locale.test',
-  'module' => 'locale',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'LocaleLanguageNegotiationInfoFunctionalTest',
-  'type' => 'class',
-  'filename' => 'modules/locale/locale.test',
-  'module' => 'locale',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'LocaleLanguageSwitchingFunctionalTest',
-  'type' => 'class',
-  'filename' => 'modules/locale/locale.test',
-  'module' => 'locale',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'LocaleLibraryInfoAlterTest',
-  'type' => 'class',
-  'filename' => 'modules/locale/locale.test',
-  'module' => 'locale',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'LocaleMultilingualFieldsFunctionalTest',
-  'type' => 'class',
-  'filename' => 'modules/locale/locale.test',
-  'module' => 'locale',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'LocalePathFunctionalTest',
-  'type' => 'class',
-  'filename' => 'modules/locale/locale.test',
-  'module' => 'locale',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'LocalePluralFormatTest',
-  'type' => 'class',
-  'filename' => 'modules/locale/locale.test',
-  'module' => 'locale',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'LocaleStringIsSafeTest',
-  'type' => 'class',
-  'filename' => 'modules/locale/locale.test',
-  'module' => 'locale',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'LocaleTranslationFunctionalTest',
-  'type' => 'class',
-  'filename' => 'modules/locale/locale.test',
-  'module' => 'locale',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'LocaleUILanguageNegotiationTest',
-  'type' => 'class',
-  'filename' => 'modules/locale/locale.test',
-  'module' => 'locale',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'LocaleUninstallFrenchFunctionalTest',
-  'type' => 'class',
-  'filename' => 'modules/locale/locale.test',
-  'module' => 'locale',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'LocaleUninstallFunctionalTest',
-  'type' => 'class',
-  'filename' => 'modules/locale/locale.test',
-  'module' => 'locale',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'LocaleUrlRewritingTest',
-  'type' => 'class',
-  'filename' => 'modules/locale/locale.test',
-  'module' => 'locale',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'LocaleUserCreationTest',
-  'type' => 'class',
-  'filename' => 'modules/locale/locale.test',
-  'module' => 'locale',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'LocaleUserLanguageFunctionalTest',
-  'type' => 'class',
-  'filename' => 'modules/locale/locale.test',
-  'module' => 'locale',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'MailSystemInterface',
-  'type' => 'interface',
-  'filename' => 'includes/mail.inc',
-  'module' => '',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'MemoryQueue',
-  'type' => 'class',
-  'filename' => 'modules/system/system.queue.inc',
-  'module' => 'system',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'MenuNodeTestCase',
-  'type' => 'class',
-  'filename' => 'modules/menu/menu.test',
-  'module' => 'menu',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'MenuTestCase',
-  'type' => 'class',
-  'filename' => 'modules/menu/menu.test',
-  'module' => 'menu',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'MergeQuery',
-  'type' => 'class',
-  'filename' => 'includes/database/query.inc',
-  'module' => '',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'MigrateTranslationEntityHandler',
-  'type' => 'class',
-  'filename' => 'sites/all/modules/entity_translation/includes/translation.migrate.inc',
-  'module' => 'entity_translation',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'ModuleDependencyTestCase',
-  'type' => 'class',
-  'filename' => 'modules/system/system.test',
-  'module' => 'system',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'ModuleRequiredTestCase',
-  'type' => 'class',
-  'filename' => 'modules/system/system.test',
-  'module' => 'system',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'ModuleTestCase',
-  'type' => 'class',
-  'filename' => 'modules/system/system.test',
-  'module' => 'system',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'ModuleUpdater',
-  'type' => 'class',
-  'filename' => 'modules/system/system.updater.inc',
-  'module' => 'system',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'ModuleVersionTestCase',
-  'type' => 'class',
-  'filename' => 'modules/system/system.test',
-  'module' => 'system',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'MultiStepNodeFormBasicOptionsTest',
-  'type' => 'class',
-  'filename' => 'modules/node/node.test',
-  'module' => 'node',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'NewDefaultThemeBlocks',
-  'type' => 'class',
-  'filename' => 'modules/block/block.test',
-  'module' => 'block',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'NodeAccessBaseTableTestCase',
-  'type' => 'class',
-  'filename' => 'modules/node/node.test',
-  'module' => 'node',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'NodeAccessFieldTestCase',
-  'type' => 'class',
-  'filename' => 'modules/node/node.test',
-  'module' => 'node',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'NodeAccessPagerTestCase',
-  'type' => 'class',
-  'filename' => 'modules/node/node.test',
-  'module' => 'node',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'NodeAccessRebuildTestCase',
-  'type' => 'class',
-  'filename' => 'modules/node/node.test',
-  'module' => 'node',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'NodeAccessRecordsTestCase',
-  'type' => 'class',
-  'filename' => 'modules/node/node.test',
-  'module' => 'node',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'NodeAccessTestCase',
-  'type' => 'class',
-  'filename' => 'modules/node/node.test',
-  'module' => 'node',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'NodeAdminTestCase',
-  'type' => 'class',
-  'filename' => 'modules/node/node.test',
-  'module' => 'node',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'NodeBlockFunctionalTest',
-  'type' => 'class',
-  'filename' => 'modules/node/node.test',
-  'module' => 'node',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'NodeBlockTestCase',
-  'type' => 'class',
-  'filename' => 'modules/node/node.test',
-  'module' => 'node',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'NodeBuildContent',
-  'type' => 'class',
-  'filename' => 'modules/node/node.test',
-  'module' => 'node',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'NodeController',
-  'type' => 'class',
-  'filename' => 'modules/node/node.module',
-  'module' => 'node',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'NodeCreationTestCase',
-  'type' => 'class',
-  'filename' => 'modules/node/node.test',
-  'module' => 'node',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'NodeEntityFieldQueryAlter',
-  'type' => 'class',
-  'filename' => 'modules/node/node.test',
-  'module' => 'node',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'NodeEntityViewModeAlterTest',
-  'type' => 'class',
-  'filename' => 'modules/node/node.test',
-  'module' => 'node',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'NodeFeedTestCase',
-  'type' => 'class',
-  'filename' => 'modules/node/node.test',
-  'module' => 'node',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'NodeLoadHooksTestCase',
-  'type' => 'class',
-  'filename' => 'modules/node/node.test',
-  'module' => 'node',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'NodeLoadMultipleTestCase',
-  'type' => 'class',
-  'filename' => 'modules/node/node.test',
-  'module' => 'node',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'NodeMultiByteUtf8Test',
-  'type' => 'class',
-  'filename' => 'modules/node/node.test',
-  'module' => 'node',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'NodePageCacheTest',
-  'type' => 'class',
-  'filename' => 'modules/node/node.test',
-  'module' => 'node',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'NodePostSettingsTestCase',
-  'type' => 'class',
-  'filename' => 'modules/node/node.test',
-  'module' => 'node',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'NodeQueryAlter',
-  'type' => 'class',
-  'filename' => 'modules/node/node.test',
-  'module' => 'node',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'NodeRevisionPermissionsTestCase',
-  'type' => 'class',
-  'filename' => 'modules/node/node.test',
-  'module' => 'node',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'NodeRevisionsTestCase',
-  'type' => 'class',
-  'filename' => 'modules/node/node.test',
-  'module' => 'node',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'NodeRSSContentTestCase',
-  'type' => 'class',
-  'filename' => 'modules/node/node.test',
-  'module' => 'node',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'NodeSaveTestCase',
-  'type' => 'class',
-  'filename' => 'modules/node/node.test',
-  'module' => 'node',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'NodeTitleTestCase',
-  'type' => 'class',
-  'filename' => 'modules/node/node.test',
-  'module' => 'node',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'NodeTitleXSSTestCase',
-  'type' => 'class',
-  'filename' => 'modules/node/node.test',
-  'module' => 'node',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'NodeTokenReplaceTestCase',
-  'type' => 'class',
-  'filename' => 'modules/node/node.test',
-  'module' => 'node',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'NodeTypePersistenceTestCase',
-  'type' => 'class',
-  'filename' => 'modules/node/node.test',
-  'module' => 'node',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'NodeTypeTestCase',
-  'type' => 'class',
-  'filename' => 'modules/node/node.test',
-  'module' => 'node',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'NodeWebTestCase',
-  'type' => 'class',
-  'filename' => 'modules/node/node.test',
-  'module' => 'node',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'NoFieldsException',
-  'type' => 'class',
-  'filename' => 'includes/database/database.inc',
-  'module' => '',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'NonDefaultBlockAdmin',
-  'type' => 'class',
-  'filename' => 'modules/block/block.test',
-  'module' => 'block',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'OptionsSelectDynamicValuesTestCase',
-  'type' => 'class',
-  'filename' => 'modules/field/modules/options/options.test',
-  'module' => 'options',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'OptionsWidgetsTestCase',
-  'type' => 'class',
-  'filename' => 'modules/field/modules/options/options.test',
-  'module' => 'options',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'PageEditTestCase',
-  'type' => 'class',
-  'filename' => 'modules/node/node.test',
-  'module' => 'node',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'PageNotFoundTestCase',
-  'type' => 'class',
-  'filename' => 'modules/system/system.test',
-  'module' => 'system',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'PagePreviewTestCase',
-  'type' => 'class',
-  'filename' => 'modules/node/node.test',
-  'module' => 'node',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'PagerDefault',
-  'type' => 'class',
-  'filename' => 'includes/pager.inc',
-  'module' => '',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'PageTitleFiltering',
-  'type' => 'class',
-  'filename' => 'modules/system/system.test',
-  'module' => 'system',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'PageViewTestCase',
-  'type' => 'class',
-  'filename' => 'modules/node/node.test',
-  'module' => 'node',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'PathLanguageTestCase',
-  'type' => 'class',
-  'filename' => 'modules/path/path.test',
-  'module' => 'path',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'PathLanguageUITestCase',
-  'type' => 'class',
-  'filename' => 'modules/path/path.test',
-  'module' => 'path',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'PathMonolingualTestCase',
-  'type' => 'class',
-  'filename' => 'modules/path/path.test',
-  'module' => 'path',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'PathTaxonomyTermTestCase',
-  'type' => 'class',
-  'filename' => 'modules/path/path.test',
-  'module' => 'path',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'PathTestCase',
-  'type' => 'class',
-  'filename' => 'modules/path/path.test',
-  'module' => 'path',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'Query',
-  'type' => 'class',
-  'filename' => 'includes/database/query.inc',
-  'module' => '',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'QueryAlterableInterface',
-  'type' => 'interface',
-  'filename' => 'includes/database/query.inc',
-  'module' => '',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'QueryConditionInterface',
-  'type' => 'interface',
-  'filename' => 'includes/database/query.inc',
-  'module' => '',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'QueryExtendableInterface',
-  'type' => 'interface',
-  'filename' => 'includes/database/select.inc',
-  'module' => '',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'QueryPlaceholderInterface',
-  'type' => 'interface',
-  'filename' => 'includes/database/query.inc',
-  'module' => '',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'QueueTestCase',
-  'type' => 'class',
-  'filename' => 'modules/system/system.test',
-  'module' => 'system',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'RetrieveFileTestCase',
-  'type' => 'class',
-  'filename' => 'modules/system/system.test',
-  'module' => 'system',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'SchemaCache',
-  'type' => 'class',
-  'filename' => 'includes/bootstrap.inc',
-  'module' => '',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'SearchAdvancedSearchForm',
-  'type' => 'class',
-  'filename' => 'modules/search/search.test',
-  'module' => 'search',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'SearchBlockTestCase',
-  'type' => 'class',
-  'filename' => 'modules/search/search.test',
-  'module' => 'search',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'SearchCommentCountToggleTestCase',
-  'type' => 'class',
-  'filename' => 'modules/search/search.test',
-  'module' => 'search',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'SearchCommentTestCase',
-  'type' => 'class',
-  'filename' => 'modules/search/search.test',
-  'module' => 'search',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'SearchConfigSettingsForm',
-  'type' => 'class',
-  'filename' => 'modules/search/search.test',
-  'module' => 'search',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'SearchEmbedForm',
-  'type' => 'class',
-  'filename' => 'modules/search/search.test',
-  'module' => 'search',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'SearchExactTestCase',
-  'type' => 'class',
-  'filename' => 'modules/search/search.test',
-  'module' => 'search',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'SearchExcerptTestCase',
-  'type' => 'class',
-  'filename' => 'modules/search/search.test',
-  'module' => 'search',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'SearchExpressionInsertExtractTestCase',
-  'type' => 'class',
-  'filename' => 'modules/search/search.test',
-  'module' => 'search',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'SearchKeywordsConditions',
-  'type' => 'class',
-  'filename' => 'modules/search/search.test',
-  'module' => 'search',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'SearchLanguageTestCase',
-  'type' => 'class',
-  'filename' => 'modules/search/search.test',
-  'module' => 'search',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'SearchMatchTestCase',
-  'type' => 'class',
-  'filename' => 'modules/search/search.test',
-  'module' => 'search',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'SearchNodeAccessTest',
-  'type' => 'class',
-  'filename' => 'modules/search/search.test',
-  'module' => 'search',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'SearchNodeTagTest',
-  'type' => 'class',
-  'filename' => 'modules/search/search.test',
-  'module' => 'search',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'SearchNumberMatchingTestCase',
-  'type' => 'class',
-  'filename' => 'modules/search/search.test',
-  'module' => 'search',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'SearchNumbersTestCase',
-  'type' => 'class',
-  'filename' => 'modules/search/search.test',
-  'module' => 'search',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'SearchPageOverride',
-  'type' => 'class',
-  'filename' => 'modules/search/search.test',
-  'module' => 'search',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'SearchPageText',
-  'type' => 'class',
-  'filename' => 'modules/search/search.test',
-  'module' => 'search',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'SearchQuery',
-  'type' => 'class',
-  'filename' => 'modules/search/search.extender.inc',
-  'module' => 'search',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'SearchRankingTestCase',
-  'type' => 'class',
-  'filename' => 'modules/search/search.test',
-  'module' => 'search',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'SearchSetLocaleTest',
-  'type' => 'class',
-  'filename' => 'modules/search/search.test',
-  'module' => 'search',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'SearchSimplifyTestCase',
-  'type' => 'class',
-  'filename' => 'modules/search/search.test',
-  'module' => 'search',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'SearchTokenizerTestCase',
-  'type' => 'class',
-  'filename' => 'modules/search/search.test',
-  'module' => 'search',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'SelectQuery',
-  'type' => 'class',
-  'filename' => 'includes/database/select.inc',
-  'module' => '',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'SelectQueryExtender',
-  'type' => 'class',
-  'filename' => 'includes/database/select.inc',
-  'module' => '',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'SelectQueryInterface',
-  'type' => 'interface',
-  'filename' => 'includes/database/select.inc',
-  'module' => '',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'SelectQuery_pgsql',
-  'type' => 'class',
-  'filename' => 'includes/database/pgsql/select.inc',
-  'module' => '',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'SelectQuery_sqlite',
-  'type' => 'class',
-  'filename' => 'includes/database/sqlite/select.inc',
-  'module' => '',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'ShutdownFunctionsTest',
-  'type' => 'class',
-  'filename' => 'modules/system/system.test',
-  'module' => 'system',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'SiteMaintenanceTestCase',
-  'type' => 'class',
-  'filename' => 'modules/system/system.test',
-  'module' => 'system',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'SkipDotsRecursiveDirectoryIterator',
-  'type' => 'class',
-  'filename' => 'includes/filetransfer/filetransfer.inc',
-  'module' => '',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'StreamWrapperInterface',
-  'type' => 'interface',
-  'filename' => 'includes/stream_wrappers.inc',
-  'module' => '',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'SummaryLengthTestCase',
-  'type' => 'class',
-  'filename' => 'modules/node/node.test',
-  'module' => 'node',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'SystemAdminTestCase',
-  'type' => 'class',
-  'filename' => 'modules/system/system.test',
-  'module' => 'system',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'SystemArchiverTest',
-  'type' => 'class',
-  'filename' => 'modules/system/system.test',
-  'module' => 'system',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'SystemAuthorizeCase',
-  'type' => 'class',
-  'filename' => 'modules/system/system.test',
-  'module' => 'system',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'SystemBlockTestCase',
-  'type' => 'class',
-  'filename' => 'modules/system/system.test',
-  'module' => 'system',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'SystemIndexPhpTest',
-  'type' => 'class',
-  'filename' => 'modules/system/system.test',
-  'module' => 'system',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'SystemInfoAlterTestCase',
-  'type' => 'class',
-  'filename' => 'modules/system/system.test',
-  'module' => 'system',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'SystemMainContentFallback',
-  'type' => 'class',
-  'filename' => 'modules/system/system.test',
-  'module' => 'system',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'SystemQueue',
-  'type' => 'class',
-  'filename' => 'modules/system/system.queue.inc',
-  'module' => 'system',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'SystemThemeFunctionalTest',
-  'type' => 'class',
-  'filename' => 'modules/system/system.test',
-  'module' => 'system',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'SystemValidTokenTest',
-  'type' => 'class',
-  'filename' => 'modules/system/system.test',
-  'module' => 'system',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'TableSort',
-  'type' => 'class',
-  'filename' => 'includes/tablesort.inc',
-  'module' => '',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'TaxonomyEFQTestCase',
-  'type' => 'class',
-  'filename' => 'modules/taxonomy/taxonomy.test',
-  'module' => 'taxonomy',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'TaxonomyHooksTestCase',
-  'type' => 'class',
-  'filename' => 'modules/taxonomy/taxonomy.test',
-  'module' => 'taxonomy',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'TaxonomyLegacyTestCase',
-  'type' => 'class',
-  'filename' => 'modules/taxonomy/taxonomy.test',
-  'module' => 'taxonomy',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'TaxonomyLoadMultipleTestCase',
-  'type' => 'class',
-  'filename' => 'modules/taxonomy/taxonomy.test',
-  'module' => 'taxonomy',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'TaxonomyPrivateFileTestCase',
-  'type' => 'class',
-  'filename' => 'modules/taxonomy/taxonomy.test',
-  'module' => 'taxonomy',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'TaxonomyQueryAlterTestCase',
-  'type' => 'class',
-  'filename' => 'modules/taxonomy/taxonomy.test',
-  'module' => 'taxonomy',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'TaxonomyRSSTestCase',
-  'type' => 'class',
-  'filename' => 'modules/taxonomy/taxonomy.test',
-  'module' => 'taxonomy',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'TaxonomyTermCacheUsageTestCase',
-  'type' => 'class',
-  'filename' => 'modules/taxonomy/taxonomy.test',
-  'module' => 'taxonomy',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'TaxonomyTermController',
-  'type' => 'class',
-  'filename' => 'modules/taxonomy/taxonomy.module',
-  'module' => 'taxonomy',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'TaxonomyTermFieldMultipleVocabularyTestCase',
-  'type' => 'class',
-  'filename' => 'modules/taxonomy/taxonomy.test',
-  'module' => 'taxonomy',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'TaxonomyTermFieldTestCase',
-  'type' => 'class',
-  'filename' => 'modules/taxonomy/taxonomy.test',
-  'module' => 'taxonomy',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'TaxonomyTermFunctionTestCase',
-  'type' => 'class',
-  'filename' => 'modules/taxonomy/taxonomy.test',
-  'module' => 'taxonomy',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'TaxonomyTermIndexTestCase',
-  'type' => 'class',
-  'filename' => 'modules/taxonomy/taxonomy.test',
-  'module' => 'taxonomy',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'TaxonomyTermTestCase',
-  'type' => 'class',
-  'filename' => 'modules/taxonomy/taxonomy.test',
-  'module' => 'taxonomy',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'TaxonomyThemeTestCase',
-  'type' => 'class',
-  'filename' => 'modules/taxonomy/taxonomy.test',
-  'module' => 'taxonomy',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'TaxonomyTokenReplaceTestCase',
-  'type' => 'class',
-  'filename' => 'modules/taxonomy/taxonomy.test',
-  'module' => 'taxonomy',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'TaxonomyVocabularyController',
-  'type' => 'class',
-  'filename' => 'modules/taxonomy/taxonomy.module',
-  'module' => 'taxonomy',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'TaxonomyVocabularyFunctionalTest',
-  'type' => 'class',
-  'filename' => 'modules/taxonomy/taxonomy.test',
-  'module' => 'taxonomy',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'TaxonomyVocabularyTestCase',
-  'type' => 'class',
-  'filename' => 'modules/taxonomy/taxonomy.test',
-  'module' => 'taxonomy',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'TaxonomyWebTestCase',
-  'type' => 'class',
-  'filename' => 'modules/taxonomy/taxonomy.test',
-  'module' => 'taxonomy',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'TestingMailSystem',
-  'type' => 'class',
-  'filename' => 'modules/system/system.mail.inc',
-  'module' => 'system',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'TextFieldTestCase',
-  'type' => 'class',
-  'filename' => 'modules/field/modules/text/text.test',
-  'module' => 'text',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'TextSummaryTestCase',
-  'type' => 'class',
-  'filename' => 'modules/field/modules/text/text.test',
-  'module' => 'text',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'TextTranslationTestCase',
-  'type' => 'class',
-  'filename' => 'modules/field/modules/text/text.test',
-  'module' => 'text',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'ThemeRegistry',
-  'type' => 'class',
-  'filename' => 'includes/theme.inc',
-  'module' => '',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'ThemeUpdater',
-  'type' => 'class',
-  'filename' => 'modules/system/system.updater.inc',
-  'module' => 'system',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'TokenReplaceTestCase',
-  'type' => 'class',
-  'filename' => 'modules/system/system.test',
-  'module' => 'system',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'TokenScanTest',
-  'type' => 'class',
-  'filename' => 'modules/system/system.test',
-  'module' => 'system',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'TranslationTestCase',
-  'type' => 'class',
-  'filename' => 'modules/translation/translation.test',
-  'module' => 'translation',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'TruncateQuery',
-  'type' => 'class',
-  'filename' => 'includes/database/query.inc',
-  'module' => '',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'TruncateQuery_mysql',
-  'type' => 'class',
-  'filename' => 'includes/database/mysql/query.inc',
-  'module' => '',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'TruncateQuery_sqlite',
-  'type' => 'class',
-  'filename' => 'includes/database/sqlite/query.inc',
-  'module' => '',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'UpdateQuery',
-  'type' => 'class',
-  'filename' => 'includes/database/query.inc',
-  'module' => '',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'UpdateQuery_mysql',
-  'type' => 'class',
-  'filename' => 'includes/database/mysql/query.inc',
-  'module' => '',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'UpdateQuery_pgsql',
-  'type' => 'class',
-  'filename' => 'includes/database/pgsql/query.inc',
-  'module' => '',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'UpdateQuery_sqlite',
-  'type' => 'class',
-  'filename' => 'includes/database/sqlite/query.inc',
-  'module' => '',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'Updater',
-  'type' => 'class',
-  'filename' => 'includes/updater.inc',
-  'module' => '',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'UpdaterException',
-  'type' => 'class',
-  'filename' => 'includes/updater.inc',
-  'module' => '',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'UpdaterFileTransferException',
-  'type' => 'class',
-  'filename' => 'includes/updater.inc',
-  'module' => '',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'UpdateScriptFunctionalTest',
-  'type' => 'class',
-  'filename' => 'modules/system/system.test',
-  'module' => 'system',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'UserAccountLinksUnitTests',
-  'type' => 'class',
-  'filename' => 'modules/user/user.test',
-  'module' => 'user',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'UserAdminTestCase',
-  'type' => 'class',
-  'filename' => 'modules/user/user.test',
-  'module' => 'user',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'UserAuthmapAssignmentTestCase',
-  'type' => 'class',
-  'filename' => 'modules/user/user.test',
-  'module' => 'user',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'UserAutocompleteTestCase',
-  'type' => 'class',
-  'filename' => 'modules/user/user.test',
-  'module' => 'user',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'UserBlocksUnitTests',
-  'type' => 'class',
-  'filename' => 'modules/user/user.test',
-  'module' => 'user',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'UserCancelTestCase',
-  'type' => 'class',
-  'filename' => 'modules/user/user.test',
-  'module' => 'user',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'UserController',
-  'type' => 'class',
-  'filename' => 'modules/user/user.module',
-  'module' => 'user',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'UserCreateTestCase',
-  'type' => 'class',
-  'filename' => 'modules/user/user.test',
-  'module' => 'user',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'UserEditedOwnAccountTestCase',
-  'type' => 'class',
-  'filename' => 'modules/user/user.test',
-  'module' => 'user',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'UserEditRebuildTestCase',
-  'type' => 'class',
-  'filename' => 'modules/user/user.test',
-  'module' => 'user',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'UserEditTestCase',
-  'type' => 'class',
-  'filename' => 'modules/user/user.test',
-  'module' => 'user',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'UserLoginTestCase',
-  'type' => 'class',
-  'filename' => 'modules/user/user.test',
-  'module' => 'user',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'UserPasswordResetTestCase',
-  'type' => 'class',
-  'filename' => 'modules/user/user.test',
-  'module' => 'user',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'UserPermissionsTestCase',
-  'type' => 'class',
-  'filename' => 'modules/user/user.test',
-  'module' => 'user',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'UserPictureTestCase',
-  'type' => 'class',
-  'filename' => 'modules/user/user.test',
-  'module' => 'user',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'UserRegistrationTestCase',
-  'type' => 'class',
-  'filename' => 'modules/user/user.test',
-  'module' => 'user',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'UserRoleAdminTestCase',
-  'type' => 'class',
-  'filename' => 'modules/user/user.test',
-  'module' => 'user',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'UserRolesAssignmentTestCase',
-  'type' => 'class',
-  'filename' => 'modules/user/user.test',
-  'module' => 'user',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'UserSaveTestCase',
-  'type' => 'class',
-  'filename' => 'modules/user/user.test',
-  'module' => 'user',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'UserSignatureTestCase',
-  'type' => 'class',
-  'filename' => 'modules/user/user.test',
-  'module' => 'user',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'UserTimeZoneFunctionalTest',
-  'type' => 'class',
-  'filename' => 'modules/user/user.test',
-  'module' => 'user',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'UserTokenReplaceTestCase',
-  'type' => 'class',
-  'filename' => 'modules/user/user.test',
-  'module' => 'user',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'UserUserSearchTestCase',
-  'type' => 'class',
-  'filename' => 'modules/user/user.test',
-  'module' => 'user',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'UserValidateCurrentPassCustomForm',
-  'type' => 'class',
-  'filename' => 'modules/user/user.test',
-  'module' => 'user',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'UserValidationTestCase',
-  'type' => 'class',
-  'filename' => 'modules/user/user.test',
-  'module' => 'user',
-  'weight' => '0',
-))
-->values(array(
-  'name' => 'VariableTestCase',
-  'type' => 'class',
-  'filename' => 'sites/all/modules/variable/variable.test',
-  'module' => 'variable',
-  'weight' => '0',
-))
-->execute();
-$connection->schema()->createTable('registry_file', array(
-  'fields' => array(
-    'filename' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-    ),
-    'hash' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '64',
-    ),
-  ),
-  'primary key' => array(
-    'filename',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->insert('registry_file')
-->fields(array(
-  'filename',
-  'hash',
-))
-->values(array(
-  'filename' => 'includes/actions.inc',
-  'hash' => 'f36b066681463c7dfe189e0430cb1a89bf66f7e228cbb53cdfcd93987193f759',
-))
-->values(array(
-  'filename' => 'includes/ajax.inc',
-  'hash' => '8d5ebead219c48d5929ee6a5a178a331471ee6ceb38653094514c952457eaebd',
-))
-->values(array(
-  'filename' => 'includes/archiver.inc',
-  'hash' => 'bdbb21b712a62f6b913590b609fd17cd9f3c3b77c0d21f68e71a78427ed2e3e9',
-))
-->values(array(
-  'filename' => 'includes/authorize.inc',
-  'hash' => '3eb984facfe9e0228e4d01ece6345cf33dfcd2fcc9c291b15f2e4f782a6029a9',
-))
-->values(array(
-  'filename' => 'includes/batch.inc',
-  'hash' => '756b66e69a05b74629dee0ff175385813b27eb635aa49380edd4a65532998825',
-))
-->values(array(
-  'filename' => 'includes/batch.queue.inc',
-  'hash' => '554b2e92e1dad0f7fd5a19cb8dff7e109f10fbe2441a5692d076338ec908de0f',
-))
-->values(array(
-  'filename' => 'includes/bootstrap.inc',
-  'hash' => '7a9ea059e58578df97a205f0b3f0929cfe469e68addb4331a8dd4b54c2c407ec',
-))
-->values(array(
-  'filename' => 'includes/cache-install.inc',
-  'hash' => 'e7ed123c5805703c84ad2cce9c1ca46b3ce8caeeea0d8ef39a3024a4ab95fa0e',
-))
-->values(array(
-  'filename' => 'includes/cache.inc',
-  'hash' => '033c9bf2555dba29382b077f78cc00c82fd7f42a959ba31b710adddf6fdf24fe',
-))
-->values(array(
-  'filename' => 'includes/common.inc',
-  'hash' => '3b30067db24a5ba03a5a2151c6616590ffb8aba4073f15d2398268ac860d8083',
-))
-->values(array(
-  'filename' => 'includes/database/database.inc',
-  'hash' => '9f79732882753fda10b4c0a3fc9fe1cb7f4cdacef743a28664d8af6a855ac8b7',
-))
-->values(array(
-  'filename' => 'includes/database/log.inc',
-  'hash' => '9feb5a17ae2fabcf26a96d2a634ba73da501f7bcfc3599a693d916a6971d00d1',
-))
-->values(array(
-  'filename' => 'includes/database/mysql/database.inc',
-  'hash' => 'fb808762239838f920ffeb74a89db5894fb46131d8bb4c65a0caff82358562c6',
-))
-->values(array(
-  'filename' => 'includes/database/mysql/install.inc',
-  'hash' => '6ae316941f771732fbbabed7e1d6b4cbb41b1f429dd097d04b3345aa15e461a0',
-))
-->values(array(
-  'filename' => 'includes/database/mysql/query.inc',
-  'hash' => 'cddf695f7dbd483591f93af805e7118a04eac3f21c0105326642c6463587670c',
-))
-->values(array(
-  'filename' => 'includes/database/mysql/schema.inc',
-  'hash' => 'c34aa7b7d2cb4662965497ff86f242224116bbd9b72ca6287c12039a65feb72e',
-))
-->values(array(
-  'filename' => 'includes/database/pgsql/database.inc',
-  'hash' => 'f53cb5779d702dde7aefacf8ee25d67cac48d3b94cd8d64057d42c61c5713526',
-))
-->values(array(
-  'filename' => 'includes/database/pgsql/install.inc',
-  'hash' => '39587f26a9e054afaab2064d996af910f1b201ef1c6b82938ef130e4ff8c6aab',
-))
-->values(array(
-  'filename' => 'includes/database/pgsql/query.inc',
-  'hash' => 'bb04ae9239c2179aeb3ef0a55596ee5ae0ddfb5dfd701896c41bf8c42a62280b',
-))
-->values(array(
-  'filename' => 'includes/database/pgsql/schema.inc',
-  'hash' => '0eb77d1d8b30988ba89cbacbcbbc3b66d8ab98b8be8dfa4208a50a45ee77b6e2',
-))
-->values(array(
-  'filename' => 'includes/database/pgsql/select.inc',
-  'hash' => '1e509bc97c58223750e8ea735145b316827e36f43c07b946003e41f5bca23659',
-))
-->values(array(
-  'filename' => 'includes/database/prefetch.inc',
-  'hash' => '026b6b272a91bae5d9325477530167e737b29bf988553a28cdf72fc1d1ea57ed',
-))
-->values(array(
-  'filename' => 'includes/database/query.inc',
-  'hash' => 'f4792f623339ba9097e2af5a4785a3d7d836c831af3894506ddacaa124dd892c',
-))
-->values(array(
-  'filename' => 'includes/database/schema.inc',
-  'hash' => 'da9d48f26c3a47a91f1eb2fa216e9deab2ec42ba10c76039623ce7b6bc984a06',
-))
-->values(array(
-  'filename' => 'includes/database/select.inc',
-  'hash' => '72eeb85a2739c56d25e359c17847d3094e1a67164a2eb85e70b5260cb7d5c79d',
-))
-->values(array(
-  'filename' => 'includes/database/sqlite/database.inc',
-  'hash' => '22e80c5a02c143eace3628e196dded78552e6f2889d1989d052e2a37f46e7f0f',
-))
-->values(array(
-  'filename' => 'includes/database/sqlite/install.inc',
-  'hash' => '6620f354aa175a116ba3a0562c980d86cc3b8b481042fc3cc5ed6a4d1a7a6d74',
-))
-->values(array(
-  'filename' => 'includes/database/sqlite/query.inc',
-  'hash' => '5d4dc3ac34cb2dbc0293471e85e37c890da3da6cd8c0c540c6f33313e4c0cbe9',
-))
-->values(array(
-  'filename' => 'includes/database/sqlite/schema.inc',
-  'hash' => '7bf3af0a255f374ba0c5db175548e836d953b903d31e1adb1e4d3df40d6fdb98',
-))
-->values(array(
-  'filename' => 'includes/database/sqlite/select.inc',
-  'hash' => '8d1c426dbd337733c206cce9f59a172546c6ed856d8ef3f1c7bef05a16f7bf68',
-))
-->values(array(
-  'filename' => 'includes/date.inc',
-  'hash' => '1de2c25e3b67a9919fc6c8061594442b6fb2cdd3a48ddf1591ee3aa98484b737',
-))
-->values(array(
-  'filename' => 'includes/entity.inc',
-  'hash' => 'd548abea63b68b5f59bbb59cf9ceeda53a7e96949cbbfe25ba3fce08f0a7c0e9',
-))
-->values(array(
-  'filename' => 'includes/errors.inc',
-  'hash' => '577e66843ac3ac0d6cb9d0808ff48d9e83acad0faeffad5dfe1ba09bf2631b97',
-))
-->values(array(
-  'filename' => 'includes/file.inc',
-  'hash' => 'd0b26c57edd76096e28e3bb98a24129bf6070de1523106b03b53803ed883382b',
-))
-->values(array(
-  'filename' => 'includes/file.mimetypes.inc',
-  'hash' => '33266e837f4ce076378e7e8cef6c5af46446226ca4259f83e13f605856a7f147',
-))
-->values(array(
-  'filename' => 'includes/file.phar.inc',
-  'hash' => '544df23f736ce49f458033d6515a301a8ca1c7a7d1bfd3f388caef910534abb3',
-))
-->values(array(
-  'filename' => 'includes/filetransfer/filetransfer.inc',
-  'hash' => '48a9cbcd6651a7fbf9fca9707ebc9fc79be36c33cd2f8c272b375123ce3f4dc3',
-))
-->values(array(
-  'filename' => 'includes/filetransfer/ftp.inc',
-  'hash' => '51eb119b8e1221d598ffa6cc46c8a322aa77b49a3d8879f7fb38b7221cf7e06d',
-))
-->values(array(
-  'filename' => 'includes/filetransfer/local.inc',
-  'hash' => '7cbfdb46abbdf539640db27e66fb30e5265128f31002bd0dfc3af16ae01a9492',
-))
-->values(array(
-  'filename' => 'includes/filetransfer/ssh.inc',
-  'hash' => '92f1232158cb32ab04cbc93ae38ad3af04796e18f66910a9bc5ca8e437f06891',
-))
-->values(array(
-  'filename' => 'includes/form.inc',
-  'hash' => 'c6f9db191716ae0ea71bd79951e55344825fbc600e8e07057557593d614f6f9c',
-))
-->values(array(
-  'filename' => 'includes/graph.inc',
-  'hash' => '8e0e313a8bb33488f371df11fc1b58d7cf80099b886cd1003871e2c896d1b536',
-))
-->values(array(
-  'filename' => 'includes/image.inc',
-  'hash' => 'bcdc7e1599c02227502b9d0fe36eeb2b529b130a392bc709eb737647bd361826',
-))
-->values(array(
-  'filename' => 'includes/install.core.inc',
-  'hash' => 'b6f3e5d9bd4154f840253e34aed131bb401deb4fcb3421b379851231b8b4c149',
-))
-->values(array(
-  'filename' => 'includes/install.inc',
-  'hash' => 'dc7b5c97803df3e8e80e62984fe820de53ebc4141b645f66f6344f51ef4d5b19',
-))
-->values(array(
-  'filename' => 'includes/iso.inc',
-  'hash' => '09f14cce40153fa48e24a7daa44185c09ec9f56a638b5e56e9390c67ec5aaec8',
-))
-->values(array(
-  'filename' => 'includes/json-encode.inc',
-  'hash' => '02a822a652d00151f79db9aa9e171c310b69b93a12f549bc2ce00533a8efa14e',
-))
-->values(array(
-  'filename' => 'includes/language.inc',
-  'hash' => '4e08f30843a7ccaeea5c041083e9f77d33d57ff002f1ab4f66168e2c683ce128',
-))
-->values(array(
-  'filename' => 'includes/locale.inc',
-  'hash' => '3161313aaab94a956f855a2635d738806142b33f06734cdc3df81a3f3854fbdb',
-))
-->values(array(
-  'filename' => 'includes/lock.inc',
-  'hash' => 'a181c8bd4f88d292a0a73b9f1fbd727e3314f66ec3631f288e6b9a54ba2b70fa',
-))
-->values(array(
-  'filename' => 'includes/mail.inc',
-  'hash' => 'a7bef724e057f7410e42c8f33b00c9a0246a2ca2e856a113c9e20eecc49fc069',
-))
-->values(array(
-  'filename' => 'includes/menu.inc',
-  'hash' => '9cbc6636d5c5f9c681eea9fd9c09973e2e29b66bca38420883b657f9e1c0800a',
-))
-->values(array(
-  'filename' => 'includes/module.inc',
-  'hash' => '75720e119c7fdc82bdefdd43e36661c990da6f69c1008e6f7997a6081590c8db',
-))
-->values(array(
-  'filename' => 'includes/pager.inc',
-  'hash' => 'a596da575268e116c140b65e4ec98e4006c04a188f65a1c48b766b6ee276853f',
-))
-->values(array(
-  'filename' => 'includes/password.inc',
-  'hash' => 'fd9a1c94fe5a0fa7c7049a2435c7280b1d666b2074595010e3c492dd15712775',
-))
-->values(array(
-  'filename' => 'includes/path.inc',
-  'hash' => 'e399fc0af1f25cebda4b6c471ab203db8abe1a0fe15e632f19e614f32d71821e',
-))
-->values(array(
-  'filename' => 'includes/registry.inc',
-  'hash' => '2067cc87973e7af23428d3f41b8f8739d80092bc3c9e20b5a8858e481d03f22c',
-))
-->values(array(
-  'filename' => 'includes/request-sanitizer.inc',
-  'hash' => '770e8ece7b53d13e2b5ef99da02adb9a3d18071c6cd29eb01af30927cf749a73',
-))
-->values(array(
-  'filename' => 'includes/session.inc',
-  'hash' => '9981d139191b6a983f837e867058a376b62ae7cf5df607aee29e3e322a927b50',
-))
-->values(array(
-  'filename' => 'includes/stream_wrappers.inc',
-  'hash' => '3244dae1fa57557f8d0d805fc163830ac1263914587f652f009594a0fa51eeaf',
-))
-->values(array(
-  'filename' => 'includes/tablesort.inc',
-  'hash' => '2d88768a544829595dd6cda2a5eb008bedb730f36bba6dfe005d9ddd999d5c0f',
-))
-->values(array(
-  'filename' => 'includes/theme.inc',
-  'hash' => 'ae46daba6419ca613bc6a08ba4d7f9bbab9b19889937099d2e4c1737e9e7b2df',
-))
-->values(array(
-  'filename' => 'includes/theme.maintenance.inc',
-  'hash' => '39f068b3eee4d10a90d6aa3c86db587b6d25844c2919d418d34d133cfe330f5a',
-))
-->values(array(
-  'filename' => 'includes/token.inc',
-  'hash' => '5e7898cd78689e2c291ed3cd8f41c032075656896f1db57e49217aac19ae0428',
-))
-->values(array(
-  'filename' => 'includes/unicode.entities.inc',
-  'hash' => '2b858138596d961fbaa4c6e3986e409921df7f76b6ee1b109c4af5970f1e0f54',
-))
-->values(array(
-  'filename' => 'includes/unicode.inc',
-  'hash' => '89636ce5847340fd19be319839b4203b0d4bbc3487973413d6de9b5f6f839222',
-))
-->values(array(
-  'filename' => 'includes/update.inc',
-  'hash' => '25c30f1e61ef9c91a7bdeb37791c2215d9dc2ae07dba124722d783ca31bb01e7',
-))
-->values(array(
-  'filename' => 'includes/updater.inc',
-  'hash' => 'd2da0e74ed86e93c209f16069f3d32e1a134ceb6c06a0044f78e841a1b54e380',
-))
-->values(array(
-  'filename' => 'includes/utility.inc',
-  'hash' => '3458fd2b55ab004dd0cc529b8e58af12916e8bd36653b072bdd820b26b907ed5',
-))
-->values(array(
-  'filename' => 'includes/xmlrpc.inc',
-  'hash' => 'ea24176ec445c440ba0c825fc7b04a31b440288df8ef02081560dc418e34e659',
-))
-->values(array(
-  'filename' => 'includes/xmlrpcs.inc',
-  'hash' => '925c4d5bf429ad9650f059a8862a100bd394dce887933f5b3e7e32309a51fd8e',
-))
-->values(array(
-  'filename' => 'modules/block/block.test',
-  'hash' => '40d9de00589211770a85c47d38c8ad61c598ec65d9332128a882eb8750e65a16',
-))
-->values(array(
-  'filename' => 'modules/comment/comment.module',
-  'hash' => '6fa14cedb32d94a5c23ead69bc59ebd3dea04ccde583dc429c38097ca5ff39cc',
-))
-->values(array(
-  'filename' => 'modules/comment/comment.test',
-  'hash' => '570e35408ad9ca04d881bf2a4f1da6b28668dbb761e7616e8309b2d153d90e03',
-))
-->values(array(
-  'filename' => 'modules/contextual/contextual.test',
-  'hash' => '023dafa199bd325ecc55a17b2a3db46ac0a31e23059f701f789f3bc42427ba0b',
-))
-->values(array(
-  'filename' => 'modules/field/field.attach.inc',
-  'hash' => '2df4687b5ec078c4893dc1fea514f67524fd5293de717b9e05caf977e5ae2327',
-))
-->values(array(
-  'filename' => 'modules/field/field.info.class.inc',
-  'hash' => '31deca748d873bf78cc6b8c064fdecc5a3451a9d2e9a131bc8c204905029e31f',
-))
-->values(array(
-  'filename' => 'modules/field/field.module',
-  'hash' => '48b5b83f214a8d19e446f46c5d7a1cd35faa656ccb7b540f9f02462a440cacdd',
-))
-->values(array(
-  'filename' => 'modules/field/modules/field_sql_storage/field_sql_storage.test',
-  'hash' => '9eb6699cbaf9d8af5879551135ac3acf13b2c356c3792666a38e237db297a97c',
-))
-->values(array(
-  'filename' => 'modules/field/modules/options/options.test',
-  'hash' => '9691cd4352c380e8dff0985b539bb3d69c20bc43663427a3d291c59395a87eed',
-))
-->values(array(
-  'filename' => 'modules/field/modules/text/text.test',
-  'hash' => 'e93177e4fdf4dda8958822410470cfe3c68eca413f1e0eba12e8c03b42acf634',
-))
-->values(array(
-  'filename' => 'modules/field/tests/field.test',
-  'hash' => 'bb3abf8be54272b4e374bbfcd408694022a58a31354a4dfc99166846a68edbb4',
-))
-->values(array(
-  'filename' => 'modules/field_ui/field_ui.test',
-  'hash' => 'f535e5627c969e9083a63aaf72d4ac645e30709d7b87af15c6c3b870481f283a',
-))
-->values(array(
-  'filename' => 'modules/file/tests/file.test',
-  'hash' => '6abb9228cc7caae3d1661f389377d3bbd2f590abed2214a1bc5e0860e857aaf3',
-))
-->values(array(
-  'filename' => 'modules/filter/filter.test',
-  'hash' => 'b8aa5e6b832422c6ad5fe963898ec9526c814614f27ecccb67107ce194997d6a',
-))
-->values(array(
-  'filename' => 'modules/forum/forum.test',
-  'hash' => 'd282b29d6312d63183e003ba036d7645a946e828c94448592f930d80fceb42d6',
-))
-->values(array(
-  'filename' => 'modules/image/image.test',
-  'hash' => '09bc6e4e69eb11a12abc1ab4823227c528d9a72d2d3651626d129d4700fbaac6',
-))
-->values(array(
-  'filename' => 'modules/locale/locale.test',
-  'hash' => '0b54695190fe24e5024e4a445a8028dd51211852d63147ca8a907b87260275b1',
-))
-->values(array(
-  'filename' => 'modules/menu/menu.test',
-  'hash' => 'db0600ff4e9d2159ecf26c991cbb81931edb32513a0bb7716964ee84006dd912',
-))
-->values(array(
-  'filename' => 'modules/node/node.module',
-  'hash' => 'a0431f275b291779ffd1061d7d98b6942106235350b807828e94c6929ad04a41',
-))
-->values(array(
-  'filename' => 'modules/node/node.test',
-  'hash' => '5d6e2853efb3f596525508e76f7f44d15621180f9ef51aaf957fc042fb21df1e',
-))
-->values(array(
-  'filename' => 'modules/path/path.test',
-  'hash' => 'e7dabb4bbb7afd1b09adf1e64438b74726fc122422b31c7ae6d8e0ed2f7df6b6',
-))
-->values(array(
-  'filename' => 'modules/search/search.extender.inc',
-  'hash' => '1a92d28913cd9d7cd0d2ec007848e079c14e84a8bcb9423e70ad97309ac14eb6',
-))
-->values(array(
-  'filename' => 'modules/search/search.test',
-  'hash' => 'e43c21510d510885dfad6484afa931382083b75b7e67286bda56a6aafe265f28',
-))
-->values(array(
-  'filename' => 'modules/system/system.archiver.inc',
-  'hash' => '05caceec7b3baecfebd053959c513f134a5ae4070749339495274a81bebb904a',
-))
-->values(array(
-  'filename' => 'modules/system/system.mail.inc',
-  'hash' => 'd2f4fca46269981db5edb6316176b7b8161de59d4c24c514b63fe3c536ebb4d6',
-))
-->values(array(
-  'filename' => 'modules/system/system.queue.inc',
-  'hash' => 'a77a5913d84368092805ac551ca63737c1d829455504fcccb95baa2932f28009',
-))
-->values(array(
-  'filename' => 'modules/system/system.tar.inc',
-  'hash' => '2dd9560bddab659f0379ef9eca095fc65a364128420d9d9e540ef81ca649a7d6',
-))
-->values(array(
-  'filename' => 'modules/system/system.test',
-  'hash' => 'f815c9be6f3059a891147aca5dd6f45a857cd608db78d683c529a29ebd5ab7a0',
-))
-->values(array(
-  'filename' => 'modules/system/system.updater.inc',
-  'hash' => '9433fa8d39500b8c59ab05f41c0aac83b2586a43be4aa949821380e36c4d3c48',
-))
-->values(array(
-  'filename' => 'modules/taxonomy/taxonomy.module',
-  'hash' => 'b246e538820cbd80b972e8a16b488b8974eb5dcfc16578f5405927c9727441a6',
-))
-->values(array(
-  'filename' => 'modules/taxonomy/taxonomy.test',
-  'hash' => '4db45ebdc63089e79cce177221ffc50658554688c9b467226b7afb2da7e35940',
-))
-->values(array(
-  'filename' => 'modules/translation/translation.test',
-  'hash' => 'c2ad71934a9a2139cdf8213df35f4c91dcc0e643fabb883c38e3ffbdd313d608',
-))
-->values(array(
-  'filename' => 'modules/user/user.module',
-  'hash' => '6762ef76e12db1f48e2856d0f5c420ecdaa29fff26775275c1ff9d7e357e7b4d',
-))
-->values(array(
-  'filename' => 'modules/user/user.test',
-  'hash' => '09b1d7ade399e4fc65ce86e39ed33ee62f36e51cda5c25687eb7fa1e51cc06b8',
-))
-->values(array(
-  'filename' => 'sites/all/modules/date/date.migrate.inc',
-  'hash' => '3fec62a1b4d4860bb56f65834f210f7eaf88834fa3eace42ca23e758366c3d0c',
-))
-->values(array(
-  'filename' => 'sites/all/modules/date/date_api/date_api.module',
-  'hash' => 'dd47bba4cda203e53a59ae3a0fceee0f2142af27247cd5cf9a572d534628940b',
-))
-->values(array(
-  'filename' => 'sites/all/modules/date/date_api/date_api_sql.inc',
-  'hash' => '75d63062024609e31649d71564d488e4dc4c58600af5e0d31418482c61282b2f',
-))
-->values(array(
-  'filename' => 'sites/all/modules/date/date_api/tests/DateApiTestCase.test',
-  'hash' => 'b5c1b3f1ec0d5ff3b1daa1d28fccf185b7bd9c8baafb15432a6188a678b97711',
-))
-->values(array(
-  'filename' => 'sites/all/modules/date/date_api/tests/DateApiUnitTestCase.test',
-  'hash' => '941b4fb0ab683801a3baa41c8da5987e0772892934659df5c53d705fb46e2507',
-))
-->values(array(
-  'filename' => 'sites/all/modules/date/tests/DateEmwTestCase.test',
-  'hash' => 'd9d1b6a3700327a99599e0385a4d4acb16ba9a0d66ed004bfa75d56fa589a4e1',
-))
-->values(array(
-  'filename' => 'sites/all/modules/date/tests/DateFieldTestBase.test',
-  'hash' => '901a2a2127ccc5190590277246acf06a7d9af7db1f4de3afa5962764c52b62e4',
-))
-->values(array(
-  'filename' => 'sites/all/modules/date/tests/DateFieldTestCase.test',
-  'hash' => '06868eeb56be6956da92a60e7b9b8bfc179a8d041af1cd45e76442f1c92046cc',
-))
-->values(array(
-  'filename' => 'sites/all/modules/date/tests/DateFormTestCase.test',
-  'hash' => '8f43dff86e8b79ce5fd08be4332322a47bb78bf61af94d7019cfc3793460077b',
-))
-->values(array(
-  'filename' => 'sites/all/modules/date/tests/DateMigrateTestCase.test',
-  'hash' => '58f3d573f004199b2ce4bfe4c30aea457659115f8b6ee959c07a21cac1cd976e',
-))
-->values(array(
-  'filename' => 'sites/all/modules/date/tests/DateNowUnitTestCase.test',
-  'hash' => 'd2e17e5a49c56c84bf115cabeccc9c0f8b735ae95433a08962eb790633efd4b6',
-))
-->values(array(
-  'filename' => 'sites/all/modules/date/tests/DateTimezoneTestCase.test',
-  'hash' => '55bf0f1bc26cf54f95fd74c9fe0e91b5278e4fab27e28b86c36047da28d00f62',
-))
-->values(array(
-  'filename' => 'sites/all/modules/date/tests/DateUiTestCase.test',
-  'hash' => 'c118dbbf38a96407a539d214f9833a6ecad1ff4644820fa56b80d2f99eeae22b',
-))
-->values(array(
-  'filename' => 'sites/all/modules/date/tests/DateValidationTestCase.test',
-  'hash' => '675c3dce13d95e424364de4db2c49d88cba19ce8eb86530341374c82a3b1292f',
-))
-->values(array(
-  'filename' => 'sites/all/modules/entity_translation/includes/translation.handler.comment.inc',
-  'hash' => 'c1667be0bdea8805be52b10bad904f60a278213b749d4c9903e3887b6165448c',
-))
-->values(array(
-  'filename' => 'sites/all/modules/entity_translation/includes/translation.handler.inc',
-  'hash' => 'd470382679e75b63f370e7d476a737eb104e7bae0937668d912873bc2c94ce89',
-))
-->values(array(
-  'filename' => 'sites/all/modules/entity_translation/includes/translation.handler.node.inc',
-  'hash' => '255963e0d0a38349e1c5cb3ff072819b9c39cb5760a71b312ddaac1dd2edbb82',
-))
-->values(array(
-  'filename' => 'sites/all/modules/entity_translation/includes/translation.handler.taxonomy_term.inc',
-  'hash' => '587417ed1ba9debd4caef9b32722ca003be28c325d12f3fcb82b70384c095814',
-))
-->values(array(
-  'filename' => 'sites/all/modules/entity_translation/includes/translation.handler.user.inc',
-  'hash' => '4574d55fc756f566bc10f574231ee7900a181fbaa68d647ae973d9e06b4167ac',
-))
-->values(array(
-  'filename' => 'sites/all/modules/entity_translation/includes/translation.handler_factory.inc',
-  'hash' => '80ed7658c3d685bc18e7d29129893b2fb48dcda029e730241c1d0f53db7ad367',
-))
-->values(array(
-  'filename' => 'sites/all/modules/entity_translation/includes/translation.migrate.inc',
-  'hash' => 'e5c56971c44ad5352089481e48e01fb83bfefbb5359c8033949ce5227a917d42',
-))
-->values(array(
-  'filename' => 'sites/all/modules/entity_translation/tests/entity_translation.test',
-  'hash' => 'b3aa79b5d0805999336c000aafa63c9384303bd5018ca57d78cb94fa380eb854',
-))
-->values(array(
-  'filename' => 'sites/all/modules/entity_translation/views/entity_translation_handler_field_field.inc',
-  'hash' => '4681a5b5e8963b562e6fbb39c3385024034f392162eb4ff7f52a1684db628ea8',
-))
-->values(array(
-  'filename' => 'sites/all/modules/entity_translation/views/entity_translation_handler_field_label.inc',
-  'hash' => 'd31ea1af45150832df052fad29af729c6c028a54fa44d62a023a861bbeba744d',
-))
-->values(array(
-  'filename' => 'sites/all/modules/entity_translation/views/entity_translation_handler_field_translate_link.inc',
-  'hash' => '78cfa9c4e9b074e5d45d887fe8f69a8966fc0112d95a6abc74b9b13421b58047',
-))
-->values(array(
-  'filename' => 'sites/all/modules/entity_translation/views/entity_translation_handler_filter_entity_type.inc',
-  'hash' => 'd86bb73731c60f8ebaa3d8c29f837403935e91fe062c5ab6293901aa253da3e7',
-))
-->values(array(
-  'filename' => 'sites/all/modules/entity_translation/views/entity_translation_handler_filter_language.inc',
-  'hash' => '44c3a6928b8f7cde5fea6ae7cff973982d6c7781a3c8be663838ff770435c939',
-))
-->values(array(
-  'filename' => 'sites/all/modules/entity_translation/views/entity_translation_handler_filter_translation_exists.inc',
-  'hash' => '25d8ee7f5d45a5e3984572d00816368902121574f04277a67bbabd004b67f39a',
-))
-->values(array(
-  'filename' => 'sites/all/modules/entity_translation/views/entity_translation_handler_relationship.inc',
-  'hash' => 'aac136a9eab8c4b832edd73b942e124c3fdf1f48b6c8a8d0bf5383ba1d32259c',
-))
-->values(array(
-  'filename' => 'sites/all/modules/i18n/i18n.test',
-  'hash' => 'c52b5076bfd40ec8820a1f58dd9ea6f8d0098c771f65d740298143137d52866e',
-))
-->values(array(
-  'filename' => 'sites/all/modules/i18n/i18n_object.inc',
-  'hash' => '13118a2525f7ef27040f1c4824fcd05258154fcba128bdb5802c0aac471293c8',
-))
-->values(array(
-  'filename' => 'sites/all/modules/i18n/i18n_string/i18n_string.admin.inc',
-  'hash' => 'ace6c13b12cbb5379c803def1f4c4ba073457aa7fe84d1f87a4a4693e28b216c',
-))
-->values(array(
-  'filename' => 'sites/all/modules/i18n/i18n_string/i18n_string.inc',
-  'hash' => '35569a693d0bb7df4035acefddc026087676f5671f0957ec56bbdd63eadd1fbc',
-))
-->values(array(
-  'filename' => 'sites/all/modules/i18n/i18n_string/i18n_string.test',
-  'hash' => '5127520c1b08f78d3314d6df948b6a59eeb5a889c74687a196bfa3244c33f6d8',
-))
-->values(array(
-  'filename' => 'sites/all/modules/i18n/i18n_taxonomy/i18n_taxonomy.admin.inc',
-  'hash' => '5b609efc7ae96ddf4129dc9ee59a4a17fd522c8f9c6e148ffb1ac6eb24700246',
-))
-->values(array(
-  'filename' => 'sites/all/modules/i18n/i18n_taxonomy/i18n_taxonomy.inc',
-  'hash' => '7bc643c59e25c8a00491bc70258821793bbcb232a70510eff071a02bb1e4343e',
-))
-->values(array(
-  'filename' => 'sites/all/modules/i18n/i18n_taxonomy/i18n_taxonomy.pages.inc',
-  'hash' => 'cd0cb343cbfe113a13583450618163b90e6bee8778f79b6dc76ce12dfd13a2f4',
-))
-->values(array(
-  'filename' => 'sites/all/modules/i18n/i18n_taxonomy/i18n_taxonomy.test',
-  'hash' => '29fc8c69345e4d2b8eda25ae5d7775772ff1432452f07d51d66b727857ba3690',
-))
-->values(array(
-  'filename' => 'sites/all/modules/i18n/i18n_translation/i18n_translation.inc',
-  'hash' => 'e7e38105a080efcb1d947e7e6d2f1487127b166905b2722c516582827ddaf143',
-))
-->values(array(
-  'filename' => 'sites/all/modules/variable/includes/forum.variable.inc',
-  'hash' => '84ab5992d648c704b2ae6d680cf8e02d3150cccd8939170f7e8fd82ac054b516',
-))
-->values(array(
-  'filename' => 'sites/all/modules/variable/includes/locale.variable.inc',
-  'hash' => '27173d9c9e526a8ba88c5f48bf516aaac59ad932b64ef654621bc11f1ccd9f7a',
-))
-->values(array(
-  'filename' => 'sites/all/modules/variable/includes/menu.variable.inc',
-  'hash' => 'bc776840ee32060a9fda616ca154d3fd315461fbe07ce822d7969b79fccd8160',
-))
-->values(array(
-  'filename' => 'sites/all/modules/variable/includes/node.variable.inc',
-  'hash' => '596064101f8fbd3affdb61ca1240354ce0b51778601a8b02c021a1150bbf4e06',
-))
-->values(array(
-  'filename' => 'sites/all/modules/variable/includes/system.variable.inc',
-  'hash' => '909bae0f1e3a4d85c32c385a92a58c559576fb60fd13a0e4f71127eee27afd3e',
-))
-->values(array(
-  'filename' => 'sites/all/modules/variable/includes/taxonomy.variable.inc',
-  'hash' => '7792f07f8ea088cd8c3350e16f4cacef262c319c2e605dd911f17999a872f09e',
-))
-->values(array(
-  'filename' => 'sites/all/modules/variable/includes/translation.variable.inc',
-  'hash' => '3e4e82f779986bfb32987d6b27bdab9f907ba5e18841847f138a20c42cf725d4',
-))
-->values(array(
-  'filename' => 'sites/all/modules/variable/includes/user.variable.inc',
-  'hash' => 'b80094c1db0037f396f197bdd70c19e87afe76f4378c5c6089c4199af3bcb03a',
-))
-->values(array(
-  'filename' => 'sites/all/modules/variable/variable.test',
-  'hash' => 'a6614814c24aee5ae1d2f2f8c23c08138466c41a82e57ee670e070d7cdd6e4b2',
-))
-->execute();
-$connection->schema()->createTable('role', array(
-  'fields' => array(
-    'rid' => array(
-      'type' => 'serial',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-    'name' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '64',
-      'default' => '',
-    ),
-    'weight' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-  ),
-  'primary key' => array(
-    'rid',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->insert('role')
-->fields(array(
-  'rid',
-  'name',
-  'weight',
-))
-->values(array(
-  'rid' => '1',
-  'name' => 'anonymous user',
-  'weight' => '0',
-))
-->values(array(
-  'rid' => '2',
-  'name' => 'authenticated user',
-  'weight' => '1',
-))
-->values(array(
-  'rid' => '3',
-  'name' => 'administrator',
-  'weight' => '2',
-))
-->execute();
-$connection->schema()->createTable('role_permission', array(
-  'fields' => array(
-    'rid' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-    'permission' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '128',
-      'default' => '',
-    ),
-    'module' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-  ),
-  'primary key' => array(
-    'rid',
-    'permission',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->insert('role_permission')
-->fields(array(
-  'rid',
-  'permission',
-  'module',
-))
-->values(array(
-  'rid' => '1',
-  'permission' => 'access comments',
-  'module' => 'comment',
-))
-->values(array(
-  'rid' => '1',
-  'permission' => 'access content',
-  'module' => 'node',
-))
-->values(array(
-  'rid' => '1',
-  'permission' => 'use text format filtered_html',
-  'module' => 'filter',
-))
-->values(array(
-  'rid' => '2',
-  'permission' => 'access comments',
-  'module' => 'comment',
-))
-->values(array(
-  'rid' => '2',
-  'permission' => 'access content',
-  'module' => 'node',
-))
-->values(array(
-  'rid' => '2',
-  'permission' => 'post comments',
-  'module' => 'comment',
-))
-->values(array(
-  'rid' => '2',
-  'permission' => 'skip comment approval',
-  'module' => 'comment',
-))
-->values(array(
-  'rid' => '2',
-  'permission' => 'use text format custom_text_format',
-  'module' => 'filter',
-))
-->values(array(
-  'rid' => '2',
-  'permission' => 'use text format filtered_html',
-  'module' => 'filter',
-))
-->values(array(
-  'rid' => '3',
-  'permission' => 'access administration pages',
-  'module' => 'system',
-))
-->values(array(
-  'rid' => '3',
-  'permission' => 'access all views',
-  'module' => 'views',
-))
-->values(array(
-  'rid' => '3',
-  'permission' => 'access comments',
-  'module' => 'comment',
-))
-->values(array(
-  'rid' => '3',
-  'permission' => 'access content',
-  'module' => 'node',
-))
-->values(array(
-  'rid' => '3',
-  'permission' => 'access content overview',
-  'module' => 'node',
-))
-->values(array(
-  'rid' => '3',
-  'permission' => 'access contextual links',
-  'module' => 'contextual',
-))
-->values(array(
-  'rid' => '3',
-  'permission' => 'access site in maintenance mode',
-  'module' => 'system',
-))
-->values(array(
-  'rid' => '3',
-  'permission' => 'access site reports',
-  'module' => 'system',
-))
-->values(array(
-  'rid' => '3',
-  'permission' => 'access user profiles',
-  'module' => 'user',
-))
-->values(array(
-  'rid' => '3',
-  'permission' => 'administer actions',
-  'module' => 'system',
-))
-->values(array(
-  'rid' => '3',
-  'permission' => 'administer blocks',
-  'module' => 'block',
-))
-->values(array(
-  'rid' => '3',
-  'permission' => 'administer comments',
-  'module' => 'comment',
-))
-->values(array(
-  'rid' => '3',
-  'permission' => 'administer content types',
-  'module' => 'node',
-))
-->values(array(
-  'rid' => '3',
-  'permission' => 'administer entity translation',
-  'module' => 'entity_translation',
-))
-->values(array(
-  'rid' => '3',
-  'permission' => 'administer fields',
-  'module' => 'field',
-))
-->values(array(
-  'rid' => '3',
-  'permission' => 'administer filters',
-  'module' => 'filter',
-))
-->values(array(
-  'rid' => '3',
-  'permission' => 'administer forums',
-  'module' => 'forum',
-))
-->values(array(
-  'rid' => '3',
-  'permission' => 'administer image styles',
-  'module' => 'image',
-))
-->values(array(
-  'rid' => '3',
-  'permission' => 'administer languages',
-  'module' => 'locale',
-))
-->values(array(
-  'rid' => '3',
-  'permission' => 'administer menu',
-  'module' => 'menu',
-))
-->values(array(
-  'rid' => '3',
-  'permission' => 'administer modules',
-  'module' => 'system',
-))
-->values(array(
-  'rid' => '3',
-  'permission' => 'administer nodes',
-  'module' => 'node',
-))
-->values(array(
-  'rid' => '3',
-  'permission' => 'administer permissions',
-  'module' => 'user',
-))
-->values(array(
-  'rid' => '3',
-  'permission' => 'administer search',
-  'module' => 'search',
-))
-->values(array(
-  'rid' => '3',
-  'permission' => 'administer site configuration',
-  'module' => 'system',
-))
-->values(array(
-  'rid' => '3',
-  'permission' => 'administer software updates',
-  'module' => 'system',
-))
-->values(array(
-  'rid' => '3',
-  'permission' => 'administer taxonomy',
-  'module' => 'taxonomy',
-))
-->values(array(
-  'rid' => '3',
-  'permission' => 'administer themes',
-  'module' => 'system',
-))
-->values(array(
-  'rid' => '3',
-  'permission' => 'administer url aliases',
-  'module' => 'path',
-))
-->values(array(
-  'rid' => '3',
-  'permission' => 'administer users',
-  'module' => 'user',
-))
-->values(array(
-  'rid' => '3',
-  'permission' => 'administer views',
-  'module' => 'views',
-))
-->values(array(
-  'rid' => '3',
-  'permission' => 'block IP addresses',
-  'module' => 'system',
-))
-->values(array(
-  'rid' => '3',
-  'permission' => 'bypass node access',
-  'module' => 'node',
-))
-->values(array(
-  'rid' => '3',
-  'permission' => 'cancel account',
-  'module' => 'user',
-))
-->values(array(
-  'rid' => '3',
-  'permission' => 'change own username',
-  'module' => 'user',
-))
-->values(array(
-  'rid' => '3',
-  'permission' => 'create article content',
-  'module' => 'node',
-))
-->values(array(
-  'rid' => '3',
-  'permission' => 'create page content',
-  'module' => 'node',
-))
-->values(array(
-  'rid' => '3',
-  'permission' => 'create url aliases',
-  'module' => 'path',
-))
-->values(array(
-  'rid' => '3',
-  'permission' => 'delete any article content',
-  'module' => 'node',
-))
-->values(array(
-  'rid' => '3',
-  'permission' => 'delete any page content',
-  'module' => 'node',
-))
-->values(array(
-  'rid' => '3',
-  'permission' => 'delete own article content',
-  'module' => 'node',
-))
-->values(array(
-  'rid' => '3',
-  'permission' => 'delete own page content',
-  'module' => 'node',
-))
-->values(array(
-  'rid' => '3',
-  'permission' => 'delete revisions',
-  'module' => 'node',
-))
-->values(array(
-  'rid' => '3',
-  'permission' => 'delete terms in 1',
-  'module' => 'taxonomy',
-))
-->values(array(
-  'rid' => '3',
-  'permission' => 'edit any article content',
-  'module' => 'node',
-))
-->values(array(
-  'rid' => '3',
-  'permission' => 'edit any page content',
-  'module' => 'node',
-))
-->values(array(
-  'rid' => '3',
-  'permission' => 'edit own article content',
-  'module' => 'node',
-))
-->values(array(
-  'rid' => '3',
-  'permission' => 'edit own comments',
-  'module' => 'comment',
-))
-->values(array(
-  'rid' => '3',
-  'permission' => 'edit own page content',
-  'module' => 'node',
-))
-->values(array(
-  'rid' => '3',
-  'permission' => 'edit terms in 1',
-  'module' => 'taxonomy',
-))
-->values(array(
-  'rid' => '3',
-  'permission' => 'post comments',
-  'module' => 'comment',
-))
-->values(array(
-  'rid' => '3',
-  'permission' => 'revert revisions',
-  'module' => 'node',
-))
-->values(array(
-  'rid' => '3',
-  'permission' => 'search content',
-  'module' => 'search',
-))
-->values(array(
-  'rid' => '3',
-  'permission' => 'select account cancellation method',
-  'module' => 'user',
-))
-->values(array(
-  'rid' => '3',
-  'permission' => 'skip comment approval',
-  'module' => 'comment',
-))
-->values(array(
-  'rid' => '3',
-  'permission' => 'toggle field translatability',
-  'module' => 'entity_translation',
-))
-->values(array(
-  'rid' => '3',
-  'permission' => 'translate admin strings',
-  'module' => 'i18n_string',
-))
-->values(array(
-  'rid' => '3',
-  'permission' => 'translate any entity',
-  'module' => 'entity_translation',
-))
-->values(array(
-  'rid' => '3',
-  'permission' => 'translate content',
-  'module' => 'translation',
-))
-->values(array(
-  'rid' => '3',
-  'permission' => 'translate interface',
-  'module' => 'locale',
-))
-->values(array(
-  'rid' => '3',
-  'permission' => 'translate node entities',
-  'module' => 'entity_translation',
-))
-->values(array(
-  'rid' => '3',
-  'permission' => 'translate user-defined strings',
-  'module' => 'i18n_string',
-))
-->values(array(
-  'rid' => '3',
-  'permission' => 'use advanced search',
-  'module' => 'search',
-))
-->values(array(
-  'rid' => '3',
-  'permission' => 'use text format custom_text_format',
-  'module' => 'filter',
-))
-->values(array(
-  'rid' => '3',
-  'permission' => 'use text format filtered_html',
-  'module' => 'filter',
-))
-->values(array(
-  'rid' => '3',
-  'permission' => 'use text format full_html',
-  'module' => 'filter',
-))
-->values(array(
-  'rid' => '3',
-  'permission' => 'view own unpublished content',
-  'module' => 'node',
-))
-->values(array(
-  'rid' => '3',
-  'permission' => 'view revisions',
-  'module' => 'node',
-))
-->values(array(
-  'rid' => '3',
-  'permission' => 'view the administration theme',
-  'module' => 'system',
-))
-->execute();
-$connection->schema()->createTable('search_dataset', array(
-  'fields' => array(
-    'sid' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-    'type' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '16',
-    ),
-    'data' => array(
-      'type' => 'text',
-      'not null' => TRUE,
-      'size' => 'normal',
-    ),
-    'reindex' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-  ),
-  'primary key' => array(
-    'sid',
-    'type',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->insert('search_dataset')
-->fields(array(
-  'sid',
-  'type',
-  'data',
-  'reindex',
-))
-->values(array(
-  'sid' => '6',
-  'type' => 'node',
-  'data' => ' comments are closed  general discussion ',
-  'reindex' => '0',
-))
-->values(array(
-  'sid' => '7',
-  'type' => 'node',
-  'data' => ' comments are open  general discussion sunday january 3 1993 2000 to wednesday january 6 1999 2200  ',
-  'reindex' => '0',
-))
-->execute();
-$connection->schema()->createTable('search_index', array(
-  'fields' => array(
-    'word' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '50',
-      'default' => '',
-    ),
-    'sid' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-    'type' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '16',
-    ),
-    'score' => array(
-      'type' => 'numeric',
-      'not null' => FALSE,
-      'precision' => '10',
-      'scale' => '0',
-    ),
-  ),
-  'primary key' => array(
-    'word',
-    'sid',
-    'type',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->insert('search_index')
-->fields(array(
-  'word',
-  'sid',
-  'type',
-  'score',
-))
-->values(array(
-  'word' => '1993',
-  'sid' => '7',
-  'type' => 'node',
-  'score' => '1',
-))
-->values(array(
-  'word' => '1999',
-  'sid' => '7',
-  'type' => 'node',
-  'score' => '1',
-))
-->values(array(
-  'word' => '2000',
-  'sid' => '7',
-  'type' => 'node',
-  'score' => '1',
-))
-->values(array(
-  'word' => '2200',
-  'sid' => '7',
-  'type' => 'node',
-  'score' => '1',
-))
-->values(array(
-  'word' => '3',
-  'sid' => '7',
-  'type' => 'node',
-  'score' => '1',
-))
-->values(array(
-  'word' => '6',
-  'sid' => '7',
-  'type' => 'node',
-  'score' => '1',
-))
-->values(array(
-  'word' => 'closed',
-  'sid' => '6',
-  'type' => 'node',
-  'score' => '26',
-))
-->values(array(
-  'word' => 'comments',
-  'sid' => '6',
-  'type' => 'node',
-  'score' => '26',
-))
-->values(array(
-  'word' => 'comments',
-  'sid' => '7',
-  'type' => 'node',
-  'score' => '26',
-))
-->values(array(
-  'word' => 'discussion',
-  'sid' => '6',
-  'type' => 'node',
-  'score' => '11',
-))
-->values(array(
-  'word' => 'discussion',
-  'sid' => '7',
-  'type' => 'node',
-  'score' => '11',
-))
-->values(array(
-  'word' => 'general',
-  'sid' => '6',
-  'type' => 'node',
-  'score' => '11',
-))
-->values(array(
-  'word' => 'general',
-  'sid' => '7',
-  'type' => 'node',
-  'score' => '11',
-))
-->values(array(
-  'word' => 'january',
-  'sid' => '7',
-  'type' => 'node',
-  'score' => '2',
-))
-->values(array(
-  'word' => 'open',
-  'sid' => '7',
-  'type' => 'node',
-  'score' => '26',
-))
-->values(array(
-  'word' => 'sunday',
-  'sid' => '7',
-  'type' => 'node',
-  'score' => '1',
-))
-->values(array(
-  'word' => 'wednesday',
-  'sid' => '7',
-  'type' => 'node',
-  'score' => '1',
-))
-->execute();
-$connection->schema()->createTable('search_node_links', array(
-  'fields' => array(
-    'sid' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-    'type' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '16',
-      'default' => '',
-    ),
-    'nid' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-    'caption' => array(
-      'type' => 'text',
-      'not null' => FALSE,
-      'size' => 'normal',
-    ),
-  ),
-  'primary key' => array(
-    'sid',
-    'type',
-    'nid',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->schema()->createTable('search_total', array(
-  'fields' => array(
-    'word' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '50',
-      'default' => '',
-    ),
-    'count' => array(
-      'type' => 'numeric',
-      'not null' => FALSE,
-      'precision' => '10',
-      'scale' => '0',
-    ),
-  ),
-  'primary key' => array(
-    'word',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->insert('search_total')
-->fields(array(
-  'word',
-  'count',
-))
-->values(array(
-  'word' => '1993',
-  'count' => '0',
-))
-->values(array(
-  'word' => '1999',
-  'count' => '0',
-))
-->values(array(
-  'word' => '2000',
-  'count' => '0',
-))
-->values(array(
-  'word' => '2200',
-  'count' => '0',
-))
-->values(array(
-  'word' => '3',
-  'count' => '0',
-))
-->values(array(
-  'word' => '6',
-  'count' => '0',
-))
-->values(array(
-  'word' => 'closed',
-  'count' => '0',
-))
-->values(array(
-  'word' => 'comments',
-  'count' => '0',
-))
-->values(array(
-  'word' => 'discussion',
-  'count' => '0',
-))
-->values(array(
-  'word' => 'general',
-  'count' => '0',
-))
-->values(array(
-  'word' => 'january',
-  'count' => '0',
-))
-->values(array(
-  'word' => 'open',
-  'count' => '0',
-))
-->values(array(
-  'word' => 'sunday',
-  'count' => '0',
-))
-->values(array(
-  'word' => 'wednesday',
-  'count' => '0',
-))
-->execute();
-$connection->schema()->createTable('semaphore', array(
-  'fields' => array(
-    'name' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'value' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'expire' => array(
-      'type' => 'numeric',
-      'not null' => TRUE,
-      'precision' => '10',
-      'scale' => '0',
-    ),
-  ),
-  'primary key' => array(
-    'name',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->schema()->createTable('sequences', array(
-  'fields' => array(
-    'value' => array(
-      'type' => 'serial',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-  ),
-  'primary key' => array(
-    'value',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->insert('sequences')
-->fields(array(
-  'value',
-))
-->values(array(
-  'value' => '7',
-))
-->execute();
-$connection->schema()->createTable('sessions', array(
-  'fields' => array(
-    'uid' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-    'sid' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '128',
-    ),
-    'ssid' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '128',
-      'default' => '',
-    ),
-    'hostname' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '128',
-      'default' => '',
-    ),
-    'timestamp' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'cache' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'session' => array(
-      'type' => 'blob',
-      'not null' => FALSE,
-      'size' => 'normal',
-    ),
-  ),
-  'primary key' => array(
-    'sid',
-    'ssid',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->schema()->createTable('system', array(
-  'fields' => array(
-    'filename' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'name' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'type' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '12',
-      'default' => '',
-    ),
-    'owner' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'status' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'bootstrap' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'schema_version' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '-1',
-    ),
-    'weight' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'info' => array(
-      'type' => 'blob',
-      'not null' => FALSE,
-      'size' => 'normal',
-    ),
-  ),
-  'primary key' => array(
-    'filename',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->insert('system')
-->fields(array(
-  'filename',
-  'name',
-  'type',
-  'owner',
-  'status',
-  'bootstrap',
-  'schema_version',
-  'weight',
-  'info',
-))
-->values(array(
-  'filename' => 'modules/aggregator/aggregator.module',
-  'name' => 'aggregator',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:12:{s:4:"name";s:10:"Aggregator";s:11:"description";s:57:"Aggregates syndicated content (RSS, RDF, and Atom feeds).";s:7:"package";s:4:"Core";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:5:"files";a:1:{i:0;s:15:"aggregator.test";}s:9:"configure";s:41:"admin/config/services/aggregator/settings";s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:14:"aggregator.css";s:33:"modules/aggregator/aggregator.css";}}s:5:"mtime";i:1664863480;s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/aggregator/tests/aggregator_test.module',
-  'name' => 'aggregator_test',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:23:"Aggregator module tests";s:11:"description";s:46:"Support module for aggregator related testing.";s:7:"package";s:7:"Testing";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:5:"mtime";i:1664863480;s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/block/block.module',
-  'name' => 'block',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '1',
-  'bootstrap' => '0',
-  'schema_version' => '7009',
-  'weight' => '-5',
-  'info' => 'a:11:{s:4:"name";s:5:"Block";s:11:"description";s:140:"Controls the visual building blocks a page is constructed with. Blocks are boxes of content rendered into an area, or region, of a web page.";s:7:"package";s:4:"Core";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:5:"files";a:1:{i:0;s:10:"block.test";}s:9:"configure";s:21:"admin/structure/block";s:5:"mtime";i:1664863480;s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/block/tests/block_test.module',
-  'name' => 'block_test',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:10:"Block test";s:11:"description";s:21:"Provides test blocks.";s:7:"package";s:7:"Testing";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:5:"mtime";i:1664863480;s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/blog/blog.module',
-  'name' => 'blog',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:10:{s:4:"name";s:4:"Blog";s:11:"description";s:25:"Enables multi-user blogs.";s:7:"package";s:4:"Core";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:5:"files";a:1:{i:0;s:9:"blog.test";}s:5:"mtime";i:1664863480;s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/book/book.module',
-  'name' => 'book',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:12:{s:4:"name";s:4:"Book";s:11:"description";s:66:"Allows users to create and organize related content in an outline.";s:7:"package";s:4:"Core";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:5:"files";a:1:{i:0;s:9:"book.test";}s:9:"configure";s:27:"admin/content/book/settings";s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:8:"book.css";s:21:"modules/book/book.css";}}s:5:"mtime";i:1664863480;s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/color/color.module',
-  'name' => 'color',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:10:{s:4:"name";s:5:"Color";s:11:"description";s:70:"Allows administrators to change the color scheme of compatible themes.";s:7:"package";s:4:"Core";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:5:"files";a:1:{i:0;s:10:"color.test";}s:5:"mtime";i:1664863480;s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/comment/comment.module',
-  'name' => 'comment',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '1',
-  'bootstrap' => '0',
-  'schema_version' => '7009',
-  'weight' => '0',
-  'info' => 'a:12:{s:4:"name";s:7:"Comment";s:11:"description";s:57:"Allows users to comment on and discuss published content.";s:7:"package";s:4:"Core";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:12:"dependencies";a:1:{i:0;s:4:"text";}s:5:"files";a:2:{i:0;s:14:"comment.module";i:1;s:12:"comment.test";}s:9:"configure";s:21:"admin/content/comment";s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:11:"comment.css";s:27:"modules/comment/comment.css";}}s:5:"mtime";i:1664863480;s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/contact/contact.module',
-  'name' => 'contact',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:7:"Contact";s:11:"description";s:61:"Enables the use of both personal and site-wide contact forms.";s:7:"package";s:4:"Core";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:5:"files";a:1:{i:0;s:12:"contact.test";}s:9:"configure";s:23:"admin/structure/contact";s:5:"mtime";i:1664863480;s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/contextual/contextual.module',
-  'name' => 'contextual',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '1',
-  'bootstrap' => '0',
-  'schema_version' => '0',
-  'weight' => '0',
-  'info' => 'a:10:{s:4:"name";s:16:"Contextual links";s:11:"description";s:75:"Provides contextual links to perform actions related to elements on a page.";s:7:"package";s:4:"Core";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:5:"files";a:1:{i:0;s:15:"contextual.test";}s:5:"mtime";i:1664863480;s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/dashboard/dashboard.module',
-  'name' => 'dashboard',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:9:"Dashboard";s:11:"description";s:136:"Provides a dashboard page in the administrative interface for organizing administrative tasks and tracking information within your site.";s:4:"core";s:3:"7.x";s:7:"package";s:4:"Core";s:7:"version";s:4:"7.92";s:5:"files";a:1:{i:0;s:14:"dashboard.test";}s:12:"dependencies";a:1:{i:0;s:5:"block";}s:9:"configure";s:25:"admin/dashboard/customize";s:5:"mtime";i:1664863480;s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/dblog/dblog.module',
-  'name' => 'dblog',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:10:{s:4:"name";s:16:"Database logging";s:11:"description";s:47:"Logs and records system events to the database.";s:7:"package";s:4:"Core";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:5:"files";a:1:{i:0;s:10:"dblog.test";}s:5:"mtime";i:1664863480;s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/field/field.module',
-  'name' => 'field',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '1',
-  'bootstrap' => '0',
-  'schema_version' => '7004',
-  'weight' => '0',
-  'info' => 'a:12:{s:4:"name";s:5:"Field";s:11:"description";s:57:"Field API to add fields to entities like nodes and users.";s:7:"package";s:4:"Core";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:5:"files";a:4:{i:0;s:12:"field.module";i:1;s:16:"field.attach.inc";i:2;s:20:"field.info.class.inc";i:3;s:16:"tests/field.test";}s:12:"dependencies";a:1:{i:0;s:17:"field_sql_storage";}s:8:"required";b:1;s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:15:"theme/field.css";s:29:"modules/field/theme/field.css";}}s:5:"mtime";i:1664863480;s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/field/modules/field_sql_storage/field_sql_storage.module',
-  'name' => 'field_sql_storage',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '1',
-  'bootstrap' => '0',
-  'schema_version' => '7002',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:17:"Field SQL storage";s:11:"description";s:37:"Stores field data in an SQL database.";s:7:"package";s:4:"Core";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:12:"dependencies";a:1:{i:0;s:5:"field";}s:5:"files";a:1:{i:0;s:22:"field_sql_storage.test";}s:8:"required";b:1;s:5:"mtime";i:1664863480;s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/field/modules/list/list.module',
-  'name' => 'list',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:10:{s:4:"name";s:4:"List";s:11:"description";s:69:"Defines list field types. Use with Options to create selection lists.";s:7:"package";s:4:"Core";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:12:"dependencies";a:2:{i:0;s:5:"field";i:1;s:7:"options";}s:5:"files";a:1:{i:0;s:15:"tests/list.test";}s:5:"mtime";i:1664863480;s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/field/modules/list/tests/list_test.module',
-  'name' => 'list_test',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:9:"List test";s:11:"description";s:41:"Support module for the List module tests.";s:4:"core";s:3:"7.x";s:7:"package";s:7:"Testing";s:7:"version";s:4:"7.92";s:6:"hidden";b:1;s:5:"mtime";i:1664863480;s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/field/modules/number/number.module',
-  'name' => 'number',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:10:{s:4:"name";s:6:"Number";s:11:"description";s:28:"Defines numeric field types.";s:7:"package";s:4:"Core";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:12:"dependencies";a:1:{i:0;s:5:"field";}s:5:"files";a:1:{i:0;s:11:"number.test";}s:5:"mtime";i:1664863480;s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/field/modules/options/options.module',
-  'name' => 'options',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '1',
-  'bootstrap' => '0',
-  'schema_version' => '0',
-  'weight' => '0',
-  'info' => 'a:10:{s:4:"name";s:7:"Options";s:11:"description";s:82:"Defines selection, check box and radio button widgets for text and numeric fields.";s:7:"package";s:4:"Core";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:12:"dependencies";a:1:{i:0;s:5:"field";}s:5:"files";a:1:{i:0;s:12:"options.test";}s:5:"mtime";i:1664863480;s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/field/modules/text/text.module',
-  'name' => 'text',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '1',
-  'bootstrap' => '0',
-  'schema_version' => '7000',
-  'weight' => '0',
-  'info' => 'a:12:{s:4:"name";s:4:"Text";s:11:"description";s:32:"Defines simple text field types.";s:7:"package";s:4:"Core";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:12:"dependencies";a:1:{i:0;s:5:"field";}s:5:"files";a:1:{i:0;s:9:"text.test";}s:8:"required";b:1;s:5:"mtime";i:1664863480;s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;s:11:"explanation";s:73:"Field type(s) in use - see <a href="/admin/reports/fields">Field list</a>";}',
-))
-->values(array(
-  'filename' => 'modules/field/tests/field_test.module',
-  'name' => 'field_test',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:14:"Field API Test";s:11:"description";s:39:"Support module for the Field API tests.";s:4:"core";s:3:"7.x";s:7:"package";s:7:"Testing";s:5:"files";a:1:{i:0;s:21:"field_test.entity.inc";}s:7:"version";s:4:"7.92";s:6:"hidden";b:1;s:5:"mtime";i:1664863480;s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/field_ui/field_ui.module',
-  'name' => 'field_ui',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '1',
-  'bootstrap' => '0',
-  'schema_version' => '0',
-  'weight' => '0',
-  'info' => 'a:10:{s:4:"name";s:8:"Field UI";s:11:"description";s:33:"User interface for the Field API.";s:7:"package";s:4:"Core";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:12:"dependencies";a:1:{i:0;s:5:"field";}s:5:"files";a:1:{i:0;s:13:"field_ui.test";}s:5:"mtime";i:1664863480;s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/file/file.module',
-  'name' => 'file',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '1',
-  'bootstrap' => '0',
-  'schema_version' => '0',
-  'weight' => '0',
-  'info' => 'a:10:{s:4:"name";s:4:"File";s:11:"description";s:26:"Defines a file field type.";s:7:"package";s:4:"Core";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:12:"dependencies";a:1:{i:0;s:5:"field";}s:5:"files";a:1:{i:0;s:15:"tests/file.test";}s:5:"mtime";i:1664863480;s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/file/tests/file_module_test.module',
-  'name' => 'file_module_test',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:9:"File test";s:11:"description";s:53:"Provides hooks for testing File module functionality.";s:7:"package";s:4:"Core";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:5:"mtime";i:1664863480;s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/filter/filter.module',
-  'name' => 'filter',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '1',
-  'bootstrap' => '0',
-  'schema_version' => '7010',
-  'weight' => '0',
-  'info' => 'a:12:{s:4:"name";s:6:"Filter";s:11:"description";s:43:"Filters content in preparation for display.";s:7:"package";s:4:"Core";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:5:"files";a:1:{i:0;s:11:"filter.test";}s:8:"required";b:1;s:9:"configure";s:28:"admin/config/content/formats";s:5:"mtime";i:1664863480;s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/forum/forum.module',
-  'name' => 'forum',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '1',
-  'bootstrap' => '0',
-  'schema_version' => '7012',
-  'weight' => '1',
-  'info' => 'a:12:{s:4:"name";s:5:"Forum";s:11:"description";s:27:"Provides discussion forums.";s:12:"dependencies";a:2:{i:0;s:8:"taxonomy";i:1;s:7:"comment";}s:7:"package";s:4:"Core";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:5:"files";a:1:{i:0;s:10:"forum.test";}s:9:"configure";s:21:"admin/structure/forum";s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"forum.css";s:23:"modules/forum/forum.css";}}s:5:"mtime";i:1664863480;s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/help/help.module',
-  'name' => 'help',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:10:{s:4:"name";s:4:"Help";s:11:"description";s:35:"Manages the display of online help.";s:7:"package";s:4:"Core";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:5:"files";a:1:{i:0;s:9:"help.test";}s:5:"mtime";i:1664863480;s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/image/image.module',
-  'name' => 'image',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '1',
-  'bootstrap' => '0',
-  'schema_version' => '7005',
-  'weight' => '0',
-  'info' => 'a:13:{s:4:"name";s:5:"Image";s:11:"description";s:34:"Provides image manipulation tools.";s:7:"package";s:4:"Core";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:12:"dependencies";a:1:{i:0;s:4:"file";}s:5:"files";a:1:{i:0;s:10:"image.test";}s:9:"configure";s:31:"admin/config/media/image-styles";s:5:"mtime";i:1664863480;s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;s:8:"required";b:1;s:11:"explanation";s:73:"Field type(s) in use - see <a href="/admin/reports/fields">Field list</a>";}',
-))
-->values(array(
-  'filename' => 'modules/image/tests/image_module_styles_test.module',
-  'name' => 'image_module_styles_test',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:17:"Image Styles test";s:11:"description";s:80:"Provides additional hook implementations for testing Image Styles functionality.";s:7:"package";s:4:"Core";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:5:"files";a:1:{i:0;s:31:"image_module_styles_test.module";}s:12:"dependencies";a:1:{i:0;s:17:"image_module_test";}s:6:"hidden";b:1;s:5:"mtime";i:1664871879;s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/image/tests/image_module_test.module',
-  'name' => 'image_module_test',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:10:"Image test";s:11:"description";s:69:"Provides hook implementations for testing Image module functionality.";s:7:"package";s:4:"Core";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:5:"files";a:1:{i:0;s:24:"image_module_test.module";}s:6:"hidden";b:1;s:5:"mtime";i:1664863480;s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/locale/locale.module',
-  'name' => 'locale',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '1',
-  'bootstrap' => '0',
-  'schema_version' => '7005',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:6:"Locale";s:11:"description";s:119:"Adds language handling functionality and enables the translation of the user interface to languages other than English.";s:7:"package";s:4:"Core";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:5:"files";a:1:{i:0;s:11:"locale.test";}s:9:"configure";s:30:"admin/config/regional/language";s:5:"mtime";i:1664863480;s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/locale/tests/locale_test.module',
-  'name' => 'locale_test',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:11:"Locale Test";s:11:"description";s:42:"Support module for the locale layer tests.";s:4:"core";s:3:"7.x";s:7:"package";s:7:"Testing";s:7:"version";s:4:"7.92";s:6:"hidden";b:1;s:5:"mtime";i:1664863480;s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/menu/menu.module',
-  'name' => 'menu',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '1',
-  'bootstrap' => '0',
-  'schema_version' => '7003',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:4:"Menu";s:11:"description";s:60:"Allows administrators to customize the site navigation menu.";s:7:"package";s:4:"Core";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:5:"files";a:1:{i:0;s:9:"menu.test";}s:9:"configure";s:20:"admin/structure/menu";s:5:"mtime";i:1664863480;s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/node/node.module',
-  'name' => 'node',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '1',
-  'bootstrap' => '0',
-  'schema_version' => '7016',
-  'weight' => '0',
-  'info' => 'a:13:{s:4:"name";s:4:"Node";s:11:"description";s:66:"Allows content to be submitted to the site and displayed on pages.";s:7:"package";s:4:"Core";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:5:"files";a:2:{i:0;s:11:"node.module";i:1;s:9:"node.test";}s:8:"required";b:1;s:9:"configure";s:21:"admin/structure/types";s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:8:"node.css";s:21:"modules/node/node.css";}}s:5:"mtime";i:1664863480;s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/node/tests/node_access_test.module',
-  'name' => 'node_access_test',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:24:"Node module access tests";s:11:"description";s:43:"Support module for node permission testing.";s:7:"package";s:7:"Testing";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:5:"mtime";i:1664863480;s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/node/tests/node_test.module',
-  'name' => 'node_test',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:17:"Node module tests";s:11:"description";s:40:"Support module for node related testing.";s:7:"package";s:7:"Testing";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:5:"mtime";i:1664863480;s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/node/tests/node_test_exception.module',
-  'name' => 'node_test_exception',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:27:"Node module exception tests";s:11:"description";s:50:"Support module for node related exception testing.";s:7:"package";s:7:"Testing";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:5:"mtime";i:1664863480;s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/openid/openid.module',
-  'name' => 'openid',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:10:{s:4:"name";s:6:"OpenID";s:11:"description";s:48:"Allows users to log into your site using OpenID.";s:7:"version";s:4:"7.92";s:7:"package";s:4:"Core";s:4:"core";s:3:"7.x";s:5:"files";a:1:{i:0;s:11:"openid.test";}s:5:"mtime";i:1664863480;s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/openid/tests/openid_test.module',
-  'name' => 'openid_test',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:21:"OpenID dummy provider";s:11:"description";s:33:"OpenID provider used for testing.";s:7:"package";s:7:"Testing";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:12:"dependencies";a:1:{i:0;s:6:"openid";}s:6:"hidden";b:1;s:5:"mtime";i:1664863480;s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/overlay/overlay.module',
-  'name' => 'overlay',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:10:{s:4:"name";s:7:"Overlay";s:11:"description";s:59:"Displays the Drupal administration interface in an overlay.";s:7:"package";s:4:"Core";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:5:"mtime";i:1664863480;s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/path/path.module',
-  'name' => 'path',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '1',
-  'bootstrap' => '0',
-  'schema_version' => '0',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:4:"Path";s:11:"description";s:28:"Allows users to rename URLs.";s:7:"package";s:4:"Core";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:5:"files";a:1:{i:0;s:9:"path.test";}s:9:"configure";s:24:"admin/config/search/path";s:5:"mtime";i:1664863480;s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/php/php.module',
-  'name' => 'php',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:10:{s:4:"name";s:10:"PHP filter";s:11:"description";s:50:"Allows embedded PHP code/snippets to be evaluated.";s:7:"package";s:4:"Core";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:5:"files";a:1:{i:0;s:8:"php.test";}s:5:"mtime";i:1664863480;s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/poll/poll.module',
-  'name' => 'poll',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:4:"Poll";s:11:"description";s:95:"Allows your site to capture votes on different topics in the form of multiple choice questions.";s:7:"package";s:4:"Core";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:5:"files";a:1:{i:0;s:9:"poll.test";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:8:"poll.css";s:21:"modules/poll/poll.css";}}s:5:"mtime";i:1664863480;s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/profile/profile.module',
-  'name' => 'profile',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:12:{s:4:"name";s:7:"Profile";s:11:"description";s:36:"Supports configurable user profiles.";s:7:"package";s:4:"Core";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:5:"files";a:1:{i:0;s:12:"profile.test";}s:9:"configure";s:27:"admin/config/people/profile";s:6:"hidden";b:1;s:5:"mtime";i:1664863480;s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/rdf/rdf.module',
-  'name' => 'rdf',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:10:{s:4:"name";s:3:"RDF";s:11:"description";s:148:"Enriches your content with metadata to let other applications (e.g. search engines, aggregators) better understand its relationships and attributes.";s:7:"package";s:4:"Core";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:5:"files";a:1:{i:0;s:8:"rdf.test";}s:5:"mtime";i:1664863480;s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/rdf/tests/rdf_test.module',
-  'name' => 'rdf_test',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:16:"RDF module tests";s:11:"description";s:38:"Support module for RDF module testing.";s:7:"package";s:7:"Testing";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:12:"dependencies";a:1:{i:0;s:4:"blog";}s:5:"mtime";i:1664863480;s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/search/search.module',
-  'name' => 'search',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '1',
-  'bootstrap' => '0',
-  'schema_version' => '7000',
-  'weight' => '0',
-  'info' => 'a:12:{s:4:"name";s:6:"Search";s:11:"description";s:36:"Enables site-wide keyword searching.";s:7:"package";s:4:"Core";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:5:"files";a:2:{i:0;s:19:"search.extender.inc";i:1;s:11:"search.test";}s:9:"configure";s:28:"admin/config/search/settings";s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:10:"search.css";s:25:"modules/search/search.css";}}s:5:"mtime";i:1664863480;s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/search/tests/search_embedded_form.module',
-  'name' => 'search_embedded_form',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:20:"Search embedded form";s:11:"description";s:59:"Support module for search module testing of embedded forms.";s:7:"package";s:7:"Testing";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:5:"mtime";i:1664863480;s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/search/tests/search_extra_type.module',
-  'name' => 'search_extra_type',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:16:"Test search type";s:11:"description";s:41:"Support module for search module testing.";s:7:"package";s:7:"Testing";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:5:"mtime";i:1664863480;s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/search/tests/search_node_tags.module',
-  'name' => 'search_node_tags',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:21:"Test search node tags";s:11:"description";s:44:"Support module for Node search tags testing.";s:7:"package";s:7:"Testing";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:5:"mtime";i:1664863480;s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/shortcut/shortcut.module',
-  'name' => 'shortcut',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:8:"Shortcut";s:11:"description";s:60:"Allows users to manage customizable lists of shortcut links.";s:7:"package";s:4:"Core";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:5:"files";a:1:{i:0;s:13:"shortcut.test";}s:9:"configure";s:36:"admin/config/user-interface/shortcut";s:5:"mtime";i:1664863480;s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/simpletest/simpletest.module',
-  'name' => 'simpletest',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:7:"Testing";s:11:"description";s:53:"Provides a framework for unit and functional testing.";s:7:"package";s:4:"Core";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:5:"files";a:51:{i:0;s:15:"simpletest.test";i:1;s:24:"drupal_web_test_case.php";i:2;s:18:"tests/actions.test";i:3;s:15:"tests/ajax.test";i:4;s:16:"tests/batch.test";i:5;s:15:"tests/boot.test";i:6;s:20:"tests/bootstrap.test";i:7;s:16:"tests/cache.test";i:8;s:17:"tests/common.test";i:9;s:24:"tests/database_test.test";i:10;s:22:"tests/entity_crud.test";i:11;s:32:"tests/entity_crud_hook_test.test";i:12;s:23:"tests/entity_query.test";i:13;s:16:"tests/error.test";i:14;s:15:"tests/file.test";i:15;s:23:"tests/filetransfer.test";i:16;s:15:"tests/form.test";i:17;s:16:"tests/graph.test";i:18;s:16:"tests/image.test";i:19;s:15:"tests/lock.test";i:20;s:15:"tests/mail.test";i:21;s:15:"tests/menu.test";i:22;s:17:"tests/module.test";i:23;s:16:"tests/pager.test";i:24;s:19:"tests/password.test";i:25;s:15:"tests/path.test";i:26;s:19:"tests/registry.test";i:27;s:28:"tests/request_sanitizer.test";i:28;s:17:"tests/schema.test";i:29;s:18:"tests/session.test";i:30;s:20:"tests/tablesort.test";i:31;s:16:"tests/theme.test";i:32;s:18:"tests/unicode.test";i:33;s:17:"tests/update.test";i:34;s:17:"tests/xmlrpc.test";i:35;s:26:"tests/upgrade/upgrade.test";i:36;s:34:"tests/upgrade/upgrade.comment.test";i:37;s:33:"tests/upgrade/upgrade.filter.test";i:38;s:32:"tests/upgrade/upgrade.forum.test";i:39;s:33:"tests/upgrade/upgrade.locale.test";i:40;s:31:"tests/upgrade/upgrade.menu.test";i:41;s:31:"tests/upgrade/upgrade.node.test";i:42;s:35:"tests/upgrade/upgrade.taxonomy.test";i:43;s:34:"tests/upgrade/upgrade.trigger.test";i:44;s:39:"tests/upgrade/upgrade.translatable.test";i:45;s:33:"tests/upgrade/upgrade.upload.test";i:46;s:31:"tests/upgrade/upgrade.user.test";i:47;s:36:"tests/upgrade/update.aggregator.test";i:48;s:33:"tests/upgrade/update.trigger.test";i:49;s:31:"tests/upgrade/update.field.test";i:50;s:30:"tests/upgrade/update.user.test";}s:9:"configure";s:41:"admin/config/development/testing/settings";s:5:"mtime";i:1664871879;s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/simpletest/tests/actions_loop_test.module',
-  'name' => 'actions_loop_test',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:17:"Actions loop test";s:11:"description";s:39:"Support module for action loop testing.";s:7:"package";s:7:"Testing";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:5:"mtime";i:1664863480;s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/simpletest/tests/ajax_forms_test.module',
-  'name' => 'ajax_forms_test',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:26:"AJAX form test mock module";s:11:"description";s:25:"Test for AJAX form calls.";s:4:"core";s:3:"7.x";s:7:"package";s:7:"Testing";s:7:"version";s:4:"7.92";s:6:"hidden";b:1;s:5:"mtime";i:1664863480;s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/simpletest/tests/ajax_test.module',
-  'name' => 'ajax_test',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:9:"AJAX Test";s:11:"description";s:40:"Support module for AJAX framework tests.";s:7:"package";s:7:"Testing";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:5:"mtime";i:1664863480;s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/simpletest/tests/batch_test.module',
-  'name' => 'batch_test',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:14:"Batch API test";s:11:"description";s:35:"Support module for Batch API tests.";s:7:"package";s:7:"Testing";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:5:"mtime";i:1664863480;s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/simpletest/tests/boot_test_1.module',
-  'name' => 'boot_test_1',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:21:"Early bootstrap tests";s:11:"description";s:39:"A support module for hook_boot testing.";s:4:"core";s:3:"7.x";s:7:"package";s:7:"Testing";s:7:"version";s:4:"7.92";s:6:"hidden";b:1;s:5:"mtime";i:1664863480;s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/simpletest/tests/boot_test_2.module',
-  'name' => 'boot_test_2',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:21:"Early bootstrap tests";s:11:"description";s:44:"A support module for hook_boot hook testing.";s:4:"core";s:3:"7.x";s:7:"package";s:7:"Testing";s:7:"version";s:4:"7.92";s:6:"hidden";b:1;s:5:"mtime";i:1664863480;s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/simpletest/tests/common_test.module',
-  'name' => 'common_test',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:12:{s:4:"name";s:11:"Common Test";s:11:"description";s:32:"Support module for Common tests.";s:7:"package";s:7:"Testing";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:11:"stylesheets";a:2:{s:3:"all";a:1:{s:15:"common_test.css";s:40:"modules/simpletest/tests/common_test.css";}s:5:"print";a:1:{s:21:"common_test.print.css";s:46:"modules/simpletest/tests/common_test.print.css";}}s:6:"hidden";b:1;s:5:"mtime";i:1664863480;s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/simpletest/tests/common_test_cron_helper.module',
-  'name' => 'common_test_cron_helper',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:23:"Common Test Cron Helper";s:11:"description";s:56:"Helper module for CronRunTestCase::testCronExceptions().";s:7:"package";s:7:"Testing";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:5:"mtime";i:1664863480;s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/simpletest/tests/database_test.module',
-  'name' => 'database_test',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:13:"Database Test";s:11:"description";s:40:"Support module for Database layer tests.";s:4:"core";s:3:"7.x";s:7:"package";s:7:"Testing";s:7:"version";s:4:"7.92";s:6:"hidden";b:1;s:5:"mtime";i:1664863480;s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/simpletest/tests/drupal_autoload_test/drupal_autoload_test.module',
-  'name' => 'drupal_autoload_test',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:25:"Drupal code registry test";s:11:"description";s:45:"Support module for testing the code registry.";s:5:"files";a:2:{i:0;s:34:"drupal_autoload_test_interface.inc";i:1;s:30:"drupal_autoload_test_class.inc";}s:7:"package";s:7:"Testing";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:5:"mtime";i:1664863480;s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/simpletest/tests/drupal_system_listing_compatible_test/drupal_system_listing_compatible_test.module',
-  'name' => 'drupal_system_listing_compatible_test',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:37:"Drupal system listing compatible test";s:11:"description";s:62:"Support module for testing the drupal_system_listing function.";s:7:"package";s:7:"Testing";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:5:"mtime";i:1664863480;s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/simpletest/tests/drupal_system_listing_incompatible_test/drupal_system_listing_incompatible_test.module',
-  'name' => 'drupal_system_listing_incompatible_test',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:39:"Drupal system listing incompatible test";s:11:"description";s:62:"Support module for testing the drupal_system_listing function.";s:7:"package";s:7:"Testing";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:5:"mtime";i:1664863480;s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/simpletest/tests/entity_cache_test.module',
-  'name' => 'entity_cache_test',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:17:"Entity cache test";s:11:"description";s:40:"Support module for testing entity cache.";s:7:"package";s:7:"Testing";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:12:"dependencies";a:1:{i:0;s:28:"entity_cache_test_dependency";}s:6:"hidden";b:1;s:5:"mtime";i:1664863480;s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/simpletest/tests/entity_cache_test_dependency.module',
-  'name' => 'entity_cache_test_dependency',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:28:"Entity cache test dependency";s:11:"description";s:51:"Support dependency module for testing entity cache.";s:7:"package";s:7:"Testing";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:5:"mtime";i:1664863480;s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/simpletest/tests/entity_crud_hook_test.module',
-  'name' => 'entity_crud_hook_test',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:22:"Entity CRUD Hooks Test";s:11:"description";s:35:"Support module for CRUD hook tests.";s:4:"core";s:3:"7.x";s:7:"package";s:7:"Testing";s:7:"version";s:4:"7.92";s:6:"hidden";b:1;s:5:"mtime";i:1664863480;s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/simpletest/tests/entity_query_access_test.module',
-  'name' => 'entity_query_access_test',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:24:"Entity query access test";s:11:"description";s:49:"Support module for checking entity query results.";s:7:"package";s:7:"Testing";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:5:"mtime";i:1664863480;s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/simpletest/tests/error_test.module',
-  'name' => 'error_test',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:10:"Error test";s:11:"description";s:47:"Support module for error and exception testing.";s:7:"package";s:7:"Testing";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:5:"mtime";i:1664863480;s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/simpletest/tests/file_test.module',
-  'name' => 'file_test',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:9:"File test";s:11:"description";s:39:"Support module for file handling tests.";s:7:"package";s:7:"Testing";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:5:"files";a:1:{i:0;s:16:"file_test.module";}s:6:"hidden";b:1;s:5:"mtime";i:1664863480;s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/simpletest/tests/filter_test.module',
-  'name' => 'filter_test',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:18:"Filter test module";s:11:"description";s:33:"Tests filter hooks and functions.";s:7:"package";s:7:"Testing";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:5:"mtime";i:1664863480;s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/simpletest/tests/form_test.module',
-  'name' => 'form_test',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:12:"FormAPI Test";s:11:"description";s:34:"Support module for Form API tests.";s:7:"package";s:7:"Testing";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:5:"mtime";i:1664863480;s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/simpletest/tests/image_test.module',
-  'name' => 'image_test',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:10:"Image test";s:11:"description";s:39:"Support module for image toolkit tests.";s:7:"package";s:7:"Testing";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:5:"mtime";i:1664863480;s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/simpletest/tests/menu_test.module',
-  'name' => 'menu_test',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:15:"Hook menu tests";s:11:"description";s:37:"Support module for menu hook testing.";s:7:"package";s:7:"Testing";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:5:"mtime";i:1664863480;s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/simpletest/tests/module_test.module',
-  'name' => 'module_test',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:11:"Module test";s:11:"description";s:41:"Support module for module system testing.";s:7:"package";s:7:"Testing";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:5:"mtime";i:1664863480;s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/simpletest/tests/path_test.module',
-  'name' => 'path_test',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:15:"Hook path tests";s:11:"description";s:37:"Support module for path hook testing.";s:7:"package";s:7:"Testing";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:5:"mtime";i:1664863480;s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/simpletest/tests/psr_0_test/psr_0_test.module',
-  'name' => 'psr_0_test',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:16:"PSR-0 Test cases";s:11:"description";s:44:"Test classes to be discovered by simpletest.";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"package";s:7:"Testing";s:5:"mtime";i:1664863480;s:12:"dependencies";a:0:{}s:7:"version";N;s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/simpletest/tests/psr_4_test/psr_4_test.module',
-  'name' => 'psr_4_test',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:16:"PSR-4 Test cases";s:11:"description";s:44:"Test classes to be discovered by simpletest.";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"package";s:7:"Testing";s:5:"mtime";i:1664863480;s:12:"dependencies";a:0:{}s:7:"version";N;s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/simpletest/tests/requirements1_test.module',
-  'name' => 'requirements1_test',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => "a:11:{s:4:\"name\";s:19:\"Requirements 1 Test\";s:11:\"description\";s:80:\"Tests that a module is not installed when it fails hook_requirements('install').\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.92\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:5:\"mtime\";i:1664863480;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}",
-))
-->values(array(
-  'filename' => 'modules/simpletest/tests/requirements2_test.module',
-  'name' => 'requirements2_test',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => "a:11:{s:4:\"name\";s:19:\"Requirements 2 Test\";s:11:\"description\";s:98:\"Tests that a module is not installed when the one it depends on fails hook_requirements('install).\";s:12:\"dependencies\";a:2:{i:0;s:18:\"requirements1_test\";i:1;s:7:\"comment\";}s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.92\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:5:\"mtime\";i:1664863480;s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}",
-))
-->values(array(
-  'filename' => 'modules/simpletest/tests/session_test.module',
-  'name' => 'session_test',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:12:"Session test";s:11:"description";s:40:"Support module for session data testing.";s:7:"package";s:7:"Testing";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:5:"mtime";i:1664863480;s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/simpletest/tests/system_admin_test.module',
-  'name' => 'system_admin_test',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:12:{s:4:"name";s:17:"System Admin Test";s:11:"description";s:44:"Support module for testing system.admin.inc.";s:7:"package";s:16:"Only For Testing";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:6:"hidden";b:0;s:9:"configure";s:13:"config/broken";s:5:"mtime";i:1664871879;s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/simpletest/tests/system_dependencies_test.module',
-  'name' => 'system_dependencies_test',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:22:"System dependency test";s:11:"description";s:47:"Support module for testing system dependencies.";s:7:"package";s:7:"Testing";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:12:"dependencies";a:1:{i:0;s:19:"_missing_dependency";}s:5:"mtime";i:1664863480;s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/simpletest/tests/system_incompatible_core_version_dependencies_test.module',
-  'name' => 'system_incompatible_core_version_dependencies_test',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:50:"System incompatible core version dependencies test";s:11:"description";s:47:"Support module for testing system dependencies.";s:7:"package";s:7:"Testing";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:12:"dependencies";a:1:{i:0;s:37:"system_incompatible_core_version_test";}s:5:"mtime";i:1664863480;s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/simpletest/tests/system_incompatible_core_version_test.module',
-  'name' => 'system_incompatible_core_version_test',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:37:"System incompatible core version test";s:11:"description";s:47:"Support module for testing system dependencies.";s:7:"package";s:7:"Testing";s:7:"version";s:4:"7.92";s:4:"core";s:3:"5.x";s:6:"hidden";b:1;s:5:"mtime";i:1664863480;s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/simpletest/tests/system_incompatible_module_version_dependencies_test.module',
-  'name' => 'system_incompatible_module_version_dependencies_test',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:52:"System incompatible module version dependencies test";s:11:"description";s:47:"Support module for testing system dependencies.";s:7:"package";s:7:"Testing";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:12:"dependencies";a:1:{i:0;s:46:"system_incompatible_module_version_test (>2.0)";}s:5:"mtime";i:1664863480;s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/simpletest/tests/system_incompatible_module_version_test.module',
-  'name' => 'system_incompatible_module_version_test',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:39:"System incompatible module version test";s:11:"description";s:47:"Support module for testing system dependencies.";s:7:"package";s:7:"Testing";s:7:"version";s:3:"1.0";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:5:"mtime";i:1664863480;s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/simpletest/tests/system_null_version_test.module',
-  'name' => 'system_null_version_test',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:24:"System null version test";s:11:"description";s:47:"Support module for testing with a null version.";s:7:"package";s:16:"Only For Testing";s:4:"core";s:3:"7.x";s:6:"hidden";b:0;s:5:"mtime";i:1664871879;s:12:"dependencies";a:0:{}s:7:"version";N;s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/simpletest/tests/system_project_namespace_test.module',
-  'name' => 'system_project_namespace_test',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:29:"System project namespace test";s:11:"description";s:58:"Support module for testing project namespace dependencies.";s:7:"package";s:7:"Testing";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:12:"dependencies";a:1:{i:0;s:13:"drupal:filter";}s:5:"mtime";i:1664863480;s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/simpletest/tests/system_requires_null_version_test.module',
-  'name' => 'system_requires_null_version_test',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:33:"System requires null version test";s:11:"description";s:44:"Support module for testing system_modules().";s:7:"package";s:16:"Only For Testing";s:4:"core";s:3:"7.x";s:7:"version";s:4:"7.92";s:6:"hidden";b:0;s:12:"dependencies";a:1:{i:0;s:24:"system_null_version_test";}s:5:"mtime";i:1664871879;s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/simpletest/tests/system_test.module',
-  'name' => 'system_test',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:11:"System test";s:11:"description";s:34:"Support module for system testing.";s:7:"package";s:7:"Testing";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:5:"files";a:1:{i:0;s:18:"system_test.module";}s:6:"hidden";b:1;s:5:"mtime";i:1664863480;s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/simpletest/tests/taxonomy_nodes_test.module',
-  'name' => 'taxonomy_nodes_test',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:31:"Taxonomy module node list tests";s:11:"description";s:54:"Support module for taxonomy node list related testing.";s:7:"package";s:7:"Testing";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:5:"mtime";i:1664871879;s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/simpletest/tests/taxonomy_test.module',
-  'name' => 'taxonomy_test',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:20:"Taxonomy test module";s:11:"description";s:45:""Tests functions and hooks not used in core".";s:7:"package";s:7:"Testing";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:12:"dependencies";a:1:{i:0;s:8:"taxonomy";}s:5:"mtime";i:1664863480;s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/simpletest/tests/theme_test.module',
-  'name' => 'theme_test',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:10:"Theme test";s:11:"description";s:40:"Support module for theme system testing.";s:7:"package";s:7:"Testing";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:5:"mtime";i:1664863480;s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/simpletest/tests/update_script_test.module',
-  'name' => 'update_script_test',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:18:"Update script test";s:11:"description";s:41:"Support module for update script testing.";s:7:"package";s:7:"Testing";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:5:"mtime";i:1664863480;s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/simpletest/tests/update_test_1.module',
-  'name' => 'update_test_1',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:11:"Update test";s:11:"description";s:34:"Support module for update testing.";s:7:"package";s:7:"Testing";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:5:"mtime";i:1664863480;s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/simpletest/tests/update_test_2.module',
-  'name' => 'update_test_2',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:11:"Update test";s:11:"description";s:34:"Support module for update testing.";s:7:"package";s:7:"Testing";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:5:"mtime";i:1664863480;s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/simpletest/tests/update_test_3.module',
-  'name' => 'update_test_3',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:11:"Update test";s:11:"description";s:34:"Support module for update testing.";s:7:"package";s:7:"Testing";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:5:"mtime";i:1664863480;s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/simpletest/tests/url_alter_test.module',
-  'name' => 'url_alter_test',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:15:"Url_alter tests";s:11:"description";s:45:"A support modules for url_alter hook testing.";s:4:"core";s:3:"7.x";s:7:"package";s:7:"Testing";s:7:"version";s:4:"7.92";s:6:"hidden";b:1;s:5:"mtime";i:1664863480;s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/simpletest/tests/xmlrpc_test.module',
-  'name' => 'xmlrpc_test',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:12:"XML-RPC Test";s:11:"description";s:75:"Support module for XML-RPC tests according to the validator1 specification.";s:7:"package";s:7:"Testing";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:5:"mtime";i:1664863480;s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/statistics/statistics.module',
-  'name' => 'statistics',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:10:"Statistics";s:11:"description";s:37:"Logs access statistics for your site.";s:7:"package";s:4:"Core";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:5:"files";a:1:{i:0;s:15:"statistics.test";}s:9:"configure";s:30:"admin/config/system/statistics";s:5:"mtime";i:1664863480;s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/syslog/syslog.module',
-  'name' => 'syslog',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:6:"Syslog";s:11:"description";s:41:"Logs and records system events to syslog.";s:7:"package";s:4:"Core";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:5:"files";a:1:{i:0;s:11:"syslog.test";}s:9:"configure";s:32:"admin/config/development/logging";s:5:"mtime";i:1664863480;s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/system/system.module',
-  'name' => 'system',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '1',
-  'bootstrap' => '0',
-  'schema_version' => '7084',
-  'weight' => '0',
-  'info' => 'a:12:{s:4:"name";s:6:"System";s:11:"description";s:54:"Handles general site configuration for administrators.";s:7:"package";s:4:"Core";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:5:"files";a:6:{i:0;s:19:"system.archiver.inc";i:1;s:15:"system.mail.inc";i:2;s:16:"system.queue.inc";i:3;s:14:"system.tar.inc";i:4;s:18:"system.updater.inc";i:5;s:11:"system.test";}s:8:"required";b:1;s:9:"configure";s:19:"admin/config/system";s:5:"mtime";i:1664863480;s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/system/tests/cron_queue_test.module',
-  'name' => 'cron_queue_test',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:15:"Cron Queue test";s:11:"description";s:41:"Support module for the cron queue runner.";s:7:"package";s:7:"Testing";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:5:"mtime";i:1664863480;s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/system/tests/system_cron_test.module',
-  'name' => 'system_cron_test',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:16:"System Cron Test";s:11:"description";s:45:"Support module for testing the system_cron().";s:7:"package";s:7:"Testing";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:5:"mtime";i:1664863480;s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/taxonomy/taxonomy.module',
-  'name' => 'taxonomy',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '1',
-  'bootstrap' => '0',
-  'schema_version' => '7011',
-  'weight' => '0',
-  'info' => 'a:13:{s:4:"name";s:8:"Taxonomy";s:11:"description";s:38:"Enables the categorization of content.";s:7:"package";s:4:"Core";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:12:"dependencies";a:1:{i:0;s:7:"options";}s:5:"files";a:2:{i:0;s:15:"taxonomy.module";i:1;s:13:"taxonomy.test";}s:9:"configure";s:24:"admin/structure/taxonomy";s:5:"mtime";i:1664863480;s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;s:8:"required";b:1;s:11:"explanation";s:73:"Field type(s) in use - see <a href="/admin/reports/fields">Field list</a>";}',
-))
-->values(array(
-  'filename' => 'modules/toolbar/toolbar.module',
-  'name' => 'toolbar',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:10:{s:4:"name";s:7:"Toolbar";s:11:"description";s:99:"Provides a toolbar that shows the top-level administration menu items and links from other modules.";s:4:"core";s:3:"7.x";s:7:"package";s:4:"Core";s:7:"version";s:4:"7.92";s:5:"mtime";i:1664863480;s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/tracker/tracker.module',
-  'name' => 'tracker',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:10:{s:4:"name";s:7:"Tracker";s:11:"description";s:45:"Enables tracking of recent content for users.";s:12:"dependencies";a:1:{i:0;s:7:"comment";}s:7:"package";s:4:"Core";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:5:"files";a:1:{i:0;s:12:"tracker.test";}s:5:"mtime";i:1664863480;s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/translation/tests/translation_test.module',
-  'name' => 'translation_test',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:24:"Content Translation Test";s:11:"description";s:49:"Support module for the content translation tests.";s:4:"core";s:3:"7.x";s:7:"package";s:7:"Testing";s:7:"version";s:4:"7.92";s:6:"hidden";b:1;s:5:"mtime";i:1664863480;s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/translation/translation.module',
-  'name' => 'translation',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '1',
-  'bootstrap' => '0',
-  'schema_version' => '0',
-  'weight' => '0',
-  'info' => 'a:10:{s:4:"name";s:19:"Content translation";s:11:"description";s:57:"Allows content to be translated into different languages.";s:12:"dependencies";a:1:{i:0;s:6:"locale";}s:7:"package";s:4:"Core";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:5:"files";a:1:{i:0;s:16:"translation.test";}s:5:"mtime";i:1664863480;s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/trigger/tests/trigger_test.module',
-  'name' => 'trigger_test',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:12:"Trigger Test";s:11:"description";s:33:"Support module for Trigger tests.";s:7:"package";s:7:"Testing";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:5:"mtime";i:1664863480;s:12:"dependencies";a:0:{}s:7:"version";N;s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/trigger/trigger.module',
-  'name' => 'trigger',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:7:"Trigger";s:11:"description";s:90:"Enables actions to be fired on certain system events, such as when new content is created.";s:7:"package";s:4:"Core";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:5:"files";a:1:{i:0;s:12:"trigger.test";}s:9:"configure";s:23:"admin/structure/trigger";s:5:"mtime";i:1664863480;s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/update/tests/aaa_update_test.module',
-  'name' => 'aaa_update_test',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:15:"AAA Update test";s:11:"description";s:41:"Support module for update module testing.";s:7:"package";s:7:"Testing";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:5:"mtime";i:1664863480;s:12:"dependencies";a:0:{}s:7:"version";N;s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/update/tests/bbb_update_test.module',
-  'name' => 'bbb_update_test',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:15:"BBB Update test";s:11:"description";s:41:"Support module for update module testing.";s:7:"package";s:7:"Testing";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:5:"mtime";i:1664863480;s:12:"dependencies";a:0:{}s:7:"version";N;s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/update/tests/ccc_update_test.module',
-  'name' => 'ccc_update_test',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:15:"CCC Update test";s:11:"description";s:41:"Support module for update module testing.";s:7:"package";s:7:"Testing";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:5:"mtime";i:1664863480;s:12:"dependencies";a:0:{}s:7:"version";N;s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/update/tests/update_test.module',
-  'name' => 'update_test',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:11:"Update test";s:11:"description";s:41:"Support module for update module testing.";s:7:"package";s:7:"Testing";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:5:"mtime";i:1664863480;s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/update/update.module',
-  'name' => 'update',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:14:"Update manager";s:11:"description";s:104:"Checks for available updates, and can securely install or update modules and themes via a web interface.";s:7:"version";s:4:"7.92";s:7:"package";s:4:"Core";s:4:"core";s:3:"7.x";s:5:"files";a:1:{i:0;s:11:"update.test";}s:9:"configure";s:30:"admin/reports/updates/settings";s:5:"mtime";i:1664863480;s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/user/tests/user_flood_test.module',
-  'name' => 'user_flood_test',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:31:"User module flood control tests";s:11:"description";s:46:"Support module for user flood control testing.";s:7:"package";s:7:"Testing";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:5:"mtime";i:1664871879;s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/user/tests/user_form_test.module',
-  'name' => 'user_form_test',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:22:"User module form tests";s:11:"description";s:37:"Support module for user form testing.";s:7:"package";s:7:"Testing";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:5:"mtime";i:1664863480;s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/user/tests/user_session_test.module',
-  'name' => 'user_session_test',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:25:"User module session tests";s:11:"description";s:40:"Support module for user session testing.";s:7:"package";s:7:"Testing";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:5:"mtime";i:1664871879;s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'modules/user/user.module',
-  'name' => 'user',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '1',
-  'bootstrap' => '0',
-  'schema_version' => '7020',
-  'weight' => '0',
-  'info' => 'a:13:{s:4:"name";s:4:"User";s:11:"description";s:47:"Manages the user registration and login system.";s:7:"package";s:4:"Core";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:5:"files";a:2:{i:0;s:11:"user.module";i:1;s:9:"user.test";}s:8:"required";b:1;s:9:"configure";s:19:"admin/config/people";s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:8:"user.css";s:21:"modules/user/user.css";}}s:5:"mtime";i:1664863480;s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'profiles/standard/standard.profile',
-  'name' => 'standard',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '1',
-  'bootstrap' => '0',
-  'schema_version' => '0',
-  'weight' => '1000',
-  'info' => 'a:13:{s:4:"name";s:8:"Standard";s:11:"description";s:51:"Install with commonly used features pre-configured.";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:12:"dependencies";a:21:{i:0;s:5:"block";i:1;s:5:"color";i:2;s:7:"comment";i:3;s:10:"contextual";i:4;s:9:"dashboard";i:5;s:4:"help";i:6;s:5:"image";i:7;s:4:"list";i:8;s:4:"menu";i:9;s:6:"number";i:10;s:7:"options";i:11;s:4:"path";i:12;s:8:"taxonomy";i:13;s:5:"dblog";i:14;s:6:"search";i:15;s:8:"shortcut";i:16;s:7:"toolbar";i:17;s:7:"overlay";i:18;s:8:"field_ui";i:19;s:4:"file";i:20;s:3:"rdf";}s:5:"mtime";i:1664863480;s:7:"package";s:5:"Other";s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;s:6:"hidden";b:1;s:8:"required";b:1;s:17:"distribution_name";s:6:"Drupal";}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/breakpoints/breakpoints.module',
-  'name' => 'breakpoints',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:11:"Breakpoints";s:11:"description";s:18:"Manage breakpoints";s:4:"core";s:3:"7.x";s:12:"dependencies";a:1:{i:0;s:6:"ctools";}s:5:"files";a:2:{i:0;s:18:"breakpoints.module";i:1;s:16:"breakpoints.test";}s:9:"configure";s:30:"admin/config/media/breakpoints";s:5:"mtime";i:1664870344;s:7:"package";s:5:"Other";s:7:"version";N;s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/breakpoints/tests/breakpoints_theme_test.module',
-  'name' => 'breakpoints_theme_test',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:22:"Breakpoints Theme Test";s:11:"description";s:35:"Test breakpoints provided by themes";s:7:"package";s:5:"Other";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:5:"mtime";i:1664870344;s:12:"dependencies";a:0:{}s:7:"version";N;s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/ctools/bulk_export/bulk_export.module',
-  'name' => 'bulk_export',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:10:{s:4:"name";s:11:"Bulk Export";s:11:"description";s:67:"Performs bulk exporting of data objects known about by Chaos tools.";s:4:"core";s:3:"7.x";s:12:"dependencies";a:1:{i:0;s:6:"ctools";}s:7:"package";s:16:"Chaos tool suite";s:7:"version";s:21:"CTOOLS_MODULE_VERSION";s:5:"mtime";i:1664871889;s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/ctools/ctools.module',
-  'name' => 'ctools',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:10:{s:4:"name";s:11:"Chaos tools";s:11:"description";s:46:"A library of helpful tools by Merlin of Chaos.";s:4:"core";s:3:"7.x";s:7:"package";s:16:"Chaos tool suite";s:7:"version";s:21:"CTOOLS_MODULE_VERSION";s:5:"files";a:5:{i:0;s:20:"includes/context.inc";i:1;s:22:"includes/css-cache.inc";i:2;s:22:"includes/math-expr.inc";i:3;s:21:"includes/stylizer.inc";i:4;s:20:"tests/css_cache.test";}s:5:"mtime";i:1664871889;s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/ctools/ctools_access_ruleset/ctools_access_ruleset.module',
-  'name' => 'ctools_access_ruleset',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:10:{s:4:"name";s:15:"Custom rulesets";s:11:"description";s:81:"Create custom, exportable, reusable access rulesets for applications like Panels.";s:4:"core";s:3:"7.x";s:7:"package";s:16:"Chaos tool suite";s:7:"version";s:21:"CTOOLS_MODULE_VERSION";s:12:"dependencies";a:1:{i:0;s:6:"ctools";}s:5:"mtime";i:1664871889;s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/ctools/ctools_ajax_sample/ctools_ajax_sample.module',
-  'name' => 'ctools_ajax_sample',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:10:{s:4:"name";s:33:"Chaos Tools (CTools) AJAX Example";s:11:"description";s:41:"Shows how to use the power of Chaos AJAX.";s:7:"package";s:16:"Chaos tool suite";s:7:"version";s:21:"CTOOLS_MODULE_VERSION";s:12:"dependencies";a:1:{i:0;s:6:"ctools";}s:4:"core";s:3:"7.x";s:5:"mtime";i:1664871889;s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/ctools/ctools_custom_content/ctools_custom_content.module',
-  'name' => 'ctools_custom_content',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:10:{s:4:"name";s:20:"Custom content panes";s:11:"description";s:79:"Create custom, exportable, reusable content panes for applications like Panels.";s:4:"core";s:3:"7.x";s:7:"package";s:16:"Chaos tool suite";s:7:"version";s:21:"CTOOLS_MODULE_VERSION";s:12:"dependencies";a:1:{i:0;s:6:"ctools";}s:5:"mtime";i:1664871889;s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/ctools/ctools_plugin_example/ctools_plugin_example.module',
-  'name' => 'ctools_plugin_example',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:10:{s:4:"name";s:35:"Chaos Tools (CTools) Plugin Example";s:11:"description";s:75:"Shows how an external module can provide ctools plugins (for Panels, etc.).";s:7:"package";s:16:"Chaos tool suite";s:7:"version";s:21:"CTOOLS_MODULE_VERSION";s:12:"dependencies";a:4:{i:0;s:6:"ctools";i:1;s:6:"panels";i:2;s:12:"page_manager";i:3;s:13:"advanced_help";}s:4:"core";s:3:"7.x";s:5:"mtime";i:1664871889;s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/ctools/page_manager/page_manager.module',
-  'name' => 'page_manager',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:10:{s:4:"name";s:12:"Page manager";s:11:"description";s:54:"Provides a UI and API to manage pages within the site.";s:4:"core";s:3:"7.x";s:12:"dependencies";a:1:{i:0;s:6:"ctools";}s:7:"package";s:16:"Chaos tool suite";s:7:"version";s:21:"CTOOLS_MODULE_VERSION";s:5:"mtime";i:1664871889;s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/ctools/stylizer/stylizer.module',
-  'name' => 'stylizer',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:10:{s:4:"name";s:8:"Stylizer";s:11:"description";s:53:"Create custom styles for applications such as Panels.";s:4:"core";s:3:"7.x";s:7:"package";s:16:"Chaos tool suite";s:7:"version";s:21:"CTOOLS_MODULE_VERSION";s:12:"dependencies";a:2:{i:0;s:6:"ctools";i:1;s:5:"color";}s:5:"mtime";i:1664871889;s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/ctools/term_depth/term_depth.module',
-  'name' => 'term_depth',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:10:{s:4:"name";s:17:"Term Depth access";s:11:"description";s:48:"Controls access to context based upon term depth";s:4:"core";s:3:"7.x";s:12:"dependencies";a:1:{i:0;s:6:"ctools";}s:7:"package";s:16:"Chaos tool suite";s:7:"version";s:21:"CTOOLS_MODULE_VERSION";s:5:"mtime";i:1664871889;s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/ctools/tests/ctools_export_test/ctools_export_test.module',
-  'name' => 'ctools_export_test',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:18:"CTools export test";s:11:"description";s:25:"CTools export test module";s:4:"core";s:3:"7.x";s:7:"package";s:16:"Chaos tool suite";s:7:"version";s:21:"CTOOLS_MODULE_VERSION";s:12:"dependencies";a:1:{i:0;s:6:"ctools";}s:6:"hidden";b:1;s:5:"files";a:1:{i:0;s:18:"ctools_export.test";}s:5:"mtime";i:1664871889;s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/ctools/tests/ctools_plugin_test.module',
-  'name' => 'ctools_plugin_test',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:24:"Chaos tools plugins test";s:11:"description";s:42:"Provides hooks for testing ctools plugins.";s:7:"package";s:16:"Chaos tool suite";s:7:"version";s:21:"CTOOLS_MODULE_VERSION";s:4:"core";s:3:"7.x";s:12:"dependencies";a:1:{i:0;s:6:"ctools";}s:5:"files";a:6:{i:0;s:19:"ctools.plugins.test";i:1;s:17:"object_cache.test";i:2;s:8:"css.test";i:3;s:12:"context.test";i:4;s:20:"math_expression.test";i:5;s:26:"math_expression_stack.test";}s:6:"hidden";b:1;s:5:"mtime";i:1664871889;s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/ctools/views_content/views_content.module',
-  'name' => 'views_content',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:10:{s:4:"name";s:19:"Views content panes";s:11:"description";s:104:"Allows Views content to be used in Panels, Dashboard and other modules which use the CTools Content API.";s:7:"package";s:16:"Chaos tool suite";s:12:"dependencies";a:2:{i:0;s:6:"ctools";i:1;s:5:"views";}s:4:"core";s:3:"7.x";s:7:"version";s:21:"CTOOLS_MODULE_VERSION";s:5:"files";a:3:{i:0;s:61:"plugins/views/views_content_plugin_display_ctools_context.inc";i:1;s:57:"plugins/views/views_content_plugin_display_panel_pane.inc";i:2;s:59:"plugins/views/views_content_plugin_style_ctools_context.inc";}s:5:"mtime";i:1664871889;s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/date/date.module',
-  'name' => 'date',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '1',
-  'bootstrap' => '0',
-  'schema_version' => '7200',
-  'weight' => '0',
-  'info' => 'a:13:{s:4:"name";s:4:"Date";s:11:"description";s:33:"Makes date/time fields available.";s:12:"dependencies";a:1:{i:0;s:13:"date:date_api";}s:7:"package";s:9:"Date/Time";s:4:"core";s:3:"7.x";s:5:"files";a:10:{i:0;s:16:"date.migrate.inc";i:1;s:26:"tests/DateEmwTestCase.test";i:2;s:27:"tests/DateFormTestCase.test";i:3;s:30:"tests/DateMigrateTestCase.test";i:4;s:30:"tests/DateNowUnitTestCase.test";i:5;s:28:"tests/DateFieldTestBase.test";i:6;s:28:"tests/DateFieldTestCase.test";i:7;s:31:"tests/DateTimezoneTestCase.test";i:8;s:25:"tests/DateUiTestCase.test";i:9;s:33:"tests/DateValidationTestCase.test";}s:17:"test_dependencies";a:4:{i:0;s:13:"entity:entity";i:1;s:23:"features:features (2.x)";i:2;s:15:"migrate:migrate";i:3;s:11:"views:views";}s:5:"mtime";i:1664867418;s:7:"version";N;s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;s:8:"required";b:1;s:11:"explanation";s:73:"Field type(s) in use - see <a href="/admin/reports/fields">Field list</a>";}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/date/date_all_day/date_all_day.module',
-  'name' => 'date_all_day',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => "a:10:{s:4:\"name\";s:12:\"Date All Day\";s:11:\"description\";s:142:\"Adds 'All Day' functionality to date fields, including an 'All Day' theme and 'All Day' checkboxes for the Date select and Date popup widgets.\";s:7:\"package\";s:9:\"Date/Time\";s:4:\"core\";s:3:\"7.x\";s:12:\"dependencies\";a:2:{i:0;s:13:\"date:date_api\";i:1;s:9:\"date:date\";}s:5:\"files\";a:2:{i:0;s:31:\"tests/DateAllDayUiTestCase.test\";i:1;s:32:\"tests/DateAllDayUpdatesTest.test\";}s:5:\"mtime\";i:1664867418;s:7:\"version\";N;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}",
-))
-->values(array(
-  'filename' => 'sites/all/modules/date/date_all_day/tests/date_all_day_test_feature/date_all_day_test_feature.module',
-  'name' => 'date_all_day_test_feature',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:12:{s:4:"name";s:25:"Date All Day Test Feature";s:11:"description";s:57:"Example content type for testing the Date All Day module.";s:4:"core";s:3:"7.x";s:7:"package";s:9:"Date/Time";s:12:"dependencies";a:3:{i:0;s:9:"date:date";i:1;s:17:"date:date_all_day";i:2;s:17:"features:features";}s:8:"features";a:4:{s:12:"features_api";a:1:{i:0;s:5:"api:2";}s:10:"field_base";a:2:{i:0;s:4:"body";i:1;s:18:"field_date_all_day";}s:14:"field_instance";a:2:{i:0;s:27:"node-date_all_day_test-body";i:1;s:41:"node-date_all_day_test-field_date_all_day";}s:4:"node";a:1:{i:0;s:17:"date_all_day_test";}}s:6:"hidden";s:1:"1";s:5:"mtime";i:1664867418;s:7:"version";N;s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/date/date_api/date_api.module',
-  'name' => 'date_api',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '1',
-  'bootstrap' => '0',
-  'schema_version' => '7001',
-  'weight' => '0',
-  'info' => 'a:10:{s:4:"name";s:8:"Date API";s:11:"description";s:45:"A Date API that can be used by other modules.";s:7:"package";s:9:"Date/Time";s:4:"core";s:3:"7.x";s:5:"files";a:4:{i:0;s:15:"date_api.module";i:1;s:16:"date_api_sql.inc";i:2;s:26:"tests/DateApiTestCase.test";i:3;s:30:"tests/DateApiUnitTestCase.test";}s:5:"mtime";i:1664867418;s:12:"dependencies";a:0:{}s:7:"version";N;s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/date/date_context/date_context.module',
-  'name' => 'date_context',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:10:{s:4:"name";s:12:"Date Context";s:11:"description";s:99:"Adds an option to the Context module to set a context condition based on the value of a date field.";s:7:"package";s:9:"Date/Time";s:4:"core";s:3:"7.x";s:12:"dependencies";a:2:{i:0;s:9:"date:date";i:1;s:15:"context:context";}s:5:"files";a:1:{i:0;s:39:"plugins/date_context_date_condition.inc";}s:5:"mtime";i:1664867418;s:7:"version";N;s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/date/date_migrate/date_migrate.module',
-  'name' => 'date_migrate',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:14:"Date Migration";s:11:"description";s:73:"Obsolete data migration module. Disable if no other modules depend on it.";s:4:"core";s:3:"7.x";s:7:"package";s:9:"Date/Time";s:6:"hidden";b:1;s:5:"mtime";i:1664867418;s:12:"dependencies";a:0:{}s:7:"version";N;s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/date/date_popup/date_popup.module',
-  'name' => 'date_popup',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:10:"Date Popup";s:11:"description";s:84:"Enables jquery popup calendars and time entry widgets for selecting dates and times.";s:7:"package";s:9:"Date/Time";s:4:"core";s:3:"7.x";s:9:"configure";s:28:"admin/config/date/date_popup";s:12:"dependencies";a:1:{i:0;s:13:"date:date_api";}s:5:"files";a:3:{i:0;s:33:"tests/DatePopupFieldTestCase.test";i:1;s:38:"tests/DatePopupValidationTestCase.test";i:2;s:37:"tests/DatePopupWithViewsTestCase.test";}s:5:"mtime";i:1664867418;s:7:"version";N;s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/date/date_repeat/date_repeat.module',
-  'name' => 'date_repeat',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:10:{s:4:"name";s:15:"Date Repeat API";s:11:"description";s:73:"A Date Repeat API to calculate repeating dates and times from iCal rules.";s:7:"package";s:9:"Date/Time";s:4:"core";s:3:"7.x";s:12:"dependencies";a:1:{i:0;s:13:"date:date_api";}s:5:"files";a:2:{i:0;s:22:"tests/date_repeat.test";i:1;s:27:"tests/date_repeat_form.test";}s:5:"mtime";i:1664867418;s:7:"version";N;s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/date/date_repeat_field/date_repeat_field.module',
-  'name' => 'date_repeat_field',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:17:"Date Repeat Field";s:11:"description";s:97:"Creates the option of Repeating date fields and manages Date fields that use the Date Repeat API.";s:7:"package";s:9:"Date/Time";s:4:"core";s:3:"7.x";s:12:"dependencies";a:3:{i:0;s:13:"date:date_api";i:1;s:9:"date:date";i:2;s:16:"date:date_repeat";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:21:"date_repeat_field.css";s:62:"sites/all/modules/date/date_repeat_field/date_repeat_field.css";}}s:5:"files";a:1:{i:0;s:34:"tests/DateRepeatFieldTestCase.test";}s:5:"mtime";i:1664867418;s:7:"version";N;s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/date/date_repeat_field/tests/date_repeat_test_feature/date_repeat_test_feature.module',
-  'name' => 'date_repeat_test_feature',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:12:{s:4:"name";s:24:"Date Repeat Test Feature";s:11:"description";s:44:"Examples for testing the Date Repeat module.";s:4:"core";s:3:"7.x";s:7:"package";s:9:"Date/Time";s:6:"hidden";b:1;s:12:"dependencies";a:4:{i:0;s:9:"date:date";i:1;s:16:"date:date_repeat";i:2;s:22:"date:date_repeat_field";i:3;s:17:"features:features";}s:8:"features";a:4:{s:12:"features_api";a:1:{i:0;s:5:"api:2";}s:10:"field_base";a:2:{i:0;s:4:"body";i:1;s:17:"field_date_repeat";}s:14:"field_instance";a:2:{i:0;s:26:"node-date_repeat_test-body";i:1;s:39:"node-date_repeat_test-field_date_repeat";}s:4:"node";a:1:{i:0;s:16:"date_repeat_test";}}s:5:"mtime";i:1664867418;s:7:"version";N;s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/date/date_tools/date_tools.module',
-  'name' => 'date_tools',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:10:"Date Tools";s:11:"description";s:52:"Tools to import and auto-create dates and calendars.";s:7:"package";s:9:"Date/Time";s:4:"core";s:3:"7.x";s:9:"configure";s:23:"admin/config/date/tools";s:12:"dependencies";a:1:{i:0;s:9:"date:date";}s:5:"files";a:1:{i:0;s:28:"tests/DateToolsTestCase.test";}s:5:"mtime";i:1664867418;s:7:"version";N;s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/date/date_views/date_views.module',
-  'name' => 'date_views',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:10:{s:4:"name";s:10:"Date Views";s:11:"description";s:57:"Views integration for date fields and date functionality.";s:7:"package";s:9:"Date/Time";s:4:"core";s:3:"7.x";s:12:"dependencies";a:2:{i:0;s:13:"date:date_api";i:1;s:11:"views:views";}s:5:"files";a:7:{i:0;s:40:"includes/date_views_argument_handler.inc";i:1;s:47:"includes/date_views_argument_handler_simple.inc";i:2;s:38:"includes/date_views_filter_handler.inc";i:3;s:45:"includes/date_views_filter_handler_simple.inc";i:4;s:36:"includes/date_views_plugin_pager.inc";i:5;s:28:"tests/date_views_filter.test";i:6;s:27:"tests/date_views_pager.test";}s:5:"mtime";i:1664867418;s:7:"version";N;s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/date/tests/date_migrate_test/date_migrate_test.module',
-  'name' => 'date_migrate_test',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => "a:11:{s:4:\"name\";s:26:\"Date Migration Test Helper\";s:11:\"description\";s:53:\"Helper for the Date module's Migrate API integration.\";s:7:\"package\";s:9:\"Date/Time\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:12:\"dependencies\";a:2:{i:0;s:22:\"date:date_test_feature\";i:1;s:15:\"migrate:migrate\";}s:5:\"files\";a:1:{i:0;s:29:\"date_migrate_test.migrate.inc\";}s:5:\"mtime\";i:1664867418;s:7:\"version\";N;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}",
-))
-->values(array(
-  'filename' => 'sites/all/modules/date/tests/date_test/date_test.module',
-  'name' => 'date_test',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:17:"Date module tests";s:11:"description";s:40:"Support module for date related testing.";s:7:"package";s:9:"Date/Time";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:12:"dependencies";a:1:{i:0;s:9:"date:date";}s:5:"mtime";i:1664867418;s:7:"version";N;s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/date/tests/date_test_feature/date_test_feature.module',
-  'name' => 'date_test_feature',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:12:{s:4:"name";s:17:"Date Test Feature";s:11:"description";s:73:"Examples of migrating with the Date module, primarily for use with tests.";s:4:"core";s:3:"7.x";s:7:"package";s:9:"Date/Time";s:6:"hidden";b:1;s:12:"dependencies";a:4:{i:0;s:9:"date:date";i:1;s:16:"date:date_repeat";i:2;s:22:"date:date_repeat_field";i:3;s:17:"features:features";}s:8:"features";a:4:{s:12:"features_api";a:1:{i:0;s:5:"api:2";}s:10:"field_base";a:8:{i:0;s:4:"body";i:1;s:10:"field_date";i:2;s:16:"field_date_range";i:3;s:17:"field_date_repeat";i:4;s:15:"field_datestamp";i:5;s:21:"field_datestamp_range";i:6;s:14:"field_datetime";i:7;s:20:"field_datetime_range";}s:14:"field_instance";a:8:{i:0;s:19:"node-date_test-body";i:1;s:25:"node-date_test-field_date";i:2;s:31:"node-date_test-field_date_range";i:3;s:32:"node-date_test-field_date_repeat";i:4;s:30:"node-date_test-field_datestamp";i:5;s:36:"node-date_test-field_datestamp_range";i:6;s:29:"node-date_test-field_datetime";i:7;s:35:"node-date_test-field_datetime_range";}s:4:"node";a:1:{i:0;s:9:"date_test";}}s:5:"mtime";i:1664867418;s:7:"version";N;s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/email/email.module',
-  'name' => 'email',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:10:{s:4:"name";s:5:"Email";s:11:"description";s:28:"Defines an email field type.";s:4:"core";s:3:"7.x";s:7:"package";s:6:"Fields";s:5:"files";a:1:{i:0;s:17:"email.migrate.inc";}s:5:"mtime";i:1664867555;s:12:"dependencies";a:0:{}s:7:"version";N;s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/entity/entity.module',
-  'name' => 'entity',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:10:{s:4:"name";s:10:"Entity API";s:11:"description";s:69:"Enables modules to work with any entity type and to provide entities.";s:4:"core";s:3:"7.x";s:5:"files";a:24:{i:0;s:19:"entity.features.inc";i:1;s:15:"entity.i18n.inc";i:2;s:15:"entity.info.inc";i:3;s:16:"entity.rules.inc";i:4;s:11:"entity.test";i:5;s:19:"includes/entity.inc";i:6;s:30:"includes/entity.controller.inc";i:7;s:22:"includes/entity.ui.inc";i:8;s:27:"includes/entity.wrapper.inc";i:9;s:22:"views/entity.views.inc";i:10;s:52:"views/handlers/entity_views_field_handler_helper.inc";i:11;s:51:"views/handlers/entity_views_handler_area_entity.inc";i:12;s:53:"views/handlers/entity_views_handler_field_boolean.inc";i:13;s:50:"views/handlers/entity_views_handler_field_date.inc";i:14;s:54:"views/handlers/entity_views_handler_field_duration.inc";i:15;s:52:"views/handlers/entity_views_handler_field_entity.inc";i:16;s:51:"views/handlers/entity_views_handler_field_field.inc";i:17;s:53:"views/handlers/entity_views_handler_field_numeric.inc";i:18;s:53:"views/handlers/entity_views_handler_field_options.inc";i:19;s:50:"views/handlers/entity_views_handler_field_text.inc";i:20;s:49:"views/handlers/entity_views_handler_field_uri.inc";i:21;s:62:"views/handlers/entity_views_handler_relationship_by_bundle.inc";i:22;s:52:"views/handlers/entity_views_handler_relationship.inc";i:23;s:53:"views/plugins/entity_views_plugin_row_entity_view.inc";}s:5:"mtime";i:1664868240;s:12:"dependencies";a:0:{}s:7:"package";s:5:"Other";s:7:"version";N;s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/entity/entity_token.module',
-  'name' => 'entity_token',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:10:{s:4:"name";s:13:"Entity tokens";s:11:"description";s:99:"Provides token replacements for all properties that have no tokens and are known to the entity API.";s:4:"core";s:3:"7.x";s:5:"files";a:2:{i:0;s:23:"entity_token.tokens.inc";i:1;s:19:"entity_token.module";}s:12:"dependencies";a:1:{i:0;s:6:"entity";}s:5:"mtime";i:1664868240;s:7:"package";s:5:"Other";s:7:"version";N;s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/entity/tests/entity_feature.module',
-  'name' => 'entity_feature',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:21:"Entity feature module";s:11:"description";s:31:"Provides some entities in code.";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:5:"files";a:1:{i:0;s:21:"entity_feature.module";}s:12:"dependencies";a:1:{i:0;s:11:"entity_test";}s:6:"hidden";b:1;s:5:"mtime";i:1664868240;s:7:"package";s:5:"Other";s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/entity/tests/entity_test.module',
-  'name' => 'entity_test',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:23:"Entity CRUD test module";s:11:"description";s:46:"Provides entity types based upon the CRUD API.";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:5:"files";a:2:{i:0;s:18:"entity_test.module";i:1;s:19:"entity_test.install";}s:12:"dependencies";a:1:{i:0;s:6:"entity";}s:6:"hidden";b:1;s:5:"mtime";i:1664868240;s:7:"package";s:5:"Other";s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/entity/tests/entity_test_i18n.module',
-  'name' => 'entity_test_i18n',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:28:"Entity-test type translation";s:11:"description";s:37:"Allows translating entity-test types.";s:12:"dependencies";a:2:{i:0;s:11:"entity_test";i:1;s:11:"i18n_string";}s:7:"package";s:35:"Multilingual - Internationalization";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:5:"mtime";i:1664868240;s:7:"version";N;s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/entityreference/entityreference.module',
-  'name' => 'entityreference',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:16:"Entity Reference";s:11:"description";s:51:"Provides a field that can reference other entities.";s:7:"package";s:6:"Fields";s:4:"core";s:3:"7.x";s:12:"dependencies";a:2:{i:0;s:6:"entity";i:1;s:6:"ctools";}s:17:"test_dependencies";a:2:{i:0;s:5:"feeds";i:1;s:5:"views";}s:5:"files";a:12:{i:0;s:27:"entityreference.migrate.inc";i:1;s:30:"plugins/selection/abstract.inc";i:2;s:27:"plugins/selection/views.inc";i:3;s:29:"plugins/behavior/abstract.inc";i:4;s:40:"views/entityreference_plugin_display.inc";i:5;s:38:"views/entityreference_plugin_style.inc";i:6;s:43:"views/entityreference_plugin_row_fields.inc";i:7;s:35:"tests/entityreference.handlers.test";i:8;s:35:"tests/entityreference.taxonomy.test";i:9;s:32:"tests/entityreference.admin.test";i:10;s:32:"tests/entityreference.feeds.test";i:11;s:45:"tests/entityreference.entity_translation.test";}s:5:"mtime";i:1664944690;s:7:"version";N;s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/entityreference/examples/entityreference_behavior_example/entityreference_behavior_example.module',
-  'name' => 'entityreference_behavior_example',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:10:{s:4:"name";s:33:"Entity Reference Behavior Example";s:11:"description";s:71:"Provides some example code for implementing Entity Reference behaviors.";s:4:"core";s:3:"7.x";s:7:"package";s:6:"Fields";s:12:"dependencies";a:1:{i:0;s:15:"entityreference";}s:5:"mtime";i:1664867650;s:7:"version";N;s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/entityreference/tests/modules/entityreference_feeds_test/entityreference_feeds_test.module',
-  'name' => 'entityreference_feeds_test',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:41:"Entityreference - Feeds integration tests";s:11:"description";s:65:"Support module for the Entityreference - Feeds integration tests.";s:7:"package";s:7:"Testing";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:12:"dependencies";a:3:{i:0;s:5:"feeds";i:1;s:8:"feeds_ui";i:2;s:15:"entityreference";}s:5:"mtime";i:1664867650;s:7:"version";N;s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/entity_translation/entity_translation.module',
-  'name' => 'entity_translation',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '1',
-  'bootstrap' => '0',
-  'schema_version' => '7009',
-  'weight' => '11',
-  'info' => 'a:12:{s:4:"name";s:18:"Entity Translation";s:11:"description";s:58:"Allows entities to be translated into different languages.";s:7:"package";s:33:"Multilingual - Entity Translation";s:4:"core";s:3:"7.x";s:9:"configure";s:40:"admin/config/regional/entity_translation";s:12:"dependencies";a:1:{i:0;s:14:"locale (>7.14)";}s:17:"test_dependencies";a:2:{i:0;s:17:"pathauto:pathauto";i:1;s:11:"title:title";}s:5:"files";a:15:{i:0;s:40:"includes/translation.handler_factory.inc";i:1;s:32:"includes/translation.handler.inc";i:2;s:40:"includes/translation.handler.comment.inc";i:3;s:37:"includes/translation.handler.node.inc";i:4;s:46:"includes/translation.handler.taxonomy_term.inc";i:5;s:37:"includes/translation.handler.user.inc";i:6;s:32:"includes/translation.migrate.inc";i:7;s:29:"tests/entity_translation.test";i:8;s:49:"views/entity_translation_handler_relationship.inc";i:9;s:57:"views/entity_translation_handler_field_translate_link.inc";i:10;s:48:"views/entity_translation_handler_field_label.inc";i:11;s:55:"views/entity_translation_handler_filter_entity_type.inc";i:12;s:52:"views/entity_translation_handler_filter_language.inc";i:13;s:62:"views/entity_translation_handler_filter_translation_exists.inc";i:14;s:48:"views/entity_translation_handler_field_field.inc";}s:5:"mtime";i:1664867622;s:7:"version";N;s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/entity_translation/entity_translation_i18n_menu/entity_translation_i18n_menu.module',
-  'name' => 'entity_translation_i18n_menu',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:10:{s:4:"name";s:23:"Entity Translation Menu";s:11:"description";s:54:"Allows menu items to be translated on the entity form.";s:7:"package";s:33:"Multilingual - Entity Translation";s:4:"core";s:3:"7.x";s:12:"dependencies";a:3:{i:0;s:18:"entity_translation";i:1;s:4:"i18n";i:2;s:9:"i18n_menu";}s:5:"files";a:1:{i:0;s:33:"entity_translation_i18n_menu.test";}s:5:"mtime";i:1664867622;s:7:"version";N;s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/entity_translation/entity_translation_upgrade/entity_translation_upgrade.module',
-  'name' => 'entity_translation_upgrade',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:10:{s:4:"name";s:26:"Entity Translation Upgrade";s:11:"description";s:80:"Provides an upgrade path from node-based translation to field-based translation.";s:7:"package";s:33:"Multilingual - Entity Translation";s:4:"core";s:3:"7.x";s:12:"dependencies";a:1:{i:0;s:18:"entity_translation";}s:5:"files";a:1:{i:0;s:31:"entity_translation_upgrade.test";}s:5:"mtime";i:1664867622;s:7:"version";N;s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/entity_translation/tests/entity_translation_test.module',
-  'name' => 'entity_translation_test',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:26:"Entity Translation testing";s:11:"description";s:61:"Tests Entity Translation module functionality. Do not enable.";s:4:"core";s:3:"7.x";s:7:"package";s:7:"Testing";s:6:"hidden";b:1;s:12:"dependencies";a:1:{i:0;s:18:"entity_translation";}s:5:"files";a:1:{i:0;s:30:"entity_translation_test.module";}s:5:"mtime";i:1664867622;s:7:"version";N;s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/i18n/i18n.module',
-  'name' => 'i18n',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '1',
-  'bootstrap' => '1',
-  'schema_version' => '7001',
-  'weight' => '10',
-  'info' => 'a:11:{s:4:"name";s:20:"Internationalization";s:11:"description";s:49:"Extends Drupal support for multilingual features.";s:12:"dependencies";a:2:{i:0;s:6:"locale";i:1;s:8:"variable";}s:7:"package";s:35:"Multilingual - Internationalization";s:4:"core";s:3:"7.x";s:5:"files";a:2:{i:0;s:15:"i18n_object.inc";i:1;s:9:"i18n.test";}s:9:"configure";s:26:"admin/config/regional/i18n";s:5:"mtime";i:1664867462;s:7:"version";N;s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/i18n/i18n_block/i18n_block.module',
-  'name' => 'i18n_block',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:10:{s:4:"name";s:15:"Block languages";s:11:"description";s:68:"Enables language selector for blocks and optional block translation.";s:12:"dependencies";a:2:{i:0;s:5:"block";i:1;s:11:"i18n_string";}s:7:"package";s:35:"Multilingual - Internationalization";s:4:"core";s:3:"7.x";s:5:"files";a:2:{i:0;s:14:"i18n_block.inc";i:1;s:15:"i18n_block.test";}s:5:"mtime";i:1664867462;s:7:"version";N;s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/i18n/i18n_contact/i18n_contact.module',
-  'name' => 'i18n_contact',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:10:{s:4:"name";s:19:"Contact translation";s:11:"description";s:63:"Makes contact categories and replies available for translation.";s:12:"dependencies";a:2:{i:0;s:7:"contact";i:1;s:11:"i18n_string";}s:7:"package";s:35:"Multilingual - Internationalization";s:4:"core";s:3:"7.x";s:5:"mtime";i:1664867462;s:7:"version";N;s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/i18n/i18n_field/i18n_field.module',
-  'name' => 'i18n_field',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:10:{s:4:"name";s:17:"Field translation";s:11:"description";s:26:"Translate field properties";s:12:"dependencies";a:2:{i:0;s:5:"field";i:1;s:11:"i18n_string";}s:7:"package";s:35:"Multilingual - Internationalization";s:4:"core";s:3:"7.x";s:5:"files";a:2:{i:0;s:14:"i18n_field.inc";i:1;s:15:"i18n_field.test";}s:5:"mtime";i:1664867462;s:7:"version";N;s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/i18n/i18n_forum/i18n_forum.module',
-  'name' => 'i18n_forum',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:10:{s:4:"name";s:18:"Multilingual forum";s:11:"description";s:60:"Enables multilingual forum, translates names and containers.";s:12:"dependencies";a:3:{i:0;s:5:"forum";i:1;s:13:"i18n_taxonomy";i:2;s:9:"i18n_node";}s:7:"package";s:35:"Multilingual - Internationalization";s:4:"core";s:3:"7.x";s:5:"files";a:1:{i:0;s:15:"i18n_forum.test";}s:5:"mtime";i:1664867462;s:7:"version";N;s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/i18n/i18n_menu/i18n_menu.module',
-  'name' => 'i18n_menu',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:10:{s:4:"name";s:16:"Menu translation";s:11:"description";s:40:"Supports translatable custom menu items.";s:12:"dependencies";a:4:{i:0;s:4:"i18n";i:1;s:4:"menu";i:2;s:11:"i18n_string";i:3;s:16:"i18n_translation";}s:7:"package";s:35:"Multilingual - Internationalization";s:4:"core";s:3:"7.x";s:5:"files";a:2:{i:0;s:13:"i18n_menu.inc";i:1;s:14:"i18n_menu.test";}s:5:"mtime";i:1664867462;s:7:"version";N;s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/i18n/i18n_node/i18n_node.module',
-  'name' => 'i18n_node',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:20:"Multilingual content";s:11:"description";s:46:"Extended node options for multilingual content";s:12:"dependencies";a:3:{i:0;s:11:"translation";i:1;s:4:"i18n";i:2;s:11:"i18n_string";}s:7:"package";s:35:"Multilingual - Internationalization";s:4:"core";s:3:"7.x";s:9:"configure";s:31:"admin/config/regional/i18n/node";s:5:"files";a:2:{i:0;s:14:"i18n_node.test";i:1;s:22:"i18n_node.variable.inc";}s:5:"mtime";i:1664867462;s:7:"version";N;s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/i18n/i18n_path/i18n_path.module',
-  'name' => 'i18n_path',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:10:{s:4:"name";s:16:"Path translation";s:11:"description";s:37:"Define translations for generic paths";s:12:"dependencies";a:1:{i:0;s:16:"i18n_translation";}s:7:"package";s:35:"Multilingual - Internationalization";s:4:"core";s:3:"7.x";s:5:"files";a:2:{i:0;s:13:"i18n_path.inc";i:1;s:14:"i18n_path.test";}s:5:"mtime";i:1664867462;s:7:"version";N;s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/i18n/i18n_redirect/i18n_redirect.module',
-  'name' => 'i18n_redirect',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:10:{s:4:"name";s:20:"Translation redirect";s:11:"description";s:71:"Redirect to translated page when available. SEO for multilingual sites.";s:12:"dependencies";a:1:{i:0;s:4:"i18n";}s:7:"package";s:35:"Multilingual - Internationalization";s:4:"core";s:3:"7.x";s:5:"mtime";i:1664867462;s:7:"version";N;s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/i18n/i18n_select/i18n_select.module',
-  'name' => 'i18n_select',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:19:"Multilingual select";s:11:"description";s:45:"API module for multilingual content selection";s:12:"dependencies";a:1:{i:0;s:4:"i18n";}s:7:"package";s:35:"Multilingual - Internationalization";s:4:"core";s:3:"7.x";s:9:"configure";s:33:"admin/config/regional/i18n/select";s:5:"files";a:1:{i:0;s:16:"i18n_select.test";}s:5:"mtime";i:1664867462;s:7:"version";N;s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/i18n/i18n_string/i18n_string.module',
-  'name' => 'i18n_string',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '1',
-  'bootstrap' => '0',
-  'schema_version' => '7004',
-  'weight' => '10',
-  'info' => 'a:11:{s:4:"name";s:18:"String translation";s:11:"description";s:57:"Provides support for translation of user defined strings.";s:12:"dependencies";a:2:{i:0;s:6:"locale";i:1;s:4:"i18n";}s:7:"package";s:35:"Multilingual - Internationalization";s:4:"core";s:3:"7.x";s:5:"files";a:3:{i:0;s:21:"i18n_string.admin.inc";i:1;s:15:"i18n_string.inc";i:2;s:16:"i18n_string.test";}s:9:"configure";s:34:"admin/config/regional/i18n/strings";s:5:"mtime";i:1664867462;s:7:"version";N;s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/i18n/i18n_sync/i18n_sync.module',
-  'name' => 'i18n_sync',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:10:{s:4:"name";s:24:"Synchronize translations";s:11:"description";s:73:"Synchronizes taxonomy and fields across translations of the same content.";s:12:"dependencies";a:2:{i:0;s:4:"i18n";i:1;s:11:"translation";}s:7:"package";s:35:"Multilingual - Internationalization";s:4:"core";s:3:"7.x";s:5:"files";a:5:{i:0;s:16:"i18n_sync.module";i:1;s:17:"i18n_sync.install";i:2;s:20:"i18n_sync.module.inc";i:3;s:18:"i18n_sync.node.inc";i:4;s:14:"i18n_sync.test";}s:5:"mtime";i:1664867462;s:7:"version";N;s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/i18n/i18n_taxonomy/i18n_taxonomy.module',
-  'name' => 'i18n_taxonomy',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '1',
-  'bootstrap' => '0',
-  'schema_version' => '7004',
-  'weight' => '5',
-  'info' => 'a:10:{s:4:"name";s:20:"Taxonomy translation";s:11:"description";s:30:"Enables multilingual taxonomy.";s:12:"dependencies";a:3:{i:0;s:8:"taxonomy";i:1;s:11:"i18n_string";i:2;s:16:"i18n_translation";}s:7:"package";s:35:"Multilingual - Internationalization";s:4:"core";s:3:"7.x";s:5:"files";a:4:{i:0;s:17:"i18n_taxonomy.inc";i:1;s:23:"i18n_taxonomy.pages.inc";i:2;s:23:"i18n_taxonomy.admin.inc";i:3;s:18:"i18n_taxonomy.test";}s:5:"mtime";i:1664867462;s:7:"version";N;s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/i18n/i18n_translation/i18n_translation.module',
-  'name' => 'i18n_translation',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '1',
-  'bootstrap' => '0',
-  'schema_version' => '0',
-  'weight' => '0',
-  'info' => 'a:10:{s:4:"name";s:16:"Translation sets";s:11:"description";s:47:"Simple translation sets API for generic objects";s:12:"dependencies";a:1:{i:0;s:4:"i18n";}s:7:"package";s:35:"Multilingual - Internationalization";s:4:"core";s:3:"7.x";s:5:"files";a:1:{i:0;s:20:"i18n_translation.inc";}s:5:"mtime";i:1664867462;s:7:"version";N;s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/i18n/i18n_user/i18n_user.module',
-  'name' => 'i18n_user',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:10:{s:4:"name";s:21:"User mail translation";s:11:"description";s:43:"Translate emails sent from the User module.";s:4:"core";s:3:"7.x";s:7:"package";s:35:"Multilingual - Internationalization";s:12:"dependencies";a:1:{i:0;s:13:"i18n_variable";}s:5:"mtime";i:1664867462;s:7:"version";N;s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/i18n/i18n_variable/i18n_variable.module',
-  'name' => 'i18n_variable',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:20:"Variable translation";s:11:"description";s:71:"Multilingual variables that switch language depending on page language.";s:12:"dependencies";a:3:{i:0;s:4:"i18n";i:1;s:24:"variable_store (7.x-2.x)";i:2;s:24:"variable_realm (7.x-2.x)";}s:7:"package";s:35:"Multilingual - Internationalization";s:4:"core";s:3:"7.x";s:9:"configure";s:35:"admin/config/regional/i18n/variable";s:5:"files";a:2:{i:0;s:23:"i18n_variable.class.inc";i:1;s:18:"i18n_variable.test";}s:5:"mtime";i:1664867462;s:7:"version";N;s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/i18n/tests/i18n_test.module',
-  'name' => 'i18n_test',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:26:"Internationalization tests";s:11:"description";s:55:"Helper module for testing i18n (do not enable manually)";s:12:"dependencies";a:3:{i:0;s:6:"locale";i:1;s:11:"translation";i:2;s:4:"i18n";}s:7:"package";s:7:"Testing";s:4:"core";s:3:"6.x";s:6:"hidden";b:1;s:5:"mtime";i:1664867462;s:7:"version";N;s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/link/link.module',
-  'name' => 'link',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:12:{s:4:"name";s:4:"Link";s:11:"description";s:32:"Defines simple link field types.";s:4:"core";s:3:"7.x";s:7:"package";s:6:"Fields";s:9:"configure";s:25:"admin/config/content/link";s:5:"files";a:15:{i:0;s:16:"link.migrate.inc";i:1;s:44:"views/link_views_handler_argument_target.inc";i:2;s:44:"views/link_views_handler_filter_protocol.inc";i:3;s:28:"tests/LinkBaseTestClass.test";i:4;s:39:"tests/LinkConvertInternalPathsTest.test";i:5;s:34:"tests/LinkDefaultProtocolTest.test";i:6;s:30:"tests/LinkEntityTokenTest.test";i:7;s:34:"tests/LinkFieldAttributesTest.test";i:8;s:28:"tests/LinkFieldCrudTest.test";i:9;s:32:"tests/LinkFieldValidateTest.test";i:10;s:31:"tests/LinkPathPrefixesTest.test";i:11;s:27:"tests/LinkSanitizeTest.test";i:12;s:24:"tests/LinkTokenTest.test";i:13;s:32:"tests/LinkValidationApiTest.test";i:14;s:27:"tests/LinkUnitTestCase.test";}s:17:"test_dependencies";a:2:{i:0;s:13:"entity:entity";i:1;s:11:"token:token";}s:5:"mtime";i:1664867467;s:12:"dependencies";a:0:{}s:7:"version";N;s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/multiupload_filefield_widget/multiupload_filefield_widget.module',
-  'name' => 'multiupload_filefield_widget',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:10:{s:4:"name";s:28:"Multiupload Filefield Widget";s:11:"description";s:76:"Creates a widget for filefield to upload multiple files at once using html5.";s:7:"package";s:6:"Fields";s:4:"core";s:3:"7.x";s:12:"dependencies";a:1:{i:0;s:4:"file";}s:5:"files";a:2:{i:0;s:35:"multiupload_filefield_widget.module";i:1;s:33:"multiupload_filefield_widget.test";}s:5:"mtime";i:1664867583;s:7:"version";N;s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/multiupload_imagefield_widget/multiupload_imagefield_widget.module',
-  'name' => 'multiupload_imagefield_widget',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:10:{s:4:"name";s:29:"Multiupload Imagefield Widget";s:11:"description";s:77:"Creates a widget for imagefield to upload multiple files at once using html5.";s:7:"package";s:6:"Fields";s:12:"dependencies";a:2:{i:0;s:28:"multiupload_filefield_widget";i:1;s:5:"image";}s:4:"core";s:3:"7.x";s:5:"mtime";i:1664867591;s:7:"version";N;s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/phone/phone.module',
-  'name' => 'phone',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:10:{s:4:"name";s:5:"Phone";s:11:"description";s:80:"The phone module allows administrators to define a field type for phone numbers.";s:7:"package";s:6:"Fields";s:12:"dependencies";a:1:{i:0;s:5:"field";}s:5:"files";a:30:{i:0;s:17:"phone.migrate.inc";i:1;s:19:"tests/phone.au.test";i:2;s:19:"tests/phone.be.test";i:3;s:19:"tests/phone.br.test";i:4;s:19:"tests/phone.ca.test";i:5;s:19:"tests/phone.ch.test";i:6;s:19:"tests/phone.cl.test";i:7;s:19:"tests/phone.cn.test";i:8;s:19:"tests/phone.cr.test";i:9;s:19:"tests/phone.cs.test";i:10;s:19:"tests/phone.eg.test";i:11;s:19:"tests/phone.es.test";i:12;s:19:"tests/phone.fr.test";i:13;s:19:"tests/phone.hu.test";i:14;s:19:"tests/phone.il.test";i:15;s:20:"tests/phone.int.test";i:16;s:19:"tests/phone.it.test";i:17;s:19:"tests/phone.jo.test";i:18;s:19:"tests/phone.nl.test";i:19;s:19:"tests/phone.nz.test";i:20;s:19:"tests/phone.pa.test";i:21;s:19:"tests/phone.ph.test";i:22;s:19:"tests/phone.pk.test";i:23;s:19:"tests/phone.pl.test";i:24;s:19:"tests/phone.ru.test";i:25;s:19:"tests/phone.se.test";i:26;s:19:"tests/phone.sg.test";i:27;s:19:"tests/phone.ua.test";i:28;s:19:"tests/phone.uk.test";i:29;s:19:"tests/phone.za.test";}s:4:"core";s:3:"7.x";s:5:"mtime";i:1664867472;s:7:"version";N;s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/picture/flexslider_picture/flexslider_picture.module',
-  'name' => 'flexslider_picture',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:10:{s:4:"name";s:18:"FlexSlider Picture";s:11:"description";s:87:"Integrates the Picture module with the FlexSlider module for a truly responsive slider.";s:7:"package";s:7:"Picture";s:4:"core";s:3:"7.x";s:12:"dependencies";a:3:{i:0;s:7:"picture";i:1;s:16:"flexslider (2.x)";i:2;s:23:"flexslider_fields (2.x)";}s:5:"mtime";i:1664870250;s:7:"version";N;s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/picture/picture.module',
-  'name' => 'picture',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:12:{s:4:"name";s:7:"Picture";s:11:"description";s:15:"Picture element";s:4:"core";s:3:"7.x";s:12:"dependencies";a:3:{i:0;s:6:"ctools";i:1;s:5:"image";i:2;s:11:"breakpoints";}s:5:"files";a:1:{i:0;s:27:"includes/PictureMapping.php";}s:9:"configure";s:26:"admin/config/media/picture";s:7:"package";s:7:"Picture";s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:19:"picture_wysiwyg.css";s:45:"sites/all/modules/picture/picture_wysiwyg.css";}}s:5:"mtime";i:1664870250;s:7:"version";N;s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/references/node_reference/node_reference.module',
-  'name' => 'node_reference',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:10:{s:4:"name";s:14:"Node Reference";s:11:"description";s:59:"Defines a field type for referencing one node from another.";s:7:"package";s:6:"Fields";s:4:"core";s:3:"7.x";s:12:"dependencies";a:3:{i:0;s:5:"field";i:1;s:10:"references";i:2;s:7:"options";}s:5:"files";a:1:{i:0;s:19:"node_reference.test";}s:5:"mtime";i:1664867628;s:7:"version";N;s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/references/references.module',
-  'name' => 'references',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:10:{s:4:"name";s:10:"References";s:11:"description";s:67:"Defines common base features for the various reference field types.";s:7:"package";s:6:"Fields";s:4:"core";s:3:"7.x";s:12:"dependencies";a:2:{i:0;s:5:"field";i:1;s:7:"options";}s:5:"files";a:5:{i:0;s:41:"views/references_handler_relationship.inc";i:1;s:37:"views/references_handler_argument.inc";i:2;s:35:"views/references_plugin_display.inc";i:3;s:33:"views/references_plugin_style.inc";i:4;s:38:"views/references_plugin_row_fields.inc";}s:5:"mtime";i:1664867628;s:7:"version";N;s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/references/references_uuid/references_uuid.module',
-  'name' => 'references_uuid',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:10:{s:4:"name";s:15:"References UUID";s:11:"description";s:28:"UUID for References project.";s:4:"core";s:3:"7.x";s:7:"package";s:6:"Fields";s:12:"dependencies";a:2:{i:0;s:10:"references";i:1;s:4:"uuid";}s:5:"mtime";i:1664867628;s:7:"version";N;s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/references/user_reference/user_reference.module',
-  'name' => 'user_reference',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:10:{s:4:"name";s:14:"User Reference";s:11:"description";s:56:"Defines a field type for referencing a user from a node.";s:7:"package";s:6:"Fields";s:4:"core";s:3:"7.x";s:12:"dependencies";a:3:{i:0;s:5:"field";i:1;s:10:"references";i:2;s:7:"options";}s:5:"mtime";i:1664867628;s:7:"version";N;s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/telephone/telephone.module',
-  'name' => 'telephone',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:10:{s:4:"name";s:9:"Telephone";s:11:"description";s:43:"Defines a field type for telephone numbers.";s:7:"package";s:6:"Fields";s:4:"core";s:3:"7.x";s:12:"dependencies";a:1:{i:0;s:5:"field";}s:5:"files";a:1:{i:0;s:21:"telephone.migrate.inc";}s:5:"mtime";i:1664867478;s:7:"version";N;s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/title/tests/title_test.module',
-  'name' => 'title_test',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:11:{s:4:"name";s:10:"Title Test";s:11:"description";s:61:"Testing module for Title module functionality. Do not enable.";s:4:"core";s:3:"7.x";s:7:"package";s:7:"Testing";s:6:"hidden";b:1;s:12:"dependencies";a:4:{i:0;s:5:"title";i:1;s:8:"taxonomy";i:2;s:6:"entity";i:3;s:18:"entity_translation";}s:5:"mtime";i:1664867487;s:7:"version";N;s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/title/title.module',
-  'name' => 'title',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:12:{s:4:"name";s:5:"Title";s:11:"description";s:50:"Replaces entity legacy fields with regular fields.";s:4:"core";s:3:"7.x";s:7:"package";s:6:"Fields";s:9:"configure";s:26:"admin/config/content/title";s:12:"dependencies";a:1:{i:0;s:14:"system (>7.14)";}s:5:"files";a:4:{i:0;s:35:"views/views_handler_title_field.inc";i:1;s:37:"tests/TitleAdminSettingsTestCase.test";i:2;s:40:"tests/TitleFieldReplacementTestCase.test";i:3;s:35:"tests/TitleTranslationTestCase.test";}s:17:"test_dependencies";a:2:{i:0;s:6:"entity";i:1;s:18:"entity_translation";}s:5:"mtime";i:1664867487;s:7:"version";N;s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/variable/variable.module',
-  'name' => 'variable',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '1',
-  'bootstrap' => '1',
-  'schema_version' => '0',
-  'weight' => '0',
-  'info' => 'a:10:{s:4:"name";s:8:"Variable";s:11:"description";s:43:"Variable Information and basic variable API";s:7:"package";s:8:"Variable";s:4:"core";s:3:"7.x";s:5:"files";a:9:{i:0;s:27:"includes/forum.variable.inc";i:1;s:28:"includes/locale.variable.inc";i:2;s:26:"includes/menu.variable.inc";i:3;s:26:"includes/node.variable.inc";i:4;s:28:"includes/system.variable.inc";i:5;s:30:"includes/taxonomy.variable.inc";i:6;s:33:"includes/translation.variable.inc";i:7;s:26:"includes/user.variable.inc";i:8;s:13:"variable.test";}s:5:"mtime";i:1664867493;s:12:"dependencies";a:0:{}s:7:"version";N;s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/variable/variable_admin/variable_admin.module',
-  'name' => 'variable_admin',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:10:{s:4:"name";s:14:"Variable admin";s:11:"description";s:26:"Variable Administration UI";s:12:"dependencies";a:1:{i:0;s:8:"variable";}s:7:"package";s:8:"Variable";s:4:"core";s:3:"7.x";s:5:"mtime";i:1664867493;s:7:"version";N;s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/variable/variable_example/variable_example.module',
-  'name' => 'variable_example',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:10:{s:4:"name";s:16:"Variable example";s:11:"description";s:83:"An example module showing how to use the Variable API and providing some variables.";s:12:"dependencies";a:2:{i:0;s:8:"variable";i:1;s:14:"variable_store";}s:7:"package";s:15:"Example modules";s:4:"core";s:3:"7.x";s:5:"files";a:1:{i:0;s:29:"variable_example.variable.inc";}s:5:"mtime";i:1664867493;s:7:"version";N;s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/variable/variable_realm/variable_realm.module',
-  'name' => 'variable_realm',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:10:{s:4:"name";s:14:"Variable realm";s:11:"description";s:49:"API to use variable realms from different modules";s:12:"dependencies";a:1:{i:0;s:8:"variable";}s:7:"package";s:8:"Variable";s:4:"core";s:3:"7.x";s:7:"version";s:7:"7.x-2.x";s:5:"files";a:2:{i:0;s:24:"variable_realm.class.inc";i:1;s:30:"variable_realm_union.class.inc";}s:5:"mtime";i:1664867493;s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/variable/variable_store/variable_store.module',
-  'name' => 'variable_store',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:10:{s:4:"name";s:14:"Variable store";s:11:"description";s:60:"Database storage for variable realms. This is an API module.";s:12:"dependencies";a:1:{i:0;s:8:"variable";}s:7:"package";s:8:"Variable";s:4:"core";s:3:"7.x";s:7:"version";s:7:"7.x-2.x";s:5:"files";a:2:{i:0;s:24:"variable_store.class.inc";i:1;s:19:"variable_store.test";}s:5:"mtime";i:1664867493;s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'sites/all/modules/variable/variable_views/variable_views.module',
-  'name' => 'variable_views',
-  'type' => 'module',
-  'owner' => '',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:10:{s:4:"name";s:14:"Variable views";s:11:"description";s:78:"Provides views integration for variable, included a default variable argument.";s:12:"dependencies";a:2:{i:0;s:8:"variable";i:1;s:5:"views";}s:7:"package";s:8:"Variable";s:4:"core";s:3:"7.x";s:5:"files";a:3:{i:0;s:51:"includes/views_plugin_argument_default_variable.inc";i:1;s:47:"includes/views_handler_field_variable_title.inc";i:2;s:47:"includes/views_handler_field_variable_value.inc";}s:5:"mtime";i:1664867493;s:7:"version";N;s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
-))
-->values(array(
-  'filename' => 'themes/bartik/bartik.info',
-  'name' => 'bartik',
-  'type' => 'theme',
-  'owner' => 'themes/engines/phptemplate/phptemplate.engine',
-  'status' => '1',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:15:{s:4:"name";s:6:"Bartik";s:11:"description";s:48:"A flexible, recolorable theme with many regions.";s:7:"package";s:4:"Core";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:11:"stylesheets";a:2:{s:3:"all";a:3:{s:14:"css/layout.css";s:28:"themes/bartik/css/layout.css";s:13:"css/style.css";s:27:"themes/bartik/css/style.css";s:14:"css/colors.css";s:28:"themes/bartik/css/colors.css";}s:5:"print";a:1:{s:13:"css/print.css";s:27:"themes/bartik/css/print.css";}}s:7:"regions";a:17:{s:6:"header";s:6:"Header";s:4:"help";s:4:"Help";s:8:"page_top";s:8:"Page top";s:11:"page_bottom";s:11:"Page bottom";s:11:"highlighted";s:11:"Highlighted";s:8:"featured";s:8:"Featured";s:7:"content";s:7:"Content";s:13:"sidebar_first";s:13:"Sidebar first";s:14:"sidebar_second";s:14:"Sidebar second";s:14:"triptych_first";s:14:"Triptych first";s:15:"triptych_middle";s:15:"Triptych middle";s:13:"triptych_last";s:13:"Triptych last";s:18:"footer_firstcolumn";s:19:"Footer first column";s:19:"footer_secondcolumn";s:20:"Footer second column";s:18:"footer_thirdcolumn";s:19:"Footer third column";s:19:"footer_fourthcolumn";s:20:"Footer fourth column";s:6:"footer";s:6:"Footer";}s:8:"settings";a:1:{s:20:"shortcut_module_link";s:1:"0";}s:6:"engine";s:11:"phptemplate";s:8:"features";a:9:{i:0;s:4:"logo";i:1;s:7:"favicon";i:2;s:4:"name";i:3;s:6:"slogan";i:4;s:17:"node_user_picture";i:5;s:20:"comment_user_picture";i:6;s:25:"comment_user_verification";i:7;s:9:"main_menu";i:8;s:14:"secondary_menu";}s:10:"screenshot";s:28:"themes/bartik/screenshot.png";s:3:"php";s:5:"5.2.4";s:7:"scripts";a:0:{}s:5:"mtime";i:1664863480;s:14:"regions_hidden";a:2:{i:0;s:8:"page_top";i:1;s:11:"page_bottom";}}',
-))
-->values(array(
-  'filename' => 'themes/garland/garland.info',
-  'name' => 'garland',
-  'type' => 'theme',
-  'owner' => 'themes/engines/phptemplate/phptemplate.engine',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:15:{s:4:"name";s:7:"Garland";s:11:"description";s:111:"A multi-column theme which can be configured to modify colors and switch between fixed and fluid width layouts.";s:7:"package";s:4:"Core";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:11:"stylesheets";a:2:{s:3:"all";a:1:{s:9:"style.css";s:24:"themes/garland/style.css";}s:5:"print";a:1:{s:9:"print.css";s:24:"themes/garland/print.css";}}s:8:"settings";a:1:{s:13:"garland_width";s:5:"fluid";}s:6:"engine";s:11:"phptemplate";s:7:"regions";a:9:{s:13:"sidebar_first";s:12:"Left sidebar";s:14:"sidebar_second";s:13:"Right sidebar";s:7:"content";s:7:"Content";s:6:"header";s:6:"Header";s:6:"footer";s:6:"Footer";s:11:"highlighted";s:11:"Highlighted";s:4:"help";s:4:"Help";s:8:"page_top";s:8:"Page top";s:11:"page_bottom";s:11:"Page bottom";}s:8:"features";a:9:{i:0;s:4:"logo";i:1;s:7:"favicon";i:2;s:4:"name";i:3;s:6:"slogan";i:4;s:17:"node_user_picture";i:5;s:20:"comment_user_picture";i:6;s:25:"comment_user_verification";i:7;s:9:"main_menu";i:8;s:14:"secondary_menu";}s:10:"screenshot";s:29:"themes/garland/screenshot.png";s:3:"php";s:5:"5.2.4";s:7:"scripts";a:0:{}s:5:"mtime";i:1664863480;s:14:"regions_hidden";a:2:{i:0;s:8:"page_top";i:1;s:11:"page_bottom";}}',
-))
-->values(array(
-  'filename' => 'themes/seven/seven.info',
-  'name' => 'seven',
-  'type' => 'theme',
-  'owner' => 'themes/engines/phptemplate/phptemplate.engine',
-  'status' => '1',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => 'a:15:{s:4:"name";s:5:"Seven";s:11:"description";s:65:"A simple one-column, tableless, fluid width administration theme.";s:7:"package";s:4:"Core";s:7:"version";s:4:"7.92";s:4:"core";s:3:"7.x";s:11:"stylesheets";a:1:{s:6:"screen";a:2:{s:9:"reset.css";s:22:"themes/seven/reset.css";s:9:"style.css";s:22:"themes/seven/style.css";}}s:8:"settings";a:1:{s:20:"shortcut_module_link";s:1:"1";}s:7:"regions";a:5:{s:7:"content";s:7:"Content";s:4:"help";s:4:"Help";s:8:"page_top";s:8:"Page top";s:11:"page_bottom";s:11:"Page bottom";s:13:"sidebar_first";s:13:"First sidebar";}s:14:"regions_hidden";a:3:{i:0;s:13:"sidebar_first";i:1;s:8:"page_top";i:2;s:11:"page_bottom";}s:6:"engine";s:11:"phptemplate";s:8:"features";a:9:{i:0;s:4:"logo";i:1;s:7:"favicon";i:2;s:4:"name";i:3;s:6:"slogan";i:4;s:17:"node_user_picture";i:5;s:20:"comment_user_picture";i:6;s:25:"comment_user_verification";i:7;s:9:"main_menu";i:8;s:14:"secondary_menu";}s:10:"screenshot";s:27:"themes/seven/screenshot.png";s:3:"php";s:5:"5.2.4";s:7:"scripts";a:0:{}s:5:"mtime";i:1664863480;}',
-))
-->values(array(
-  'filename' => 'themes/stark/stark.info',
-  'name' => 'stark',
-  'type' => 'theme',
-  'owner' => 'themes/engines/phptemplate/phptemplate.engine',
-  'status' => '0',
-  'bootstrap' => '0',
-  'schema_version' => '-1',
-  'weight' => '0',
-  'info' => "a:14:{s:4:\"name\";s:5:\"Stark\";s:11:\"description\";s:208:\"This theme demonstrates Drupal's default HTML markup and CSS styles. To learn how to build your own theme and override Drupal's default code, see the <a href=\"http://drupal.org/theme-guide\">Theming Guide</a>.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:4:\"7.92\";s:4:\"core\";s:3:\"7.x\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:1:{s:10:\"layout.css\";s:23:\"themes/stark/layout.css\";}}s:6:\"engine\";s:11:\"phptemplate\";s:7:\"regions\";a:9:{s:13:\"sidebar_first\";s:12:\"Left sidebar\";s:14:\"sidebar_second\";s:13:\"Right sidebar\";s:7:\"content\";s:7:\"Content\";s:6:\"header\";s:6:\"Header\";s:6:\"footer\";s:6:\"Footer\";s:11:\"highlighted\";s:11:\"Highlighted\";s:4:\"help\";s:4:\"Help\";s:8:\"page_top\";s:8:\"Page top\";s:11:\"page_bottom\";s:11:\"Page bottom\";}s:8:\"features\";a:9:{i:0;s:4:\"logo\";i:1;s:7:\"favicon\";i:2;s:4:\"name\";i:3;s:6:\"slogan\";i:4;s:17:\"node_user_picture\";i:5;s:20:\"comment_user_picture\";i:6;s:25:\"comment_user_verification\";i:7;s:9:\"main_menu\";i:8;s:14:\"secondary_menu\";}s:10:\"screenshot\";s:27:\"themes/stark/screenshot.png\";s:3:\"php\";s:5:\"5.2.4\";s:7:\"scripts\";a:0:{}s:5:\"mtime\";i:1664863480;s:14:\"regions_hidden\";a:2:{i:0;s:8:\"page_top\";i:1;s:11:\"page_bottom\";}}",
-))
-->execute();
-$connection->schema()->createTable('taxonomy_index', array(
-  'fields' => array(
-    'nid' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-    'tid' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-    'sticky' => array(
-      'type' => 'int',
-      'not null' => FALSE,
-      'size' => 'tiny',
-      'default' => '0',
-    ),
-    'created' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-  ),
-  'indexes' => array(
-    'term_node' => array(
-      'tid',
-      'sticky',
-      'created',
-    ),
-    'nid' => array(
-      'nid',
-    ),
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->insert('taxonomy_index')
-->fields(array(
-  'nid',
-  'tid',
-  'sticky',
-  'created',
-))
-->values(array(
-  'nid' => '6',
-  'tid' => '1',
-  'sticky' => '0',
-  'created' => '1504715414',
-))
-->values(array(
-  'nid' => '7',
-  'tid' => '1',
-  'sticky' => '0',
-  'created' => '1504715432',
-))
-->execute();
-$connection->schema()->createTable('taxonomy_term_data', array(
-  'fields' => array(
-    'tid' => array(
-      'type' => 'serial',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-    'vid' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-    'name' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'description' => array(
-      'type' => 'text',
-      'not null' => FALSE,
-      'size' => 'normal',
-    ),
-    'format' => array(
-      'type' => 'varchar',
-      'not null' => FALSE,
-      'length' => '255',
-    ),
-    'weight' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'language' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '12',
-      'default' => 'und',
-    ),
-    'i18n_tsid' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-  ),
-  'primary key' => array(
-    'tid',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->insert('taxonomy_term_data')
-->fields(array(
-  'tid',
-  'vid',
-  'name',
-  'description',
-  'format',
-  'weight',
-  'language',
-  'i18n_tsid',
-))
-->values(array(
-  'tid' => '1',
-  'vid' => '2',
-  'name' => 'General discussion',
-  'description' => '',
-  'format' => NULL,
-  'weight' => '2',
-  'language' => 'und',
-  'i18n_tsid' => '0',
-))
-->values(array(
-  'tid' => '5',
-  'vid' => '2',
-  'name' => 'Custom Forum',
-  'description' => 'Where the cool kids are.',
-  'format' => NULL,
-  'weight' => '3',
-  'language' => 'und',
-  'i18n_tsid' => '0',
-))
-->values(array(
-  'tid' => '6',
-  'vid' => '2',
-  'name' => 'Games',
-  'description' => '',
-  'format' => NULL,
-  'weight' => '4',
-  'language' => 'und',
-  'i18n_tsid' => '0',
-))
-->values(array(
-  'tid' => '7',
-  'vid' => '2',
-  'name' => 'Minecraft',
-  'description' => '',
-  'format' => NULL,
-  'weight' => '1',
-  'language' => 'und',
-  'i18n_tsid' => '0',
-))
-->values(array(
-  'tid' => '8',
-  'vid' => '2',
-  'name' => 'Half Life 3',
-  'description' => '',
-  'format' => NULL,
-  'weight' => '0',
-  'language' => 'und',
-  'i18n_tsid' => '0',
-))
-->execute();
-$connection->schema()->createTable('taxonomy_term_hierarchy', array(
-  'fields' => array(
-    'tid' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-    'parent' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-  ),
-  'primary key' => array(
-    'tid',
-    'parent',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->insert('taxonomy_term_hierarchy')
-->fields(array(
-  'tid',
-  'parent',
-))
-->values(array(
-  'tid' => '1',
-  'parent' => '0',
-))
-->values(array(
-  'tid' => '5',
-  'parent' => '0',
-))
-->values(array(
-  'tid' => '6',
-  'parent' => '0',
-))
-->values(array(
-  'tid' => '7',
-  'parent' => '6',
-))
-->values(array(
-  'tid' => '8',
-  'parent' => '6',
-))
-->execute();
-$connection->schema()->createTable('taxonomy_vocabulary', array(
-  'fields' => array(
-    'vid' => array(
-      'type' => 'serial',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-    'name' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'machine_name' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'description' => array(
-      'type' => 'text',
-      'not null' => FALSE,
-      'size' => 'normal',
-    ),
-    'hierarchy' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-    'module' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'weight' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'language' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '12',
-      'default' => 'und',
-    ),
-    'i18n_mode' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-  ),
-  'primary key' => array(
-    'vid',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->insert('taxonomy_vocabulary')
-->fields(array(
-  'vid',
-  'name',
-  'machine_name',
-  'description',
-  'hierarchy',
-  'module',
-  'weight',
-  'language',
-  'i18n_mode',
-))
-->values(array(
-  'vid' => '1',
-  'name' => 'Tags',
-  'machine_name' => 'tags',
-  'description' => 'Use tags to group articles on similar topics into categories.',
-  'hierarchy' => '0',
-  'module' => 'taxonomy',
-  'weight' => '0',
-  'language' => 'und',
-  'i18n_mode' => '0',
-))
-->values(array(
-  'vid' => '2',
-  'name' => 'Subject of discussion',
-  'machine_name' => 'sujet_de_discussion',
-  'description' => 'Forum navigation vocabulary',
-  'hierarchy' => '1',
-  'module' => 'forum',
-  'weight' => '-10',
-  'language' => 'und',
-  'i18n_mode' => '0',
-))
-->execute();
-$connection->schema()->createTable('url_alias', array(
-  'fields' => array(
-    'pid' => array(
-      'type' => 'serial',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'unsigned' => TRUE,
-    ),
-    'source' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'alias' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'language' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '12',
-      'default' => '',
-    ),
-  ),
-  'primary key' => array(
-    'pid',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->insert('url_alias')
-->fields(array(
-  'pid',
-  'source',
-  'alias',
-  'language',
-))
-->values(array(
-  'pid' => '6',
-  'source' => 'admin',
-  'alias' => 'source-noslash',
-  'language' => 'und',
-))
-->execute();
-$connection->schema()->createTable('users', array(
-  'fields' => array(
-    'uid' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-    'name' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '60',
-      'default' => '',
-    ),
-    'pass' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '128',
-      'default' => '',
-    ),
-    'mail' => array(
-      'type' => 'varchar',
-      'not null' => FALSE,
-      'length' => '254',
-      'default' => '',
-    ),
-    'theme' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'signature' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '255',
-      'default' => '',
-    ),
-    'signature_format' => array(
-      'type' => 'varchar',
-      'not null' => FALSE,
-      'length' => '255',
-    ),
-    'created' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'access' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'login' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'status' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'timezone' => array(
-      'type' => 'varchar',
-      'not null' => FALSE,
-      'length' => '32',
-    ),
-    'language' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '12',
-      'default' => '',
-    ),
-    'picture' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-    'init' => array(
-      'type' => 'varchar',
-      'not null' => FALSE,
-      'length' => '254',
-      'default' => '',
-    ),
-    'data' => array(
-      'type' => 'blob',
-      'not null' => FALSE,
-      'size' => 'normal',
-    ),
-    'changed' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-    ),
-  ),
-  'primary key' => array(
-    'uid',
-  ),
-  'indexes' => array(
-    'changed' => array(
-      'changed',
-    ),
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->insert('users')
-->fields(array(
-  'uid',
-  'name',
-  'pass',
-  'mail',
-  'theme',
-  'signature',
-  'signature_format',
-  'created',
-  'access',
-  'login',
-  'status',
-  'timezone',
-  'language',
-  'picture',
-  'init',
-  'data',
-  'changed',
-))
-->values(array(
-  'uid' => '1',
-  'name' => 'admin',
-  'pass' => '$S$D/HVkgCg1Hvi7DN5KVSgNl.2C5g8W6oe/OoIRMUlyjkmPugQRhoB',
-  'mail' => 'admin@local.host',
-  'theme' => '',
-  'signature' => '',
-  'signature_format' => NULL,
-  'created' => '0',
-  'access' => '1679731173',
-  'login' => '1679731173',
-  'status' => '1',
-  'timezone' => NULL,
-  'language' => '',
-  'picture' => '0',
-  'init' => '',
-  'data' => 'a:1:{s:7:"contact";i:1;}',
-  'changed' => '0',
-))
-->values(array(
-  'uid' => '2',
-  'name' => 'Odo',
-  'pass' => '$S$DGFZUE.FhrXbe4y52eC7p0ZVRGD/gOPtVctDlmC89qkujnBokAlJ',
-  'mail' => 'odo@local.host',
-  'theme' => '',
-  'signature' => '',
-  'signature_format' => 'filtered_html',
-  'created' => '1440532218',
-  'access' => '0',
-  'login' => '0',
-  'status' => '1',
-  'timezone' => 'America/Chicago',
-  'language' => 'is',
-  'picture' => '0',
-  'init' => 'odo@local.host',
-  'data' => 'a:1:{s:7:"contact";i:1;}',
-  'changed' => '1440532218',
-))
-->values(array(
-  'uid' => '3',
-  'name' => 'Bob',
-  'pass' => '$S$DGFZUE.FhrXbe4y52eC7p0ZVRGD/gOPtVctDlmC89qkujnBokAlJ',
-  'mail' => 'bob@local.host',
-  'theme' => '',
-  'signature' => '',
-  'signature_format' => 'filtered_html',
-  'created' => '1440532218',
-  'access' => '0',
-  'login' => '0',
-  'status' => '1',
-  'timezone' => 'America/New_York',
-  'language' => 'fr',
-  'picture' => '0',
-  'init' => 'bob@local.host',
-  'data' => 'a:1:{s:7:"contact";i:1;}',
-  'changed' => '1440532218',
-))
-->execute();
-$connection->schema()->createTable('users_roles', array(
-  'fields' => array(
-    'uid' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-    'rid' => array(
-      'type' => 'int',
-      'not null' => TRUE,
-      'size' => 'normal',
-      'default' => '0',
-      'unsigned' => TRUE,
-    ),
-  ),
-  'primary key' => array(
-    'uid',
-    'rid',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->insert('users_roles')
-->fields(array(
-  'uid',
-  'rid',
-))
-->values(array(
-  'uid' => '1',
-  'rid' => '3',
-))
-->values(array(
-  'uid' => '2',
-  'rid' => '3',
-))
-->values(array(
-  'uid' => '3',
-  'rid' => '3',
-))
-->execute();
-$connection->schema()->createTable('variable', array(
-  'fields' => array(
-    'name' => array(
-      'type' => 'varchar',
-      'not null' => TRUE,
-      'length' => '128',
-      'default' => '',
-    ),
-    'value' => array(
-      'type' => 'blob',
-      'not null' => TRUE,
-      'size' => 'normal',
-    ),
-  ),
-  'primary key' => array(
-    'name',
-  ),
-  'mysql_character_set' => 'utf8',
-));
-
-$connection->insert('variable')
-->fields(array(
-  'name',
-  'value',
-))
-->values(array(
-  'name' => 'actions_max_stack',
-  'value' => 'i:28;',
-))
-->values(array(
-  'name' => 'additional_settings__active_tab_article',
-  'value' => 's:15:"edit-submission";',
-))
-->values(array(
-  'name' => 'additional_settings__active_tab_blog',
-  'value' => 's:13:"edit-workflow";',
-))
-->values(array(
-  'name' => 'additional_settings__active_tab_book',
-  'value' => 's:13:"edit-workflow";',
-))
-->values(array(
-  'name' => 'additional_settings__active_tab_et',
-  'value' => 's:9:"edit-menu";',
-))
-->values(array(
-  'name' => 'additional_settings__active_tab_forum',
-  'value' => 's:15:"edit-submission";',
-))
-->values(array(
-  'name' => 'additional_settings__active_tab_page',
-  'value' => 's:15:"edit-submission";',
-))
-->values(array(
-  'name' => 'additional_settings__active_tab_test_content_type',
-  'value' => 's:9:"edit-menu";',
-))
-->values(array(
-  'name' => 'admin_compact_mode',
-  'value' => 'b:1;',
-))
-->values(array(
-  'name' => 'admin_theme',
-  'value' => 's:5:"seven";',
-))
-->values(array(
-  'name' => 'allow_insecure_derivatives',
-  'value' => 'b:1;',
-))
-->values(array(
-  'name' => 'allow_insecure_uploads',
-  'value' => 'i:1;',
-))
-->values(array(
-  'name' => 'anonymous',
-  'value' => 's:9:"Anonymous";',
-))
-->values(array(
-  'name' => 'authorize_filetransfer_default',
-  'value' => 's:3:"ftp";',
-))
-->values(array(
-  'name' => 'block_cache',
-  'value' => 'i:0;',
-))
-->values(array(
-  'name' => 'cache',
-  'value' => 'i:0;',
-))
-->values(array(
-  'name' => 'cache_flush_cache',
-  'value' => 'i:1679731162;',
-))
-->values(array(
-  'name' => 'cache_flush_cache_block',
-  'value' => 'i:1679731162;',
-))
-->values(array(
-  'name' => 'cache_flush_cache_field',
-  'value' => 'i:1679731162;',
-))
-->values(array(
-  'name' => 'cache_flush_cache_filter',
-  'value' => 'i:0;',
-))
-->values(array(
-  'name' => 'cache_flush_cache_form',
-  'value' => 'i:1679731162;',
-))
-->values(array(
-  'name' => 'cache_flush_cache_image',
-  'value' => 'i:0;',
-))
-->values(array(
-  'name' => 'cache_flush_cache_menu',
-  'value' => 'i:1679731162;',
-))
-->values(array(
-  'name' => 'cache_flush_cache_page',
-  'value' => 'i:1679731162;',
-))
-->values(array(
-  'name' => 'cache_flush_cache_path',
-  'value' => 'i:1679731162;',
-))
-->values(array(
-  'name' => 'cache_flush_cache_variable',
-  'value' => 'i:0;',
-))
-->values(array(
-  'name' => 'cache_lifetime',
-  'value' => 's:3:"300";',
-))
-->values(array(
-  'name' => 'clean_url',
-  'value' => 's:1:"1";',
-))
-->values(array(
-  'name' => 'color_bartik_files',
-  'value' => 'a:2:{i:0;s:39:"public://color/bartik-e0e23ad7/logo.png";i:1;s:41:"public://color/bartik-e0e23ad7/colors.css";}',
-))
-->values(array(
-  'name' => 'color_bartik_logo',
-  'value' => 's:39:"public://color/bartik-e0e23ad7/logo.png";',
-))
-->values(array(
-  'name' => 'color_bartik_palette',
-  'value' => 'a:9:{s:3:"top";s:7:"#d0d0d0";s:6:"bottom";s:7:"#c2c4c5";s:2:"bg";s:7:"#ffffff";s:7:"sidebar";s:7:"#ffffff";s:14:"sidebarborders";s:7:"#cccccc";s:6:"footer";s:7:"#24272c";s:11:"titleslogan";s:7:"#000000";s:4:"text";s:7:"#4a4a4a";s:4:"link";s:7:"#019dbf";}',
-))
-->values(array(
-  'name' => 'color_bartik_screenshot',
-  'value' => 's:72:"/var/www/drupal/sites/default/files/color/bartik-b69cfcec/screenshot.png";',
-))
-->values(array(
-  'name' => 'color_bartik_stylesheets',
-  'value' => 'a:1:{i:0;s:41:"public://color/bartik-e0e23ad7/colors.css";}',
-))
-->values(array(
-  'name' => 'color_garland_files',
-  'value' => 'a:19:{i:0;s:50:"public://color/garland-b69cfcec/menu-collapsed.gif";i:1;s:54:"public://color/garland-b69cfcec/menu-collapsed-rtl.gif";i:2;s:49:"public://color/garland-b69cfcec/menu-expanded.gif";i:3;s:45:"public://color/garland-b69cfcec/menu-leaf.gif";i:4;s:67:"/var/www/drupal/sites/default/files/color/garland-b69cfcec/body.png";i:5;s:69:"/var/www/drupal/sites/default/files/color/garland-b69cfcec/bg-bar.png";i:6;s:75:"/var/www/drupal/sites/default/files/color/garland-b69cfcec/bg-bar-white.png";i:7;s:69:"/var/www/drupal/sites/default/files/color/garland-b69cfcec/bg-tab.png";i:8;s:76:"/var/www/drupal/sites/default/files/color/garland-b69cfcec/bg-navigation.png";i:9;s:78:"/var/www/drupal/sites/default/files/color/garland-b69cfcec/bg-content-left.png";i:10;s:79:"/var/www/drupal/sites/default/files/color/garland-b69cfcec/bg-content-right.png";i:11;s:73:"/var/www/drupal/sites/default/files/color/garland-b69cfcec/bg-content.png";i:12;s:81:"/var/www/drupal/sites/default/files/color/garland-b69cfcec/bg-navigation-item.png";i:13;s:87:"/var/www/drupal/sites/default/files/color/garland-b69cfcec/bg-navigation-item-hover.png";i:14;s:77:"/var/www/drupal/sites/default/files/color/garland-b69cfcec/gradient-inner.png";i:15;s:67:"/var/www/drupal/sites/default/files/color/garland-b69cfcec/logo.png";i:16;s:73:"/var/www/drupal/sites/default/files/color/garland-b69cfcec/screenshot.png";i:17;s:41:"public://color/garland-b69cfcec/style.css";i:18;s:45:"public://color/garland-b69cfcec/style-rtl.css";}',
-))
-->values(array(
-  'name' => 'color_garland_logo',
-  'value' => 's:40:"public://color/garland-b69cfcec/logo.png";',
-))
-->values(array(
-  'name' => 'color_garland_palette',
-  'value' => 'a:5:{s:4:"base";s:7:"#d0cb9a";s:4:"link";s:7:"#917803";s:3:"top";s:7:"#efde01";s:6:"bottom";s:7:"#e6fb2d";s:4:"text";s:7:"#494949";}',
-))
-->values(array(
-  'name' => 'color_garland_screenshot',
-  'value' => 's:73:"/var/www/drupal/sites/default/files/color/garland-b69cfcec/screenshot.png";',
-))
-->values(array(
-  'name' => 'color_garland_stylesheets',
-  'value' => 'a:2:{i:0;s:41:"public://color/garland-b69cfcec/style.css";i:1;s:45:"public://color/garland-b69cfcec/style-rtl.css";}',
-))
-->values(array(
-  'name' => 'comment_anonymous_article',
-  'value' => 'i:0;',
-))
-->values(array(
-  'name' => 'comment_anonymous_blog',
-  'value' => 'i:0;',
-))
-->values(array(
-  'name' => 'comment_anonymous_et',
-  'value' => 'i:0;',
-))
-->values(array(
-  'name' => 'comment_anonymous_forum',
-  'value' => 'i:0;',
-))
-->values(array(
-  'name' => 'comment_anonymous_page',
-  'value' => 'i:0;',
-))
-->values(array(
-  'name' => 'comment_anonymous_test_content_type',
-  'value' => 'i:0;',
-))
-->values(array(
-  'name' => 'comment_article',
-  'value' => 's:1:"2";',
-))
-->values(array(
-  'name' => 'comment_blog',
-  'value' => 's:1:"2";',
-))
-->values(array(
-  'name' => 'comment_default_mode_article',
-  'value' => 'i:1;',
-))
-->values(array(
-  'name' => 'comment_default_mode_blog',
-  'value' => 'i:1;',
-))
-->values(array(
-  'name' => 'comment_default_mode_et',
-  'value' => 'i:1;',
-))
-->values(array(
-  'name' => 'comment_default_mode_forum',
-  'value' => 'i:1;',
-))
-->values(array(
-  'name' => 'comment_default_mode_page',
-  'value' => 'i:1;',
-))
-->values(array(
-  'name' => 'comment_default_mode_test_content_type',
-  'value' => 'i:1;',
-))
-->values(array(
-  'name' => 'comment_default_per_page_article',
-  'value' => 's:2:"50";',
-))
-->values(array(
-  'name' => 'comment_default_per_page_blog',
-  'value' => 's:2:"50";',
-))
-->values(array(
-  'name' => 'comment_default_per_page_et',
-  'value' => 's:2:"50";',
-))
-->values(array(
-  'name' => 'comment_default_per_page_forum',
-  'value' => 's:2:"50";',
-))
-->values(array(
-  'name' => 'comment_default_per_page_page',
-  'value' => 's:2:"50";',
-))
-->values(array(
-  'name' => 'comment_default_per_page_test_content_type',
-  'value' => 's:2:"50";',
-))
-->values(array(
-  'name' => 'comment_et',
-  'value' => 's:1:"2";',
-))
-->values(array(
-  'name' => 'comment_form_location_article',
-  'value' => 'i:1;',
-))
-->values(array(
-  'name' => 'comment_form_location_blog',
-  'value' => 'i:1;',
-))
-->values(array(
-  'name' => 'comment_form_location_et',
-  'value' => 'i:1;',
-))
-->values(array(
-  'name' => 'comment_form_location_forum',
-  'value' => 'i:1;',
-))
-->values(array(
-  'name' => 'comment_form_location_page',
-  'value' => 'i:1;',
-))
-->values(array(
-  'name' => 'comment_form_location_test_content_type',
-  'value' => 'i:1;',
-))
-->values(array(
-  'name' => 'comment_forum',
-  'value' => 's:1:"2";',
-))
-->values(array(
-  'name' => 'comment_page',
-  'value' => 's:1:"0";',
-))
-->values(array(
-  'name' => 'comment_preview_article',
-  'value' => 's:1:"1";',
-))
-->values(array(
-  'name' => 'comment_preview_blog',
-  'value' => 's:1:"1";',
-))
-->values(array(
-  'name' => 'comment_preview_et',
-  'value' => 's:1:"1";',
-))
-->values(array(
-  'name' => 'comment_preview_forum',
-  'value' => 's:1:"1";',
-))
-->values(array(
-  'name' => 'comment_preview_page',
-  'value' => 's:1:"1";',
-))
-->values(array(
-  'name' => 'comment_preview_test_content_type',
-  'value' => 's:1:"1";',
-))
-->values(array(
-  'name' => 'comment_subject_field_article',
-  'value' => 'i:1;',
-))
-->values(array(
-  'name' => 'comment_subject_field_blog',
-  'value' => 'i:1;',
-))
-->values(array(
-  'name' => 'comment_subject_field_et',
-  'value' => 'i:1;',
-))
-->values(array(
-  'name' => 'comment_subject_field_forum',
-  'value' => 'i:1;',
-))
-->values(array(
-  'name' => 'comment_subject_field_page',
-  'value' => 'i:1;',
-))
-->values(array(
-  'name' => 'comment_subject_field_test_content_type',
-  'value' => 'i:1;',
-))
-->values(array(
-  'name' => 'comment_test_content_type',
-  'value' => 's:1:"2";',
-))
-->values(array(
-  'name' => 'configurable_timezones',
-  'value' => 'b:1;',
-))
-->values(array(
-  'name' => 'cron_key',
-  'value' => 's:43:"_vWFj-dRR2rNoHDwl7N__J9uZNutDcLz3w4tlPJzRAM";',
-))
-->values(array(
-  'name' => 'cron_last',
-  'value' => 'i:1679731162;',
-))
-->values(array(
-  'name' => 'cron_threshold_error',
-  'value' => 'i:1209600;',
-))
-->values(array(
-  'name' => 'cron_threshold_warning',
-  'value' => 'i:172800;',
-))
-->values(array(
-  'name' => 'css_js_query_string',
-  'value' => 's:6:"rs2gzt";',
-))
-->values(array(
-  'name' => 'ctools_last_cron',
-  'value' => 'i:1675410560;',
-))
-->values(array(
-  'name' => 'date_api_version',
-  'value' => 's:3:"7.2";',
-))
-->values(array(
-  'name' => 'date_default_timezone',
-  'value' => 's:15:"America/Chicago";',
-))
-->values(array(
-  'name' => 'date_first_day',
-  'value' => 'i:1;',
-))
-->values(array(
-  'name' => 'default_nodes_main',
-  'value' => 's:2:"10";',
-))
-->values(array(
-  'name' => 'drupal_css_cache_files',
-  'value' => 'a:4:{s:64:"823ba1006db72809515d2221cd02ec1075d7b49b0c07f49307b3a7930bfdd9e4";s:64:"public://css/css_xE-rWrJf-fncB6ztZfd2huxqgxu4WO-qwma6Xer30m4.css";s:64:"592db66916e1dd3416cbe95bcb34a5a68775eb0b7cf95e4c858671de35290cc9";s:64:"public://css/css_LS9OUalDR9-d_lCAvF3yUWjNU6yF8ZBm84jEPRvoyuQ.css";s:64:"c8ee0eb9ecdad46af97fc4935a1d78ac4904f6a580e123e01551e26f7b34110d";s:64:"public://css/css_cm_X0wEdultSJePK-FhvEpozM-hKkEY9k2nPCC5r96s.css";s:64:"ebb3f433ad4107b1ac31e9d7de0f9a5d399040e9f82b6364211dcfaadea158c0";s:64:"public://css/css_Nv0ct-zkzztuah_LbaPFF8ZkdSEk-LxBtTWMm9mN_F8.css";}',
-))
-->values(array(
-  'name' => 'drupal_http_request_fails',
-  'value' => 'b:0;',
-))
-->values(array(
-  'name' => 'drupal_private_key',
-  'value' => 's:43:"9eRJWxrMwQ5CufYJjXBZbPGz_t8vPIYRQr18PamdKmM";',
-))
-->values(array(
-  'name' => 'drupal_weight_select_max',
-  'value' => 'i:40;',
-))
-->values(array(
-  'name' => 'email__active_tab',
-  'value' => 's:27:"edit-email-pending-approval";',
-))
-->values(array(
-  'name' => 'empty_timezone_message',
-  'value' => 'b:1;',
-))
-->values(array(
-  'name' => 'entity_cache_tables_created',
-  'value' => 'N;',
-))
-->values(array(
-  'name' => 'entity_translation_entity_types',
-  'value' => 'a:1:{s:4:"node";s:4:"node";}',
-))
-->values(array(
-  'name' => 'entity_translation_revision_enabled',
-  'value' => 'b:1;',
-))
-->values(array(
-  'name' => 'entity_translation_taxonomy_autocomplete',
-  'value' => 'b:1;',
-))
-->values(array(
-  'name' => 'error_level',
-  'value' => 'i:1;',
-))
-->values(array(
-  'name' => 'feed_default_items',
-  'value' => 'i:27;',
-))
-->values(array(
-  'name' => 'feed_item_length',
-  'value' => 's:8:"fulltext";',
-))
-->values(array(
-  'name' => 'field_bundle_settings_node__article',
-  'value' => 'a:2:{s:10:"view_modes";a:0:{}s:12:"extra_fields";a:2:{s:4:"form";a:1:{s:5:"title";a:1:{s:6:"weight";s:2:"-5";}}s:7:"display";a:0:{}}}',
-))
-->values(array(
-  'name' => 'field_bundle_settings_node__blog',
-  'value' => 'a:2:{s:10:"view_modes";a:0:{}s:12:"extra_fields";a:2:{s:4:"form";a:1:{s:5:"title";a:1:{s:6:"weight";s:2:"-5";}}s:7:"display";a:0:{}}}',
-))
-->values(array(
-  'name' => 'field_bundle_settings_user__user',
-  'value' => 'a:2:{s:10:"view_modes";a:0:{}s:12:"extra_fields";a:2:{s:4:"form";a:2:{s:7:"account";a:1:{s:6:"weight";s:3:"-10";}s:8:"timezone";a:1:{s:6:"weight";s:1:"6";}}s:7:"display";a:0:{}}}',
-))
-->values(array(
-  'name' => 'file_default_scheme',
-  'value' => 's:6:"public";',
-))
-->values(array(
-  'name' => 'file_description_length',
-  'value' => 'i:256;',
-))
-->values(array(
-  'name' => 'file_description_type',
-  'value' => 's:9:"textfield";',
-))
-->values(array(
-  'name' => 'file_directory_path',
-  'value' => 's:19:"sites/default/files";',
-))
-->values(array(
-  'name' => 'file_icon_directory',
-  'value' => 's:25:"sites/default/files/icons";',
-))
-->values(array(
-  'name' => 'file_private_path',
-  'value' => 's:21:"sites/default/private";',
-))
-->values(array(
-  'name' => 'file_public_path',
-  'value' => 's:19:"sites/default/files";',
-))
-->values(array(
-  'name' => 'file_temporary_path',
-  'value' => 's:4:"/tmp";',
-))
-->values(array(
-  'name' => 'filter_fallback_format',
-  'value' => 's:10:"plain_text";',
-))
-->values(array(
-  'name' => 'forum_block_num_active',
-  'value' => 'i:9;',
-))
-->values(array(
-  'name' => 'forum_block_num_new',
-  'value' => 'i:4;',
-))
-->values(array(
-  'name' => 'forum_containers',
-  'value' => 'a:1:{i:0;s:1:"6";}',
-))
-->values(array(
-  'name' => 'forum_hot_topic',
-  'value' => 'i:10;',
-))
-->values(array(
-  'name' => 'forum_nav_vocabulary',
-  'value' => 's:1:"2";',
-))
-->values(array(
-  'name' => 'forum_order',
-  'value' => 'i:1;',
-))
-->values(array(
-  'name' => 'forum_per_page',
-  'value' => 'i:25;',
-))
-->values(array(
-  'name' => 'i18n_node_options_blog',
-  'value' => 'a:2:{i:0;s:8:"required";i:1;s:4:"lock";}',
-))
-->values(array(
-  'name' => 'i18n_string_allowed_formats',
-  'value' => 'a:5:{s:13:"filtered_html";s:13:"filtered_html";s:10:"plain_text";s:10:"plain_text";s:18:"custom_text_format";i:0;s:9:"full_html";i:0;s:8:"php_code";i:0;}',
-))
-->values(array(
-  'name' => 'i18n_string_source_language',
-  'value' => 's:2:"en";',
-))
-->values(array(
-  'name' => 'i18n_string_textgroup_class_blocks',
-  'value' => 's:29:"i18n_string_textgroup_default";',
-))
-->values(array(
-  'name' => 'i18n_string_textgroup_class_taxonomy',
-  'value' => 's:29:"i18n_string_textgroup_default";',
-))
-->values(array(
-  'name' => 'i18n_sync_node_type_article',
-  'value' => 'a:1:{i:0;s:16:"field_text_plain";}',
-))
-->values(array(
-  'name' => 'i18n_sync_source_article',
-  'value' => 'i:0;',
-))
-->values(array(
-  'name' => 'image_jpeg_quality',
-  'value' => 'i:80;',
-))
-->values(array(
-  'name' => 'image_style_preview_image',
-  'value' => 's:23:"core/misc/druplicon.png";',
-))
-->values(array(
-  'name' => 'image_toolkit',
-  'value' => 's:2:"gd";',
-))
-->values(array(
-  'name' => 'install_profile',
-  'value' => 's:8:"standard";',
-))
-->values(array(
-  'name' => 'install_task',
-  'value' => 's:4:"done";',
-))
-->values(array(
-  'name' => 'install_time',
-  'value' => 'i:1421694923;',
-))
-->values(array(
-  'name' => 'javascript_parsed',
-  'value' => 'a:10:{i:0;s:14:"misc/drupal.js";i:1;s:14:"misc/jquery.js";i:2;s:27:"misc/jquery-extend-3.4.0.js";i:3;s:44:"misc/jquery-html-prefilter-3.5.0-backport.js";i:4;s:19:"misc/jquery.once.js";i:5;s:19:"misc/tableheader.js";i:6;s:12:"misc/form.js";i:7;s:16:"misc/collapse.js";s:10:"refresh:fr";s:7:"waiting";s:10:"refresh:is";s:7:"waiting";}',
-))
-->values(array(
-  'name' => 'language_content_type_article',
-  'value' => 's:1:"2";',
-))
-->values(array(
-  'name' => 'language_content_type_a_thirty_two_character_type_name',
-  'value' => 's:1:"1";',
-))
-->values(array(
-  'name' => 'language_content_type_blog',
-  'value' => 's:1:"2";',
-))
-->values(array(
-  'name' => 'language_content_type_et',
-  'value' => 's:1:"0";',
-))
-->values(array(
-  'name' => 'language_content_type_forum',
-  'value' => 's:1:"0";',
-))
-->values(array(
-  'name' => 'language_content_type_page',
-  'value' => 's:1:"1";',
-))
-->values(array(
-  'name' => 'language_content_type_test_content_type',
-  'value' => 's:1:"0";',
-))
-->values(array(
-  'name' => 'language_count',
-  'value' => 'i:3;',
-))
-->values(array(
-  'name' => 'language_default',
-  'value' => 'O:8:"stdClass":11:{s:8:"language";s:2:"en";s:4:"name";s:7:"English";s:6:"native";s:7:"English";s:9:"direction";s:1:"0";s:7:"enabled";i:1;s:7:"plurals";s:1:"0";s:7:"formula";s:0:"";s:6:"domain";s:0:"";s:6:"prefix";s:0:"";s:6:"weight";s:1:"0";s:10:"javascript";s:0:"";}',
-))
-->values(array(
-  'name' => 'language_negotiation_language',
-  'value' => 'a:3:{s:11:"locale-user";a:2:{s:9:"callbacks";a:1:{s:8:"language";s:25:"locale_language_from_user";}s:4:"file";s:19:"includes/locale.inc";}s:10:"locale-url";a:2:{s:9:"callbacks";a:3:{s:8:"language";s:24:"locale_language_from_url";s:8:"switcher";s:28:"locale_language_switcher_url";s:11:"url_rewrite";s:31:"locale_language_url_rewrite_url";}s:4:"file";s:19:"includes/locale.inc";}s:16:"language-default";a:1:{s:9:"callbacks";a:1:{s:8:"language";s:21:"language_from_default";}}}',
-))
-->values(array(
-  'name' => 'language_negotiation_language_content',
-  'value' => 'a:1:{s:16:"locale-interface";a:2:{s:9:"callbacks";a:1:{s:8:"language";s:30:"locale_language_from_interface";}s:4:"file";s:19:"includes/locale.inc";}}',
-))
-->values(array(
-  'name' => 'language_negotiation_language_url',
-  'value' => 'a:2:{s:10:"locale-url";a:2:{s:9:"callbacks";a:3:{s:8:"language";s:24:"locale_language_from_url";s:8:"switcher";s:28:"locale_language_switcher_url";s:11:"url_rewrite";s:31:"locale_language_url_rewrite_url";}s:4:"file";s:19:"includes/locale.inc";}s:19:"locale-url-fallback";a:2:{s:9:"callbacks";a:1:{s:8:"language";s:28:"locale_language_url_fallback";}s:4:"file";s:19:"includes/locale.inc";}}',
-))
-->values(array(
-  'name' => 'language_types',
-  'value' => 'a:3:{s:8:"language";b:1;s:16:"language_content";b:1;s:12:"language_url";b:0;}',
-))
-->values(array(
-  'name' => 'locale_language_negotiation_session_param',
-  'value' => 's:8:"language";',
-))
-->values(array(
-  'name' => 'locale_language_negotiation_url_part',
-  'value' => 'i:0;',
-))
-->values(array(
-  'name' => 'locale_language_providers_weight_language',
-  'value' => 'a:5:{s:10:"locale-url";s:2:"-9";s:14:"locale-session";s:2:"-8";s:11:"locale-user";s:3:"-10";s:14:"locale-browser";s:2:"-7";s:16:"language-default";s:2:"-6";}',
-))
-->values(array(
-  'name' => 'mail_system',
-  'value' => 'a:1:{s:14:"default-system";s:17:"DefaultMailSystem";}',
-))
-->values(array(
-  'name' => 'maintenance_mode',
-  'value' => 'b:0;',
-))
-->values(array(
-  'name' => 'maintenance_mode_message',
-  'value' => 's:42:"This is a custom maintenance mode message.";',
-))
-->values(array(
-  'name' => 'menu_default_active_menus',
-  'value' => 'a:4:{i:1;s:9:"main-menu";i:2;s:10:"management";i:3;s:10:"navigation";i:5;s:9:"user-menu";}',
-))
-->values(array(
-  'name' => 'menu_expanded',
-  'value' => 'a:0:{}',
-))
-->values(array(
-  'name' => 'menu_masks',
-  'value' => 'a:38:{i:0;i:501;i:1;i:493;i:2;i:250;i:3;i:247;i:4;i:246;i:5;i:245;i:6;i:238;i:7;i:125;i:8;i:123;i:9;i:122;i:10;i:121;i:11;i:119;i:12;i:117;i:13;i:63;i:14;i:62;i:15;i:61;i:16;i:60;i:17;i:59;i:18;i:58;i:19;i:44;i:20;i:31;i:21;i:30;i:22;i:29;i:23;i:26;i:24;i:24;i:25;i:22;i:26;i:21;i:27;i:15;i:28;i:14;i:29;i:13;i:30;i:11;i:31;i:10;i:32;i:7;i:33;i:6;i:34;i:5;i:35;i:3;i:36;i:2;i:37;i:1;}',
-))
-->values(array(
-  'name' => 'menu_options_article',
-  'value' => 'a:1:{i:0;s:9:"main-menu";}',
-))
-->values(array(
-  'name' => 'menu_options_blog',
-  'value' => 'a:1:{i:0;s:9:"main-menu";}',
-))
-->values(array(
-  'name' => 'menu_options_book',
-  'value' => 'a:1:{i:0;s:9:"main-menu";}',
-))
-->values(array(
-  'name' => 'menu_options_et',
-  'value' => 'a:0:{}',
-))
-->values(array(
-  'name' => 'menu_options_forum',
-  'value' => 'a:1:{i:0;s:9:"main-menu";}',
-))
-->values(array(
-  'name' => 'menu_options_page',
-  'value' => 'a:1:{i:0;s:9:"main-menu";}',
-))
-->values(array(
-  'name' => 'menu_options_test_content_type',
-  'value' => 'a:0:{}',
-))
-->values(array(
-  'name' => 'menu_override_parent_selector',
-  'value' => 'b:1;',
-))
-->values(array(
-  'name' => 'menu_parent_article',
-  'value' => 's:11:"main-menu:0";',
-))
-->values(array(
-  'name' => 'menu_parent_blog',
-  'value' => 's:11:"main-menu:0";',
-))
-->values(array(
-  'name' => 'menu_parent_book',
-  'value' => 's:11:"main-menu:0";',
-))
-->values(array(
-  'name' => 'menu_parent_et',
-  'value' => 's:11:"main-menu:0";',
-))
-->values(array(
-  'name' => 'menu_parent_forum',
-  'value' => 's:11:"main-menu:0";',
-))
-->values(array(
-  'name' => 'menu_parent_page',
-  'value' => 's:11:"main-menu:0";',
-))
-->values(array(
-  'name' => 'menu_parent_test_content_type',
-  'value' => 's:11:"main-menu:0";',
-))
-->values(array(
-  'name' => 'minimum_word_size',
-  'value' => 's:1:"4";',
-))
-->values(array(
-  'name' => 'node_admin_theme',
-  'value' => 's:1:"1";',
-))
-->values(array(
-  'name' => 'node_cron_last',
-  'value' => 's:10:"1504715432";',
-))
-->values(array(
-  'name' => 'node_options_article',
-  'value' => 'a:2:{i:0;s:6:"status";i:1;s:7:"promote";}',
-))
-->values(array(
-  'name' => 'node_options_blog',
-  'value' => 'a:2:{i:0;s:6:"status";i:1;s:7:"promote";}',
-))
-->values(array(
-  'name' => 'node_options_book',
-  'value' => 'a:2:{i:0;s:6:"status";i:1;s:8:"revision";}',
-))
-->values(array(
-  'name' => 'node_options_et',
-  'value' => 'a:2:{i:0;s:6:"status";i:1;s:7:"promote";}',
-))
-->values(array(
-  'name' => 'node_options_forum',
-  'value' => 'a:1:{i:0;s:6:"status";}',
-))
-->values(array(
-  'name' => 'node_options_page',
-  'value' => 'a:1:{i:0;s:6:"status";}',
-))
-->values(array(
-  'name' => 'node_options_test_content_type',
-  'value' => 'a:2:{i:0;s:6:"status";i:1;s:7:"promote";}',
-))
-->values(array(
-  'name' => 'node_preview_article',
-  'value' => 's:1:"1";',
-))
-->values(array(
-  'name' => 'node_preview_blog',
-  'value' => 's:1:"1";',
-))
-->values(array(
-  'name' => 'node_preview_et',
-  'value' => 's:1:"1";',
-))
-->values(array(
-  'name' => 'node_preview_forum',
-  'value' => 's:1:"1";',
-))
-->values(array(
-  'name' => 'node_preview_page',
-  'value' => 's:1:"1";',
-))
-->values(array(
-  'name' => 'node_preview_test_content_type',
-  'value' => 's:1:"1";',
-))
-->values(array(
-  'name' => 'node_rank_comments',
-  'value' => 's:1:"0";',
-))
-->values(array(
-  'name' => 'node_rank_promote',
-  'value' => 's:1:"0";',
-))
-->values(array(
-  'name' => 'node_rank_relevance',
-  'value' => 's:1:"2";',
-))
-->values(array(
-  'name' => 'node_rank_sticky',
-  'value' => 's:1:"0";',
-))
-->values(array(
-  'name' => 'node_rank_views',
-  'value' => 's:1:"0";',
-))
-->values(array(
-  'name' => 'node_submitted_article',
-  'value' => 'i:1;',
-))
-->values(array(
-  'name' => 'node_submitted_blog',
-  'value' => 'i:1;',
-))
-->values(array(
-  'name' => 'node_submitted_book',
-  'value' => 'i:1;',
-))
-->values(array(
-  'name' => 'node_submitted_et',
-  'value' => 'i:1;',
-))
-->values(array(
-  'name' => 'node_submitted_forum',
-  'value' => 'i:1;',
-))
-->values(array(
-  'name' => 'node_submitted_page',
-  'value' => 'i:0;',
-))
-->values(array(
-  'name' => 'node_submitted_test_content_type',
-  'value' => 'i:1;',
-))
-->values(array(
-  'name' => 'overlap_cjk',
-  'value' => 'i:1;',
-))
-->values(array(
-  'name' => 'page_cache_maximum_age',
-  'value' => 's:1:"0";',
-))
-->values(array(
-  'name' => 'page_compression',
-  'value' => 'i:1;',
-))
-->values(array(
-  'name' => 'path_alias_whitelist',
-  'value' => 'a:3:{s:8:"taxonomy";b:1;s:4:"node";b:1;s:5:"admin";b:1;}',
-))
-->values(array(
-  'name' => 'preprocess_css',
-  'value' => 'i:1;',
-))
-->values(array(
-  'name' => 'preprocess_js',
-  'value' => 'i:0;',
-))
-->values(array(
-  'name' => 'save_continue_et',
-  'value' => 's:19:"Save and add fields";',
-))
-->values(array(
-  'name' => 'save_continue_test_content_type',
-  'value' => 's:19:"Save and add fields";',
-))
-->values(array(
-  'name' => 'search_active_modules',
-  'value' => 'a:2:{s:4:"node";s:4:"node";s:4:"user";i:0;}',
-))
-->values(array(
-  'name' => 'search_and_or_limit',
-  'value' => 'i:7;',
-))
-->values(array(
-  'name' => 'search_cron_limit',
-  'value' => 's:3:"100";',
-))
-->values(array(
-  'name' => 'search_default_module',
-  'value' => 's:4:"node";',
-))
-->values(array(
-  'name' => 'search_tag_weights',
-  'value' => 'a:12:{s:2:"h1";i:25;s:2:"h2";i:18;s:2:"h3";i:15;s:2:"h4";i:12;s:2:"h5";i:9;s:2:"h6";i:6;s:1:"u";i:3;s:1:"b";i:3;s:1:"i";i:3;s:6:"strong";i:3;s:2:"em";i:3;s:1:"a";i:10;}',
-))
-->values(array(
-  'name' => 'site_403',
-  'value' => 's:4:"node";',
-))
-->values(array(
-  'name' => 'site_404',
-  'value' => 's:4:"node";',
-))
-->values(array(
-  'name' => 'site_default_country',
-  'value' => 's:2:"US";',
-))
-->values(array(
-  'name' => 'site_frontpage',
-  'value' => 's:4:"node";',
-))
-->values(array(
-  'name' => 'site_mail',
-  'value' => 's:23:"joseph@flattandsons.com";',
-))
-->values(array(
-  'name' => 'site_name',
-  'value' => 's:13:"The Site Name";',
-))
-->values(array(
-  'name' => 'site_slogan',
-  'value' => 's:10:"The Slogan";',
-))
-->values(array(
-  'name' => 'suppress_itok_output',
-  'value' => 'b:1;',
-))
-->values(array(
-  'name' => 'taxonomy_override_selector',
-  'value' => 'b:1;',
-))
-->values(array(
-  'name' => 'taxonomy_terms_per_page_admin',
-  'value' => 'i:84;',
-))
-->values(array(
-  'name' => 'teaser_length',
-  'value' => 'i:1024;',
-))
-->values(array(
-  'name' => 'theme_bartik_settings',
-  'value' => 'a:18:{s:11:"toggle_logo";i:1;s:11:"toggle_name";i:1;s:13:"toggle_slogan";i:1;s:24:"toggle_node_user_picture";i:1;s:27:"toggle_comment_user_picture";i:1;s:32:"toggle_comment_user_verification";i:1;s:14:"toggle_favicon";i:1;s:16:"toggle_main_menu";i:1;s:21:"toggle_secondary_menu";i:1;s:12:"default_logo";i:0;s:9:"logo_path";s:16:"public://gnu.png";s:15:"default_favicon";i:1;s:12:"favicon_path";s:0:"";s:14:"favicon_upload";s:0:"";s:6:"scheme";s:7:"default";s:7:"palette";a:9:{s:3:"top";s:7:"#0779bf";s:6:"bottom";s:7:"#48a9e4";s:2:"bg";s:7:"#ffffff";s:7:"sidebar";s:7:"#f6f6f2";s:14:"sidebarborders";s:7:"#f9f9f9";s:6:"footer";s:7:"#292929";s:11:"titleslogan";s:7:"#fffeff";s:4:"text";s:7:"#3b3b3b";s:4:"link";s:7:"#0071B3";}s:5:"theme";s:6:"bartik";s:4:"info";a:12:{s:6:"fields";a:9:{s:3:"top";s:10:"Header top";s:6:"bottom";s:13:"Header bottom";s:2:"bg";s:15:"Main background";s:7:"sidebar";s:18:"Sidebar background";s:14:"sidebarborders";s:15:"Sidebar borders";s:6:"footer";s:17:"Footer background";s:11:"titleslogan";s:16:"Title and slogan";s:4:"text";s:10:"Text color";s:4:"link";s:10:"Link color";}s:7:"schemes";a:6:{s:7:"default";a:2:{s:5:"title";s:21:"Blue Lagoon (default)";s:6:"colors";a:9:{s:3:"top";s:7:"#0779bf";s:6:"bottom";s:7:"#48a9e4";s:2:"bg";s:7:"#ffffff";s:7:"sidebar";s:7:"#f6f6f2";s:14:"sidebarborders";s:7:"#f9f9f9";s:6:"footer";s:7:"#292929";s:11:"titleslogan";s:7:"#fffeff";s:4:"text";s:7:"#3b3b3b";s:4:"link";s:7:"#0071B3";}}s:9:"firehouse";a:2:{s:5:"title";s:9:"Firehouse";s:6:"colors";a:9:{s:3:"top";s:7:"#cd2d2d";s:6:"bottom";s:7:"#cf3535";s:2:"bg";s:7:"#ffffff";s:7:"sidebar";s:7:"#f1f4f0";s:14:"sidebarborders";s:7:"#ededed";s:6:"footer";s:7:"#1f1d1c";s:11:"titleslogan";s:7:"#fffeff";s:4:"text";s:7:"#3b3b3b";s:4:"link";s:7:"#d6121f";}}s:3:"ice";a:2:{s:5:"title";s:3:"Ice";s:6:"colors";a:9:{s:3:"top";s:7:"#d0d0d0";s:6:"bottom";s:7:"#c2c4c5";s:2:"bg";s:7:"#ffffff";s:7:"sidebar";s:7:"#ffffff";s:14:"sidebarborders";s:7:"#cccccc";s:6:"footer";s:7:"#24272c";s:11:"titleslogan";s:7:"#000000";s:4:"text";s:7:"#4a4a4a";s:4:"link";s:7:"#019dbf";}}s:4:"plum";a:2:{s:5:"title";s:4:"Plum";s:6:"colors";a:9:{s:3:"top";s:7:"#4c1c58";s:6:"bottom";s:7:"#593662";s:2:"bg";s:7:"#fffdf7";s:7:"sidebar";s:7:"#edede7";s:14:"sidebarborders";s:7:"#e7e7e7";s:6:"footer";s:7:"#2c2c28";s:11:"titleslogan";s:7:"#ffffff";s:4:"text";s:7:"#301313";s:4:"link";s:7:"#9d408d";}}s:5:"slate";a:2:{s:5:"title";s:5:"Slate";s:6:"colors";a:9:{s:3:"top";s:7:"#4a4a4a";s:6:"bottom";s:7:"#4e4e4e";s:2:"bg";s:7:"#ffffff";s:7:"sidebar";s:7:"#ffffff";s:14:"sidebarborders";s:7:"#d0d0d0";s:6:"footer";s:7:"#161617";s:11:"titleslogan";s:7:"#ffffff";s:4:"text";s:7:"#3b3b3b";s:4:"link";s:7:"#0073b6";}}s:0:"";a:2:{s:5:"title";s:6:"Custom";s:6:"colors";a:0:{}}}s:3:"css";a:1:{i:0;s:14:"css/colors.css";}s:4:"copy";a:1:{i:0;s:8:"logo.png";}s:9:"gradients";a:1:{i:0;a:3:{s:9:"dimension";a:4:{i:0;i:0;i:1;i:0;i:2;i:0;i:3;i:0;}s:9:"direction";s:8:"vertical";s:6:"colors";a:2:{i:0;s:3:"top";i:1;s:6:"bottom";}}}s:4:"fill";a:0:{}s:6:"slices";a:0:{}s:12:"blend_target";s:7:"#ffffff";s:11:"preview_css";s:17:"color/preview.css";s:10:"preview_js";s:16:"color/preview.js";s:12:"preview_html";s:18:"color/preview.html";s:10:"base_image";s:14:"color/base.png";}}',
-))
-->values(array(
-  'name' => 'theme_default',
-  'value' => 's:6:"bartik";',
-))
-->values(array(
-  'name' => 'theme_settings',
-  'value' => 'a:16:{s:11:"toggle_logo";i:0;s:11:"toggle_name";i:1;s:13:"toggle_slogan";i:0;s:24:"toggle_node_user_picture";i:0;s:27:"toggle_comment_user_picture";i:0;s:32:"toggle_comment_user_verification";i:0;s:14:"toggle_favicon";i:0;s:16:"toggle_main_menu";i:0;s:21:"toggle_secondary_menu";i:0;s:12:"default_logo";i:1;s:9:"logo_path";s:23:"public://customlogo.png";s:11:"logo_upload";s:0:"";s:15:"default_favicon";i:0;s:12:"favicon_path";s:24:"public://somefavicon.png";s:14:"favicon_upload";s:0:"";s:16:"favicon_mimetype";s:9:"image/png";}',
-))
-->values(array(
-  'name' => 'theme_seven_settings',
-  'value' => 'a:15:{s:11:"toggle_logo";i:1;s:11:"toggle_name";i:1;s:13:"toggle_slogan";i:1;s:24:"toggle_node_user_picture";i:1;s:27:"toggle_comment_user_picture";i:0;s:32:"toggle_comment_user_verification";i:1;s:14:"toggle_favicon";i:1;s:16:"toggle_main_menu";i:1;s:21:"toggle_secondary_menu";i:0;s:12:"default_logo";i:1;s:9:"logo_path";s:0:"";s:11:"logo_upload";s:0:"";s:15:"default_favicon";i:1;s:12:"favicon_path";s:0:"";s:14:"favicon_upload";s:0:"";}',
-))
-->values(array(
-  'name' => 'translation_language_type',
-  'value' => 's:16:"language_content";',
-))
-->values(array(
-  'name' => 'user_admin_role',
-  'value' => 's:1:"3";',
-))
-->values(array(
-  'name' => 'user_cancel_method',
-  'value' => 's:17:"user_cancel_block";',
-))
-->values(array(
-  'name' => 'user_default_timezone',
-  'value' => 'i:2;',
-))
-->values(array(
-  'name' => 'user_email_verification',
-  'value' => 'i:1;',
-))
-->values(array(
-  'name' => 'user_failed_login_identifier_uid_only',
-  'value' => 'b:1;',
-))
-->values(array(
-  'name' => 'user_failed_login_ip_limit',
-  'value' => 'i:30;',
-))
-->values(array(
-  'name' => 'user_failed_login_ip_window',
-  'value' => 'i:7200;',
-))
-->values(array(
-  'name' => 'user_failed_login_user_limit',
-  'value' => 'i:22;',
-))
-->values(array(
-  'name' => 'user_failed_login_user_window',
-  'value' => 'i:86400;',
-))
-->values(array(
-  'name' => 'user_mail_cancel_confirm_body',
-  'value' => 's:55:"A little birdie said you wanted to cancel your account.";',
-))
-->values(array(
-  'name' => 'user_mail_cancel_confirm_subject',
-  'value' => 's:13:"Are you sure?";',
-))
-->values(array(
-  'name' => 'user_mail_password_reset_body',
-  'value' => "s:32:\"Nope! You're locked out forever.\";",
-))
-->values(array(
-  'name' => 'user_mail_password_reset_subject',
-  'value' => 's:17:"Fix your password";',
-))
-->values(array(
-  'name' => 'user_mail_register_admin_created_body',
-  'value' => 's:30:"...and it could be taken away.";',
-))
-->values(array(
-  'name' => 'user_mail_register_admin_created_subject',
-  'value' => 's:24:"Gawd made you an account";',
-))
-->values(array(
-  'name' => 'user_mail_register_no_approval_required_body',
-  'value' => 's:59:"You can now log in if you can figure out how to use Drupal!";',
-))
-->values(array(
-  'name' => 'user_mail_register_no_approval_required_subject',
-  'value' => 's:8:"Welcome!";',
-))
-->values(array(
-  'name' => 'user_mail_register_pending_approval_body',
-  'value' => 's:61:"...you will join our Circle. Let the Drupal flow through you.";',
-))
-->values(array(
-  'name' => 'user_mail_register_pending_approval_subject',
-  'value' => 's:7:"Soon...";',
-))
-->values(array(
-  'name' => 'user_mail_status_activated_body',
-  'value' => 's:57:"Your account was activated, and there was much rejoicing.";',
-))
-->values(array(
-  'name' => 'user_mail_status_activated_notify',
-  'value' => 'i:1;',
-))
-->values(array(
-  'name' => 'user_mail_status_activated_subject',
-  'value' => 's:25:"Your account is approved!";',
-))
-->values(array(
-  'name' => 'user_mail_status_blocked_body',
-  'value' => 's:72:"You no longer please the robot overlords. Go to your room and chill out.";',
-))
-->values(array(
-  'name' => 'user_mail_status_blocked_notify',
-  'value' => 'i:1;',
-))
-->values(array(
-  'name' => 'user_mail_status_blocked_subject',
-  'value' => 's:7:"BEGONE!";',
-))
-->values(array(
-  'name' => 'user_mail_status_canceled_body',
-  'value' => 's:75:"The gates of Drupal are closed to you. Now you will work in the salt mines.";',
-))
-->values(array(
-  'name' => 'user_mail_status_canceled_notify',
-  'value' => 'i:1;',
-))
-->values(array(
-  'name' => 'user_mail_status_canceled_subject',
-  'value' => 's:12:"So long, bub";',
-))
-->values(array(
-  'name' => 'user_pictures',
-  'value' => 'i:1;',
-))
-->values(array(
-  'name' => 'user_picture_default',
-  'value' => 's:0:"";',
-))
-->values(array(
-  'name' => 'user_picture_dimensions',
-  'value' => 's:9:"1024x1024";',
-))
-->values(array(
-  'name' => 'user_picture_file_size',
-  'value' => 's:3:"800";',
-))
-->values(array(
-  'name' => 'user_picture_guidelines',
-  'value' => 's:0:"";',
-))
-->values(array(
-  'name' => 'user_picture_path',
-  'value' => 's:8:"pictures";',
-))
-->values(array(
-  'name' => 'user_picture_style',
-  'value' => 's:9:"thumbnail";',
-))
-->values(array(
-  'name' => 'user_register',
-  'value' => 's:1:"2";',
-))
-->values(array(
-  'name' => 'user_signatures',
-  'value' => 'i:0;',
-))
-->values(array(
-  'name' => 'variable_module_list',
-  'value' => 'a:2:{s:4:"i18n";a:1:{i:0;s:18:"i18n_language_list";}s:11:"i18n_string";a:7:{i:0;s:33:"i18n_string_translate_langcode_en";i:1;s:33:"i18n_string_translate_langcode_fr";i:2;s:33:"i18n_string_translate_langcode_is";i:3;s:27:"i18n_string_allowed_formats";i:4;s:27:"i18n_string_source_language";i:5;s:17:"i18n_string_debug";i:6;s:39:"i18n_string_textgroup_class_[textgroup]";}}',
-))
-->execute();
-
-// Reset the SQL mode.
-if ($connection->databaseType() === 'mysql') {
-  $connection->query("SET sql_mode = '$sql_mode'");
-}
diff --git a/core/modules/forum/tests/modules/forum_test_views/forum_test_views.info.yml b/core/modules/forum/tests/modules/forum_test_views/forum_test_views.info.yml
deleted file mode 100644
index e4b4c9692f09..000000000000
--- a/core/modules/forum/tests/modules/forum_test_views/forum_test_views.info.yml
+++ /dev/null
@@ -1,8 +0,0 @@
-name: 'Forum test views'
-type: module
-description: 'Provides default views for views forum tests.'
-package: Testing
-version: VERSION
-dependencies:
-  - drupal:forum
-  - drupal:views
diff --git a/core/modules/forum/tests/modules/forum_test_views/test_views/views.view.test_forum_index.yml b/core/modules/forum/tests/modules/forum_test_views/test_views/views.view.test_forum_index.yml
deleted file mode 100644
index 1903dbbde8ef..000000000000
--- a/core/modules/forum/tests/modules/forum_test_views/test_views/views.view.test_forum_index.yml
+++ /dev/null
@@ -1,148 +0,0 @@
-langcode: en
-status: true
-dependencies: {  }
-id: test_forum_index
-label: test_forum_index
-module: views
-description: ''
-tag: ''
-base_table: forum_index
-base_field: nid
-display:
-  default:
-    display_plugin: default
-    id: default
-    display_title: Default
-    position: null
-    display_options:
-      access:
-        type: none
-      cache:
-        type: tag
-      query:
-        type: views_query
-      exposed_form:
-        type: basic
-      pager:
-        type: full
-      style:
-        type: default
-      row:
-        type: fields
-      fields:
-        nid:
-          table: forum_index
-          field: nid
-          id: nid
-        sticky:
-          id: sticky
-          table: forum_index
-          field: sticky
-          relationship: none
-          group_type: group
-          admin_label: ''
-          label: Sticky
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-          type: yes-no
-          type_custom_true: ''
-          type_custom_false: ''
-          not: false
-          plugin_id: boolean
-        comment_count:
-          id: comment_count
-          table: forum_index
-          field: comment_count
-          relationship: none
-          group_type: group
-          admin_label: ''
-          label: 'Comment count'
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-          set_precision: false
-          precision: 0
-          decimal: .
-          separator: ','
-          format_plural: false
-          format_plural_string: "1\x03@count"
-          prefix: ''
-          suffix: ''
-          plugin_id: numeric
-      filters: {  }
-      sorts: {  }
diff --git a/core/modules/forum/tests/modules/forum_url_alter_test/forum_url_alter_test.info.yml b/core/modules/forum/tests/modules/forum_url_alter_test/forum_url_alter_test.info.yml
deleted file mode 100644
index 92c50fb5b3b1..000000000000
--- a/core/modules/forum/tests/modules/forum_url_alter_test/forum_url_alter_test.info.yml
+++ /dev/null
@@ -1,5 +0,0 @@
-name: 'forum_Url_alter tests'
-type: module
-description: 'A support module to test altering the inbound and outbound path.'
-package: Testing
-version: VERSION
diff --git a/core/modules/forum/tests/modules/forum_url_alter_test/forum_url_alter_test.services.yml b/core/modules/forum/tests/modules/forum_url_alter_test/forum_url_alter_test.services.yml
deleted file mode 100644
index b201c0dbc8cc..000000000000
--- a/core/modules/forum/tests/modules/forum_url_alter_test/forum_url_alter_test.services.yml
+++ /dev/null
@@ -1,6 +0,0 @@
-services:
-  forum_url_alter_test.path_processor:
-    class: Drupal\forum_url_alter_test\PathProcessorTest
-    tags:
-      - { name: path_processor_inbound, priority: 800 }
-      - { name: path_processor_outbound, priority: 100 }
diff --git a/core/modules/forum/tests/modules/forum_url_alter_test/src/PathProcessorTest.php b/core/modules/forum/tests/modules/forum_url_alter_test/src/PathProcessorTest.php
deleted file mode 100644
index 004478c225cd..000000000000
--- a/core/modules/forum/tests/modules/forum_url_alter_test/src/PathProcessorTest.php
+++ /dev/null
@@ -1,31 +0,0 @@
-<?php
-
-namespace Drupal\forum_url_alter_test;
-
-use Drupal\Core\PathProcessor\InboundPathProcessorInterface;
-use Drupal\Core\PathProcessor\OutboundPathProcessorInterface;
-use Drupal\Core\Render\BubbleableMetadata;
-use Symfony\Component\HttpFoundation\Request;
-
-/**
- * Path processor for url_alter_test.
- */
-class PathProcessorTest implements InboundPathProcessorInterface, OutboundPathProcessorInterface {
-
-  /**
-   * {@inheritdoc}
-   */
-  public function processInbound($path, Request $request) {
-    // Rewrite community/ to forum/.
-    return preg_replace('@^/community(.*)@', '/forum$1', $path);
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  public function processOutbound($path, &$options = [], Request $request = NULL, BubbleableMetadata $bubbleable_metadata = NULL) {
-    // Rewrite forum/ to community/.
-    return preg_replace('@^/forum(.*)@', '/community$1', $path);
-  }
-
-}
diff --git a/core/modules/forum/tests/src/Functional/ForumBlockTest.php b/core/modules/forum/tests/src/Functional/ForumBlockTest.php
deleted file mode 100644
index 0edb187bb347..000000000000
--- a/core/modules/forum/tests/src/Functional/ForumBlockTest.php
+++ /dev/null
@@ -1,192 +0,0 @@
-<?php
-
-declare(strict_types=1);
-
-namespace Drupal\Tests\forum\Functional;
-
-use Drupal\Component\Render\FormattableMarkup;
-use Drupal\Core\Datetime\DrupalDateTime;
-use Drupal\comment\Entity\Comment;
-use Drupal\Tests\BrowserTestBase;
-
-/**
- * Tests the forum blocks.
- *
- * @group forum
- * @group legacy
- */
-class ForumBlockTest extends BrowserTestBase {
-
-  /**
-   * Modules to enable.
-   *
-   * @var array
-   */
-  protected static $modules = ['forum', 'block'];
-
-  /**
-   * {@inheritdoc}
-   */
-  protected $defaultTheme = 'stark';
-
-  /**
-   * A user with various administrative privileges.
-   */
-  protected $adminUser;
-
-  /**
-   * {@inheritdoc}
-   */
-  protected function setUp(): void {
-    parent::setUp();
-
-    // Create users.
-    $this->adminUser = $this->drupalCreateUser([
-      'access administration pages',
-      'administer blocks',
-      'administer nodes',
-      'create forum content',
-      'post comments',
-      'skip comment approval',
-    ]);
-  }
-
-  /**
-   * Tests the "New forum topics" block.
-   */
-  public function testNewForumTopicsBlock() {
-    $this->drupalLogin($this->adminUser);
-
-    // Enable the new forum topics block.
-    $block = $this->drupalPlaceBlock('forum_new_block');
-    $this->drupalGet('');
-
-    // Create 5 forum topics.
-    $topics = $this->createForumTopics();
-
-    $this->assertSession()->linkExists('More', 0, 'New forum topics block has a "more"-link.');
-    $this->assertSession()->linkByHrefExists('forum', 0, 'New forum topics block has a "more"-link.');
-
-    // We expect all 5 forum topics to appear in the "New forum topics" block.
-    foreach ($topics as $topic) {
-      $this->assertSession()->linkExists($topic, 0, new FormattableMarkup('Forum topic @topic found in the "New forum topics" block.', ['@topic' => $topic]));
-    }
-
-    // Configure the new forum topics block to only show 2 topics.
-    $block->getPlugin()->setConfigurationValue('block_count', 2);
-    $block->save();
-
-    $this->drupalGet('');
-    // We expect only the 2 most recent forum topics to appear in the "New forum
-    // topics" block.
-    for ($index = 0; $index < 5; $index++) {
-      if (in_array($index, [3, 4])) {
-        $this->assertSession()->linkExists($topics[$index], 0, new FormattableMarkup('Forum topic @topic found in the "New forum topics" block.', ['@topic' => $topics[$index]]));
-      }
-      else {
-        $this->assertSession()->pageTextNotContains($topics[$index]);
-      }
-    }
-  }
-
-  /**
-   * Tests the "Active forum topics" block.
-   */
-  public function testActiveForumTopicsBlock() {
-    $this->drupalLogin($this->adminUser);
-
-    // Create 10 forum topics.
-    $topics = $this->createForumTopics(10);
-
-    // Comment on the first 5 topics.
-    $date = new DrupalDateTime();
-    for ($index = 0; $index < 5; $index++) {
-      // Get the node from the topic title.
-      $node = $this->drupalGetNodeByTitle($topics[$index]);
-      $date->modify('+1 minute');
-      $comment = Comment::create([
-        'entity_id' => $node->id(),
-        'field_name' => 'comment_forum',
-        'entity_type' => 'node',
-        'node_type' => 'node_type_' . $node->bundle(),
-        'subject' => $this->randomString(20),
-        'comment_body' => $this->randomString(256),
-        'created' => $date->getTimestamp(),
-      ]);
-      $comment->save();
-    }
-
-    // Enable the block.
-    $block = $this->drupalPlaceBlock('forum_active_block');
-    $this->drupalGet('');
-    $this->assertSession()->linkExists('More', 0, 'Active forum topics block has a "more"-link.');
-    $this->assertSession()->linkByHrefExists('forum', 0, 'Active forum topics block has a "more"-link.');
-
-    // We expect the first 5 forum topics to appear in the "Active forum topics"
-    // block.
-    $this->drupalGet('<front>');
-    for ($index = 0; $index < 10; $index++) {
-      if ($index < 5) {
-        $this->assertSession()->linkExists($topics[$index], 0, new FormattableMarkup('Forum topic @topic found in the "Active forum topics" block.', ['@topic' => $topics[$index]]));
-      }
-      else {
-        $this->assertSession()->pageTextNotContains($topics[$index]);
-      }
-    }
-
-    // Configure the active forum block to only show 2 topics.
-    $block->getPlugin()->setConfigurationValue('block_count', 2);
-    $block->save();
-
-    $this->drupalGet('');
-
-    // We expect only the 2 forum topics with most recent comments to appear in
-    // the "Active forum topics" block.
-    for ($index = 0; $index < 10; $index++) {
-      if (in_array($index, [3, 4])) {
-        $this->assertSession()->linkExists($topics[$index], 0, 'Forum topic found in the "Active forum topics" block.');
-      }
-      else {
-        $this->assertSession()->pageTextNotContains($topics[$index]);
-      }
-    }
-  }
-
-  /**
-   * Creates a forum topic.
-   *
-   * @return string
-   *   The title of the newly generated topic.
-   */
-  protected function createForumTopics($count = 5) {
-    $topics = [];
-    $date = new DrupalDateTime();
-    $date->modify('-24 hours');
-
-    for ($index = 0; $index < $count; $index++) {
-      // Generate a random subject/body.
-      $title = $this->randomMachineName(20);
-      $body = $this->randomMachineName(200);
-      // Forum posts are ordered by timestamp, so force a unique timestamp by
-      // changing the date.
-      $date->modify('+1 minute');
-
-      $edit = [
-        'title[0][value]' => $title,
-        'body[0][value]' => $body,
-        // Forum posts are ordered by timestamp, so force a unique timestamp by
-        // adding the index.
-        'created[0][value][date]' => $date->format('Y-m-d'),
-        'created[0][value][time]' => $date->format('H:i:s'),
-      ];
-
-      // Create the forum topic, preselecting the forum ID via a URL parameter.
-      $this->drupalGet('node/add/forum', ['query' => ['forum_id' => 1]]);
-      $this->submitForm($edit, 'Save');
-      $topics[] = $title;
-    }
-
-    return $topics;
-  }
-
-}
diff --git a/core/modules/forum/tests/src/Functional/ForumIndexTest.php b/core/modules/forum/tests/src/Functional/ForumIndexTest.php
deleted file mode 100644
index 1d501e8c318e..000000000000
--- a/core/modules/forum/tests/src/Functional/ForumIndexTest.php
+++ /dev/null
@@ -1,104 +0,0 @@
-<?php
-
-declare(strict_types=1);
-
-namespace Drupal\Tests\forum\Functional;
-
-use Drupal\Tests\BrowserTestBase;
-
-/**
- * Tests the forum index listing.
- *
- * @group forum
- * @group legacy
- */
-class ForumIndexTest extends BrowserTestBase {
-
-  /**
-   * Modules to enable.
-   *
-   * @var array
-   */
-  protected static $modules = ['taxonomy', 'comment', 'forum'];
-
-  /**
-   * {@inheritdoc}
-   */
-  protected $defaultTheme = 'stark';
-
-  /**
-   * {@inheritdoc}
-   */
-  protected function setUp(): void {
-    parent::setUp();
-
-    // Create a test user.
-    $web_user = $this->drupalCreateUser([
-      'create forum content',
-      'edit own forum content',
-      'edit any forum content',
-      'administer nodes',
-      'administer forums',
-    ]);
-    $this->drupalLogin($web_user);
-  }
-
-  /**
-   * Tests the forum index for published and unpublished nodes.
-   */
-  public function testForumIndexStatus() {
-    // The forum ID to use.
-    $tid = 1;
-
-    // Create a test node.
-    $title = $this->randomMachineName(20);
-    $edit = [
-      'title[0][value]' => $title,
-      'body[0][value]' => $this->randomMachineName(200),
-    ];
-
-    // Create the forum topic, preselecting the forum ID via a URL parameter.
-    $this->drupalGet("forum/$tid");
-    $this->clickLink('Add new Forum topic');
-    $this->assertSession()->addressEquals("node/add/forum?forum_id=$tid");
-    $this->submitForm($edit, 'Save');
-
-    // Check that the node exists in the database.
-    $node = $this->drupalGetNodeByTitle($title);
-    $this->assertNotEmpty($node, 'New forum node found in database.');
-
-    // Create a child forum.
-    $edit = [
-      'name[0][value]' => $this->randomMachineName(20),
-      'description[0][value]' => $this->randomMachineName(200),
-      'parent[0]' => $tid,
-    ];
-    $this->drupalGet('admin/structure/forum/add/forum');
-    $this->submitForm($edit, 'Save');
-    $this->assertSession()->linkExists('edit forum');
-
-    $tid_child = $tid + 1;
-
-    // Verify that the node appears on the index.
-    $this->drupalGet('forum/' . $tid);
-    $this->assertSession()->pageTextContains($title);
-    $this->assertSession()->responseHeaderContains('X-Drupal-Cache-Tags', 'node_list');
-    $this->assertSession()->responseHeaderContains('X-Drupal-Cache-Tags', 'config:node.type.forum');
-    $this->assertSession()->responseHeaderContains('X-Drupal-Cache-Tags', 'comment_list');
-    $this->assertSession()->responseHeaderContains('X-Drupal-Cache-Tags', 'node:' . $node->id());
-    $this->assertSession()->responseHeaderContains('X-Drupal-Cache-Tags', 'taxonomy_term:' . $tid);
-    $this->assertSession()->responseHeaderContains('X-Drupal-Cache-Tags', 'taxonomy_term:' . $tid_child);
-
-    // Unpublish the node.
-    $edit = ['status[value]' => FALSE];
-    $this->drupalGet('node/' . $node->id() . '/edit');
-    $this->submitForm($edit, 'Save');
-    $this->drupalGet('node/' . $node->id());
-    $this->assertSession()->pageTextContains('Access denied');
-
-    // Verify that the node no longer appears on the index.
-    $this->drupalGet('forum/' . $tid);
-    $this->assertSession()->pageTextNotContains($title);
-  }
-
-}
diff --git a/core/modules/forum/tests/src/Functional/ForumNodeAccessTest.php b/core/modules/forum/tests/src/Functional/ForumNodeAccessTest.php
deleted file mode 100644
index 051941012869..000000000000
--- a/core/modules/forum/tests/src/Functional/ForumNodeAccessTest.php
+++ /dev/null
@@ -1,110 +0,0 @@
-<?php
-
-declare(strict_types=1);
-
-namespace Drupal\Tests\forum\Functional;
-
-use Drupal\Tests\BrowserTestBase;
-use Drupal\node\Entity\NodeType;
-
-/**
- * Tests forum block view for private node access.
- *
- * @group forum
- * @group legacy
- */
-class ForumNodeAccessTest extends BrowserTestBase {
-
-  /**
-   * Modules to enable.
-   *
-   * @var array
-   */
-  protected static $modules = [
-    'node',
-    'comment',
-    'forum',
-    'taxonomy',
-    'node_access_test',
-    'block',
-  ];
-
-  /**
-   * {@inheritdoc}
-   */
-  protected $defaultTheme = 'stark';
-
-  /**
-   * {@inheritdoc}
-   */
-  protected function setUp(): void {
-    parent::setUp();
-    node_access_rebuild();
-    node_access_test_add_field(NodeType::load('forum'));
-    \Drupal::state()->set('node_access_test.private', TRUE);
-  }
-
-  /**
-   * Creates some users and creates a public node and a private node.
-   *
-   * Adds both active forum topics and new forum topics blocks to the sidebar.
-   * Tests to ensure private node/public node access is respected on blocks.
-   */
-  public function testForumNodeAccess() {
-    // Create some users.
-    $access_user = $this->drupalCreateUser(['node test view']);
-    $no_access_user = $this->drupalCreateUser();
-    $admin_user = $this->drupalCreateUser([
-      'access administration pages',
-      'administer modules',
-      'administer blocks',
-      'create forum content',
-    ]);
-
-    $this->drupalLogin($admin_user);
-
-    // Create a private node.
-    $private_node_title = $this->randomMachineName(20);
-    $edit = [
-      'title[0][value]' => $private_node_title,
-      'body[0][value]' => $this->randomMachineName(200),
-      'private[0][value]' => TRUE,
-    ];
-    $this->drupalGet('node/add/forum', ['query' => ['forum_id' => 1]]);
-    $this->submitForm($edit, 'Save');
-    $private_node = $this->drupalGetNodeByTitle($private_node_title);
-    $this->assertNotEmpty($private_node, 'New private forum node found in database.');
-
-    // Create a public node.
-    $public_node_title = $this->randomMachineName(20);
-    $edit = [
-      'title[0][value]' => $public_node_title,
-      'body[0][value]' => $this->randomMachineName(200),
-    ];
-    $this->drupalGet('node/add/forum', ['query' => ['forum_id' => 1]]);
-    $this->submitForm($edit, 'Save');
-    $public_node = $this->drupalGetNodeByTitle($public_node_title);
-    $this->assertNotEmpty($public_node, 'New public forum node found in database.');
-
-    // Enable the new and active forum blocks.
-    $this->drupalPlaceBlock('forum_active_block');
-    $this->drupalPlaceBlock('forum_new_block');
-
-    // Test for $access_user.
-    $this->drupalLogin($access_user);
-    $this->drupalGet('');
-
-    // Ensure private node and public node are found.
-    $this->assertSession()->pageTextContains($private_node->getTitle());
-    $this->assertSession()->pageTextContains($public_node->getTitle());
-
-    // Test for $no_access_user.
-    $this->drupalLogin($no_access_user);
-    $this->drupalGet('');
-
-    // Ensure private node is not found but public is found.
-    $this->assertSession()->pageTextNotContains($private_node->getTitle());
-    $this->assertSession()->pageTextContains($public_node->getTitle());
-  }
-
-}
diff --git a/core/modules/forum/tests/src/Functional/ForumTermAccessTest.php b/core/modules/forum/tests/src/Functional/ForumTermAccessTest.php
deleted file mode 100644
index 8162cbd8000a..000000000000
--- a/core/modules/forum/tests/src/Functional/ForumTermAccessTest.php
+++ /dev/null
@@ -1,96 +0,0 @@
-<?php
-
-declare(strict_types=1);
-
-namespace Drupal\Tests\forum\Functional;
-
-use Drupal\Tests\BrowserTestBase;
-use Drupal\taxonomy\Entity\Term;
-
-/**
- * Tests forum taxonomy terms for access.
- *
- * @group forum
- * @group legacy
- */
-class ForumTermAccessTest extends BrowserTestBase {
-
-  /**
-   * Modules to enable.
-   *
-   * @var array
-   */
-  protected static $modules = [
-    'forum',
-    'taxonomy',
-  ];
-
-  /**
-   * {@inheritdoc}
-   */
-  protected $defaultTheme = 'stark';
-
-  /**
-   * Creates some users and creates a public forum and an unpublished forum.
-   *
-   * Adds both published and unpublished forums.
-   * Tests to ensure publish/unpublished forums access is respected.
-   */
-  public function testForumTermAccess(): void {
-    $assert_session = $this->assertSession();
-    // Create some users.
-    $public_user = $this->drupalCreateUser(['access content']);
-    $admin_user = $this->drupalCreateUser([
-      'access administration pages',
-      'administer forums',
-      'administer taxonomy',
-      'access taxonomy overview',
-    ]);
-
-    $this->drupalLogin($admin_user);
-    // The vocabulary for forums.
-    $vid = $this->config('forum.settings')->get('vocabulary');
-    // Create an unpublished forum.
-    $unpublished_forum_name = $this->randomMachineName(8);
-    $unpublished_forum = Term::create([
-      'vid' => $vid,
-      'name' => $unpublished_forum_name,
-      'status' => 0,
-    ]);
-    $unpublished_forum->save();
-
-    // Create a new published forum.
-    $published_forum_name = $this->randomMachineName(8);
-    $published_forum = Term::create([
-      'vid' => $vid,
-      'name' => $published_forum_name,
-      'status' => 1,
-    ]);
-    $published_forum->save();
-
-    // Test for admin user.
-    // Go to the Forum index page.
-    $this->drupalGet('forum');
-    // The unpublished forum should be in this page for an admin user.
-    $assert_session->pageTextContains($unpublished_forum_name);
-    // Go to the unpublished forum page.
-    $this->drupalGet('forum/' . $unpublished_forum->id());
-    $assert_session->statusCodeEquals(200);
-    $assert_session->pageTextContains($unpublished_forum_name);
-
-    // Test for public user.
-    $this->drupalLogin($public_user);
-    // Go to the Forum index page.
-    $this->drupalGet('forum');
-    // The published forum should be in this page.
-    $assert_session->pageTextContains($published_forum_name);
-    // The unpublished forum should not be in this page.
-    $assert_session->pageTextNotContains($unpublished_forum_name);
-    // Go to the unpublished forum page.
-    $this->drupalGet('forum/' . $unpublished_forum->id());
-    // Public should not be able to access the unpublished forum.
-    $assert_session->statusCodeEquals(403);
-    $assert_session->pageTextNotContains($unpublished_forum_name);
-  }
-
-}
diff --git a/core/modules/forum/tests/src/Functional/ForumTest.php b/core/modules/forum/tests/src/Functional/ForumTest.php
deleted file mode 100644
index 70ca39d4cc6f..000000000000
--- a/core/modules/forum/tests/src/Functional/ForumTest.php
+++ /dev/null
@@ -1,753 +0,0 @@
-<?php
-
-declare(strict_types=1);
-
-namespace Drupal\Tests\forum\Functional;
-
-use Drupal\Core\Entity\Entity\EntityFormDisplay;
-use Drupal\Core\Entity\Entity\EntityViewDisplay;
-use Drupal\Core\Entity\EntityInterface;
-use Drupal\Core\Link;
-use Drupal\Core\Url;
-use Drupal\taxonomy\Entity\Vocabulary;
-use Drupal\Tests\BrowserTestBase;
-
-/**
- * Tests for forum.module.
- *
- * Create, view, edit, delete, and change forum entries and verify its
- * consistency in the database.
- *
- * @group forum
- * @group legacy
- * @group #slow
- */
-class ForumTest extends BrowserTestBase {
-
-  /**
-   * Modules to enable.
-   *
-   * @var array
-   */
-  protected static $modules = [
-    'taxonomy',
-    'comment',
-    'forum',
-    'node',
-    'block',
-    'menu_ui',
-    'help',
-  ];
-
-  /**
-   * {@inheritdoc}
-   */
-  protected $defaultTheme = 'starterkit_theme';
-
-  /**
-   * A user with various administrative privileges.
-   */
-  protected $adminUser;
-
-  /**
-   * A user that can create forum topics and edit its own topics.
-   */
-  protected $editOwnTopicsUser;
-
-  /**
-   * A user that can create, edit, and delete forum topics.
-   */
-  protected $editAnyTopicsUser;
-
-  /**
-   * A user with no special privileges.
-   */
-  protected $webUser;
-
-  /**
-   * An administrative user who can bypass comment approval.
-   */
-  protected $postCommentUser;
-
-  /**
-   * An array representing a forum container.
-   */
-  protected $forumContainer;
-
-  /**
-   * An array representing a forum.
-   */
-  protected $forum;
-
-  /**
-   * An array representing a root forum.
-   */
-  protected $rootForum;
-
-  /**
-   * An array of forum topic node IDs.
-   */
-  protected $nids;
-
-  /**
-   * {@inheritdoc}
-   */
-  protected function setUp(): void {
-    parent::setUp();
-    $this->drupalPlaceBlock('system_breadcrumb_block');
-    $this->drupalPlaceBlock('page_title_block');
-
-    // Create users.
-    $this->adminUser = $this->drupalCreateUser([
-      'access administration pages',
-      'access help pages',
-      'administer modules',
-      'administer blocks',
-      'administer forums',
-      'administer menu',
-      'administer taxonomy',
-      'create forum content',
-      'access comments',
-    ]);
-    $this->editAnyTopicsUser = $this->drupalCreateUser([
-      'access administration pages',
-      'access help pages',
-      'create forum content',
-      'edit any forum content',
-      'delete any forum content',
-    ]);
-    $this->editOwnTopicsUser = $this->drupalCreateUser([
-      'create forum content',
-      'edit own forum content',
-      'delete own forum content',
-    ]);
-    $this->webUser = $this->drupalCreateUser();
-    $this->postCommentUser = $this->drupalCreateUser([
-      'administer content types',
-      'create forum content',
-      'post comments',
-      'skip comment approval',
-      'access comments',
-    ]);
-    $this->drupalPlaceBlock('help_block', ['region' => 'help']);
-    $this->drupalPlaceBlock('local_actions_block');
-  }
-
-  /**
-   * Tests forum functionality through the admin and user interfaces.
-   */
-  public function testForum() {
-    // Check that the basic forum install creates a default forum topic
-    $this->drupalGet('/forum');
-    // Look for the "General discussion" default forum
-    $this->assertSession()->linkExists('General discussion');
-    $this->assertSession()->linkByHrefExists('/forum/1');
-    // Check the presence of expected cache tags.
-    $this->assertSession()->responseHeaderContains('X-Drupal-Cache-Tags', 'config:forum.settings');
-
-    $this->drupalGet(Url::fromRoute('forum.page', ['taxonomy_term' => 1]));
-    $this->assertSession()->responseHeaderContains('X-Drupal-Cache-Tags', 'config:forum.settings');
-
-    // Do the admin tests.
-    $this->doAdminTests($this->adminUser);
-
-    // Check display order.
-    $display = EntityViewDisplay::load('node.forum.default');
-    $body = $display->getComponent('body');
-    $comment = $display->getComponent('comment_forum');
-    $taxonomy = $display->getComponent('taxonomy_forums');
-
-    // Assert field order is body » taxonomy » comments.
-    $this->assertLessThan($body['weight'], $taxonomy['weight']);
-    $this->assertLessThan($comment['weight'], $body['weight']);
-
-    // Check form order.
-    $display = EntityFormDisplay::load('node.forum.default');
-    $body = $display->getComponent('body');
-    $comment = $display->getComponent('comment_forum');
-    $taxonomy = $display->getComponent('taxonomy_forums');
-
-    // Assert category comes before body in order.
-    $this->assertLessThan($body['weight'], $taxonomy['weight']);
-
-    $this->generateForumTopics();
-
-    // Log in an unprivileged user to view the forum topics and generate an
-    // active forum topics list.
-    $this->drupalLogin($this->webUser);
-    // Verify that this user is shown a message that they may not post content.
-    $this->drupalGet('forum/' . $this->forum['tid']);
-    $this->assertSession()->pageTextContains('You are not allowed to post new content in the forum');
-
-    // Log in, and do basic tests for a user with permission to edit any forum
-    // content.
-    $this->doBasicTests($this->editAnyTopicsUser, TRUE);
-    // Create a forum node authored by this user.
-    $any_topics_user_node = $this->createForumTopic($this->forum, FALSE);
-
-    // Log in, and do basic tests for a user with permission to edit only its
-    // own forum content.
-    $this->doBasicTests($this->editOwnTopicsUser, FALSE);
-    // Create a forum node authored by this user.
-    $own_topics_user_node = $this->createForumTopic($this->forum, FALSE);
-    // Verify that this user cannot edit forum content authored by another user.
-    $this->verifyForums($any_topics_user_node, FALSE, 403);
-
-    // Verify that this user is shown a local task to add new forum content.
-    $this->drupalGet('forum');
-    $this->assertSession()->linkExists('Add new Forum topic');
-    $this->drupalGet('forum/' . $this->forum['tid']);
-    $this->assertSession()->linkExists('Add new Forum topic');
-
-    // Log in a user with permission to edit any forum content.
-    $this->drupalLogin($this->editAnyTopicsUser);
-    // Verify that this user can edit forum content authored by another user.
-    $this->verifyForums($own_topics_user_node, TRUE);
-
-    // Verify the topic and post counts on the forum page.
-    $this->drupalGet('forum');
-
-    // Find the table row for the forum that has new posts. This cannot be
-    // reliably identified by any CSS selector or its position in the table,
-    // so look for an element with the "New posts" title and traverse up the
-    // document tree until we get to the table row that contains it.
-    $row = $this->assertSession()->elementExists('css', '[title="New posts"]');
-    while ($row && $row->getTagName() !== 'tr') {
-      $row = $row->getParent();
-    }
-    $this->assertNotEmpty($row);
-    $cells = $row->findAll('css', 'td');
-    $this->assertCount(4, $cells);
-
-    // Topics cell contains number of topics (6), number of unread topics (also
-    // 6), and the forum name.
-    $this->assertEquals('6 6 new posts in forum ' . $this->forum['name'], $cells[1]->getText(), 'Number of topics found.');
-
-    // Verify total number of posts in forum.
-    $this->assertEquals('6', $cells[2]->getText(), 'Number of posts found.');
-
-    // Test loading multiple forum nodes on the front page.
-    $this->drupalLogin($this->drupalCreateUser([
-      'administer content types',
-      'create forum content',
-      'post comments',
-    ]));
-    $this->drupalGet('admin/structure/types/manage/forum');
-    $this->submitForm(['options[promote]' => 'promote'], 'Save');
-    $this->createForumTopic($this->forum, FALSE);
-    $this->createForumTopic($this->forum, FALSE);
-    $this->drupalGet('node');
-
-    // Test adding a comment to a forum topic.
-    $node = $this->createForumTopic($this->forum, FALSE);
-    $edit = [];
-    $edit['comment_body[0][value]'] = $this->randomMachineName();
-    $this->drupalGet('node/' . $node->id());
-    $this->submitForm($edit, 'Save');
-    $this->assertSession()->statusCodeEquals(200);
-
-    // Test editing a forum topic that has a comment.
-    $this->drupalLogin($this->editAnyTopicsUser);
-    $this->drupalGet('forum/' . $this->forum['tid']);
-    $this->drupalGet('node/' . $node->id() . '/edit');
-    $this->submitForm([], 'Save');
-    $this->assertSession()->statusCodeEquals(200);
-
-    // Test the root forum page title change.
-    $this->drupalGet('forum');
-    $this->assertSession()->responseHeaderContains('X-Drupal-Cache-Tags', 'config:taxonomy.vocabulary.' . $this->forum['vid']);
-    $this->assertSession()->titleEquals('Forums | Drupal');
-    $vocabulary = Vocabulary::load($this->forum['vid']);
-    $vocabulary->set('name', 'Discussions');
-    $vocabulary->save();
-    $this->drupalGet('forum');
-    $this->assertSession()->titleEquals('Discussions | Drupal');
-
-    // Test anonymous action link.
-    $this->drupalLogout();
-    $this->drupalGet('forum/' . $this->forum['tid']);
-    $this->assertSession()->linkExists('Log in to post new content in the forum.');
-  }
-
-  /**
-   * Tests that forum nodes can't be added without a parent.
-   *
-   * Verifies that forum nodes are not created without choosing "forum" from the
-   * select list.
-   */
-  public function testAddOrphanTopic() {
-    // Must remove forum topics to test creating orphan topics.
-    $vid = $this->config('forum.settings')->get('vocabulary');
-    $tids = \Drupal::entityQuery('taxonomy_term')
-      ->accessCheck(FALSE)
-      ->condition('vid', $vid)
-      ->execute();
-    $term_storage = \Drupal::entityTypeManager()->getStorage('taxonomy_term');
-    $terms = $term_storage->loadMultiple($tids);
-    $term_storage->delete($terms);
-
-    // Create an orphan forum item.
-    $edit = [];
-    $edit['title[0][value]'] = $this->randomMachineName(10);
-    $edit['body[0][value]'] = $this->randomMachineName(120);
-    $this->drupalLogin($this->adminUser);
-    $this->drupalGet('node/add/forum');
-    $this->submitForm($edit, 'Save');
-
-    $nid_count = $this->container->get('entity_type.manager')
-      ->getStorage('node')
-      ->getQuery()
-      ->accessCheck(FALSE)
-      ->count()
-      ->execute();
-    $this->assertEquals(0, $nid_count, 'A forum node was not created when missing a forum vocabulary.');
-
-    // Reset the defaults for future tests.
-    \Drupal::service('module_installer')->install(['forum']);
-  }
-
-  /**
-   * Runs admin tests on the admin user.
-   *
-   * @param object $user
-   *   The logged-in user.
-   */
-  private function doAdminTests($user) {
-    // Log in the user.
-    $this->drupalLogin($user);
-
-    // Add forum to the Tools menu.
-    $edit = [];
-    $this->drupalGet('admin/structure/menu/manage/tools');
-    $this->submitForm($edit, 'Save');
-    $this->assertSession()->statusCodeEquals(200);
-
-    // Edit forum taxonomy.
-    // Restoration of the settings fails and causes subsequent tests to fail.
-    $this->editForumVocabulary();
-    // Create forum container.
-    $this->forumContainer = $this->createForum('container');
-    // Verify "edit container" link exists and functions correctly.
-    $this->drupalGet('admin/structure/forum');
-    // Verify help text is shown.
-    $this->assertSession()->pageTextContains('Forums contain forum topics. Use containers to group related forums');
-    // Verify action links are there.
-    $this->assertSession()->linkExists('Add forum');
-    $this->assertSession()->linkExists('Add container');
-    $this->clickLink('edit container');
-    $this->assertSession()->pageTextContains('Edit container');
-    // Create forum inside the forum container.
-    $this->forum = $this->createForum('forum', $this->forumContainer['tid']);
-    // Verify the "edit forum" link exists and functions correctly.
-    $this->drupalGet('admin/structure/forum');
-    $this->clickLink('edit forum');
-    $this->assertSession()->pageTextContains('Edit forum');
-    // Navigate back to forum structure page.
-    $this->drupalGet('admin/structure/forum');
-    // Create second forum in container, destined to be deleted below.
-    $delete_forum = $this->createForum('forum', $this->forumContainer['tid']);
-    // Save forum overview.
-    $this->drupalGet('admin/structure/forum/');
-    $this->submitForm([], 'Save');
-    $this->assertSession()->pageTextContains('The configuration options have been saved.');
-    // Delete this second forum.
-    $this->deleteForum($delete_forum['tid']);
-    // Create forum at the top (root) level.
-    $this->rootForum = $this->createForum('forum');
-
-    // Test vocabulary form alterations.
-    $this->drupalGet('admin/structure/taxonomy/manage/forums');
-    $this->assertSession()->buttonExists('Save');
-    $this->assertSession()->buttonNotExists('Delete');
-
-    // Test term edit form alterations.
-    $this->drupalGet('taxonomy/term/' . $this->forumContainer['tid'] . '/edit');
-    // Test parent field been hidden by forum module.
-    $this->assertSession()->fieldNotExists('parent[]');
-
-    // Create a default vocabulary named "Tags".
-    $description = 'Use tags to group articles on similar topics into categories.';
-    $help = 'Enter a comma-separated list of words to describe your content.';
-    $vocabulary = Vocabulary::create([
-      'name' => 'Tags',
-      'description' => $description,
-      'vid' => 'tags',
-      'langcode' => \Drupal::languageManager()->getDefaultLanguage()->getId(),
-      'help' => $help,
-    ]);
-    $vocabulary->save();
-    // Test tags vocabulary form is not affected.
-    $this->drupalGet('admin/structure/taxonomy/manage/tags');
-    $this->assertSession()->buttonExists('Save');
-    $this->assertSession()->linkExists('Delete');
-    // Test tags vocabulary term form is not affected.
-    $this->drupalGet('admin/structure/taxonomy/manage/tags/add');
-    $this->assertSession()->fieldExists('parent[]');
-    // Test relations widget exists.
-    $this->assertSession()->elementExists('xpath', "//details[@id='edit-relations']");
-  }
-
-  /**
-   * Edits the forum taxonomy.
-   */
-  public function editForumVocabulary() {
-    // Backup forum taxonomy.
-    $vid = $this->config('forum.settings')->get('vocabulary');
-    $original_vocabulary = Vocabulary::load($vid);
-
-    // Generate a random name and description.
-    $edit = [
-      'name' => $this->randomMachineName(10),
-      'description' => $this->randomMachineName(100),
-    ];
-
-    // Edit the vocabulary.
-    $this->drupalGet('admin/structure/taxonomy/manage/' . $original_vocabulary->id());
-    $this->submitForm($edit, 'Save');
-    $this->assertSession()->statusCodeEquals(200);
-    $this->assertSession()->pageTextContains("Updated vocabulary {$edit['name']}.");
-
-    // Grab the newly edited vocabulary.
-    $current_vocabulary = Vocabulary::load($vid);
-
-    // Make sure we actually edited the vocabulary properly.
-    $this->assertEquals($edit['name'], $current_vocabulary->label(), 'The name was updated');
-    $this->assertEquals($edit['description'], $current_vocabulary->getDescription(), 'The description was updated');
-
-    // Restore the original vocabulary's name and description.
-    $current_vocabulary->set('name', $original_vocabulary->label());
-    $current_vocabulary->set('description', $original_vocabulary->getDescription());
-    $current_vocabulary->save();
-    // Reload vocabulary to make sure changes are saved.
-    $current_vocabulary = Vocabulary::load($vid);
-    $this->assertEquals($original_vocabulary->label(), $current_vocabulary->label(), 'The original vocabulary settings were restored');
-  }
-
-  /**
-   * Creates a forum container or a forum.
-   *
-   * @param string $type
-   *   The forum type (forum container or forum).
-   * @param int $parent
-   *   The forum parent. This defaults to 0, indicating a root forum.
-   *
-   * @return \Drupal\Core\Database\StatementInterface
-   *   The created taxonomy term data.
-   */
-  public function createForum($type, $parent = 0) {
-    // Generate a random name/description.
-    $name = $this->randomMachineName(10);
-    $description = $this->randomMachineName(100);
-
-    $edit = [
-      'name[0][value]' => $name,
-      'description[0][value]' => $description,
-      'parent[0]' => $parent,
-      'weight' => '0',
-    ];
-
-    // Create forum.
-    $this->drupalGet('admin/structure/forum/add/' . $type);
-    $this->submitForm($edit, 'Save');
-    $this->assertSession()->statusCodeEquals(200);
-    $type = ($type == 'container') ? 'forum container' : 'forum';
-    $this->assertSession()->pageTextContains('Created new ' . $type . ' ' . $name . '.');
-
-    // Verify that the creation message contains a link to a term.
-    $this->assertSession()->elementExists('xpath', '//div[@data-drupal-messages]//a[contains(@href, "term/")]');
-
-    /** @var \Drupal\taxonomy\TermStorageInterface $taxonomy_term_storage */
-    $taxonomy_term_storage = $this->container->get('entity_type.manager')->getStorage('taxonomy_term');
-    // Verify forum.
-    $term = $taxonomy_term_storage->loadByProperties([
-      'vid' => $this->config('forum.settings')->get('vocabulary'),
-      'name' => $name,
-      'description__value' => $description,
-    ]);
-    $term = array_shift($term);
-    $this->assertNotEmpty($term, "The forum type '$type' should exist in the database.");
-
-    // Verify forum hierarchy.
-    $tid = $term->id();
-    $parent_tid = $taxonomy_term_storage->loadParents($tid);
-    $parent_tid = empty($parent_tid) ? 0 : array_shift($parent_tid)->id();
-    $this->assertSame($parent, $parent_tid, 'The ' . $type . ' is linked to its container');
-
-    $forum = $taxonomy_term_storage->load($tid);
-    $this->assertEquals(($type == 'forum container'), (bool) $forum->forum_container->value);
-    return [
-      'tid' => $tid,
-      'name' => $term->getName(),
-      'vid' => $term->bundle(),
-    ];
-  }
-
-  /**
-   * Deletes a forum.
-   *
-   * @param int $tid
-   *   The forum ID.
-   */
-  public function deleteForum($tid) {
-    // Delete the forum.
-    $this->drupalGet('admin/structure/forum/edit/forum/' . $tid);
-    $this->clickLink('Delete');
-    $this->assertSession()->pageTextContains('Are you sure you want to delete the forum');
-    $this->assertSession()->pageTextNotContains('Add forum');
-    $this->assertSession()->pageTextNotContains('Add forum container');
-    $this->submitForm([], 'Delete');
-
-    // Assert that the forum no longer exists.
-    $this->drupalGet('forum/' . $tid);
-    $this->assertSession()->statusCodeEquals(404);
-  }
-
-  /**
-   * Runs basic tests on the indicated user.
-   *
-   * @param \Drupal\Core\Session\AccountInterface $user
-   *   The logged in user.
-   * @param bool $admin
-   *   User has 'access administration pages' privilege.
-   */
-  private function doBasicTests($user, $admin) {
-    // Log in the user.
-    $this->drupalLogin($user);
-    // Attempt to create forum topic under a container.
-    $this->createForumTopic($this->forumContainer, TRUE);
-    // Create forum node.
-    $node = $this->createForumTopic($this->forum, FALSE);
-    // Verify the user has access to all the forum nodes.
-    $this->verifyForums($node, $admin);
-  }
-
-  /**
-   * Tests a forum with a new post displays properly.
-   */
-  public function testForumWithNewPost() {
-    // Log in as the first user.
-    $this->drupalLogin($this->adminUser);
-    // Create a forum container.
-    $this->forumContainer = $this->createForum('container');
-    // Create a forum.
-    $this->forum = $this->createForum('forum');
-    // Create a topic.
-    $node = $this->createForumTopic($this->forum, FALSE);
-
-    // Log in as a second user.
-    $this->drupalLogin($this->postCommentUser);
-    // Post a reply to the topic.
-    $edit = [];
-    $edit['subject[0][value]'] = $this->randomMachineName();
-    $edit['comment_body[0][value]'] = $this->randomMachineName();
-    $this->drupalGet('node/' . $node->id());
-    $this->submitForm($edit, 'Save');
-    $this->assertSession()->statusCodeEquals(200);
-
-    // Test adding a new comment.
-    $this->clickLink('Add new comment');
-    $this->assertSession()->statusCodeEquals(200);
-    $this->assertSession()->fieldExists('comment_body[0][value]');
-
-    // Log in as the first user.
-    $this->drupalLogin($this->adminUser);
-    // Check that forum renders properly.
-    $this->drupalGet("forum/{$this->forum['tid']}");
-    $this->assertSession()->statusCodeEquals(200);
-
-    // Verify there is no unintentional HTML tag escaping.
-    $this->assertSession()->assertNoEscaped('<');
-  }
-
-  /**
-   * Creates a forum topic.
-   *
-   * @param array $forum
-   *   A forum array.
-   * @param bool $container
-   *   TRUE if $forum is a container; FALSE otherwise.
-   *
-   * @return object|null
-   *   The created topic node or NULL if the forum is a container.
-   */
-  public function createForumTopic($forum, $container = FALSE) {
-    // Generate a random subject/body.
-    $title = $this->randomMachineName(20);
-    $body = $this->randomMachineName(200);
-
-    $edit = [
-      'title[0][value]' => $title,
-      'body[0][value]' => $body,
-    ];
-    $tid = $forum['tid'];
-
-    // Create the forum topic, preselecting the forum ID via a URL parameter.
-    $this->drupalGet('node/add/forum', ['query' => ['forum_id' => $tid]]);
-    $this->submitForm($edit, 'Save');
-
-    if ($container) {
-      $this->assertSession()->pageTextNotContains("Forum topic $title has been created.");
-      $this->assertSession()->pageTextContains("The item {$forum['name']} is a forum container, not a forum.");
-      return;
-    }
-    else {
-      $this->assertSession()->pageTextContains("Forum topic $title has been created.");
-      $this->assertSession()->pageTextNotContains("The item {$forum['name']} is a forum container, not a forum.");
-
-      // Verify that the creation message contains a link to a node.
-      $this->assertSession()->elementExists('xpath', '//div[@data-drupal-messages]//a[contains(@href, "node/")]');
-    }
-
-    // Retrieve node object, ensure that the topic was created and in the proper forum.
-    $node = $this->drupalGetNodeByTitle($title);
-    $this->assertNotNull($node, "Node $title was loaded");
-    $this->assertEquals($tid, $node->taxonomy_forums->target_id, 'Saved forum topic was in the expected forum');
-
-    // View forum topic.
-    $this->drupalGet('node/' . $node->id());
-    $this->assertSession()->pageTextContains($title);
-    $this->assertSession()->pageTextContains($body);
-
-    return $node;
-  }
-
-  /**
-   * Verifies that the logged in user has access to a forum node.
-   *
-   * @param \Drupal\Core\Entity\EntityInterface $node
-   *   The node being checked.
-   * @param bool $admin
-   *   Boolean to indicate whether the user can 'access administration pages'.
-   * @param int $response
-   *   The expected HTTP response code.
-   */
-  private function verifyForums(EntityInterface $node, $admin, $response = 200) {
-    $response2 = ($admin) ? 200 : 403;
-
-    // View forum help node.
-    $this->drupalGet('admin/help/forum');
-    $this->assertSession()->statusCodeEquals($response2);
-    if ($response2 == 200) {
-      $this->assertSession()->titleEquals('Forum | Drupal');
-      $this->assertSession()->pageTextContains('Forum');
-    }
-
-    // View forum container page.
-    $this->verifyForumView($this->forumContainer);
-    // View forum page.
-    $this->verifyForumView($this->forum, $this->forumContainer);
-    // View root forum page.
-    $this->verifyForumView($this->rootForum);
-
-    // View forum node.
-    $this->drupalGet('node/' . $node->id());
-    $this->assertSession()->statusCodeEquals(200);
-    $this->assertSession()->titleEquals($node->label() . ' | Drupal');
-    $breadcrumb_build = [
-      Link::createFromRoute('Home', '<front>'),
-      Link::createFromRoute('Forums', 'forum.index'),
-      Link::createFromRoute($this->forumContainer['name'], 'forum.page', ['taxonomy_term' => $this->forumContainer['tid']]),
-      Link::createFromRoute($this->forum['name'], 'forum.page', ['taxonomy_term' => $this->forum['tid']]),
-    ];
-    $breadcrumb = [
-      '#theme' => 'breadcrumb',
-      '#links' => $breadcrumb_build,
-    ];
-    $this->assertSession()->responseContains(\Drupal::service('renderer')->renderRoot($breadcrumb));
-
-    // View forum edit node.
-    $this->drupalGet('node/' . $node->id() . '/edit');
-    $this->assertSession()->statusCodeEquals($response);
-    if ($response == 200) {
-      $this->assertSession()->titleEquals('Edit Forum topic ' . $node->label() . ' | Drupal');
-    }
-
-    if ($response == 200) {
-      // Edit forum node (including moving it to another forum).
-      $edit = [];
-      $edit['title[0][value]'] = 'node/' . $node->id();
-      $edit['body[0][value]'] = $this->randomMachineName(256);
-      // Assume the topic is initially associated with $forum.
-      $edit['taxonomy_forums'] = $this->rootForum['tid'];
-      $edit['shadow'] = TRUE;
-      $this->drupalGet('node/' . $node->id() . '/edit');
-      $this->submitForm($edit, 'Save');
-      $this->assertSession()->pageTextContains('Forum topic ' . $edit['title[0][value]'] . ' has been updated.');
-
-      // Verify topic was moved to a different forum.
-      $forum_tid = $this->container
-        ->get('database')
-        ->select('forum', 'f')
-        ->fields('f', ['tid'])
-        ->condition('nid', $node->id())
-        ->condition('vid', $node->getRevisionId())
-        ->execute()
-        ->fetchField();
-      $this->assertSame($this->rootForum['tid'], $forum_tid, 'The forum topic is linked to a different forum');
-
-      // Delete forum node.
-      $this->drupalGet('node/' . $node->id() . '/delete');
-      $this->submitForm([], 'Delete');
-      $this->assertSession()->statusCodeEquals($response);
-      $this->assertSession()->pageTextContains("Forum topic {$edit['title[0][value]']} has been deleted.");
-    }
-  }
-
-  /**
-   * Verifies the display of a forum page.
-   *
-   * @param array $forum
-   *   A row from the taxonomy_term_data table in an array.
-   * @param array $parent
-   *   (optional) An array representing the forum's parent.
-   */
-  private function verifyForumView($forum, $parent = NULL) {
-    // View forum page.
-    $this->drupalGet('forum/' . $forum['tid']);
-    $this->assertSession()->statusCodeEquals(200);
-    $this->assertSession()->titleEquals($forum['name'] . ' | Drupal');
-
-    $breadcrumb_build = [
-      Link::createFromRoute('Home', '<front>'),
-      Link::createFromRoute('Forums', 'forum.index'),
-    ];
-    if (isset($parent)) {
-      $breadcrumb_build[] = Link::createFromRoute($parent['name'], 'forum.page', ['taxonomy_term' => $parent['tid']]);
-    }
-
-    $breadcrumb = [
-      '#theme' => 'breadcrumb',
-      '#links' => $breadcrumb_build,
-    ];
-    $this->assertSession()->responseContains(\Drupal::service('renderer')->renderRoot($breadcrumb));
-  }
-
-  /**
-   * Generates forum topics.
-   */
-  private function generateForumTopics() {
-    $this->nids = [];
-    for ($i = 0; $i < 5; $i++) {
-      $node = $this->createForumTopic($this->forum, FALSE);
-      $this->nids[] = $node->id();
-    }
-  }
-
-  /**
-   * Evaluate whether "Add new Forum topic" button is present or not.
-   */
-  public function testForumTopicButton() {
-    $this->drupalLogin($this->adminUser);
-
-    // Validate that link doesn't exist on the forum container page.
-    $forum_container = $this->createForum('container');
-    $this->drupalGet('forum/' . $forum_container['tid']);
-    $this->assertSession()->linkNotExists('Add new Forum topic');
-
-    // Validate that link exists on forum page.
-    $forum = $this->createForum('forum');
-    $this->drupalGet('forum/' . $forum['tid']);
-    $this->assertSession()->linkExists('Add new Forum topic');
-  }
-
-}
diff --git a/core/modules/forum/tests/src/Functional/ForumUninstallTest.php b/core/modules/forum/tests/src/Functional/ForumUninstallTest.php
deleted file mode 100644
index 23b708e04a1e..000000000000
--- a/core/modules/forum/tests/src/Functional/ForumUninstallTest.php
+++ /dev/null
@@ -1,195 +0,0 @@
-<?php
-
-declare(strict_types=1);
-
-namespace Drupal\Tests\forum\Functional;
-
-use Drupal\comment\CommentInterface;
-use Drupal\field\Entity\FieldStorageConfig;
-use Drupal\node\Entity\NodeType;
-use Drupal\comment\Entity\Comment;
-use Drupal\taxonomy\Entity\Term;
-use Drupal\taxonomy\Entity\Vocabulary;
-use Drupal\Tests\BrowserTestBase;
-
-/**
- * Tests forum module uninstallation.
- *
- * @group forum
- * @group legacy
- * @group #slow
- */
-class ForumUninstallTest extends BrowserTestBase {
-
-  /**
-   * Modules to enable.
-   *
-   * @var array
-   */
-  protected static $modules = ['forum'];
-
-  /**
-   * {@inheritdoc}
-   *
-   * @todo Remove and fix test to not rely on super user.
-   * @see https://www.drupal.org/project/drupal/issues/3437620
-   */
-  protected bool $usesSuperUserAccessPolicy = TRUE;
-
-  /**
-   * {@inheritdoc}
-   */
-  protected $defaultTheme = 'stark';
-
-  /**
-   * Tests if forum module uninstallation properly deletes the field.
-   */
-  public function testForumUninstallWithField() {
-    $this->drupalLogin($this->drupalCreateUser([
-      'administer taxonomy',
-      'administer nodes',
-      'administer modules',
-      'delete any forum content',
-      'administer content types',
-    ]));
-    // Ensure that the field exists before uninstallation.
-    $field_storage = FieldStorageConfig::loadByName('node', 'taxonomy_forums');
-    $this->assertNotNull($field_storage, 'The taxonomy_forums field storage exists.');
-
-    // Create a taxonomy term.
-    $term = Term::create([
-      'name' => 'A term',
-      'langcode' => \Drupal::languageManager()->getDefaultLanguage()->getId(),
-      'description' => '',
-      'parent' => [0],
-      'vid' => 'forums',
-      'forum_container' => 0,
-    ]);
-    $term->save();
-
-    // Create a forum node.
-    $node = $this->drupalCreateNode([
-      'title' => 'A forum post',
-      'type' => 'forum',
-      'taxonomy_forums' => [['target_id' => $term->id()]],
-    ]);
-
-    // Create at least one comment against the forum node.
-    $comment = Comment::create([
-      'entity_id' => $node->nid->value,
-      'entity_type' => 'node',
-      'field_name' => 'comment_forum',
-      'pid' => 0,
-      'uid' => 0,
-      'status' => CommentInterface::PUBLISHED,
-      'subject' => $this->randomMachineName(),
-      'hostname' => '127.0.0.1',
-    ]);
-    $comment->save();
-
-    // Attempt to uninstall forum.
-    $this->drupalGet('admin/modules/uninstall');
-    // Assert forum is required.
-    $this->assertSession()->fieldDisabled('uninstall[forum]');
-    $this->assertSession()->pageTextContains('To uninstall Forum, first delete all Forum content');
-
-    // Delete the node.
-    $this->drupalGet('node/' . $node->id() . '/delete');
-    $this->submitForm([], 'Delete');
-
-    // Attempt to uninstall forum.
-    $this->drupalGet('admin/modules/uninstall');
-    // Assert forum is still required.
-    $this->assertSession()->fieldDisabled('uninstall[forum]');
-    $this->assertSession()->pageTextContains('To uninstall Forum, first delete all Forums terms');
-
-    // Delete any forum terms.
-    $vid = $this->config('forum.settings')->get('vocabulary');
-    $storage = \Drupal::entityTypeManager()->getStorage('taxonomy_term');
-    $terms = $storage->loadByProperties(['vid' => $vid]);
-    $storage->delete($terms);
-
-    // Ensure that the forum node type can not be deleted.
-    $this->drupalGet('admin/structure/types/manage/forum');
-    $this->assertSession()->linkNotExists('Delete');
-
-    // Now attempt to uninstall forum.
-    $this->drupalGet('admin/modules/uninstall');
-    // Assert forum is no longer required.
-    $this->assertSession()->fieldExists('uninstall[forum]');
-    $this->drupalGet('admin/modules/uninstall');
-    $this->submitForm(['uninstall[forum]' => 1], 'Uninstall');
-    $this->submitForm([], 'Uninstall');
-
-    // Check that the field is now deleted.
-    $field_storage = FieldStorageConfig::loadByName('node', 'taxonomy_forums');
-    $this->assertNull($field_storage, 'The taxonomy_forums field storage has been deleted.');
-
-    // Check that a node type with a machine name of forum can be created after
-    // uninstalling the forum module and the node type is not locked.
-    $edit = [
-      'name' => 'Forum',
-      'title_label' => 'title for forum',
-      'type' => 'forum',
-    ];
-    $this->drupalGet('admin/structure/types/add');
-    $this->submitForm($edit, 'Save');
-    $this->assertTrue((bool) NodeType::load('forum'), 'Node type with machine forum created.');
-    $this->drupalGet('admin/structure/types/manage/forum');
-    $this->clickLink('Delete');
-    $this->submitForm([], 'Delete');
-    $this->assertSession()->statusCodeEquals(200);
-    $this->assertFalse((bool) NodeType::load('forum'), 'Node type with machine forum deleted.');
-
-    // Double check everything by reinstalling the forum module again.
-    $this->drupalGet('admin/modules');
-    $this->submitForm(['modules[forum][enable]' => 1], 'Install');
-    $this->submitForm([], 'Continue');
-    $this->assertSession()->pageTextContains('Module Forum has been installed.');
-  }
-
-  /**
-   * Tests uninstallation if the field storage has been deleted beforehand.
-   */
-  public function testForumUninstallWithoutFieldStorage() {
-    // Manually delete the taxonomy_forums field before module uninstallation.
-    $field_storage = FieldStorageConfig::loadByName('node', 'taxonomy_forums');
-    $this->assertNotNull($field_storage, 'The taxonomy_forums field storage exists.');
-    $field_storage->delete();
-
-    // Check that the field is now deleted.
-    $field_storage = FieldStorageConfig::loadByName('node', 'taxonomy_forums');
-    $this->assertNull($field_storage, 'The taxonomy_forums field storage has been deleted.');
-
-    // Delete all terms in the Forums vocabulary. Uninstalling the forum module
-    // will fail unless this is done.
-    $terms = \Drupal::entityTypeManager()->getStorage('taxonomy_term')->loadByProperties(['vid' => 'forums']);
-    foreach ($terms as $term) {
-      $term->delete();
-    }
-
-    // Ensure that uninstallation succeeds even if the field has already been
-    // deleted manually beforehand.
-    $this->container->get('module_installer')->uninstall(['forum']);
-  }
-
-  /**
-   * Tests uninstallation of forum module when vocabulary is deleted.
-   */
-  public function testForumUninstallWithoutForumVocabulary() {
-    $this->drupalLogin($this->rootUser);
-    Vocabulary::load('forums')->delete();
-
-    // Now attempt to uninstall forum.
-    $this->drupalGet('admin/modules/uninstall');
-    $this->assertSession()->responseNotContains('The website encountered an unexpected error. Try again later');
-    $this->assertSession()->statusCodeEquals(200);
-
-    // Assert forum is no longer required.
-    $this->assertSession()->fieldExists('uninstall[forum]');
-
-    $this->drupalGet('admin/modules/uninstall');
-    $this->submitForm(['uninstall[forum]' => 1], 'Uninstall');
-  }
-
-}
diff --git a/core/modules/forum/tests/src/Functional/GenericTest.php b/core/modules/forum/tests/src/Functional/GenericTest.php
deleted file mode 100644
index 2f6551350f87..000000000000
--- a/core/modules/forum/tests/src/Functional/GenericTest.php
+++ /dev/null
@@ -1,26 +0,0 @@
-<?php
-
-declare(strict_types=1);
-
-namespace Drupal\Tests\forum\Functional;
-
-use Drupal\Tests\system\Functional\Module\GenericModuleTestBase;
-
-/**
- * Generic module test for forum.
- *
- * @group forum
- * @group legacy
- */
-class GenericTest extends GenericModuleTestBase {
-
-  /**
-   * {@inheritdoc}
-   */
-  protected function preUninstallSteps(): void {
-    $storage = \Drupal::entityTypeManager()->getStorage('taxonomy_term');
-    $terms = $storage->loadMultiple();
-    $storage->delete($terms);
-  }
-
-}
diff --git a/core/modules/forum/tests/src/Functional/Module/DependencyTest.php b/core/modules/forum/tests/src/Functional/Module/DependencyTest.php
deleted file mode 100644
index 90fea31222ca..000000000000
--- a/core/modules/forum/tests/src/Functional/Module/DependencyTest.php
+++ /dev/null
@@ -1,62 +0,0 @@
-<?php
-
-declare(strict_types=1);
-
-namespace Drupal\Tests\forum\Functional\Module;
-
-use Drupal\Tests\system\Functional\Module\ModuleTestBase;
-
-/**
- * Enable module without dependency enabled.
- *
- * @group form
- * @group legacy
- */
-class DependencyTest extends ModuleTestBase {
-
-  /**
-   * {@inheritdoc}
-   */
-  protected $defaultTheme = 'stark';
-
-  /**
-   * Tests attempting to uninstall a module that has installed dependents.
-   */
-  public function testUninstallDependents() {
-    // Enable the forum module.
-    $edit = ['modules[forum][enable]' => 'forum'];
-    $this->drupalGet('admin/modules');
-    $this->submitForm($edit, 'Install');
-    $this->submitForm([], 'Continue');
-    $this->assertModules(['forum'], TRUE);
-
-    // Check that the comment module cannot be uninstalled.
-    $this->drupalGet('admin/modules/uninstall');
-    $this->assertSession()->fieldDisabled('uninstall[comment]');
-
-    // Delete any forum terms.
-    $vid = $this->config('forum.settings')->get('vocabulary');
-    // Ensure taxonomy has been loaded into the test-runner after forum was
-    // enabled.
-    \Drupal::moduleHandler()->load('taxonomy');
-    $storage = \Drupal::entityTypeManager()->getStorage('taxonomy_term');
-    $terms = $storage->loadByProperties(['vid' => $vid]);
-    $storage->delete($terms);
-
-    // Uninstall the forum module, and check that taxonomy now can also be
-    // uninstalled.
-    $edit = ['uninstall[forum]' => 'forum'];
-    $this->drupalGet('admin/modules/uninstall');
-    $this->submitForm($edit, 'Uninstall');
-    $this->submitForm([], 'Uninstall');
-    $this->assertSession()->pageTextContains('The selected modules have been uninstalled.');
-
-    // Uninstall comment module.
-    $edit = ['uninstall[comment]' => 'comment'];
-    $this->drupalGet('admin/modules/uninstall');
-    $this->submitForm($edit, 'Uninstall');
-    $this->submitForm([], 'Uninstall');
-    $this->assertSession()->pageTextContains('The selected modules have been uninstalled.');
-  }
-
-}
diff --git a/core/modules/forum/tests/src/Functional/NodeAccessPagerTest.php b/core/modules/forum/tests/src/Functional/NodeAccessPagerTest.php
deleted file mode 100644
index 958d0393f687..000000000000
--- a/core/modules/forum/tests/src/Functional/NodeAccessPagerTest.php
+++ /dev/null
@@ -1,79 +0,0 @@
-<?php
-
-declare(strict_types=1);
-
-namespace Drupal\Tests\forum\Functional;
-
-use Drupal\Tests\BrowserTestBase;
-
-/**
- * Tests access controlled node views have the right amount of comment pages.
- *
- * @group form
- * @group legacy
- */
-class NodeAccessPagerTest extends BrowserTestBase {
-
-  /**
-   * Modules to enable.
-   *
-   * @var array
-   */
-  protected static $modules = ['node_access_test', 'forum'];
-
-  /**
-   * A user account to use for the test.
-   *
-   * @var \Drupal\user\Entity\User
-   */
-  protected $webUser;
-
-  /**
-   * {@inheritdoc}
-   */
-  protected $defaultTheme = 'stark';
-
-  protected function setUp(): void {
-    parent::setUp();
-
-    node_access_rebuild();
-    $this->drupalCreateContentType(['type' => 'page', 'name' => 'Basic page']);
-    $this->webUser = $this->drupalCreateUser([
-      'access content',
-      'node test view',
-    ]);
-  }
-
-  /**
-   * Tests the forum node pager for nodes with multiple grants per realm.
-   */
-  public function testForumPager() {
-    // Look up the forums vocabulary ID.
-    $vid = $this->config('forum.settings')->get('vocabulary');
-    $this->assertNotEmpty($vid, 'Forum navigation vocabulary ID is set.');
-
-    // Look up the general discussion term.
-    $tree = \Drupal::entityTypeManager()->getStorage('taxonomy_term')->loadTree($vid, 0, 1);
-    $tid = reset($tree)->tid;
-    $this->assertNotEmpty($tid, 'General discussion term is found in the forum vocabulary.');
-
-    // Create 30 nodes.
-    for ($i = 0; $i < 30; $i++) {
-      $this->drupalCreateNode([
-        'nid' => NULL,
-        'type' => 'forum',
-        'taxonomy_forums' => [
-          ['target_id' => $tid],
-        ],
-      ]);
-    }
-
-    // View the general discussion forum page. With the default 25 nodes per
-    // page there should be two pages for 30 nodes, no more.
-    $this->drupalLogin($this->webUser);
-    $this->drupalGet('forum/' . $tid);
-    $this->assertSession()->responseContains('page=1');
-    $this->assertSession()->responseNotContains('page=2');
-  }
-
-}
diff --git a/core/modules/forum/tests/src/Functional/UrlAlterFunctionalTest.php b/core/modules/forum/tests/src/Functional/UrlAlterFunctionalTest.php
deleted file mode 100644
index 687c8b14d0ad..000000000000
--- a/core/modules/forum/tests/src/Functional/UrlAlterFunctionalTest.php
+++ /dev/null
@@ -1,87 +0,0 @@
-<?php
-
-declare(strict_types=1);
-
-namespace Drupal\Tests\forum\Functional;
-
-use Drupal\Core\Database\Database;
-use Drupal\Tests\BrowserTestBase;
-use Drupal\taxonomy\Entity\Term;
-
-/**
- * Tests altering the inbound path and the outbound path.
- *
- * @group form
- * @group legacy
- */
-class UrlAlterFunctionalTest extends BrowserTestBase {
-
-  /**
-   * Modules to enable.
-   *
-   * @var array
-   */
-  protected static $modules = ['path', 'forum', 'forum_url_alter_test'];
-
-  /**
-   * {@inheritdoc}
-   */
-  protected $defaultTheme = 'stark';
-
-  /**
-   * Tests that URL altering works and that it occurs in the correct order.
-   */
-  public function testUrlAlter() {
-    // Ensure that the path_alias table exists after Drupal installation.
-    $this->assertTrue(Database::getConnection()->schema()->tableExists('path_alias'), 'The path_alias table exists after Drupal installation.');
-
-    // Test that 'forum' is altered to 'community' correctly, both at the root
-    // level and for a specific existing forum.
-    $this->drupalGet('community');
-    $this->assertSession()->pageTextContains('General discussion');
-    $this->assertUrlOutboundAlter('/forum', '/community');
-    $forum_vid = $this->config('forum.settings')->get('vocabulary');
-    $term_name = $this->randomMachineName();
-    $term = Term::create([
-      'name' => $term_name,
-      'vid' => $forum_vid,
-    ]);
-    $term->save();
-    $this->drupalGet("community/" . $term->id());
-    $this->assertSession()->pageTextContains($term_name);
-    $this->assertUrlOutboundAlter("/forum/" . $term->id(), "/community/" . $term->id());
-  }
-
-  /**
-   * Assert that an outbound path is altered to an expected value.
-   *
-   * @param string $original
-   *   A string with the original path that is run through generateFrommPath().
-   * @param string $final
-   *   A string with the expected result after generateFrommPath().
-   *
-   * @internal
-   */
-  protected function assertUrlOutboundAlter(string $original, string $final): void {
-    // Test outbound altering.
-    $result = $this->container->get('path_processor_manager')->processOutbound($original);
-    $this->assertSame($final, $result, "Altered outbound URL $original, expected $final, and got $result.");
-  }
-
-  /**
-   * Assert that an inbound path is altered to an expected value.
-   *
-   * @param string $original
-   *   The original path before it has been altered by inbound URL processing.
-   * @param string $final
-   *   A string with the expected result.
-   *
-   * @internal
-   */
-  protected function assertUrlInboundAlter(string $original, string $final): void {
-    // Test inbound altering.
-    $result = $this->container->get('path_alias.manager')->getPathByAlias($original);
-    $this->assertSame($final, $result, "Altered inbound URL $original, expected $final, and got $result.");
-  }
-
-}
diff --git a/core/modules/forum/tests/src/Functional/Views/ForumIntegrationTest.php b/core/modules/forum/tests/src/Functional/Views/ForumIntegrationTest.php
deleted file mode 100644
index 0119282090c5..000000000000
--- a/core/modules/forum/tests/src/Functional/Views/ForumIntegrationTest.php
+++ /dev/null
@@ -1,102 +0,0 @@
-<?php
-
-declare(strict_types=1);
-
-namespace Drupal\Tests\forum\Functional\Views;
-
-use Drupal\node\NodeInterface;
-use Drupal\views\Views;
-use Drupal\Tests\views\Functional\ViewTestBase;
-
-/**
- * Tests the forum integration into views.
- *
- * @group forum
- * @group legacy
- */
-class ForumIntegrationTest extends ViewTestBase {
-
-  /**
-   * Modules to enable.
-   *
-   * @var array
-   */
-  protected static $modules = ['forum_test_views'];
-
-  /**
-   * {@inheritdoc}
-   */
-  protected $defaultTheme = 'stark';
-
-  /**
-   * Views used by this test.
-   *
-   * @var array
-   */
-  public static $testViews = ['test_forum_index'];
-
-  /**
-   * {@inheritdoc}
-   */
-  protected function setUp($import_test_views = TRUE, $modules = ['forum_test_views']): void {
-    parent::setUp($import_test_views, $modules);
-  }
-
-  /**
-   * Tests the integration.
-   */
-  public function testForumIntegration() {
-    // Create a forum.
-    $entity_type_manager = $this->container->get('entity_type.manager');
-    $term = $entity_type_manager->getStorage('taxonomy_term')->create(['vid' => 'forums', 'name' => $this->randomMachineName()]);
-    $term->save();
-
-    $comment_storage = $entity_type_manager->getStorage('comment');
-
-    // Create some nodes which are part of this forum with some comments.
-    $nodes = [];
-    for ($i = 0; $i < 3; $i++) {
-      $node = $this->drupalCreateNode(['type' => 'forum', 'taxonomy_forums' => [$term->id()], 'sticky' => $i == 0 ? NodeInterface::STICKY : NodeInterface::NOT_STICKY]);
-      $nodes[] = $node;
-    }
-
-    $account = $this->drupalCreateUser(['skip comment approval']);
-    $this->drupalLogin($account);
-
-    $comments = [];
-    foreach ($nodes as $index => $node) {
-      for ($i = 0; $i <= $index; $i++) {
-        $comment = $comment_storage->create(['entity_type' => 'node', 'entity_id' => $node->id(), 'field_name' => 'comment_forum']);
-        $comment->save();
-        $comments[$comment->get('entity_id')->target_id][$comment->id()] = $comment;
-      }
-    }
-
-    $view = Views::getView('test_forum_index');
-    $this->executeView($view);
-
-    $expected_result = [];
-    $expected_result[] = [
-      'nid' => $nodes[0]->id(),
-      'sticky' => NodeInterface::STICKY,
-      'comment_count' => 1.,
-    ];
-    $expected_result[] = [
-      'nid' => $nodes[1]->id(),
-      'sticky' => NodeInterface::NOT_STICKY,
-      'comment_count' => 2.,
-    ];
-    $expected_result[] = [
-      'nid' => $nodes[2]->id(),
-      'sticky' => NodeInterface::NOT_STICKY,
-      'comment_count' => 3.,
-    ];
-    $column_map = [
-      'nid' => 'nid',
-      'forum_index_sticky' => 'sticky',
-      'forum_index_comment_count' => 'comment_count',
-    ];
-    $this->assertIdenticalResultset($view, $expected_result, $column_map);
-  }
-
-}
diff --git a/core/modules/forum/tests/src/Functional/migrate_drupal/d6/NoMultilingualReviewPageTest.php b/core/modules/forum/tests/src/Functional/migrate_drupal/d6/NoMultilingualReviewPageTest.php
deleted file mode 100644
index 6b86a7a9a682..000000000000
--- a/core/modules/forum/tests/src/Functional/migrate_drupal/d6/NoMultilingualReviewPageTest.php
+++ /dev/null
@@ -1,77 +0,0 @@
-<?php
-
-declare(strict_types=1);
-
-namespace Drupal\Tests\forum\Functional\migrate_drupal\d6;
-
-use Drupal\Tests\migrate_drupal_ui\Functional\NoMultilingualReviewPageTestBase;
-
-/**
- * Tests migrate upgrade review page.
- *
- * @group forum
- * @group legacy
- */
-class NoMultilingualReviewPageTest extends NoMultilingualReviewPageTestBase {
-
-  /**
-   * {@inheritdoc}
-   */
-  protected static $modules = [
-    'forum',
-  ];
-
-  /**
-   * {@inheritdoc}
-   */
-  protected function setUp(): void {
-    parent::setUp();
-    $this->loadFixture($this->getModulePath('forum') . '/tests/fixtures/drupal6.php');
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  protected function getSourceBasePath() {
-    return __DIR__;
-  }
-
-  /**
-   * Tests that Forum is displayed in the will be upgraded list.
-   */
-  public function testMigrateUpgradeReviewPage() {
-    $this->prepare();
-    // Start the upgrade process.
-    $this->submitCredentialForm();
-
-    $session = $this->assertSession();
-    $this->submitForm([], 'I acknowledge I may lose data. Continue anyway.');
-    $session->statusCodeEquals(200);
-
-    // Confirm that Forum will be upgraded.
-    $session->elementExists('xpath', "//td[contains(@class, 'checked') and text() = 'Forum']");
-    $session->elementNotExists('xpath', "//td[contains(@class, 'error') and text() = 'Forum']");
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  protected function getAvailablePaths() {
-    return [];
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  protected function getIncompletePaths() {
-    return [];
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  protected function getMissingPaths() {
-    return [];
-  }
-
-}
diff --git a/core/modules/forum/tests/src/Functional/migrate_drupal/d6/Upgrade6Test.php b/core/modules/forum/tests/src/Functional/migrate_drupal/d6/Upgrade6Test.php
deleted file mode 100644
index 8a8a8fc01400..000000000000
--- a/core/modules/forum/tests/src/Functional/migrate_drupal/d6/Upgrade6Test.php
+++ /dev/null
@@ -1,155 +0,0 @@
-<?php
-
-declare(strict_types=1);
-
-namespace Drupal\Tests\forum\Functional\migrate_drupal\d6;
-
-use Drupal\Tests\migrate_drupal_ui\Functional\MigrateUpgradeExecuteTestBase;
-
-/**
- * Tests Drupal 6 upgrade using the migrate UI.
- *
- * The test method is provided by the MigrateUpgradeTestBase class.
- *
- * @group forum
- * @group #slow
- * @group legacy
- */
-class Upgrade6Test extends MigrateUpgradeExecuteTestBase {
-
-  /**
-   * {@inheritdoc}
-   */
-  protected static $modules = [
-    'forum',
-    'migrate_drupal_ui',
-  ];
-
-  /**
-   * The entity storage for node.
-   *
-   * @var \Drupal\Core\Entity\EntityStorageInterface
-   */
-  protected $nodeStorage;
-
-  /**
-   * {@inheritdoc}
-   */
-  protected function setUp(): void {
-    parent::setUp();
-    $this->loadFixture($this->getModulePath('forum') . '/tests/fixtures/drupal6.php');
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  protected function getSourceBasePath() {
-    return __DIR__ . '/files';
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  protected function getEntityCounts() {
-    return [
-      'action' => 24,
-      'base_field_override' => 22,
-      'block' => 33,
-      'block_content' => 1,
-      'block_content_type' => 1,
-      'comment' => 4,
-      'comment_type' => 8,
-      'contact_form' => 2,
-      'contact_message' => 0,
-      'date_format' => 12,
-      'editor' => 2,
-      'entity_form_display' => 18,
-      'entity_form_mode' => 1,
-      'entity_view_display' => 34,
-      'entity_view_mode' => 11,
-      'field_config' => 41,
-      'field_storage_config' => 25,
-      'file' => 1,
-      'filter_format' => 7,
-      'image_style' => 6,
-      'menu' => 8,
-      'menu_link_content' => 1,
-      'node' => 3,
-      'node_type' => 7,
-      'path_alias' => 4,
-      'search_page' => 3,
-      'shortcut' => 2,
-      'shortcut_set' => 1,
-      'taxonomy_term' => 7,
-      'taxonomy_vocabulary' => 4,
-      'user' => 3,
-      'user_role' => 4,
-      'view' => 14,
-    ];
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  protected function getEntityCountsIncremental() {
-    return [];
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  protected function getAvailablePaths() {
-    return [
-      'Block',
-      'Comment',
-      'Content',
-      'Date',
-      'Date API',
-      'Date Timezone',
-      'Email',
-      'Event',
-      'FileField',
-      'Filter',
-      'Forum',
-      'ImageAPI',
-      'ImageCache',
-      'ImageField',
-      'Menu',
-      'Node',
-      'Path',
-      'Search',
-      'System',
-      'Taxonomy',
-      'Text',
-      'Upload',
-      'User',
-      'Variable admin',
-    ];
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  protected function getMissingPaths() {
-    return [];
-  }
-
-  /**
-   * Executes all steps of migrations upgrade.
-   */
-  public function testUpgrade() {
-    // Start the upgrade process.
-    $this->submitCredentialForm();
-    $session = $this->assertSession();
-
-    $this->submitForm([], 'I acknowledge I may lose data. Continue anyway.');
-    $session->statusCodeEquals(200);
-
-    // Test the review form.
-    $this->assertReviewForm();
-
-    $this->submitForm([], 'Perform upgrade');
-    $this->assertUpgrade($this->getEntityCounts());
-  }
-
-}
diff --git a/core/modules/forum/tests/src/Functional/migrate_drupal/d6/files/test.txt b/core/modules/forum/tests/src/Functional/migrate_drupal/d6/files/test.txt
deleted file mode 100644
index 573541ac9702..000000000000
--- a/core/modules/forum/tests/src/Functional/migrate_drupal/d6/files/test.txt
+++ /dev/null
@@ -1 +0,0 @@
-0
diff --git a/core/modules/forum/tests/src/Functional/migrate_drupal/d7/NoMultilingualReviewPageTest.php b/core/modules/forum/tests/src/Functional/migrate_drupal/d7/NoMultilingualReviewPageTest.php
deleted file mode 100644
index 15d2e38ceef8..000000000000
--- a/core/modules/forum/tests/src/Functional/migrate_drupal/d7/NoMultilingualReviewPageTest.php
+++ /dev/null
@@ -1,79 +0,0 @@
-<?php
-
-declare(strict_types=1);
-
-namespace Drupal\Tests\forum\Functional\migrate_drupal\d7;
-
-use Drupal\Tests\migrate_drupal_ui\Functional\NoMultilingualReviewPageTestBase;
-
-/**
- * Tests Drupal 7 upgrade without translations.
- *
- * The test method is provided by the MigrateUpgradeTestBase class.
- *
- * @group forum
- * @group legacy
- */
-class NoMultilingualReviewPageTest extends NoMultilingualReviewPageTestBase {
-
-  /**
-   * {@inheritdoc}
-   */
-  protected static $modules = [
-    'forum',
-  ];
-
-  /**
-   * {@inheritdoc}
-   */
-  protected function setUp(): void {
-    parent::setUp();
-    $this->loadFixture($this->getModulePath('forum') . '/tests/fixtures/drupal7.php');
-  }
-
-  /**
-   * Tests that Forum is displayed in the will be upgraded list.
-   */
-  public function testMigrateUpgradeReviewPage() {
-    $this->prepare();
-    // Start the upgrade process.
-    $this->submitCredentialForm();
-
-    $session = $this->assertSession();
-    $this->submitForm([], 'I acknowledge I may lose data. Continue anyway.');
-    $session->statusCodeEquals(200);
-
-    // Confirm that Forum will be upgraded.
-    $session->elementExists('xpath', "//td[contains(@class, 'checked') and text() = 'Forum']");
-    $session->elementNotExists('xpath', "//td[contains(@class, 'error') and text() = 'Forum']");
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  protected function getSourceBasePath() {
-    return __DIR__ . '/files';
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  protected function getAvailablePaths() {
-    return [];
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  protected function getIncompletePaths() {
-    return [];
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  protected function getMissingPaths() {
-    return [];
-  }
-
-}
diff --git a/core/modules/forum/tests/src/Functional/migrate_drupal/d7/Upgrade7Test.php b/core/modules/forum/tests/src/Functional/migrate_drupal/d7/Upgrade7Test.php
deleted file mode 100644
index 09c360464055..000000000000
--- a/core/modules/forum/tests/src/Functional/migrate_drupal/d7/Upgrade7Test.php
+++ /dev/null
@@ -1,172 +0,0 @@
-<?php
-
-declare(strict_types=1);
-
-namespace Drupal\Tests\forum\Functional\migrate_drupal\d7;
-
-use Drupal\Tests\migrate_drupal_ui\Functional\MigrateUpgradeExecuteTestBase;
-
-/**
- * Tests Drupal 7 upgrade using the migrate UI.
- *
- * The test method is provided by the MigrateUpgradeTestBase class.
- *
- * @group forum
- * @group #slow
- * @group legacy
- */
-class Upgrade7Test extends MigrateUpgradeExecuteTestBase {
-
-  /**
-   * {@inheritdoc}
-   */
-  protected static $modules = [
-    'forum',
-    'migrate_drupal_ui',
-  ];
-
-  /**
-   * The entity storage for node.
-   *
-   * @var \Drupal\Core\Entity\EntityStorageInterface
-   */
-  protected $nodeStorage;
-
-  /**
-   * {@inheritdoc}
-   */
-  protected function setUp(): void {
-    parent::setUp();
-
-    // @todo remove in https://www.drupal.org/project/drupal/issues/3267040
-    // Delete the existing content made to test the ID Conflict form. Migrations
-    // are to be done on a site without content. The test of the ID Conflict
-    // form is being moved to its own issue which will remove the deletion
-    // of the created nodes.
-    // See https://www.drupal.org/project/drupal/issues/3087061.
-    $this->nodeStorage = $this->container->get('entity_type.manager')
-      ->getStorage('node');
-    $this->nodeStorage->delete($this->nodeStorage->loadMultiple());
-
-    $this->loadFixture($this->getModulePath('forum') . '/tests/fixtures/drupal7.php');
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  protected function getSourceBasePath() {
-    return __DIR__ . '/files';
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  protected function getEntityCounts() {
-    return [
-      'action' => 24,
-      'base_field_override' => 3,
-      'block' => 26,
-      'block_content' => 1,
-      'block_content_type' => 1,
-      'comment' => 0,
-      'comment_type' => 7,
-      'contact_form' => 2,
-      'contact_message' => 0,
-      'date_format' => 12,
-      'editor' => 2,
-      'entity_form_display' => 16,
-      'entity_form_mode' => 1,
-      'entity_view_display' => 24,
-      'entity_view_mode' => 11,
-      'field_config' => 26,
-      'field_storage_config' => 16,
-      'file' => 1,
-      'filter_format' => 7,
-      'image_style' => 7,
-      'menu' => 5,
-      'menu_link_content' => 3,
-      'node' => 2,
-      'node_type' => 6,
-      'path_alias' => 1,
-      'search_page' => 3,
-      'shortcut' => 2,
-      'shortcut_set' => 1,
-      'taxonomy_term' => 6,
-      'taxonomy_vocabulary' => 2,
-      'user' => 4,
-      'user_role' => 4,
-      'view' => 14,
-    ];
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  protected function getEntityCountsIncremental() {
-    return [];
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  protected function getAvailablePaths() {
-    return [
-      'Block',
-      'Comment',
-      'Content translation',
-      'Date',
-      'Field SQL storage',
-      'Field',
-      'File',
-      'Filter',
-      'Forum',
-      'Image',
-      'Menu',
-      'Node',
-      'Options',
-      'Path',
-      'Search',
-      'System',
-      'Taxonomy',
-      'Text',
-      'User',
-      'Contextual links',
-      'Date API',
-      'Field UI',
-    ];
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  protected function getMissingPaths() {
-    return [
-      'Locale',
-      'Entity Translation',
-      'Internationalization',
-      'String translation',
-      'Taxonomy translation',
-      'Translation sets',
-      'Variable',
-    ];
-  }
-
-  /**
-   * Executes all steps of migrations upgrade.
-   */
-  public function testUpgrade() {
-    // Start the upgrade process.
-    $this->submitCredentialForm();
-    $session = $this->assertSession();
-
-    $this->submitForm([], 'I acknowledge I may lose data. Continue anyway.');
-    $session->statusCodeEquals(200);
-
-    // Test the review form.
-    $this->assertReviewForm();
-
-    $this->submitForm([], 'Perform upgrade');
-    $this->assertUpgrade($this->getEntityCounts());
-  }
-
-}
diff --git a/core/modules/forum/tests/src/Functional/migrate_drupal/d7/files/test.txt b/core/modules/forum/tests/src/Functional/migrate_drupal/d7/files/test.txt
deleted file mode 100644
index 573541ac9702..000000000000
--- a/core/modules/forum/tests/src/Functional/migrate_drupal/d7/files/test.txt
+++ /dev/null
@@ -1 +0,0 @@
-0
diff --git a/core/modules/forum/tests/src/Kernel/ForumIndexTest.php b/core/modules/forum/tests/src/Kernel/ForumIndexTest.php
deleted file mode 100644
index e566d7403ada..000000000000
--- a/core/modules/forum/tests/src/Kernel/ForumIndexTest.php
+++ /dev/null
@@ -1,56 +0,0 @@
-<?php
-
-declare(strict_types=1);
-
-namespace Drupal\Tests\forum\Kernel;
-
-use Drupal\KernelTests\KernelTestBase;
-
-/**
- * Defines a class for testing the forum_index table.
- *
- * @group forum
- */
-final class ForumIndexTest extends KernelTestBase {
-
-  /**
-   * {@inheritdoc}
-   */
-  protected static $modules = [
-    'system',
-    'user',
-    'node',
-    'history',
-    'taxonomy',
-    'forum',
-    'comment',
-    'options',
-    'text',
-  ];
-
-  /**
-   * {@inheritdoc}
-   */
-  protected function setUp(): void {
-    parent::setUp();
-    $this->installEntitySchema('node');
-    $this->installEntitySchema('user');
-    $this->installEntitySchema('comment');
-    $this->installEntitySchema('taxonomy_term');
-    $this->installSchema('forum', ['forum_index']);
-  }
-
-  /**
-   * Tests there's a primary key on the forum_index table.
-   */
-  public function testForumIndexIndex(): void {
-    $schema = \Drupal::database()->schema();
-    $this->assertTrue($schema->tableExists('forum_index'));
-    // We can't reliably call ::indexExists for each database driver as sqlite
-    // doesn't have named indexes for primary keys like mysql (PRIMARY) and
-    // pgsql (pkey).
-    $find_primary_key_columns = new \ReflectionMethod(get_class($schema), 'findPrimaryKeyColumns');
-    $this->assertEquals(['nid', 'tid'], $find_primary_key_columns->invoke($schema, 'forum_index'));
-  }
-
-}
diff --git a/core/modules/forum/tests/src/Kernel/ForumValidationTest.php b/core/modules/forum/tests/src/Kernel/ForumValidationTest.php
deleted file mode 100644
index ffe3feb11556..000000000000
--- a/core/modules/forum/tests/src/Kernel/ForumValidationTest.php
+++ /dev/null
@@ -1,74 +0,0 @@
-<?php
-
-declare(strict_types=1);
-
-namespace Drupal\Tests\forum\Kernel;
-
-use Drupal\KernelTests\Core\Entity\EntityKernelTestBase;
-use Drupal\node\Entity\Node;
-use Drupal\taxonomy\Entity\Term;
-
-/**
- * Tests forum validation constraints.
- *
- * @group forum
- * @group legacy
- */
-class ForumValidationTest extends EntityKernelTestBase {
-
-  /**
-   * Modules to install.
-   *
-   * @var array
-   */
-  protected static $modules = [
-    'node',
-    'options',
-    'comment',
-    'taxonomy',
-    'forum',
-  ];
-
-  /**
-   * Tests the forum validation constraints.
-   */
-  public function testValidation() {
-    $this->installConfig('forum');
-
-    // Add a forum.
-    $forum = Term::create([
-      'name' => 'forum 1',
-      'vid' => 'forums',
-      'forum_container' => 0,
-    ]);
-
-    // Add a container.
-    $container = Term::create([
-      'name' => 'container 1',
-      'vid' => 'forums',
-      'forum_container' => 1,
-    ]);
-
-    // Add a forum post.
-    $forum_post = Node::create([
-      'type' => 'forum',
-      'title' => 'Do these pants make my butt look big?',
-    ]);
-
-    $violations = $forum_post->validate();
-    $this->assertCount(1, $violations);
-    $this->assertEquals('This value should not be null.', $violations[0]->getMessage());
-
-    // Add the forum term.
-    $forum_post->set('taxonomy_forums', $forum);
-    $violations = $forum_post->validate();
-    $this->assertCount(0, $violations);
-
-    // Try to use a container.
-    $forum_post->set('taxonomy_forums', $container);
-    $violations = $forum_post->validate();
-    $this->assertCount(1, $violations);
-    $this->assertEquals(sprintf('The item %s is a forum container, not a forum. Select one of the forums below instead.', $container->label()), $violations[0]->getMessage());
-  }
-
-}
diff --git a/core/modules/forum/tests/src/Kernel/Migrate/MigrateTestTrait.php b/core/modules/forum/tests/src/Kernel/Migrate/MigrateTestTrait.php
deleted file mode 100644
index d1c45f954849..000000000000
--- a/core/modules/forum/tests/src/Kernel/Migrate/MigrateTestTrait.php
+++ /dev/null
@@ -1,105 +0,0 @@
-<?php
-
-declare(strict_types=1);
-
-namespace Drupal\Tests\forum\Kernel\Migrate;
-
-use Drupal\taxonomy\Entity\Term;
-use Drupal\taxonomy\TermInterface;
-
-/**
- * Common assertions for migration tests.
- */
-trait MigrateTestTrait {
-
-  /**
-   * The cached taxonomy tree items, keyed by vid and tid.
-   *
-   * @var array
-   */
-  protected $treeData = [];
-
-  /**
-   * Validate a migrated term contains the expected values.
-   *
-   * @param int $id
-   *   Entity ID to load and check.
-   * @param string $expected_language
-   *   The language code for this term.
-   * @param $expected_label
-   *   The label the migrated entity should have.
-   * @param $expected_vid
-   *   The parent vocabulary the migrated entity should have.
-   * @param string|null $expected_description
-   *   The description the migrated entity should have.
-   * @param string|null $expected_format
-   *   The format the migrated entity should have.
-   * @param int $expected_weight
-   *   The weight the migrated entity should have.
-   * @param array $expected_parents
-   *   The parent terms the migrated entity should have.
-   * @param int|null $expected_container_flag
-   *   The term should be a container entity.
-   *
-   * @internal
-   */
-  protected function assertEntity(int $id, string $expected_language, string $expected_label, string $expected_vid, ?string $expected_description = '', ?string $expected_format = NULL, int $expected_weight = 0, array $expected_parents = [], int|null $expected_container_flag = NULL): void {
-    /** @var \Drupal\taxonomy\TermInterface $entity */
-    $entity = Term::load($id);
-    $this->assertInstanceOf(TermInterface::class, $entity);
-    $this->assertSame($expected_language, $entity->language()->getId());
-    $this->assertEquals($expected_label, $entity->label());
-    $this->assertEquals($expected_vid, $entity->bundle());
-    $this->assertEquals($expected_description, $entity->getDescription());
-    $this->assertEquals($expected_format, $entity->getFormat());
-    $this->assertEquals($expected_weight, $entity->getWeight());
-    $this->assertEquals($expected_parents, array_column($entity->get('parent')
-      ->getValue(), 'target_id'));
-    $this->assertHierarchy($expected_vid, $id, $expected_parents);
-    if (isset($expected_container_flag)) {
-      $this->assertEquals($expected_container_flag, $entity->forum_container->value);
-    }
-  }
-
-  /**
-   * Retrieves the parent term IDs for a given term.
-   *
-   * @param $tid
-   *   ID of the term to check.
-   *
-   * @return array
-   *   List of parent term IDs.
-   */
-  protected function getParentIDs($tid) {
-    return array_keys(\Drupal::entityTypeManager()
-      ->getStorage('taxonomy_term')
-      ->loadParents($tid));
-  }
-
-  /**
-   * Assert that a term is present in the tree storage, with the right parents.
-   *
-   * @param string $vid
-   *   Vocabulary ID.
-   * @param int $tid
-   *   ID of the term to check.
-   * @param array $parent_ids
-   *   The expected parent term IDs.
-   */
-  protected function assertHierarchy(string $vid, int $tid, array $parent_ids): void {
-    if (!isset($this->treeData[$vid])) {
-      $tree = \Drupal::entityTypeManager()
-        ->getStorage('taxonomy_term')
-        ->loadTree($vid);
-      $this->treeData[$vid] = [];
-      foreach ($tree as $item) {
-        $this->treeData[$vid][$item->tid] = $item;
-      }
-    }
-
-    $this->assertArrayHasKey($tid, $this->treeData[$vid], "Term $tid exists in taxonomy tree");
-    $term = $this->treeData[$vid][$tid];
-    $this->assertEquals($parent_ids, $term->parents, "Term $tid has correct parents in taxonomy tree");
-  }
-
-}
diff --git a/core/modules/forum/tests/src/Kernel/Migrate/d6/MigrateBlockTest.php b/core/modules/forum/tests/src/Kernel/Migrate/d6/MigrateBlockTest.php
deleted file mode 100644
index ae78c142a8b8..000000000000
--- a/core/modules/forum/tests/src/Kernel/Migrate/d6/MigrateBlockTest.php
+++ /dev/null
@@ -1,132 +0,0 @@
-<?php
-
-declare(strict_types=1);
-
-namespace Drupal\Tests\forum\Kernel\Migrate\d6;
-
-use Drupal\block\Entity\Block;
-use Drupal\Tests\migrate_drupal\Kernel\d6\MigrateDrupal6TestBase;
-
-/**
- * Tests migration of forum blocks.
- *
- * @group forum
- */
-class MigrateBlockTest extends MigrateDrupal6TestBase {
-
-  /**
-   * {@inheritdoc}
-   */
-  protected static $modules = [
-    'block',
-    'block_content',
-    'comment',
-    'forum',
-    'node',
-    'path_alias',
-    'taxonomy',
-  ];
-
-  /**
-   * {@inheritdoc}
-   */
-  protected function setUp(): void {
-    parent::setUp();
-    $this->installEntitySchema('path_alias');
-
-    // Install the themes used for this test.
-    $this->installEntitySchema('block_content');
-    $this->container->get('theme_installer')->install(['olivero', 'test_theme']);
-
-    $this->installConfig(['block_content']);
-
-    // Set Olivero as the default public theme.
-    $config = $this->config('system.theme');
-    $config->set('default', 'olivero');
-    $config->save();
-
-    $this->executeMigrations([
-      'd6_filter_format',
-      'block_content_type',
-      'block_content_body_field',
-      'd6_custom_block',
-      'd6_user_role',
-      'd6_block',
-    ]);
-    block_rebuild();
-  }
-
-  /**
-   * Gets the path to the fixture file.
-   */
-  protected function getFixtureFilePath() {
-    return __DIR__ . '/../../../../fixtures/drupal6.php';
-  }
-
-  /**
-   * Asserts various aspects of a block.
-   *
-   * @param string $id
-   *   The block ID.
-   * @param array $visibility
-   *   The block visibility settings.
-   * @param string $region
-   *   The display region.
-   * @param string $theme
-   *   The theme.
-   * @param int $weight
-   *   The block weight.
-   * @param array $settings
-   *   (optional) The block settings.
-   * @param bool $status
-   *   Whether the block is expected to be enabled or disabled.
-   *
-   * @internal
-   */
-  public function assertEntity(string $id, array $visibility, string $region, string $theme, int $weight, array $settings = [], bool $status = TRUE): void {
-    $block = Block::load($id);
-    $this->assertInstanceOf(Block::class, $block);
-    $this->assertSame($visibility, $block->getVisibility());
-    $this->assertSame($region, $block->getRegion());
-    $this->assertSame($theme, $block->getTheme());
-    $this->assertSame($weight, $block->getWeight());
-    $this->assertSame($status, $block->status());
-    if ($settings) {
-      $block_settings = $block->get('settings');
-      $block_settings['id'] = current(explode(':', $block_settings['id']));
-      $this->assertEquals($settings, $block_settings);
-    }
-  }
-
-  /**
-   * Tests the block migration.
-   */
-  public function testBlockMigration() {
-
-    // Check forum block settings.
-    $settings = [
-      'id' => 'forum_active_block',
-      'label' => '',
-      'provider' => 'forum',
-      'label_display' => '0',
-      'block_count' => 3,
-      'properties' => [
-        'administrative' => '1',
-      ],
-    ];
-    $this->assertEntity('forum', [], 'sidebar', 'olivero', -8, $settings);
-
-    $settings = [
-      'id' => 'forum_new_block',
-      'label' => '',
-      'provider' => 'forum',
-      'label_display' => '0',
-      'block_count' => 4,
-      'properties' => [
-        'administrative' => '1',
-      ],
-    ];
-    $this->assertEntity('forum_1', [], 'sidebar', 'olivero', -9, $settings);
-  }
-
-}
diff --git a/core/modules/forum/tests/src/Kernel/Migrate/d6/MigrateForumConfigsTest.php b/core/modules/forum/tests/src/Kernel/Migrate/d6/MigrateForumConfigsTest.php
deleted file mode 100644
index 5feceda73f7b..000000000000
--- a/core/modules/forum/tests/src/Kernel/Migrate/d6/MigrateForumConfigsTest.php
+++ /dev/null
@@ -1,57 +0,0 @@
-<?php
-
-declare(strict_types=1);
-
-namespace Drupal\Tests\forum\Kernel\Migrate\d6;
-
-use Drupal\Tests\SchemaCheckTestTrait;
-use Drupal\Tests\migrate_drupal\Kernel\d6\MigrateDrupal6TestBase;
-
-/**
- * Upgrade variables to forum.settings.yml.
- *
- * @group migrate_drupal_6
- * @group legacy
- */
-class MigrateForumConfigsTest extends MigrateDrupal6TestBase {
-
-  use SchemaCheckTestTrait;
-
-  /**
-   * {@inheritdoc}
-   */
-  protected static $modules = ['comment', 'forum', 'taxonomy'];
-
-  /**
-   * {@inheritdoc}
-   */
-  protected function setUp(): void {
-    parent::setUp();
-    $this->executeMigration('d6_taxonomy_vocabulary');
-    $this->executeMigration('d6_forum_settings');
-  }
-
-  /**
-   * Gets the path to the fixture file.
-   */
-  protected function getFixtureFilePath() {
-    return __DIR__ . '/../../../../fixtures/drupal6.php';
-  }
-
-  /**
-   * Tests migration of forum variables to forum.settings.yml.
-   */
-  public function testForumSettings() {
-    $config = $this->config('forum.settings');
-    $this->assertSame(15, $config->get('topics.hot_threshold'));
-    $this->assertSame(25, $config->get('topics.page_limit'));
-    $this->assertSame(1, $config->get('topics.order'));
-    $this->assertSame('forums', $config->get('vocabulary'));
-    // This is 'forum_block_num_0' in D6, but block:active:limit' in D8.
-    $this->assertSame(3, $config->get('block.active.limit'));
-    // This is 'forum_block_num_1' in D6, but 'block:new:limit' in D8.
-    $this->assertSame(4, $config->get('block.new.limit'));
-    $this->assertConfigSchema(\Drupal::service('config.typed'), 'forum.settings', $config->get());
-  }
-
-}
diff --git a/core/modules/forum/tests/src/Kernel/Migrate/d6/MigrateForumTest.php b/core/modules/forum/tests/src/Kernel/Migrate/d6/MigrateForumTest.php
deleted file mode 100644
index c958b3cbcc39..000000000000
--- a/core/modules/forum/tests/src/Kernel/Migrate/d6/MigrateForumTest.php
+++ /dev/null
@@ -1,87 +0,0 @@
-<?php
-
-declare(strict_types=1);
-
-namespace Drupal\Tests\forum\Kernel\Migrate\d6;
-
-use Drupal\Core\Entity\Entity\EntityFormDisplay;
-use Drupal\Core\Entity\Entity\EntityViewDisplay;
-use Drupal\field\Entity\FieldConfig;
-use Drupal\field\Entity\FieldStorageConfig;
-use Drupal\node\Entity\Node;
-use Drupal\Tests\node\Kernel\Migrate\d6\MigrateNodeTestBase;
-
-/**
- * Tests forum migration from Drupal 6 to Drupal 8.
- *
- * @group migrate_drupal_6
- * @group legacy
- */
-class MigrateForumTest extends MigrateNodeTestBase {
-
-  /**
-   * {@inheritdoc}
-   */
-  protected static $modules = [
-    'comment',
-    'forum',
-    'menu_ui',
-    'taxonomy',
-  ];
-
-  /**
-   * {@inheritdoc}
-   */
-  protected function setUp(): void {
-    parent::setUp();
-
-    $this->installEntitySchema('comment');
-    $this->installSchema('comment', ['comment_entity_statistics']);
-    $this->installSchema('forum', ['forum', 'forum_index']);
-    $this->installConfig(['comment', 'forum']);
-    $this->migrateContent();
-    $this->migrateTaxonomy();
-    $this->executeMigrations([
-      'd6_comment_type',
-      'd6_comment_field',
-      'd6_comment_field_instance',
-      'd6_comment_entity_display',
-      'd6_comment_entity_form_display',
-      'd6_comment',
-      'd6_term_node',
-    ]);
-  }
-
-  /**
-   * Gets the path to the fixture file.
-   */
-  protected function getFixtureFilePath() {
-    return __DIR__ . '/../../../../fixtures/drupal6.php';
-  }
-
-  /**
-   * Tests forum migration.
-   */
-  public function testForumMigration() {
-    // Tests that the taxonomy_forums field storage config exists.
-    $field_storage_config = FieldStorageConfig::load('node.taxonomy_forums');
-    $this->assertInstanceOf(FieldStorageConfig::class, $field_storage_config);
-
-    // Tests that the taxonomy_forums field config exists.
-    $field_config = FieldConfig::load('node.forum.taxonomy_forums');
-    $this->assertInstanceOf(FieldConfig::class, $field_config);
-
-    // Tests that the taxonomy_forums entity view display component exists.
-    $entity_view_display = EntityViewDisplay::load('node.forum.default')->getComponent('taxonomy_forums');
-    $this->assertIsArray($entity_view_display);
-
-    // Tests that the taxonomy_forums entity form display component exists.
-    $entity_form_display = EntityFormDisplay::load('node.forum.default')->getComponent('taxonomy_forums');
-    $this->assertIsArray($entity_form_display);
-
-    // Test that the taxonomy_forums field has the right value.
-    $node = Node::load(19);
-    $this->assertEquals(8, $node->taxonomy_forums->target_id);
-  }
-
-}
diff --git a/core/modules/forum/tests/src/Kernel/Migrate/d6/MigrateTaxonomyTermTest.php b/core/modules/forum/tests/src/Kernel/Migrate/d6/MigrateTaxonomyTermTest.php
deleted file mode 100644
index 2a7f7054d568..000000000000
--- a/core/modules/forum/tests/src/Kernel/Migrate/d6/MigrateTaxonomyTermTest.php
+++ /dev/null
@@ -1,52 +0,0 @@
-<?php
-
-declare(strict_types=1);
-
-namespace Drupal\Tests\forum\Kernel\Migrate\d6;
-
-use Drupal\Tests\forum\Kernel\Migrate\MigrateTestTrait;
-use Drupal\Tests\migrate_drupal\Kernel\d6\MigrateDrupal6TestBase;
-
-/**
- * Test migration of forum taxonomy terms.
- *
- * @group forum
- */
-class MigrateTaxonomyTermTest extends MigrateDrupal6TestBase {
-
-  use MigrateTestTrait;
-
-  /**
-   * {@inheritdoc}
-   */
-  protected static $modules = ['taxonomy', 'comment', 'forum', 'menu_ui'];
-
-  /**
-   * {@inheritdoc}
-   */
-  protected function setUp(): void {
-    parent::setUp();
-    $this->installEntitySchema('taxonomy_term');
-    $this->installConfig('forum');
-    $this->executeMigrations(['d6_taxonomy_vocabulary', 'd6_taxonomy_term']);
-  }
-
-  /**
-   * Gets the path to the fixture file.
-   */
-  protected function getFixtureFilePath() {
-    return __DIR__ . '/../../../../fixtures/drupal6.php';
-  }
-
-  /**
-   * Assert the forum taxonomy terms.
-   */
-  public function testTaxonomyTerms() {
-    $this->assertEntity(8, 'en', 'General discussion', 'forums', '', NULL, 2, ['0'], 0);
-    $this->assertEntity(9, 'en', 'Earth', 'forums', '', NULL, 0, ['0'], 1);
-    $this->assertEntity(10, 'en', 'Birds', 'forums', '', NULL, 0, ['9'], 0);
-    $this->assertEntity(11, 'en', 'Oak', 'trees', '', NULL, 0, ['0'], NULL);
-    $this->assertEntity(12, 'en', 'Ash', 'trees', '', NULL, 0, ['0'], NULL);
-  }
-
-}
diff --git a/core/modules/forum/tests/src/Kernel/Migrate/d6/MigrateTaxonomyVocabularyTest.php b/core/modules/forum/tests/src/Kernel/Migrate/d6/MigrateTaxonomyVocabularyTest.php
deleted file mode 100644
index fc14d57a5653..000000000000
--- a/core/modules/forum/tests/src/Kernel/Migrate/d6/MigrateTaxonomyVocabularyTest.php
+++ /dev/null
@@ -1,65 +0,0 @@
-<?php
-
-declare(strict_types=1);
-
-namespace Drupal\Tests\forum\Kernel\Migrate\d6;
-
-use Drupal\Tests\taxonomy\Kernel\Migrate\d6\MigrateTaxonomyVocabularyTest as TaxonomyVocabularyTest;
-use Drupal\taxonomy\Entity\Vocabulary;
-use Drupal\taxonomy\VocabularyInterface;
-
-/**
- * Migrate forum vocabulary to taxonomy.vocabulary.*.yml.
- *
- * @group forum
- */
-class MigrateTaxonomyVocabularyTest extends TaxonomyVocabularyTest {
-
-  /**
-   * {@inheritdoc}
-   */
-  protected static $modules = [
-    'comment',
-    'forum',
-  ];
-
-  /**
-   * Gets the path to the fixture file.
-   */
-  protected function getFixtureFilePath() {
-    return __DIR__ . '/../../../../fixtures/drupal6.php';
-  }
-
-  /**
-   * Validate a migrated vocabulary contains the expected values.
-   *
-   * @param string $id
-   *   Entity ID to load and check.
-   * @param $expected_label
-   *   The label the migrated entity should have.
-   * @param $expected_description
-   *   The description the migrated entity should have.
-   * @param $expected_weight
-   *   The weight the migrated entity should have.
-   *
-   * @internal
-   */
-  protected function assertEntity(string $id, string $expected_label, string $expected_description, int $expected_weight): void {
-    /** @var \Drupal\taxonomy\VocabularyInterface $entity */
-    $entity = Vocabulary::load($id);
-    $this->assertInstanceOf(VocabularyInterface::class, $entity);
-    $this->assertSame($expected_label, $entity->label());
-    $this->assertSame($expected_description, $entity->getDescription());
-    $this->assertSame($expected_weight, (int) $entity->get('weight'));
-  }
-
-  /**
-   * Tests the Drupal 6 taxonomy vocabularies migration.
-   */
-  public function testTaxonomyVocabulary() {
-    $this->assertEntity('forums', 'Forums', '', 0);
-    $this->assertEntity('trees', 'Trees', 'A list of trees.', 0);
-    $this->assertEntity('freetags', 'FreeTags', '', 0);
-  }
-
-}
diff --git a/core/modules/forum/tests/src/Kernel/Migrate/d6/MigrateVocabularyEntityDisplayTest.php b/core/modules/forum/tests/src/Kernel/Migrate/d6/MigrateVocabularyEntityDisplayTest.php
deleted file mode 100644
index f355f574404e..000000000000
--- a/core/modules/forum/tests/src/Kernel/Migrate/d6/MigrateVocabularyEntityDisplayTest.php
+++ /dev/null
@@ -1,116 +0,0 @@
-<?php
-
-declare(strict_types=1);
-
-namespace Drupal\Tests\forum\Kernel\Migrate\d6;
-
-use Drupal\Core\Entity\Display\EntityViewDisplayInterface;
-use Drupal\Core\Entity\Entity\EntityViewDisplay;
-use Drupal\Tests\migrate_drupal\Kernel\d6\MigrateDrupal6TestBase;
-
-/**
- * Vocabulary entity display migration.
- *
- * @group forum
- */
-class MigrateVocabularyEntityDisplayTest extends MigrateDrupal6TestBase {
-
-  /**
-   * {@inheritdoc}
-   */
-  protected static $modules = [
-    'field',
-    'comment',
-    'forum',
-    'taxonomy',
-    'menu_ui',
-  ];
-
-  /**
-   * {@inheritdoc}
-   */
-  protected function setUp(): void {
-    parent::setUp();
-
-    // Execute Dependency Migrations.
-    $this->migrateContentTypes();
-    $this->installEntitySchema('taxonomy_term');
-    $this->executeMigrations([
-      'd6_node_type',
-      'd6_taxonomy_vocabulary',
-      'd6_vocabulary_field',
-      'd6_vocabulary_field_instance',
-      'd6_vocabulary_entity_display',
-    ]);
-  }
-
-  /**
-   * Gets the path to the fixture file.
-   */
-  protected function getFixtureFilePath() {
-    return __DIR__ . '/../../../../fixtures/drupal6.php';
-  }
-
-  /**
-   * Tests the Drupal 6 vocabulary-node type association to Drupal 8 migration.
-   */
-  public function testVocabularyEntityDisplay() {
-    $this->assertEntity('node.forum.default');
-    $this->assertComponent('node.forum.default', 'taxonomy_forums', 'entity_reference_label', 'hidden', 20);
-    $this->assertComponent('node.forum.default', 'field_trees', 'entity_reference_label', 'hidden', 20);
-    $this->assertComponent('node.forum.default', 'field_freetags', 'entity_reference_label', 'hidden', 20);
-  }
-
-  /**
-   * Asserts various aspects of a view display.
-   *
-   * @param string $id
-   *   The view display ID.
-   *
-   * @internal
-   */
-  protected function assertEntity(string $id): void {
-    $display = EntityViewDisplay::load($id);
-    $this->assertInstanceOf(EntityViewDisplayInterface::class, $display);
-  }
-
-  /**
-   * Asserts various aspects of a particular component of a view display.
-   *
-   * @param string $display_id
-   *   The view display ID.
-   * @param string $component_id
-   *   The component ID.
-   * @param string $type
-   *   The expected component type (formatter plugin ID).
-   * @param string $label
-   *   The expected label of the component.
-   * @param int $weight
-   *   The expected weight of the component.
-   *
-   * @internal
-   */
-  protected function assertComponent(string $display_id, string $component_id, string $type, string $label, int $weight): void {
-    $component = EntityViewDisplay::load($display_id)->getComponent($component_id);
-    $this->assertIsArray($component);
-    $this->assertSame($type, $component['type']);
-    $this->assertSame($label, $component['label']);
-    $this->assertSame($weight, $component['weight']);
-  }
-
-  /**
-   * Asserts that a particular component is NOT included in a display.
-   *
-   * @param string $display_id
-   *   The display ID.
-   * @param string $component_id
-   *   The component ID.
-   *
-   * @internal
-   */
-  protected function assertComponentNotExists(string $display_id, string $component_id): void {
-    $component = EntityViewDisplay::load($display_id)->getComponent($component_id);
-    $this->assertNull($component);
-  }
-
-}
diff --git a/core/modules/forum/tests/src/Kernel/Migrate/d6/MigrateVocabularyEntityFormDisplayTest.php b/core/modules/forum/tests/src/Kernel/Migrate/d6/MigrateVocabularyEntityFormDisplayTest.php
deleted file mode 100644
index 6b7fa62e6ea2..000000000000
--- a/core/modules/forum/tests/src/Kernel/Migrate/d6/MigrateVocabularyEntityFormDisplayTest.php
+++ /dev/null
@@ -1,99 +0,0 @@
-<?php
-
-declare(strict_types=1);
-
-namespace Drupal\Tests\forum\Kernel\Migrate\d6;
-
-use Drupal\Core\Entity\Display\EntityFormDisplayInterface;
-use Drupal\Core\Entity\Entity\EntityFormDisplay;
-use Drupal\Tests\migrate_drupal\Kernel\d6\MigrateDrupal6TestBase;
-
-/**
- * Vocabulary entity form display migration.
- *
- * @group forum
- */
-class MigrateVocabularyEntityFormDisplayTest extends MigrateDrupal6TestBase {
-
-  /**
-   * {@inheritdoc}
-   */
-  protected static $modules = ['comment', 'forum', 'taxonomy', 'menu_ui'];
-
-  /**
-   * {@inheritdoc}
-   */
-  protected function setUp(): void {
-    parent::setUp();
-
-    // Execute Dependency Migrations.
-    $this->migrateContentTypes();
-    $this->installEntitySchema('taxonomy_term');
-    $this->executeMigrations([
-      'd6_taxonomy_vocabulary',
-      'd6_vocabulary_field',
-      'd6_vocabulary_field_instance',
-      'd6_vocabulary_entity_display',
-      'd6_vocabulary_entity_form_display',
-    ]);
-  }
-
-  /**
-   * Gets the path to the fixture file.
-   */
-  protected function getFixtureFilePath() {
-    return __DIR__ . '/../../../../fixtures/drupal6.php';
-  }
-
-  /**
-   * Tests the Drupal 6 vocabulary-node type association to Drupal 8 migration.
-   */
-  public function testVocabularyEntityFormDisplay() {
-    $this->assertEntity('node.forum.default', 'node', 'forum');
-    $this->assertComponent('node.forum.default', 'taxonomy_forums', 'options_select', 20);
-    $this->assertComponent('node.forum.default', 'field_trees', 'options_select', 20);
-    $this->assertComponent('node.forum.default', 'field_freetags', 'entity_reference_autocomplete_tags', 20);
-  }
-
-  /**
-   * Asserts various aspects of a form display entity.
-   *
-   * @param string $id
-   *   The entity ID.
-   * @param string $expected_entity_type
-   *   The expected entity type to which the display settings are attached.
-   * @param string $expected_bundle
-   *   The expected bundle to which the display settings are attached.
-   *
-   * @internal
-   */
-  protected function assertEntity(string $id, string $expected_entity_type, string $expected_bundle): void {
-    /** @var \Drupal\Core\Entity\Display\EntityFormDisplayInterface $entity */
-    $entity = EntityFormDisplay::load($id);
-    $this->assertInstanceOf(EntityFormDisplayInterface::class, $entity);
-    $this->assertSame($expected_entity_type, $entity->getTargetEntityTypeId());
-    $this->assertSame($expected_bundle, $entity->getTargetBundle());
-  }
-
-  /**
-   * Asserts various aspects of a particular component of a form display.
-   *
-   * @param string $display_id
-   *   The form display ID.
-   * @param string $component_id
-   *   The component ID.
-   * @param string $widget_type
-   *   The expected widget type.
-   * @param int $weight
-   *   The expected weight of the component.
-   *
-   * @internal
-   */
-  protected function assertComponent(string $display_id, string $component_id, string $widget_type, int $weight): void {
-    $component = EntityFormDisplay::load($display_id)->getComponent($component_id);
-    $this->assertIsArray($component);
-    $this->assertSame($widget_type, $component['type']);
-    $this->assertSame($weight, $component['weight']);
-  }
-
-}
diff --git a/core/modules/forum/tests/src/Kernel/Migrate/d6/MigrateVocabularyFieldInstanceTest.php b/core/modules/forum/tests/src/Kernel/Migrate/d6/MigrateVocabularyFieldInstanceTest.php
deleted file mode 100644
index 6c8223491a02..000000000000
--- a/core/modules/forum/tests/src/Kernel/Migrate/d6/MigrateVocabularyFieldInstanceTest.php
+++ /dev/null
@@ -1,126 +0,0 @@
-<?php
-
-declare(strict_types=1);
-
-namespace Drupal\Tests\forum\Kernel\Migrate\d6;
-
-use Drupal\Tests\migrate_drupal\Kernel\d6\MigrateDrupal6TestBase;
-use Drupal\field\Entity\FieldConfig;
-use Drupal\field\FieldConfigInterface;
-
-/**
- * Vocabulary field instance migration.
- *
- * @group forum
- */
-class MigrateVocabularyFieldInstanceTest extends MigrateDrupal6TestBase {
-
-  /**
-   * {@inheritdoc}
-   */
-  protected static $modules = [
-    'comment',
-    'forum',
-    'menu_ui',
-    'taxonomy',
-  ];
-
-  /**
-   * {@inheritdoc}
-   */
-  protected function setUp(): void {
-    parent::setUp();
-    // Execute Dependency Migrations.
-    $this->migrateContentTypes();
-    $this->installEntitySchema('taxonomy_term');
-    $this->executeMigrations([
-      'd6_node_type',
-      'd6_taxonomy_vocabulary',
-      'd6_vocabulary_field',
-      'd6_vocabulary_field_instance',
-    ]);
-  }
-
-  /**
-   * Gets the path to the fixture file.
-   */
-  protected function getFixtureFilePath() {
-    return __DIR__ . '/../../../../fixtures/drupal6.php';
-  }
-
-  /**
-   * Tests the Drupal 6 vocabulary-node type association migration.
-   */
-  public function testVocabularyFieldInstance() {
-    $this->assertEntity('node.forum.taxonomy_forums', 'Forums', 'entity_reference', FALSE, FALSE);
-    $this->assertEntity('node.forum.field_trees', 'Trees', 'entity_reference', FALSE, FALSE);
-    $this->assertEntity('node.forum.field_freetags', 'FreeTags', 'entity_reference', FALSE, FALSE);
-  }
-
-  /**
-   * Asserts various aspects of a field config entity.
-   *
-   * @param string $id
-   *   The entity ID in the form ENTITY_TYPE.BUNDLE.FIELD_NAME.
-   * @param string $expected_label
-   *   The expected field label.
-   * @param string $expected_field_type
-   *   The expected field type.
-   * @param bool $is_required
-   *   Whether or not the field is required.
-   * @param bool $expected_translatable
-   *   Whether or not the field is expected to be translatable.
-   *
-   * @internal
-   */
-  protected function assertEntity(string $id, string $expected_label, string $expected_field_type, bool $is_required, bool $expected_translatable): void {
-    [$expected_entity_type, $expected_bundle, $expected_name] = explode('.', $id);
-
-    /** @var \Drupal\field\FieldConfigInterface $field */
-    $field = FieldConfig::load($id);
-    $this->assertInstanceOf(FieldConfigInterface::class, $field);
-    $this->assertEquals($expected_label, $field->label());
-    $this->assertEquals($expected_field_type, $field->getType());
-    $this->assertEquals($expected_entity_type, $field->getTargetEntityTypeId());
-    $this->assertEquals($expected_bundle, $field->getTargetBundle());
-    $this->assertEquals($expected_name, $field->getName());
-    $this->assertEquals($is_required, $field->isRequired());
-    $this->assertEquals($expected_entity_type . '.' . $expected_name, $field->getFieldStorageDefinition()->id());
-    $this->assertEquals($expected_translatable, $field->isTranslatable());
-  }
-
-  /**
-   * Asserts the settings of a link field config entity.
-   *
-   * @param string $id
-   *   The entity ID in the form ENTITY_TYPE.BUNDLE.FIELD_NAME.
-   * @param int $title_setting
-   *   The expected title setting.
-   *
-   * @internal
-   */
-  protected function assertLinkFields(string $id, int $title_setting): void {
-    $field = FieldConfig::load($id);
-    $this->assertSame($title_setting, $field->getSetting('title'));
-  }
-
-  /**
-   * Asserts the settings of an entity reference field config entity.
-   *
-   * @param string $id
-   *   The entity ID in the form ENTITY_TYPE.BUNDLE.FIELD_NAME.
-   * @param string[] $target_bundles
-   *   An array of expected target bundles.
-   *
-   * @internal
-   */
-  protected function assertEntityReferenceFields(string $id, array $target_bundles): void {
-    $field = FieldConfig::load($id);
-    $handler_settings = $field->getSetting('handler_settings');
-    $this->assertArrayHasKey('target_bundles', $handler_settings);
-    foreach ($handler_settings['target_bundles'] as $target_bundle) {
-      $this->assertContains($target_bundle, $target_bundles);
-    }
-  }
-
-}
diff --git a/core/modules/forum/tests/src/Kernel/Migrate/d6/MigrateVocabularyFieldTest.php b/core/modules/forum/tests/src/Kernel/Migrate/d6/MigrateVocabularyFieldTest.php
deleted file mode 100644
index 20372f4fb4af..000000000000
--- a/core/modules/forum/tests/src/Kernel/Migrate/d6/MigrateVocabularyFieldTest.php
+++ /dev/null
@@ -1,87 +0,0 @@
-<?php
-
-declare(strict_types=1);
-
-namespace Drupal\Tests\forum\Kernel\Migrate\d6;
-
-use Drupal\Tests\migrate_drupal\Kernel\d6\MigrateDrupal6TestBase;
-use Drupal\field\Entity\FieldStorageConfig;
-use Drupal\field\FieldStorageConfigInterface;
-
-/**
- * Vocabulary field migration.
- *
- * @group forum
- */
-class MigrateVocabularyFieldTest extends MigrateDrupal6TestBase {
-
-  /**
-   * {@inheritdoc}
-   */
-  protected static $modules = [
-    'comment',
-    'forum',
-    'taxonomy',
-    'menu_ui',
-  ];
-
-  /**
-   * {@inheritdoc}
-   */
-  protected function setUp(): void {
-    parent::setUp();
-    $this->migrateTaxonomy();
-  }
-
-  /**
-   * Gets the path to the fixture file.
-   */
-  protected function getFixtureFilePath() {
-    return __DIR__ . '/../../../../fixtures/drupal6.php';
-  }
-
-  /**
-   * Tests the Drupal 6 vocabulary-node type association migration.
-   */
-  public function testVocabularyField() {
-    // Test that the field exists.
-    $this->assertEntity('node.field_freetags', 'entity_reference', TRUE, -1);
-    $this->assertEntity('node.field_trees', 'entity_reference', TRUE, 1);
-    $this->assertEntity('node.taxonomy_forums', 'entity_reference', TRUE, 1);
-  }
-
-  /**
-   * Asserts various aspects of a field_storage_config entity.
-   *
-   * @param string $id
-   *   The entity ID in the form ENTITY_TYPE.FIELD_NAME.
-   * @param string $expected_type
-   *   The expected field type.
-   * @param bool $expected_translatable
-   *   Whether or not the field is expected to be translatable.
-   * @param int $expected_cardinality
-   *   The expected cardinality of the field.
-   *
-   * @internal
-   */
-  protected function assertEntity(string $id, string $expected_type, bool $expected_translatable, int $expected_cardinality): void {
-    [$expected_entity_type, $expected_name] = explode('.', $id);
-
-    /** @var \Drupal\field\FieldStorageConfigInterface $field */
-    $field = FieldStorageConfig::load($id);
-    $this->assertInstanceOf(FieldStorageConfigInterface::class, $field);
-    $this->assertEquals($expected_name, $field->getName());
-    $this->assertEquals($expected_type, $field->getType());
-    $this->assertEquals($expected_translatable, $field->isTranslatable());
-    $this->assertEquals($expected_entity_type, $field->getTargetEntityTypeId());
-
-    if ($expected_cardinality === 1) {
-      $this->assertFalse($field->isMultiple());
-    }
-    else {
-      $this->assertTrue($field->isMultiple());
-    }
-    $this->assertEquals($expected_cardinality, $field->getCardinality());
-  }
-
-}
diff --git a/core/modules/forum/tests/src/Kernel/Migrate/d7/MigrateForumSettingsTest.php b/core/modules/forum/tests/src/Kernel/Migrate/d7/MigrateForumSettingsTest.php
deleted file mode 100644
index bdefa965de8b..000000000000
--- a/core/modules/forum/tests/src/Kernel/Migrate/d7/MigrateForumSettingsTest.php
+++ /dev/null
@@ -1,63 +0,0 @@
-<?php
-
-declare(strict_types=1);
-
-namespace Drupal\Tests\forum\Kernel\Migrate\d7;
-
-use Drupal\Tests\migrate_drupal\Kernel\d7\MigrateDrupal7TestBase;
-
-/**
- * Tests migration of Forum's variables to configuration.
- *
- * @group forum
- * @group legacy
- */
-class MigrateForumSettingsTest extends MigrateDrupal7TestBase {
-
-  /**
-   * Modules to enable.
-   *
-   * Don't alphabetize these. They're in dependency order.
-   *
-   * @var array
-   */
-  protected static $modules = [
-    'comment',
-    'field',
-    'filter',
-    'text',
-    'node',
-    'taxonomy',
-    'forum',
-  ];
-
-  /**
-   * {@inheritdoc}
-   */
-  protected function setUp(): void {
-    parent::setUp();
-    $this->executeMigration('d7_taxonomy_vocabulary');
-    $this->executeMigration('d7_forum_settings');
-  }
-
-  /**
-   * Gets the path to the fixture file.
-   */
-  protected function getFixtureFilePath() {
-    return __DIR__ . '/../../../../fixtures/drupal7.php';
-  }
-
-  /**
-   * Tests the migration of Forum's settings to configuration.
-   */
-  public function testForumSettingsMigration() {
-    $config = $this->config('forum.settings');
-    $this->assertSame(9, $config->get('block.active.limit'));
-    $this->assertSame(4, $config->get('block.new.limit'));
-    $this->assertSame(10, $config->get('topics.hot_threshold'));
-    $this->assertSame(25, $config->get('topics.page_limit'));
-    $this->assertSame(1, $config->get('topics.order'));
-    $this->assertSame('forums', $config->get('vocabulary'));
-  }
-
-}
diff --git a/core/modules/forum/tests/src/Kernel/Migrate/d7/MigrateLanguageContentTaxonomyVocabularySettingsTest.php b/core/modules/forum/tests/src/Kernel/Migrate/d7/MigrateLanguageContentTaxonomyVocabularySettingsTest.php
deleted file mode 100644
index 8d9294778df8..000000000000
--- a/core/modules/forum/tests/src/Kernel/Migrate/d7/MigrateLanguageContentTaxonomyVocabularySettingsTest.php
+++ /dev/null
@@ -1,32 +0,0 @@
-<?php
-
-declare(strict_types=1);
-
-namespace Drupal\Tests\forum\Kernel\Migrate\d7;
-
-use Drupal\Core\Language\LanguageInterface;
-use Drupal\Tests\language\Kernel\Migrate\d7\MigrateLanguageContentTaxonomyVocabularySettingsTest as CoreTest;
-
-/**
- * Tests migration of i18ntaxonomy vocabulary settings.
- *
- * @group forum
- */
-class MigrateLanguageContentTaxonomyVocabularySettingsTest extends CoreTest {
-
-  /**
-   * {@inheritdoc}
-   */
-  protected static $modules = [
-    'comment',
-    'forum',
-  ];
-
-  /**
-   * Tests migration of 18ntaxonomy vocabulary settings.
-   */
-  public function testLanguageContentTaxonomy() {
-    $this->assertLanguageContentSettings('taxonomy_term', 'forums', LanguageInterface::LANGCODE_NOT_SPECIFIED, FALSE, ['enabled' => FALSE]);
-  }
-
-}
diff --git a/core/modules/forum/tests/src/Kernel/Migrate/d7/MigrateTaxonomyTermTest.php b/core/modules/forum/tests/src/Kernel/Migrate/d7/MigrateTaxonomyTermTest.php
deleted file mode 100644
index 8b50297b51cc..000000000000
--- a/core/modules/forum/tests/src/Kernel/Migrate/d7/MigrateTaxonomyTermTest.php
+++ /dev/null
@@ -1,86 +0,0 @@
-<?php
-
-declare(strict_types=1);
-
-namespace Drupal\Tests\forum\Kernel\Migrate\d7;
-
-use Drupal\Tests\forum\Kernel\Migrate\MigrateTestTrait;
-use Drupal\Tests\migrate_drupal\Kernel\d7\MigrateDrupal7TestBase;
-use Drupal\taxonomy\Entity\Term;
-
-/**
- * Test migration of forum taxonomy terms.
- *
- * @group forum
- */
-class MigrateTaxonomyTermTest extends MigrateDrupal7TestBase {
-
-  use MigrateTestTrait;
-  /**
-   * {@inheritdoc}
-   */
-  protected static $modules = [
-    'comment',
-    'forum',
-    'content_translation',
-    'datetime',
-    'datetime_range',
-    'image',
-    'language',
-    'menu_ui',
-    'node',
-    'taxonomy',
-    'text',
-  ];
-
-  /**
-   * {@inheritdoc}
-   */
-  protected function setUp(): void {
-    parent::setUp();
-    $this->installConfig('forum');
-    $this->installEntitySchema('comment');
-    $this->installEntitySchema('file');
-
-    $this->migrateTaxonomyTerms();
-    $this->executeMigrations([
-      'language',
-      'd7_user_role',
-      'd7_user',
-      'd7_entity_translation_settings',
-      'd7_taxonomy_term_entity_translation',
-    ]);
-  }
-
-  /**
-   * Gets the path to the fixture file.
-   */
-  protected function getFixtureFilePath() {
-    return __DIR__ . '/../../../../fixtures/drupal7.php';
-  }
-
-  /**
-   * Assert the forum taxonomy terms.
-   */
-  public function testTaxonomyTerms() {
-    $this->assertEntity(1, 'en', 'General discussion', 'forums', '', NULL, 2, ['0'], 0);
-
-    $this->assertEntity(5, 'en', 'Custom Forum', 'forums', 'Where the cool kids are.', NULL, 3, ['0'], 0);
-    $this->assertEntity(6, 'en', 'Games', 'forums', NULL, '', 4, ['0'], 1);
-    $this->assertEntity(7, 'en', 'Minecraft', 'forums', '', NULL, 1, [6], 0);
-    $this->assertEntity(8, 'en', 'Half Life 3', 'forums', '', NULL, 0, [6], 0);
-
-    // Verify that we still can create forum containers after the migration.
-    $term = Term::create([
-      'vid' => 'forums',
-      'name' => 'Forum Container',
-      'forum_container' => 1,
-    ]);
-    $term->save();
-
-    // Reset the forums tree data so this new term is included in the tree.
-    unset($this->treeData['forums']);
-    $this->assertEntity(9, 'en', 'Forum Container', 'forums', '', '', 0, ['0'], 1);
-  }
-
-}
diff --git a/core/modules/forum/tests/src/Kernel/Migrate/d7/MigrateTaxonomyTermTranslationTest.php b/core/modules/forum/tests/src/Kernel/Migrate/d7/MigrateTaxonomyTermTranslationTest.php
deleted file mode 100644
index db6d1e889097..000000000000
--- a/core/modules/forum/tests/src/Kernel/Migrate/d7/MigrateTaxonomyTermTranslationTest.php
+++ /dev/null
@@ -1,43 +0,0 @@
-<?php
-
-declare(strict_types=1);
-
-namespace Drupal\Tests\forum\Kernel\Migrate\d7;
-
-use Drupal\Tests\taxonomy\Kernel\Migrate\d7\MigrateTaxonomyTermTranslationTest as TaxonomyTermTranslationTest;
-
-/**
- * Test migration of translated taxonomy terms.
- *
- * @group forum
- */
-class MigrateTaxonomyTermTranslationTest extends TaxonomyTermTranslationTest {
-
-  /**
-   * {@inheritdoc}
-   */
-  protected static $modules = [
-    'comment',
-    'forum',
-  ];
-
-  /**
-   * Gets the path to the fixture file.
-   */
-  protected function getFixtureFilePath() {
-    return __DIR__ . '/../../../../fixtures/drupal7.php';
-  }
-
-  /**
-   * Tests the Drupal i18n  taxonomy term to Drupal 8 migration.
-   */
-  public function testTaxonomyTermTranslation() {
-    // Forums vocabulary, no multilingual option.
-    $this->assertEntity(1, 'en', 'General discussion', 'forums', NULL, NULL, 2, []);
-    $this->assertEntity(5, 'en', 'Custom Forum', 'forums', 'Where the cool kids are.', NULL, 3, []);
-    $this->assertEntity(6, 'en', 'Games', 'forums', NULL, NULL, 4, []);
-    $this->assertEntity(7, 'en', 'Minecraft', 'forums', NULL, NULL, 1, ['6']);
-    $this->assertEntity(8, 'en', 'Half Life 3', 'forums', NULL, NULL, 0, ['6']);
-  }
-
-}
diff --git a/core/modules/forum/tests/src/Kernel/Migrate/d7/MigrateTaxonomyVocabularyTest.php b/core/modules/forum/tests/src/Kernel/Migrate/d7/MigrateTaxonomyVocabularyTest.php
deleted file mode 100644
index 86cc2624db1b..000000000000
--- a/core/modules/forum/tests/src/Kernel/Migrate/d7/MigrateTaxonomyVocabularyTest.php
+++ /dev/null
@@ -1,39 +0,0 @@
-<?php
-
-declare(strict_types=1);
-
-namespace Drupal\Tests\forum\Kernel\Migrate\d7;
-
-use Drupal\Tests\taxonomy\Kernel\Migrate\d7\MigrateTaxonomyVocabularyTest as TaxonomyVocabularyTest;
-
-/**
- * Migrate forum vocabulary to taxonomy.vocabulary.*.yml.
- *
- * @group forum
- */
-class MigrateTaxonomyVocabularyTest extends TaxonomyVocabularyTest {
-
-  /**
-   * {@inheritdoc}
-   */
-  protected static $modules = [
-    'comment',
-    'forum',
-  ];
-
-  /**
-   * Gets the path to the fixture file.
-   */
-  protected function getFixtureFilePath() {
-    return __DIR__ . '/../../../../fixtures/drupal7.php';
-  }
-
-  /**
-   * Tests the Drupal 7 taxonomy vocabularies to Drupal 8 migration.
-   */
-  public function testTaxonomyVocabulary() {
-    $this->assertEntity('tags', 'Tags', 'Use tags to group articles on similar topics into categories.', 0);
-    $this->assertEntity('forums', 'Subject of discussion', 'Forum navigation vocabulary', -10);
-  }
-
-}
diff --git a/core/modules/forum/tests/src/Unit/Breadcrumb/ForumBreadcrumbBuilderBaseTest.php b/core/modules/forum/tests/src/Unit/Breadcrumb/ForumBreadcrumbBuilderBaseTest.php
deleted file mode 100644
index aa769e9b6fc2..000000000000
--- a/core/modules/forum/tests/src/Unit/Breadcrumb/ForumBreadcrumbBuilderBaseTest.php
+++ /dev/null
@@ -1,149 +0,0 @@
-<?php
-
-declare(strict_types=1);
-
-namespace Drupal\Tests\forum\Unit\Breadcrumb;
-
-use Drupal\Core\Cache\Cache;
-use Drupal\Core\Entity\EntityTypeManagerInterface;
-use Drupal\Core\Link;
-use Drupal\Tests\UnitTestCase;
-use Symfony\Component\DependencyInjection\Container;
-
-/**
- * @coversDefaultClass \Drupal\forum\Breadcrumb\ForumBreadcrumbBuilderBase
- * @group forum
- * @group legacy
- */
-class ForumBreadcrumbBuilderBaseTest extends UnitTestCase {
-
-  /**
-   * {@inheritdoc}
-   */
-  protected function setUp(): void {
-    parent::setUp();
-
-    $cache_contexts_manager = $this->getMockBuilder('Drupal\Core\Cache\Context\CacheContextsManager')
-      ->disableOriginalConstructor()
-      ->getMock();
-    $cache_contexts_manager->method('assertValidTokens')->willReturn(TRUE);
-    $container = new Container();
-    $container->set('cache_contexts_manager', $cache_contexts_manager);
-    \Drupal::setContainer($container);
-  }
-
-  /**
-   * Tests ForumBreadcrumbBuilderBase::__construct().
-   *
-   * @covers ::__construct
-   */
-  public function testConstructor() {
-    // Make some test doubles.
-    $entity_type_manager = $this->createMock(EntityTypeManagerInterface::class);
-    $config_factory = $this->getConfigFactoryStub(
-      [
-        'forum.settings' => ['IAmATestKey' => 'IAmATestValue'],
-      ]
-    );
-    $forum_manager = $this->createMock('Drupal\forum\ForumManagerInterface');
-    $translation_manager = $this->createMock('Drupal\Core\StringTranslation\TranslationInterface');
-
-    // Make an object to test.
-    $builder = $this->getMockForAbstractClass(
-      'Drupal\forum\Breadcrumb\ForumBreadcrumbBuilderBase',
-      // Constructor array.
-      [
-        $entity_type_manager,
-        $config_factory,
-        $forum_manager,
-        $translation_manager,
-      ]
-    );
-
-    // Test that the constructor made a config object with our info in it.
-    $reflector = new \ReflectionClass($builder);
-    $ref_property = $reflector->getProperty('config');
-    $config = $ref_property->getValue($builder);
-    $this->assertEquals('IAmATestValue', $config->get('IAmATestKey'));
-  }
-
-  /**
-   * Tests ForumBreadcrumbBuilderBase::build().
-   *
-   * @see \Drupal\forum\Breadcrumb\ForumBreadcrumbBuilderBase::build()
-   *
-   * @covers ::build
-   */
-  public function testBuild() {
-    // Build all our dependencies, backwards.
-    $translation_manager = $this->getMockBuilder('Drupal\Core\StringTranslation\TranslationInterface')
-      ->disableOriginalConstructor()
-      ->getMock();
-
-    $forum_manager = $this->getMockBuilder('Drupal\forum\ForumManagerInterface')
-      ->disableOriginalConstructor()
-      ->getMock();
-
-    $prophecy = $this->prophesize('Drupal\taxonomy\VocabularyInterface');
-    $prophecy->label()->willReturn('Fora_is_the_plural_of_forum');
-    $prophecy->id()->willReturn(5);
-    $prophecy->getCacheTags()->willReturn(['taxonomy_vocabulary:5']);
-    $prophecy->getCacheContexts()->willReturn([]);
-    $prophecy->getCacheMaxAge()->willReturn(Cache::PERMANENT);
-
-    $vocab_storage = $this->createMock('Drupal\Core\Entity\EntityStorageInterface');
-    $vocab_storage->expects($this->any())
-      ->method('load')
-      ->willReturnMap([
-        ['forums', $prophecy->reveal()],
-      ]);
-
-    $entity_type_manager = $this->createMock(EntityTypeManagerInterface::class);
-    $entity_type_manager->expects($this->any())
-      ->method('getStorage')
-      ->willReturnMap([
-        ['taxonomy_vocabulary', $vocab_storage],
-      ]);
-
-    $config_factory = $this->getConfigFactoryStub(
-      [
-        'forum.settings' => [
-          'vocabulary' => 'forums',
-        ],
-      ]
-    );
-
-    // Build a breadcrumb builder to test.
-    $breadcrumb_builder = $this->getMockForAbstractClass(
-      'Drupal\forum\Breadcrumb\ForumBreadcrumbBuilderBase',
-      // Constructor array.
-      [
-        $entity_type_manager,
-        $config_factory,
-        $forum_manager,
-        $translation_manager,
-      ]
-    );
-
-    // Add a translation manager for t().
-    $translation_manager = $this->getStringTranslationStub();
-    $breadcrumb_builder->setStringTranslation($translation_manager);
-
-    // Our empty data set.
-    $route_match = $this->createMock('Drupal\Core\Routing\RouteMatchInterface');
-
-    // Expected result set.
-    $expected = [
-      Link::createFromRoute('Home', '<front>'),
-      Link::createFromRoute('Fora_is_the_plural_of_forum', 'forum.index'),
-    ];
-
-    // And finally, the test.
-    $breadcrumb = $breadcrumb_builder->build($route_match);
-    $this->assertEquals($expected, $breadcrumb->getLinks());
-    $this->assertEquals(['route'], $breadcrumb->getCacheContexts());
-    $this->assertEquals(['taxonomy_vocabulary:5'], $breadcrumb->getCacheTags());
-    $this->assertEquals(Cache::PERMANENT, $breadcrumb->getCacheMaxAge());
-  }
-
-}
diff --git a/core/modules/forum/tests/src/Unit/Breadcrumb/ForumListingBreadcrumbBuilderTest.php b/core/modules/forum/tests/src/Unit/Breadcrumb/ForumListingBreadcrumbBuilderTest.php
deleted file mode 100644
index 29cc3e3eb587..000000000000
--- a/core/modules/forum/tests/src/Unit/Breadcrumb/ForumListingBreadcrumbBuilderTest.php
+++ /dev/null
@@ -1,218 +0,0 @@
-<?php
-
-declare(strict_types=1);
-
-namespace Drupal\Tests\forum\Unit\Breadcrumb;
-
-use Drupal\Core\Cache\Cache;
-use Drupal\Core\Entity\EntityTypeManagerInterface;
-use Drupal\Core\Link;
-use Drupal\forum\Breadcrumb\ForumListingBreadcrumbBuilder;
-use Drupal\taxonomy\Entity\Term;
-use Drupal\taxonomy\TermStorageInterface;
-use Drupal\Tests\UnitTestCase;
-use Symfony\Component\DependencyInjection\Container;
-
-/**
- * @coversDefaultClass \Drupal\forum\Breadcrumb\ForumListingBreadcrumbBuilder
- * @group forum
- * @group legacy
- */
-class ForumListingBreadcrumbBuilderTest extends UnitTestCase {
-
-  /**
-   * {@inheritdoc}
-   */
-  protected function setUp(): void {
-    parent::setUp();
-
-    $cache_contexts_manager = $this->getMockBuilder('Drupal\Core\Cache\Context\CacheContextsManager')
-      ->disableOriginalConstructor()
-      ->getMock();
-    $cache_contexts_manager->method('assertValidTokens')->willReturn(TRUE);
-    $container = new Container();
-    $container->set('cache_contexts_manager', $cache_contexts_manager);
-    \Drupal::setContainer($container);
-  }
-
-  /**
-   * Tests ForumListingBreadcrumbBuilder::applies().
-   *
-   * @param bool $expected
-   *   ForumListingBreadcrumbBuilder::applies() expected result.
-   * @param string|null $route_name
-   *   (optional) A route name.
-   * @param array $parameter_map
-   *   (optional) An array of parameter names and values.
-   *
-   * @dataProvider providerTestApplies
-   * @covers ::applies
-   */
-  public function testApplies(bool $expected, ?string $route_name = NULL, array $parameter_map = []): void {
-    // Make some test doubles.
-    $entity_type_manager = $this->createMock(EntityTypeManagerInterface::class);
-    $config_factory = $this->getConfigFactoryStub([]);
-    $forum_manager = $this->createMock('Drupal\forum\ForumManagerInterface');
-    $translation_manager = $this->createMock('Drupal\Core\StringTranslation\TranslationInterface');
-    $map = [];
-    if ($parameter_map) {
-      foreach ($parameter_map as $parameter) {
-        $map[] = [
-          $parameter[0],
-          $parameter[1] === TRUE ? $this->getMockBuilder(Term::class)->disableOriginalConstructor()->getMock() : $parameter[1],
-        ];
-      }
-    }
-
-    // Make an object to test.
-    $builder = new ForumListingBreadcrumbBuilder($entity_type_manager, $config_factory, $forum_manager, $translation_manager);
-
-    $route_match = $this->createMock('Drupal\Core\Routing\RouteMatchInterface');
-    $route_match->expects($this->once())
-      ->method('getRouteName')
-      ->willReturn($route_name);
-    $route_match->expects($this->any())
-      ->method('getParameter')
-      ->willReturnMap($map);
-
-    $this->assertEquals($expected, $builder->applies($route_match));
-  }
-
-  /**
-   * Provides test data for testApplies().
-   *
-   * @return \Generator
-   *   Datasets for testApplies(). Structured as such:
-   *   - ForumListBreadcrumbBuilder::applies() expected result.
-   *   - ForumListBreadcrumbBuilder::applies() $attributes input array.
-   */
-  public static function providerTestApplies(): \Generator {
-    yield [FALSE];
-    yield [FALSE, 'NOT.forum.page'];
-    yield [FALSE, 'forum.page'];
-    yield [TRUE, 'forum.page', [['taxonomy_term', 'anything']]];
-    yield [TRUE, 'forum.page', [['taxonomy_term', TRUE]]];
-  }
-
-  /**
-   * Tests ForumListingBreadcrumbBuilder::build().
-   *
-   * @see \Drupal\forum\ForumListingBreadcrumbBuilder::build()
-   *
-   * @covers ::build
-   */
-  public function testBuild() {
-    // Build all our dependencies, backwards.
-    $translation_manager = $this->getMockBuilder('Drupal\Core\StringTranslation\TranslationInterface')
-      ->disableOriginalConstructor()
-      ->getMock();
-
-    $prophecy = $this->prophesize('Drupal\taxonomy\Entity\Term');
-    $prophecy->label()->willReturn('Something');
-    $prophecy->id()->willReturn(1);
-    $prophecy->getCacheTags()->willReturn(['taxonomy_term:1']);
-    $prophecy->getCacheContexts()->willReturn([]);
-    $prophecy->getCacheMaxAge()->willReturn(Cache::PERMANENT);
-    $term1 = $prophecy->reveal();
-
-    $prophecy = $this->prophesize('Drupal\taxonomy\Entity\Term');
-    $prophecy->label()->willReturn('Something else');
-    $prophecy->id()->willReturn(2);
-    $prophecy->getCacheTags()->willReturn(['taxonomy_term:2']);
-    $prophecy->getCacheContexts()->willReturn([]);
-    $prophecy->getCacheMaxAge()->willReturn(Cache::PERMANENT);
-    $term2 = $prophecy->reveal();
-
-    $term_storage = $this->getMockBuilder(TermStorageInterface::class)->getMock();
-    $term_storage->expects($this->exactly(2))
-      ->method('loadAllParents')
-      ->willReturnOnConsecutiveCalls(
-        [$term1],
-        [$term1, $term2],
-      );
-
-    // The root forum.
-    $prophecy = $this->prophesize('Drupal\taxonomy\VocabularyInterface');
-    $prophecy->label()->willReturn('Fora_is_the_plural_of_forum');
-    $prophecy->id()->willReturn(5);
-    $prophecy->getCacheTags()->willReturn(['taxonomy_vocabulary:5']);
-    $prophecy->getCacheContexts()->willReturn([]);
-    $prophecy->getCacheMaxAge()->willReturn(Cache::PERMANENT);
-    $vocab_storage = $this->createMock('Drupal\Core\Entity\EntityStorageInterface');
-    $vocab_storage->expects($this->any())
-      ->method('load')
-      ->willReturnMap([
-        ['forums', $prophecy->reveal()],
-      ]);
-
-    $entity_type_manager = $this->getMockBuilder(EntityTypeManagerInterface::class)
-      ->disableOriginalConstructor()
-      ->getMock();
-    $entity_type_manager->expects($this->any())
-      ->method('getStorage')
-      ->willReturnMap([
-        ['taxonomy_vocabulary', $vocab_storage],
-        ['taxonomy_term', $term_storage],
-      ]);
-
-    $config_factory = $this->getConfigFactoryStub(
-      [
-        'forum.settings' => [
-          'vocabulary' => 'forums',
-        ],
-      ]
-    );
-
-    $forum_manager = $this->createMock('Drupal\forum\ForumManagerInterface');
-
-    // Build a breadcrumb builder to test.
-    $breadcrumb_builder = new ForumListingBreadcrumbBuilder($entity_type_manager, $config_factory, $forum_manager, $translation_manager);
-
-    // Add a translation manager for t().
-    $translation_manager = $this->getStringTranslationStub();
-    $breadcrumb_builder->setStringTranslation($translation_manager);
-
-    // The forum listing we need a breadcrumb back from.
-    $prophecy = $this->prophesize('Drupal\taxonomy\Entity\Term');
-    $prophecy->label()->willReturn('You_should_not_see_this');
-    $prophecy->id()->willReturn(23);
-    $prophecy->getCacheTags()->willReturn(['taxonomy_term:23']);
-    $prophecy->getCacheContexts()->willReturn([]);
-    $prophecy->getCacheMaxAge()->willReturn(Cache::PERMANENT);
-    $forum_listing = $prophecy->reveal();
-
-    // Our data set.
-    $route_match = $this->createMock('Drupal\Core\Routing\RouteMatchInterface');
-    $route_match->expects($this->exactly(2))
-      ->method('getParameter')
-      ->with('taxonomy_term')
-      ->willReturn($forum_listing);
-
-    // First test.
-    $expected1 = [
-      Link::createFromRoute('Home', '<front>'),
-      Link::createFromRoute('Fora_is_the_plural_of_forum', 'forum.index'),
-      Link::createFromRoute('Something', 'forum.page', ['taxonomy_term' => 1]),
-    ];
-    $breadcrumb = $breadcrumb_builder->build($route_match);
-    $this->assertEquals($expected1, $breadcrumb->getLinks());
-    $this->assertEqualsCanonicalizing(['route'], $breadcrumb->getCacheContexts());
-    $this->assertEqualsCanonicalizing(['taxonomy_term:1', 'taxonomy_term:23', 'taxonomy_vocabulary:5'], $breadcrumb->getCacheTags());
-    $this->assertEqualsCanonicalizing(Cache::PERMANENT, $breadcrumb->getCacheMaxAge());
-
-    // Second test.
-    $expected2 = [
-      Link::createFromRoute('Home', '<front>'),
-      Link::createFromRoute('Fora_is_the_plural_of_forum', 'forum.index'),
-      Link::createFromRoute('Something else', 'forum.page', ['taxonomy_term' => 2]),
-      Link::createFromRoute('Something', 'forum.page', ['taxonomy_term' => 1]),
-    ];
-    $breadcrumb = $breadcrumb_builder->build($route_match);
-    $this->assertEquals($expected2, $breadcrumb->getLinks());
-    $this->assertEqualsCanonicalizing(['route'], $breadcrumb->getCacheContexts());
-    $this->assertEqualsCanonicalizing(['taxonomy_term:1', 'taxonomy_term:2', 'taxonomy_term:23', 'taxonomy_vocabulary:5'], $breadcrumb->getCacheTags());
-    $this->assertEquals(Cache::PERMANENT, $breadcrumb->getCacheMaxAge());
-
-  }
-
-}
diff --git a/core/modules/forum/tests/src/Unit/Breadcrumb/ForumNodeBreadcrumbBuilderTest.php b/core/modules/forum/tests/src/Unit/Breadcrumb/ForumNodeBreadcrumbBuilderTest.php
deleted file mode 100644
index 47b223916a96..000000000000
--- a/core/modules/forum/tests/src/Unit/Breadcrumb/ForumNodeBreadcrumbBuilderTest.php
+++ /dev/null
@@ -1,222 +0,0 @@
-<?php
-
-declare(strict_types=1);
-
-namespace Drupal\Tests\forum\Unit\Breadcrumb;
-
-use Drupal\Core\Cache\Cache;
-use Drupal\Core\Entity\EntityTypeManagerInterface;
-use Drupal\Core\Link;
-use Drupal\forum\Breadcrumb\ForumNodeBreadcrumbBuilder;
-use Drupal\node\Entity\Node;
-use Drupal\taxonomy\TermStorageInterface;
-use Drupal\Tests\UnitTestCase;
-use Symfony\Component\DependencyInjection\Container;
-
-/**
- * @coversDefaultClass \Drupal\forum\Breadcrumb\ForumNodeBreadcrumbBuilder
- * @group forum
- * @group legacy
- */
-class ForumNodeBreadcrumbBuilderTest extends UnitTestCase {
-
-  /**
-   * {@inheritdoc}
-   */
-  protected function setUp(): void {
-    parent::setUp();
-
-    $cache_contexts_manager = $this->getMockBuilder('Drupal\Core\Cache\Context\CacheContextsManager')
-      ->disableOriginalConstructor()
-      ->getMock();
-    $cache_contexts_manager->method('assertValidTokens')->willReturn(TRUE);
-    $container = new Container();
-    $container->set('cache_contexts_manager', $cache_contexts_manager);
-    \Drupal::setContainer($container);
-  }
-
-  /**
-   * Tests ForumNodeBreadcrumbBuilder::applies().
-   *
-   * @param bool $expected
-   *   ForumNodeBreadcrumbBuilder::applies() expected result.
-   * @param string|null $route_name
-   *   (optional) A route name.
-   * @param array $parameter_map
-   *   (optional) An array of parameter names and values.
-   *
-   * @dataProvider providerTestApplies
-   * @covers ::applies
-   */
-  public function testApplies(bool $expected, ?string $route_name = NULL, array $parameter_map = []): void {
-    // Make some test doubles.
-    $entity_type_manager = $this->createMock(EntityTypeManagerInterface::class);
-    $config_factory = $this->getConfigFactoryStub([]);
-    $map = [];
-    if ($parameter_map) {
-      foreach ($parameter_map as $parameter) {
-        $map[] = [
-          $parameter[0],
-          $parameter[1] === TRUE ? $this->getMockBuilder(Node::class)->disableOriginalConstructor()->getMock() : $parameter[1],
-        ];
-      }
-    }
-
-    $forum_manager = $this->createMock('Drupal\forum\ForumManagerInterface');
-    $forum_manager->expects($this->any())
-      ->method('checkNodeType')
-      ->willReturn(TRUE);
-
-    $translation_manager = $this->createMock('Drupal\Core\StringTranslation\TranslationInterface');
-
-    // Make an object to test.
-    $builder = new ForumNodeBreadcrumbBuilder($entity_type_manager, $config_factory, $forum_manager, $translation_manager);
-
-    $route_match = $this->createMock('Drupal\Core\Routing\RouteMatchInterface');
-    $route_match->expects($this->once())
-      ->method('getRouteName')
-      ->willReturn($route_name);
-    $route_match->expects($this->any())
-      ->method('getParameter')
-      ->willReturnMap($map);
-
-    $this->assertEquals($expected, $builder->applies($route_match));
-  }
-
-  /**
-   * Provides test data for testApplies().
-   *
-   * Note that this test is incomplete, because we can't mock NodeInterface.
-   *
-   * @return \Generator
-   *   Datasets for testApplies(). Structured as such:
-   *   - ForumNodeBreadcrumbBuilder::applies() expected result.
-   *   - ForumNodeBreadcrumbBuilder::applies() $attributes input array.
-   */
-  public static function providerTestApplies(): \Generator {
-    yield [FALSE];
-    yield [FALSE, 'NOT.entity.node.canonical'];
-    yield [FALSE, 'entity.node.canonical'];
-    yield [FALSE, 'entity.node.canonical', [['node', NULL]]];
-    yield [TRUE, 'entity.node.canonical', [['node', TRUE]]];
-  }
-
-  /**
-   * Tests ForumNodeBreadcrumbBuilder::build().
-   *
-   * @see \Drupal\forum\ForumNodeBreadcrumbBuilder::build()
-   * @covers ::build
-   */
-  public function testBuild() {
-    // Build all our dependencies, backwards.
-    $translation_manager = $this->getMockBuilder('Drupal\Core\StringTranslation\TranslationInterface')
-      ->disableOriginalConstructor()
-      ->getMock();
-
-    $prophecy = $this->prophesize('Drupal\taxonomy\Entity\Term');
-    $prophecy->label()->willReturn('Something');
-    $prophecy->id()->willReturn(1);
-    $prophecy->getCacheTags()->willReturn(['taxonomy_term:1']);
-    $prophecy->getCacheContexts()->willReturn([]);
-    $prophecy->getCacheMaxAge()->willReturn(Cache::PERMANENT);
-    $term1 = $prophecy->reveal();
-
-    $prophecy = $this->prophesize('Drupal\taxonomy\Entity\Term');
-    $prophecy->label()->willReturn('Something else');
-    $prophecy->id()->willReturn(2);
-    $prophecy->getCacheTags()->willReturn(['taxonomy_term:2']);
-    $prophecy->getCacheContexts()->willReturn([]);
-    $prophecy->getCacheMaxAge()->willReturn(Cache::PERMANENT);
-    $term2 = $prophecy->reveal();
-
-    $forum_manager = $this->getMockBuilder('Drupal\forum\ForumManagerInterface')
-      ->disableOriginalConstructor()
-      ->getMock();
-    $term_storage = $this->getMockBuilder(TermStorageInterface::class)->getMock();
-    $term_storage->expects($this->exactly(2))
-      ->method('loadAllParents')
-      ->willReturnOnConsecutiveCalls(
-        [$term1],
-        [$term1, $term2],
-      );
-
-    $prophecy = $this->prophesize('Drupal\taxonomy\VocabularyInterface');
-    $prophecy->label()->willReturn('Forums');
-    $prophecy->id()->willReturn(5);
-    $prophecy->getCacheTags()->willReturn(['taxonomy_vocabulary:5']);
-    $prophecy->getCacheContexts()->willReturn([]);
-    $prophecy->getCacheMaxAge()->willReturn(Cache::PERMANENT);
-    $vocab_storage = $this->createMock('Drupal\Core\Entity\EntityStorageInterface');
-    $vocab_storage->expects($this->any())
-      ->method('load')
-      ->willReturnMap([
-        ['forums', $prophecy->reveal()],
-      ]);
-
-    $entity_type_manager = $this->getMockBuilder(EntityTypeManagerInterface::class)
-      ->disableOriginalConstructor()
-      ->getMock();
-    $entity_type_manager->expects($this->any())
-      ->method('getStorage')
-      ->willReturnMap([
-        ['taxonomy_vocabulary', $vocab_storage],
-        ['taxonomy_term', $term_storage],
-      ]);
-
-    $config_factory = $this->getConfigFactoryStub(
-      [
-        'forum.settings' => [
-          'vocabulary' => 'forums',
-        ],
-      ]
-    );
-
-    // Build a breadcrumb builder to test.
-    $breadcrumb_builder = new ForumNodeBreadcrumbBuilder($entity_type_manager,
-      $config_factory,
-      $forum_manager,
-      $translation_manager);
-
-    // Add a translation manager for t().
-    $translation_manager = $this->getStringTranslationStub();
-    $breadcrumb_builder->setStringTranslation($translation_manager);
-
-    // The forum node we need a breadcrumb back from.
-    $forum_node = $this->getMockBuilder('Drupal\node\Entity\Node')
-      ->disableOriginalConstructor()
-      ->getMock();
-
-    // Our data set.
-    $route_match = $this->createMock('Drupal\Core\Routing\RouteMatchInterface');
-    $route_match->expects($this->exactly(2))
-      ->method('getParameter')
-      ->with('node')
-      ->willReturn($forum_node);
-
-    // First test.
-    $expected1 = [
-      Link::createFromRoute('Home', '<front>'),
-      Link::createFromRoute('Forums', 'forum.index'),
-      Link::createFromRoute('Something', 'forum.page', ['taxonomy_term' => 1]),
-    ];
-    $breadcrumb = $breadcrumb_builder->build($route_match);
-    $this->assertEquals($expected1, $breadcrumb->getLinks());
-    $this->assertEqualsCanonicalizing(['route'], $breadcrumb->getCacheContexts());
-    $this->assertEqualsCanonicalizing(['taxonomy_term:1', 'taxonomy_vocabulary:5'], $breadcrumb->getCacheTags());
-    $this->assertEquals(Cache::PERMANENT, $breadcrumb->getCacheMaxAge());
-
-    // Second test.
-    $expected2 = [
-      Link::createFromRoute('Home', '<front>'),
-      Link::createFromRoute('Forums', 'forum.index'),
-      Link::createFromRoute('Something else', 'forum.page', ['taxonomy_term' => 2]),
-      Link::createFromRoute('Something', 'forum.page', ['taxonomy_term' => 1]),
-    ];
-    $breadcrumb = $breadcrumb_builder->build($route_match);
-    $this->assertEquals($expected2, $breadcrumb->getLinks());
-    $this->assertEqualsCanonicalizing(['route'], $breadcrumb->getCacheContexts());
-    $this->assertEqualsCanonicalizing(['taxonomy_term:1', 'taxonomy_term:2', 'taxonomy_vocabulary:5'], $breadcrumb->getCacheTags());
-    $this->assertEquals(Cache::PERMANENT, $breadcrumb->getCacheMaxAge());
-  }
-
-}
diff --git a/core/modules/forum/tests/src/Unit/ForumManagerTest.php b/core/modules/forum/tests/src/Unit/ForumManagerTest.php
deleted file mode 100644
index eb6da8998170..000000000000
--- a/core/modules/forum/tests/src/Unit/ForumManagerTest.php
+++ /dev/null
@@ -1,93 +0,0 @@
-<?php
-
-declare(strict_types=1);
-
-namespace Drupal\Tests\forum\Unit;
-
-use Drupal\Core\Entity\EntityFieldManagerInterface;
-use Drupal\Core\Entity\EntityTypeManagerInterface;
-use Drupal\Tests\UnitTestCase;
-
-/**
- * @coversDefaultClass \Drupal\forum\ForumManager
- * @group forum
- * @group legacy
- */
-class ForumManagerTest extends UnitTestCase {
-
-  /**
-   * Tests ForumManager::getIndex().
-   */
-  public function testGetIndex() {
-    $entity_field_manager = $this->createMock(EntityFieldManagerInterface::class);
-    $entity_type_manager = $this->createMock(EntityTypeManagerInterface::class);
-
-    $storage = $this->getMockBuilder('\Drupal\taxonomy\VocabularyStorage')
-      ->disableOriginalConstructor()
-      ->getMock();
-
-    $config_factory = $this->createMock('\Drupal\Core\Config\ConfigFactoryInterface');
-
-    $config = $this->getMockBuilder('\Drupal\Core\Config\Config')
-      ->disableOriginalConstructor()
-      ->getMock();
-
-    $config_factory->expects($this->once())
-      ->method('get')
-      ->willReturn($config);
-
-    $config->expects($this->once())
-      ->method('get')
-      ->willReturn('forums');
-
-    $entity_type_manager->expects($this->once())
-      ->method('getStorage')
-      ->willReturn($storage);
-
-    // This is sufficient for testing purposes.
-    $term = new \stdClass();
-
-    $storage->expects($this->once())
-      ->method('create')
-      ->willReturn($term);
-
-    $connection = $this->getMockBuilder('\Drupal\Core\Database\Connection')
-      ->disableOriginalConstructor()
-      ->getMock();
-
-    $translation_manager = $this->getMockBuilder('\Drupal\Core\StringTranslation\TranslationManager')
-      ->disableOriginalConstructor()
-      ->getMock();
-
-    $comment_manager = $this->getMockBuilder('\Drupal\comment\CommentManagerInterface')
-      ->disableOriginalConstructor()
-      ->getMock();
-
-    $manager = $this->getMockBuilder('\Drupal\forum\ForumManager')
-      ->onlyMethods(['getChildren'])
-      ->setConstructorArgs([
-        $config_factory,
-        $entity_type_manager,
-        $connection,
-        $translation_manager,
-        $comment_manager,
-        $entity_field_manager,
-      ])
-      ->getMock();
-
-    $manager->expects($this->once())
-      ->method('getChildren')
-      ->willReturn([]);
-
-    // Get the index once.
-    $index1 = $manager->getIndex();
-
-    // Get it again. This should not return the previously generated index. If
-    // it does not, then the test will fail as the mocked methods will be called
-    // more than once.
-    $index2 = $manager->getIndex();
-
-    $this->assertEquals($index1, $index2);
-  }
-
-}
diff --git a/core/modules/forum/tests/src/Unit/ForumUninstallValidatorTest.php b/core/modules/forum/tests/src/Unit/ForumUninstallValidatorTest.php
deleted file mode 100644
index 19ebe9ccb9ef..000000000000
--- a/core/modules/forum/tests/src/Unit/ForumUninstallValidatorTest.php
+++ /dev/null
@@ -1,241 +0,0 @@
-<?php
-
-declare(strict_types=1);
-
-namespace Drupal\Tests\forum\Unit;
-
-use Drupal\Core\Url;
-use Drupal\Tests\UnitTestCase;
-
-/**
- * @coversDefaultClass \Drupal\forum\ForumUninstallValidator
- * @group forum
- * @group legacy
- */
-class ForumUninstallValidatorTest extends UnitTestCase {
-
-  /**
-   * @var \Drupal\forum\ForumUninstallValidator|\PHPUnit\Framework\MockObject\MockObject
-   */
-  protected $forumUninstallValidator;
-
-  /**
-   * {@inheritdoc}
-   */
-  protected function setUp(): void {
-    parent::setUp();
-    $this->forumUninstallValidator = $this->getMockBuilder('Drupal\forum\ForumUninstallValidator')
-      ->disableOriginalConstructor()
-      ->onlyMethods(['hasForumNodes', 'hasTermsForVocabulary', 'getForumVocabulary'])
-      ->getMock();
-    $this->forumUninstallValidator->setStringTranslation($this->getStringTranslationStub());
-  }
-
-  /**
-   * @covers ::validate
-   */
-  public function testValidateNotForum() {
-    $this->forumUninstallValidator->expects($this->never())
-      ->method('hasForumNodes');
-    $this->forumUninstallValidator->expects($this->never())
-      ->method('hasTermsForVocabulary');
-    $this->forumUninstallValidator->expects($this->never())
-      ->method('getForumVocabulary');
-
-    $module = 'not_forum';
-    $expected = [];
-    $reasons = $this->forumUninstallValidator->validate($module);
-    $this->assertEquals($expected, $reasons);
-  }
-
-  /**
-   * @covers ::validate
-   */
-  public function testValidate() {
-    $this->forumUninstallValidator->expects($this->once())
-      ->method('hasForumNodes')
-      ->willReturn(FALSE);
-
-    $vocabulary = $this->createMock('Drupal\taxonomy\VocabularyInterface');
-    $this->forumUninstallValidator->expects($this->once())
-      ->method('getForumVocabulary')
-      ->willReturn($vocabulary);
-
-    $this->forumUninstallValidator->expects($this->once())
-      ->method('hasTermsForVocabulary')
-      ->willReturn(FALSE);
-
-    $module = 'forum';
-    $expected = [];
-    $reasons = $this->forumUninstallValidator->validate($module);
-    $this->assertEquals($expected, $reasons);
-  }
-
-  /**
-   * @covers ::validate
-   */
-  public function testValidateHasForumNodes() {
-    $this->forumUninstallValidator->expects($this->once())
-      ->method('hasForumNodes')
-      ->willReturn(TRUE);
-
-    $vocabulary = $this->createMock('Drupal\taxonomy\VocabularyInterface');
-    $this->forumUninstallValidator->expects($this->once())
-      ->method('getForumVocabulary')
-      ->willReturn($vocabulary);
-
-    $this->forumUninstallValidator->expects($this->once())
-      ->method('hasTermsForVocabulary')
-      ->willReturn(FALSE);
-
-    $module = 'forum';
-    $expected = [
-      'To uninstall Forum, first delete all <em>Forum</em> content',
-    ];
-    $reasons = $this->forumUninstallValidator->validate($module);
-    $this->assertEquals($expected, $reasons);
-  }
-
-  /**
-   * @covers ::validate
-   */
-  public function testValidateHasTermsForVocabularyWithNodesAccess() {
-    $this->forumUninstallValidator->expects($this->once())
-      ->method('hasForumNodes')
-      ->willReturn(TRUE);
-
-    $url = $this->prophesize(Url::class);
-    $url->toString()->willReturn('/path/to/vocabulary/overview');
-
-    $vocabulary = $this->createMock('Drupal\taxonomy\VocabularyInterface');
-    $vocabulary->expects($this->once())
-      ->method('label')
-      ->willReturn('Vocabulary label');
-    $vocabulary->expects($this->once())
-      ->method('toUrl')
-      ->willReturn($url->reveal());
-    $vocabulary->expects($this->once())
-      ->method('access')
-      ->willReturn(TRUE);
-    $this->forumUninstallValidator->expects($this->once())
-      ->method('getForumVocabulary')
-      ->willReturn($vocabulary);
-
-    $this->forumUninstallValidator->expects($this->once())
-      ->method('hasTermsForVocabulary')
-      ->willReturn(TRUE);
-
-    $module = 'forum';
-    $expected = [
-      'To uninstall Forum, first delete all <em>Forum</em> content',
-      'To uninstall Forum, first delete all <a href="/path/to/vocabulary/overview"><em class="placeholder">Vocabulary label</em></a> terms',
-    ];
-    $reasons = $this->forumUninstallValidator->validate($module);
-    $this->assertEquals($expected, $reasons);
-  }
-
-  /**
-   * @covers ::validate
-   */
-  public function testValidateHasTermsForVocabularyWithNodesNoAccess() {
-    $this->forumUninstallValidator->expects($this->once())
-      ->method('hasForumNodes')
-      ->willReturn(TRUE);
-
-    $vocabulary = $this->createMock('Drupal\taxonomy\VocabularyInterface');
-    $vocabulary->expects($this->once())
-      ->method('label')
-      ->willReturn('Vocabulary label');
-    $vocabulary->expects($this->never())
-      ->method('toUrl');
-    $vocabulary->expects($this->once())
-      ->method('access')
-      ->willReturn(FALSE);
-    $this->forumUninstallValidator->expects($this->once())
-      ->method('getForumVocabulary')
-      ->willReturn($vocabulary);
-
-    $this->forumUninstallValidator->expects($this->once())
-      ->method('hasTermsForVocabulary')
-      ->willReturn(TRUE);
-
-    $module = 'forum';
-    $expected = [
-      'To uninstall Forum, first delete all <em>Forum</em> content',
-      'To uninstall Forum, first delete all <em class="placeholder">Vocabulary label</em> terms',
-    ];
-    $reasons = $this->forumUninstallValidator->validate($module);
-    $this->assertEquals($expected, $reasons);
-  }
-
-  /**
-   * @covers ::validate
-   */
-  public function testValidateHasTermsForVocabularyAccess() {
-    $this->forumUninstallValidator->expects($this->once())
-      ->method('hasForumNodes')
-      ->willReturn(FALSE);
-
-    $url = $this->prophesize(Url::class);
-    $url->toString()->willReturn('/path/to/vocabulary/overview');
-
-    $vocabulary = $this->createMock('Drupal\taxonomy\VocabularyInterface');
-    $vocabulary->expects($this->once())
-      ->method('toUrl')
-      ->willReturn($url->reveal());
-    $vocabulary->expects($this->once())
-      ->method('label')
-      ->willReturn('Vocabulary label');
-    $vocabulary->expects($this->once())
-      ->method('access')
-      ->willReturn(TRUE);
-    $this->forumUninstallValidator->expects($this->once())
-      ->method('getForumVocabulary')
-      ->willReturn($vocabulary);
-
-    $this->forumUninstallValidator->expects($this->once())
-      ->method('hasTermsForVocabulary')
-      ->willReturn(TRUE);
-
-    $module = 'forum';
-    $expected = [
-      'To uninstall Forum, first delete all <a href="/path/to/vocabulary/overview"><em class="placeholder">Vocabulary label</em></a> terms',
-    ];
-    $reasons = $this->forumUninstallValidator->validate($module);
-    $this->assertEquals($expected, $reasons);
-  }
-
-  /**
-   * @covers ::validate
-   */
-  public function testValidateHasTermsForVocabularyNoAccess() {
-    $this->forumUninstallValidator->expects($this->once())
-      ->method('hasForumNodes')
-      ->willReturn(FALSE);
-
-    $vocabulary = $this->createMock('Drupal\taxonomy\VocabularyInterface');
-    $vocabulary->expects($this->once())
-      ->method('label')
-      ->willReturn('Vocabulary label');
-    $vocabulary->expects($this->never())
-      ->method('toUrl');
-    $vocabulary->expects($this->once())
-      ->method('access')
-      ->willReturn(FALSE);
-    $this->forumUninstallValidator->expects($this->once())
-      ->method('getForumVocabulary')
-      ->willReturn($vocabulary);
-
-    $this->forumUninstallValidator->expects($this->once())
-      ->method('hasTermsForVocabulary')
-      ->willReturn(TRUE);
-
-    $module = 'forum';
-    $expected = [
-      'To uninstall Forum, first delete all <em class="placeholder">Vocabulary label</em> terms',
-    ];
-    $reasons = $this->forumUninstallValidator->validate($module);
-    $this->assertEquals($expected, $reasons);
-  }
-
-}
diff --git a/core/modules/migrate/tests/src/Kernel/Plugin/MigrationPluginListTest.php b/core/modules/migrate/tests/src/Kernel/Plugin/MigrationPluginListTest.php
index e046189cdc39..0cf6b2c814ff 100644
--- a/core/modules/migrate/tests/src/Kernel/Plugin/MigrationPluginListTest.php
+++ b/core/modules/migrate/tests/src/Kernel/Plugin/MigrationPluginListTest.php
@@ -39,8 +39,6 @@ class MigrationPluginListTest extends KernelTestBase {
     'field',
     'file',
     'filter',
-    // @todo Remove forum in https://www.drupal.org/project/drupal/issues/3261653
-    'forum',
     'image',
     'language',
     'locale',
diff --git a/core/modules/migrate_drupal/tests/src/Kernel/StateFileExistsTest.php b/core/modules/migrate_drupal/tests/src/Kernel/StateFileExistsTest.php
index d3f9804d991f..140e03e58976 100644
--- a/core/modules/migrate_drupal/tests/src/Kernel/StateFileExistsTest.php
+++ b/core/modules/migrate_drupal/tests/src/Kernel/StateFileExistsTest.php
@@ -52,8 +52,6 @@ class StateFileExistsTest extends MigrateDrupalTestBase {
     'field',
     'file',
     'filter',
-    // @todo Remove forum in https://www.drupal.org/project/drupal/issues/3261653
-    'forum',
     'image',
     'language',
     'link',
diff --git a/core/modules/migrate_drupal/tests/src/Kernel/d6/MigrateDrupal6AuditIdsTest.php b/core/modules/migrate_drupal/tests/src/Kernel/d6/MigrateDrupal6AuditIdsTest.php
index 85d638f92e6d..509f934c381e 100644
--- a/core/modules/migrate_drupal/tests/src/Kernel/d6/MigrateDrupal6AuditIdsTest.php
+++ b/core/modules/migrate_drupal/tests/src/Kernel/d6/MigrateDrupal6AuditIdsTest.php
@@ -40,8 +40,6 @@ protected function setUp(): void {
     // @todo Remove book in https://www.drupal.org/project/drupal/issues/3376101
     $this->installSchema('book', ['book']);
     $this->installSchema('dblog', ['watchdog']);
-    // @todo Remove forum in https://www.drupal.org/project/drupal/issues/3261653
-    $this->installSchema('forum', ['forum_index']);
     $this->installSchema('node', ['node_access']);
     $this->installSchema('search', ['search_dataset']);
 
diff --git a/core/modules/migrate_drupal/tests/src/Kernel/d7/MigrateDrupal7AuditIdsTest.php b/core/modules/migrate_drupal/tests/src/Kernel/d7/MigrateDrupal7AuditIdsTest.php
index 8359ae7a9cfa..b27f94c6e560 100644
--- a/core/modules/migrate_drupal/tests/src/Kernel/d7/MigrateDrupal7AuditIdsTest.php
+++ b/core/modules/migrate_drupal/tests/src/Kernel/d7/MigrateDrupal7AuditIdsTest.php
@@ -38,8 +38,6 @@ protected function setUp(): void {
     // @todo Remove book in https://www.drupal.org/project/drupal/issues/3376101
     $this->installSchema('book', ['book']);
     $this->installSchema('dblog', ['watchdog']);
-    // @todo Remove forum in https://www.drupal.org/project/drupal/issues/3261653
-    $this->installSchema('forum', ['forum_index']);
     $this->installSchema('node', ['node_access']);
     $this->installSchema('search', ['search_dataset']);
 
diff --git a/core/modules/views/tests/src/Kernel/Handler/HandlerAllTest.php b/core/modules/views/tests/src/Kernel/Handler/HandlerAllTest.php
index c9cc7df15619..392157b9a9e7 100644
--- a/core/modules/views/tests/src/Kernel/Handler/HandlerAllTest.php
+++ b/core/modules/views/tests/src/Kernel/Handler/HandlerAllTest.php
@@ -35,7 +35,6 @@ class HandlerAllTest extends ViewsKernelTestBase {
     'field',
     'filter',
     'file',
-    'forum',
     'history',
     'image',
     'language',
@@ -66,7 +65,6 @@ public function testHandlers(): void {
     $this->installEntitySchema('taxonomy_term');
     $this->installEntitySchema('user');
     $this->installSchema('file', ['file_usage']);
-    $this->installSchema('forum', ['forum_index']);
     $this->installSchema('dblog', ['watchdog']);
     // Create the comment body field storage.
     FieldStorageConfig::create([
diff --git a/core/profiles/demo_umami/themes/umami/css/classy/components/forum.css b/core/profiles/demo_umami/themes/umami/css/classy/components/forum.css
deleted file mode 100644
index c35e3f4411e6..000000000000
--- a/core/profiles/demo_umami/themes/umami/css/classy/components/forum.css
+++ /dev/null
@@ -1,46 +0,0 @@
-/**
- * @file
- * Styling for the Forum module.
- */
-
-.forum__description {
-  margin: 0.5em;
-  font-size: 0.9em;
-}
-.forum__icon {
-  float: left; /* LTR */
-  width: 24px;
-  height: 24px;
-  margin: 0 9px 0 0; /* LTR */
-  background-image: url(../../../images/classy/icons/forum-icons.png);
-  background-repeat: no-repeat;
-}
-[dir="rtl"] .forum__icon {
-  float: right;
-  margin: 0 0 0 9px;
-}
-.forum__title {
-  overflow: hidden;
-}
-.forum .indented {
-  margin-left: 20px; /* LTR */
-}
-[dir="rtl"] .forum .indented {
-  margin-right: 20px;
-  margin-left: 0;
-}
-.forum__topic-status--new {
-  background-position: -24px 0;
-}
-.forum__topic-status--hot {
-  background-position: -48px 0;
-}
-.forum__topic-status--hot-new {
-  background-position: -72px 0;
-}
-.forum__topic-status--sticky {
-  background-position: -96px 0;
-}
-.forum__topic-status--closed {
-  background-position: -120px 0;
-}
diff --git a/core/profiles/demo_umami/themes/umami/images/classy/icons/forum-icons.png b/core/profiles/demo_umami/themes/umami/images/classy/icons/forum-icons.png
deleted file mode 100644
index e291de672522..000000000000
--- a/core/profiles/demo_umami/themes/umami/images/classy/icons/forum-icons.png
+++ /dev/null
@@ -1,10 +0,0 @@
-‰PNG
-
-���
IHDR���������"{„?��PLTE���ÿÿÿŸŸŸÃÃÃwww³³³‡‡‡ŸŸŸ¯¯¯“““ŸŸŸ³³³§§§“““»»»¯¯¯»»»ŸŸŸ‡‡‡¯¯¯‡‡‡›››‹‹‹¯¯¯‡‡‡———¯¯¯³³³ÿÿÿ‡‡‡ûûûÿÿÿ»»»§§§¯¯¯ŸŸŸ£££›››···‡‡‡““““““‡‡‡‡‡‡‡‡‡‡‡‡‡‡‡‡‡‡ûûûŸŸŸ‡‡‡‹‹‹ûûû¯¯¯‡‡‡§§§³³³···»»»ûûû‡‡‡»»»‡‡‡¯¯¯›››“““———‡‡‡‡‡‡‹‹‹ûûû›››÷÷÷£££§§§···»»»———‡‡‡“““ÿÿÿ§§§›››‡‡‡‹‹‹¯¯¯‡‡‡›››———“““‡‡‡“““———§§§‡‡‡———‹‹‹›››¯¯¯···»»»ÿÿÿ‡‡‡“““ÿÿÿ‡‡‡«««ßß߯¯¯³³³···‡‡‡‹‹‹ïïï“““³³³»»»‡‡‡§§§ûûûŸŸŸŸŸŸ£££««««««‡‡‡···§§§»»»›››£££§§§ûûû§§§ÛÛÛ¯¯¯›››‹‹‹ŸŸŸ‡‡‡«««———³³³···»»»ÃÃÃÇÇÇËËËÓÓÓ××ד““çççóóó÷÷÷ûûûÿÿÿ¿¿¿ÏÏÏïï£ßßßãããëëëtP[þ���ŒtRNS�	
-
-    %***+,..001479=HKMX\ddhiimsvxxxxxxyy{}ƒƒŠ••›¥®¯±±³³µ·¼¼½ÀÂÂÂÃÆÇÏÐÑÑÑÒÕÖÖÖ×ÛÛàáááäääçèéëëëììíîðôõöøøúûûüüüýýþþþ甐��IDATx^µ‘…·E‡JiS
--êÒâîî”/RÜŠhq·W¤P|dÕ]bï¯äÎÝÉî&›äÀãð圼ó¾ùíoîæ*
·mÛ¨tþÜw?8Åÿ”ŸeëÝOøÕ±ïü¶­]ïÞÿeÚúˆyùÛÿEÞYÔ?ÛsÜß8~@㘞õõÍÇtý8§A~ãÉÛÀüòž‹?sÂ$“$¡õÉùs¼c¥=zí9sòv+OççmKPŒl&˜Îw{ÎøÔO³<Ï3Iê}tjã³ÊÇÌ "ðp훼ÛÊgM>¬ó0ÌçyÈF•?³êéÜ{â;~–£mnxcKۏ
-‡„f9áwà=¸uyÞ¶Úy&(Äaa ¤ÎgÝe‡f3¤ìÖ)`0h^v§²ÃZ·ä™ ÌrÀ5HÅ$?.`ÔqÝc€W^(gê!ç>3íÇDÓ4®…ÙÇè;xËòbIvŽ¤Œ ™÷ó<ƒxòâTÜ»ùШ=KŠô‡Mèk°,ùqÓæŸFÝ€¼ôÝü!±#Œú90&Võ‡$„‡Ó€PÙ=Êy$hO“â>|~QíqDnšQd&ýÚcV¾W“—-˜‡ª¼ÄÂ¥”zçUÞqªç-¾E!ô(ëVlü|0büvìº=ê8Òèx0¤}ð¿@Óx$>˜G/LÛù±"ŸW¬Ϋ~æaEæøö(Êî4ƒE|sŸ¢<~rCé& =7ݧlùs@!)<É¿-½Ô“|=»ÅŠ8²’sn¢§†a¨u¯r¦Ql©	Ls§ôò AŸ$£Ê…ƒÚ7ùh—ôÀt{4Ž0OŸ™‚]àÁj\ÂêE9òÎÝÕ´…íÝ0Ï;äµ
Êúß­9yôÝüë²a0OHƒØÛxÇæ€Y÷�½—ÁØ4î§÷íÒ›ÜgüñšgÍ懕gÜìxÙ#(ó„9yÆ£HösA–áé¤9ùÉÈŒ�΍q
-”ÞôB£Ñ«à/àƒU§öãÆkàöï‡ðíååp(½)CìšôH.}
-ÜP-XUO[ì×OŒ,fÿÈë­@x5ÈLUúH@)þ©{ê‘nzèÅ/TUÕÕ"‰õKf½®'þÙBcý<
-Ãqµñ¼ö€ôÝ~ZêÒËŸß É·9遟u]<ýÊ%þ>m¤Enši¡/ò‹{TI?Œ<'*ÐÉKÎÞ£®Yâ{¯ÔTÎ\‡Dº:åË®ïö-éUØ ñ}"²u‡Ëß„ƒ{–ùÓ¿bý4(Hd2—f¾ÞöIíKua*ý[°AÉ«u—£®ÿ\¿k©¿ì}±d•©/ݲį¥¿Ë	W½Ü÷î=8¬V£¾wÕR¿†þµqÊ
>ÿí‡{×ñÏI¿FþEà2gz‚¿L����IEND®B`‚
\ No newline at end of file
diff --git a/core/profiles/demo_umami/themes/umami/templates/classy/dataset/forum-icon.html.twig b/core/profiles/demo_umami/themes/umami/templates/classy/dataset/forum-icon.html.twig
deleted file mode 100644
index d6be503bb2af..000000000000
--- a/core/profiles/demo_umami/themes/umami/templates/classy/dataset/forum-icon.html.twig
+++ /dev/null
@@ -1,30 +0,0 @@
-{#
-/**
- * @file
- * Theme override to display a status icon for a forum post.
- *
- * Available variables:
- * - attributes: HTML attributes to be applied to the wrapper element.
- *   - class: HTML classes that determine which icon to display. May be one of
- *     'hot', 'hot-new', 'new', 'default', 'closed', or 'sticky'.
- *   - title: Text alternative for the forum icon.
- * - icon_title: Text alternative for the forum icon, same as above.
- * - new_posts: '1' when this topic contains new posts, otherwise '0'.
- * - first_new: '1' when this is the first topic with new posts, otherwise '0'.
- * - icon_status: Indicates which status icon should be used.
- *
- * @see template_preprocess_forum_icon()
- */
-#}
-{%
-  set classes = [
-    'forum__icon',
-    'forum__topic-status--' ~ icon_status,
-  ]
-%}
-<div{{ attributes.addClass(classes) }}>
-  {% if first_new -%}
-    <a id="new"></a>
-  {%- endif %}
-  <span class="visually-hidden">{{ icon_title }}</span>
-</div>
diff --git a/core/profiles/demo_umami/themes/umami/templates/classy/dataset/forum-list.html.twig b/core/profiles/demo_umami/themes/umami/templates/classy/dataset/forum-list.html.twig
deleted file mode 100644
index d8523f159827..000000000000
--- a/core/profiles/demo_umami/themes/umami/templates/classy/dataset/forum-list.html.twig
+++ /dev/null
@@ -1,79 +0,0 @@
-{#
-/**
- * @file
- * Theme override to display a list of forums and containers.
- *
- * Available variables:
- * - forums: A collection of forums and containers to display. It is keyed to
- *   the numeric IDs of all child forums and containers. Each forum in forums
- *   contains:
- *   - is_container: A flag indicating if the forum can contain other
- *     forums. Otherwise, the forum can only contain topics.
- *   - depth: How deep the forum is in the current hierarchy.
- *   - zebra: 'even' or 'odd', used for row class.
- *   - icon_class: 'default' or 'new', used for forum icon class.
- *   - icon_title: Text alternative for the forum icon.
- *   - name: The name of the forum.
- *   - link: The URL to link to this forum.
- *   - description: The description field for the forum, containing:
- *     - value: The descriptive text for the forum.
- *   - new_topics: A flag indicating if the forum contains unread posts.
- *   - new_url: A URL to the forum's unread posts.
- *   - new_text: Text for the above URL, which tells how many new posts.
- *   - old_topics: A count of posts that have already been read.
- *   - num_posts: The total number of posts in the forum.
- *   - last_reply: Text representing the last time a forum was posted or
- *     commented in.
- * - forum_id: Forum ID for the current forum. Parent to all items within the
- *   forums array.
- *
- * @see template_preprocess_forum_list()
- */
-#}
-<table id="forum-{{ forum_id }}">
-  <thead>
-    <tr>
-      <th>{{ 'Forum'|t }}</th>
-      <th>{{ 'Topics'|t }}</th>
-      <th>{{ 'Posts'|t }}</th>
-      <th>{{ 'Last post'|t }}</th>
-    </tr>
-  </thead>
-  <tbody>
-  {% for child_id, forum in forums %}
-    <tr id="forum-list-{{ child_id }}" class="{{ forum.zebra }}">
-      <td {% if forum.is_container == true -%}
-        colspan="4" class="container"
-      {%- else -%}
-        class="forum-list__forum"
-      {%- endif -%}>
-        {#
-          Enclose the contents of this cell with X divs, where X is the
-          depth this forum resides at. This will allow us to use CSS
-          left-margin for indenting.
-        #}
-        {% if forum.depth > 0 %}{% for i in 1..forum.depth %}<div class="indented">{% endfor %}{% endif %}
-          <div class="forum__icon forum-status-{{ forum.icon_class }}" title="{{ forum.icon_title }}">
-            <span class="visually-hidden">{{ forum.icon_title }}</span>
-          </div>
-          <div class="forum__name"><a href="{{ forum.link }}">{{ forum.label }}</a></div>
-          {% if forum.description.value %}
-            <div class="forum__description">{{ forum.description.value }}</div>
-          {% endif %}
-          {% if forum.depth > 0 %}{% for i in 1..forum.depth %}</div>{% endfor %}{% endif %}
-      </td>
-      {% if forum.is_container == false %}
-        <td class="forum__topics">
-          {{ forum.num_topics }}
-          {% if forum.new_topics == true %}
-            <br />
-            <a href="{{ forum.new_url }}">{{ forum.new_text }}</a>
-          {% endif %}
-        </td>
-        <td class="forum__posts">{{ forum.num_posts }}</td>
-        <td class="forum__last-reply">{{ forum.last_reply }}</td>
-      {% endif %}
-    </tr>
-  {% endfor %}
-  </tbody>
-</table>
diff --git a/core/profiles/demo_umami/themes/umami/templates/classy/dataset/forums.html.twig b/core/profiles/demo_umami/themes/umami/templates/classy/dataset/forums.html.twig
deleted file mode 100644
index 9dc8e55f6912..000000000000
--- a/core/profiles/demo_umami/themes/umami/templates/classy/dataset/forums.html.twig
+++ /dev/null
@@ -1,24 +0,0 @@
-{#
-/**
- * @file
- * Theme override to display a forum.
- *
- * May contain forum containers as well as forum topics.
- *
- * Available variables:
- * - forums: The forums to display (as processed by forum-list.html.twig).
- * - topics: The topics to display.
- * - topics_pager: The topics pager.
- * - forums_defined: A flag to indicate that the forums are configured.
- *
- * @see template_preprocess_forums()
- */
-#}
-{{ attach_library('umami/classy.forum') }}
-{% if forums_defined %}
-  <div class="forum">
-    {{ forums }}
-    {{ topics }}
-    {{ topics_pager }}
-  </div>
-{% endif %}
diff --git a/core/profiles/demo_umami/themes/umami/templates/classy/user/forum-submitted.html.twig b/core/profiles/demo_umami/themes/umami/templates/classy/user/forum-submitted.html.twig
deleted file mode 100644
index 57311e96b59b..000000000000
--- a/core/profiles/demo_umami/themes/umami/templates/classy/user/forum-submitted.html.twig
+++ /dev/null
@@ -1,21 +0,0 @@
-{#
-/**
- * @file
- * Theme override for a forum post submission string.
- *
- * The submission string indicates when and by whom a topic was submitted.
- *
- * Available variables:
- * - author: The author of the post.
- * - time: How long ago the post was created.
- * - topic: An object with the raw data of the post. Potentially unsafe. Be
- *   sure to clean this data before printing.
- *
- * @see template_preprocess_forum_submitted()
- */
-#}
-{% if time %}
-  <span class="submitted">{% trans %}By {{ author }} {{ time }} ago{% endtrans %}</span>
-{% else %}
-  {{ 'n/a'|t }}
-{% endif %}
diff --git a/core/profiles/demo_umami/themes/umami/umami.libraries.yml b/core/profiles/demo_umami/themes/umami/umami.libraries.yml
index ba1c10cf6537..7dabe901b4af 100644
--- a/core/profiles/demo_umami/themes/umami/umami.libraries.yml
+++ b/core/profiles/demo_umami/themes/umami/umami.libraries.yml
@@ -135,12 +135,6 @@ classy.file:
     component:
       css/classy/components/file.css: { weight: -10 }
 
-classy.forum:
-  version: VERSION
-  css:
-    component:
-      css/classy/components/forum.css: { weight: -10 }
-
 classy.indented:
   version: VERSION
   css:
diff --git a/core/themes/claro/claro.libraries.yml b/core/themes/claro/claro.libraries.yml
index 0c362bb8ed23..d9af437f1c7e 100644
--- a/core/themes/claro/claro.libraries.yml
+++ b/core/themes/claro/claro.libraries.yml
@@ -321,12 +321,6 @@ classy.file:
     component:
       css/classy/components/file.css: { weight: -10 }
 
-classy.forum:
-  version: VERSION
-  css:
-    component:
-      css/classy/components/forum.css: { weight: -10 }
-
 classy.indented:
   version: VERSION
   css:
diff --git a/core/themes/claro/css/classy/components/forum.css b/core/themes/claro/css/classy/components/forum.css
deleted file mode 100644
index c35e3f4411e6..000000000000
--- a/core/themes/claro/css/classy/components/forum.css
+++ /dev/null
@@ -1,46 +0,0 @@
-/**
- * @file
- * Styling for the Forum module.
- */
-
-.forum__description {
-  margin: 0.5em;
-  font-size: 0.9em;
-}
-.forum__icon {
-  float: left; /* LTR */
-  width: 24px;
-  height: 24px;
-  margin: 0 9px 0 0; /* LTR */
-  background-image: url(../../../images/classy/icons/forum-icons.png);
-  background-repeat: no-repeat;
-}
-[dir="rtl"] .forum__icon {
-  float: right;
-  margin: 0 0 0 9px;
-}
-.forum__title {
-  overflow: hidden;
-}
-.forum .indented {
-  margin-left: 20px; /* LTR */
-}
-[dir="rtl"] .forum .indented {
-  margin-right: 20px;
-  margin-left: 0;
-}
-.forum__topic-status--new {
-  background-position: -24px 0;
-}
-.forum__topic-status--hot {
-  background-position: -48px 0;
-}
-.forum__topic-status--hot-new {
-  background-position: -72px 0;
-}
-.forum__topic-status--sticky {
-  background-position: -96px 0;
-}
-.forum__topic-status--closed {
-  background-position: -120px 0;
-}
diff --git a/core/themes/claro/images/classy/icons/forum-icons.png b/core/themes/claro/images/classy/icons/forum-icons.png
deleted file mode 100644
index e291de672522..000000000000
--- a/core/themes/claro/images/classy/icons/forum-icons.png
+++ /dev/null
@@ -1,10 +0,0 @@
-‰PNG
-
-���
IHDR���������"{„?��PLTE���ÿÿÿŸŸŸÃÃÃwww³³³‡‡‡ŸŸŸ¯¯¯“““ŸŸŸ³³³§§§“““»»»¯¯¯»»»ŸŸŸ‡‡‡¯¯¯‡‡‡›››‹‹‹¯¯¯‡‡‡———¯¯¯³³³ÿÿÿ‡‡‡ûûûÿÿÿ»»»§§§¯¯¯ŸŸŸ£££›››···‡‡‡““““““‡‡‡‡‡‡‡‡‡‡‡‡‡‡‡‡‡‡ûûûŸŸŸ‡‡‡‹‹‹ûûû¯¯¯‡‡‡§§§³³³···»»»ûûû‡‡‡»»»‡‡‡¯¯¯›››“““———‡‡‡‡‡‡‹‹‹ûûû›››÷÷÷£££§§§···»»»———‡‡‡“““ÿÿÿ§§§›››‡‡‡‹‹‹¯¯¯‡‡‡›››———“““‡‡‡“““———§§§‡‡‡———‹‹‹›››¯¯¯···»»»ÿÿÿ‡‡‡“““ÿÿÿ‡‡‡«««ßß߯¯¯³³³···‡‡‡‹‹‹ïïï“““³³³»»»‡‡‡§§§ûûûŸŸŸŸŸŸ£££««««««‡‡‡···§§§»»»›››£££§§§ûûû§§§ÛÛÛ¯¯¯›››‹‹‹ŸŸŸ‡‡‡«««———³³³···»»»ÃÃÃÇÇÇËËËÓÓÓ××ד““çççóóó÷÷÷ûûûÿÿÿ¿¿¿ÏÏÏïï£ßßßãããëëëtP[þ���ŒtRNS�	
-
-    %***+,..001479=HKMX\ddhiimsvxxxxxxyy{}ƒƒŠ••›¥®¯±±³³µ·¼¼½ÀÂÂÂÃÆÇÏÐÑÑÑÒÕÖÖÖ×ÛÛàáááäääçèéëëëììíîðôõöøøúûûüüüýýþþþ甐��IDATx^µ‘…·E‡JiS
--êÒâîî”/RÜŠhq·W¤P|dÕ]bï¯äÎÝÉî&›äÀãð圼ó¾ùíoîæ*
·mÛ¨tþÜw?8Åÿ”ŸeëÝOøÕ±ïü¶­]ïÞÿeÚúˆyùÛÿEÞYÔ?ÛsÜß8~@㘞õõÍÇtý8§A~ãÉÛÀüòž‹?sÂ$“$¡õÉùs¼c¥=zí9sòv+OççmKPŒl&˜Îw{ÎøÔO³<Ï3Iê}tjã³ÊÇÌ "ðp훼ÛÊgM>¬ó0ÌçyÈF•?³êéÜ{â;~–£mnxcKۏ
-‡„f9áwà=¸uyÞ¶Úy&(Äaa ¤ÎgÝe‡f3¤ìÖ)`0h^v§²ÃZ·ä™ ÌrÀ5HÅ$?.`ÔqÝc€W^(gê!ç>3íÇDÓ4®…ÙÇè;xËòbIvŽ¤Œ ™÷ó<ƒxòâTÜ»ùШ=KŠô‡Mèk°,ùqÓæŸFÝ€¼ôÝü!±#Œú90&Võ‡$„‡Ó€PÙ=Êy$hO“â>|~QíqDnšQd&ýÚcV¾W“—-˜‡ª¼ÄÂ¥”zçUÞqªç-¾E!ô(ëVlü|0büvìº=ê8Òèx0¤}ð¿@Óx$>˜G/LÛù±"ŸW¬Ϋ~æaEæøö(Êî4ƒE|sŸ¢<~rCé& =7ݧlùs@!)<É¿-½Ô“|=»ÅŠ8²’sn¢§†a¨u¯r¦Ql©	Ls§ôò AŸ$£Ê…ƒÚ7ùh—ôÀt{4Ž0OŸ™‚]àÁj\ÂêE9òÎÝÕ´…íÝ0Ï;äµ
Êúß­9yôÝüë²a0OHƒØÛxÇæ€Y÷�½—ÁØ4î§÷íÒ›ÜgüñšgÍ懕gÜìxÙ#(ó„9yÆ£HösA–áé¤9ùÉÈŒ�΍q
-”ÞôB£Ñ«à/àƒU§öãÆkàöï‡ðíååp(½)CìšôH.}
-ÜP-XUO[ì×OŒ,fÿÈë­@x5ÈLUúH@)þ©{ê‘nzèÅ/TUÕÕ"‰õKf½®'þÙBcý<
-Ãqµñ¼ö€ôÝ~ZêÒËŸß É·9遟u]<ýÊ%þ>m¤Enši¡/ò‹{TI?Œ<'*ÐÉKÎÞ£®Yâ{¯ÔTÎ\‡Dº:åË®ïö-éUØ ñ}"²u‡Ëß„ƒ{–ùÓ¿bý4(Hd2—f¾ÞöIíKua*ý[°AÉ«u—£®ÿ\¿k©¿ì}±d•©/ݲį¥¿Ë	W½Ü÷î=8¬V£¾wÕR¿†þµqÊ
>ÿí‡{×ñÏI¿FþEà2gz‚¿L����IEND®B`‚
\ No newline at end of file
diff --git a/core/themes/claro/templates/classy/dataset/forum-icon.html.twig b/core/themes/claro/templates/classy/dataset/forum-icon.html.twig
deleted file mode 100644
index d6be503bb2af..000000000000
--- a/core/themes/claro/templates/classy/dataset/forum-icon.html.twig
+++ /dev/null
@@ -1,30 +0,0 @@
-{#
-/**
- * @file
- * Theme override to display a status icon for a forum post.
- *
- * Available variables:
- * - attributes: HTML attributes to be applied to the wrapper element.
- *   - class: HTML classes that determine which icon to display. May be one of
- *     'hot', 'hot-new', 'new', 'default', 'closed', or 'sticky'.
- *   - title: Text alternative for the forum icon.
- * - icon_title: Text alternative for the forum icon, same as above.
- * - new_posts: '1' when this topic contains new posts, otherwise '0'.
- * - first_new: '1' when this is the first topic with new posts, otherwise '0'.
- * - icon_status: Indicates which status icon should be used.
- *
- * @see template_preprocess_forum_icon()
- */
-#}
-{%
-  set classes = [
-    'forum__icon',
-    'forum__topic-status--' ~ icon_status,
-  ]
-%}
-<div{{ attributes.addClass(classes) }}>
-  {% if first_new -%}
-    <a id="new"></a>
-  {%- endif %}
-  <span class="visually-hidden">{{ icon_title }}</span>
-</div>
diff --git a/core/themes/claro/templates/classy/dataset/forum-list.html.twig b/core/themes/claro/templates/classy/dataset/forum-list.html.twig
deleted file mode 100644
index d8523f159827..000000000000
--- a/core/themes/claro/templates/classy/dataset/forum-list.html.twig
+++ /dev/null
@@ -1,79 +0,0 @@
-{#
-/**
- * @file
- * Theme override to display a list of forums and containers.
- *
- * Available variables:
- * - forums: A collection of forums and containers to display. It is keyed to
- *   the numeric IDs of all child forums and containers. Each forum in forums
- *   contains:
- *   - is_container: A flag indicating if the forum can contain other
- *     forums. Otherwise, the forum can only contain topics.
- *   - depth: How deep the forum is in the current hierarchy.
- *   - zebra: 'even' or 'odd', used for row class.
- *   - icon_class: 'default' or 'new', used for forum icon class.
- *   - icon_title: Text alternative for the forum icon.
- *   - name: The name of the forum.
- *   - link: The URL to link to this forum.
- *   - description: The description field for the forum, containing:
- *     - value: The descriptive text for the forum.
- *   - new_topics: A flag indicating if the forum contains unread posts.
- *   - new_url: A URL to the forum's unread posts.
- *   - new_text: Text for the above URL, which tells how many new posts.
- *   - old_topics: A count of posts that have already been read.
- *   - num_posts: The total number of posts in the forum.
- *   - last_reply: Text representing the last time a forum was posted or
- *     commented in.
- * - forum_id: Forum ID for the current forum. Parent to all items within the
- *   forums array.
- *
- * @see template_preprocess_forum_list()
- */
-#}
-<table id="forum-{{ forum_id }}">
-  <thead>
-    <tr>
-      <th>{{ 'Forum'|t }}</th>
-      <th>{{ 'Topics'|t }}</th>
-      <th>{{ 'Posts'|t }}</th>
-      <th>{{ 'Last post'|t }}</th>
-    </tr>
-  </thead>
-  <tbody>
-  {% for child_id, forum in forums %}
-    <tr id="forum-list-{{ child_id }}" class="{{ forum.zebra }}">
-      <td {% if forum.is_container == true -%}
-        colspan="4" class="container"
-      {%- else -%}
-        class="forum-list__forum"
-      {%- endif -%}>
-        {#
-          Enclose the contents of this cell with X divs, where X is the
-          depth this forum resides at. This will allow us to use CSS
-          left-margin for indenting.
-        #}
-        {% if forum.depth > 0 %}{% for i in 1..forum.depth %}<div class="indented">{% endfor %}{% endif %}
-          <div class="forum__icon forum-status-{{ forum.icon_class }}" title="{{ forum.icon_title }}">
-            <span class="visually-hidden">{{ forum.icon_title }}</span>
-          </div>
-          <div class="forum__name"><a href="{{ forum.link }}">{{ forum.label }}</a></div>
-          {% if forum.description.value %}
-            <div class="forum__description">{{ forum.description.value }}</div>
-          {% endif %}
-          {% if forum.depth > 0 %}{% for i in 1..forum.depth %}</div>{% endfor %}{% endif %}
-      </td>
-      {% if forum.is_container == false %}
-        <td class="forum__topics">
-          {{ forum.num_topics }}
-          {% if forum.new_topics == true %}
-            <br />
-            <a href="{{ forum.new_url }}">{{ forum.new_text }}</a>
-          {% endif %}
-        </td>
-        <td class="forum__posts">{{ forum.num_posts }}</td>
-        <td class="forum__last-reply">{{ forum.last_reply }}</td>
-      {% endif %}
-    </tr>
-  {% endfor %}
-  </tbody>
-</table>
diff --git a/core/themes/claro/templates/classy/dataset/forums.html.twig b/core/themes/claro/templates/classy/dataset/forums.html.twig
deleted file mode 100644
index 438c98cbbacf..000000000000
--- a/core/themes/claro/templates/classy/dataset/forums.html.twig
+++ /dev/null
@@ -1,24 +0,0 @@
-{#
-/**
- * @file
- * Theme override to display a forum.
- *
- * May contain forum containers as well as forum topics.
- *
- * Available variables:
- * - forums: The forums to display (as processed by forum-list.html.twig).
- * - topics: The topics to display.
- * - topics_pager: The topics pager.
- * - forums_defined: A flag to indicate that the forums are configured.
- *
- * @see template_preprocess_forums()
- */
-#}
-{{ attach_library('claro/classy.forum') }}
-{% if forums_defined %}
-  <div class="forum">
-    {{ forums }}
-    {{ topics }}
-    {{ topics_pager }}
-  </div>
-{% endif %}
diff --git a/core/themes/claro/templates/classy/user/forum-submitted.html.twig b/core/themes/claro/templates/classy/user/forum-submitted.html.twig
deleted file mode 100644
index 57311e96b59b..000000000000
--- a/core/themes/claro/templates/classy/user/forum-submitted.html.twig
+++ /dev/null
@@ -1,21 +0,0 @@
-{#
-/**
- * @file
- * Theme override for a forum post submission string.
- *
- * The submission string indicates when and by whom a topic was submitted.
- *
- * Available variables:
- * - author: The author of the post.
- * - time: How long ago the post was created.
- * - topic: An object with the raw data of the post. Potentially unsafe. Be
- *   sure to clean this data before printing.
- *
- * @see template_preprocess_forum_submitted()
- */
-#}
-{% if time %}
-  <span class="submitted">{% trans %}By {{ author }} {{ time }} ago{% endtrans %}</span>
-{% else %}
-  {{ 'n/a'|t }}
-{% endif %}
diff --git a/core/themes/olivero/css/components/forum.css b/core/themes/olivero/css/components/forum.css
deleted file mode 100644
index c190f55791cf..000000000000
--- a/core/themes/olivero/css/components/forum.css
+++ /dev/null
@@ -1,22 +0,0 @@
-/*
- * DO NOT EDIT THIS FILE.
- * See the following change record for more information,
- * https://www.drupal.org/node/3084859
- * @preserve
- */
-
-/**
- * @file
- * Forum specific styles.
- */
-
-.forum table {
-  width: 100%;
-}
-
-.forum__name--link,
-.forum__last-reply a,
-.forum__title a {
-  color: var(--color-text-primary-medium);
-  font-weight: bold;
-}
diff --git a/core/themes/olivero/css/components/forum.pcss.css b/core/themes/olivero/css/components/forum.pcss.css
deleted file mode 100644
index 5ae66f88120b..000000000000
--- a/core/themes/olivero/css/components/forum.pcss.css
+++ /dev/null
@@ -1,19 +0,0 @@
-/**
- * @file
- * Forum specific styles.
- */
-
-@import "../base/media-queries.pcss.css";
-
-.forum {
-  & table {
-    width: 100%;
-  }
-}
-
-.forum__name--link,
-.forum__last-reply a,
-.forum__title a {
-  color: var(--color-text-primary-medium);
-  font-weight: bold;
-}
diff --git a/core/themes/olivero/css/components/table.css b/core/themes/olivero/css/components/table.css
index eb6602777bd6..a5c5d84e953f 100644
--- a/core/themes/olivero/css/components/table.css
+++ b/core/themes/olivero/css/components/table.css
@@ -10,7 +10,6 @@
  * User generated tables.
  */
 
-.forum table,
 .text-content table,
 .views-table,
 .draggable-table {
@@ -25,7 +24,7 @@
   line-height: var(--sp1-5);
 }
 
-:is(.forum table, .text-content table, .views-table, .draggable-table) caption {
+:is(.text-content table, .views-table, .draggable-table) caption {
   margin-block-end: var(--sp1);
   text-align: start;
   color: var(--color-text-neutral-medium);
@@ -35,19 +34,19 @@
   line-height: var(--sp);
 }
 
-:is(.forum table, .text-content table, .views-table, .draggable-table) tr:last-child td {
+:is(.text-content table, .views-table, .draggable-table) tr:last-child td {
   border-block-end: 0;
 }
 
-:is(.forum table, .text-content table, .views-table, .draggable-table) td,
-:is(.forum table, .text-content table, .views-table, .draggable-table) th {
+:is(.text-content table, .views-table, .draggable-table) td,
+:is(.text-content table, .views-table, .draggable-table) th {
   padding-block: var(--sp1);
   padding-inline-start: 0;
   padding-inline-end: var(--sp1);
   vertical-align: top;
 }
 
-:is(.forum table, .text-content table, .views-table, .draggable-table) th {
+:is(.text-content table, .views-table, .draggable-table) th {
   margin-block: 0;
   margin-inline-start: 0;
   margin-inline-end: 0;
@@ -60,13 +59,13 @@
   line-height: var(--sp);
 }
 
-:is(.forum table, .text-content table, .views-table, .draggable-table) td {
+:is(.text-content table, .views-table, .draggable-table) td {
   white-space: normal;
   border-block-end: 2px solid var(--color--gray-65);
 }
 
-:is(.forum table, .text-content table, .views-table, .draggable-table) th.checkbox,
-:is(.forum table, .text-content table, .views-table, .draggable-table) td.checkbox {
+:is(.text-content table, .views-table, .draggable-table) th.checkbox,
+:is(.text-content table, .views-table, .draggable-table) td.checkbox {
   text-align: center;
 }
 
diff --git a/core/themes/olivero/css/components/table.pcss.css b/core/themes/olivero/css/components/table.pcss.css
index 1a879aebab6e..a2a17da48ccc 100644
--- a/core/themes/olivero/css/components/table.pcss.css
+++ b/core/themes/olivero/css/components/table.pcss.css
@@ -5,7 +5,6 @@
 
 @import "../base/media-queries.pcss.css";
 
-.forum table,
 .text-content table,
 .views-table,
 .draggable-table {
diff --git a/core/themes/olivero/olivero.libraries.yml b/core/themes/olivero/olivero.libraries.yml
index 7fce73c7e52f..9d70a8769414 100644
--- a/core/themes/olivero/olivero.libraries.yml
+++ b/core/themes/olivero/olivero.libraries.yml
@@ -145,12 +145,6 @@ filter.theme:
     component:
       css/theme/filter.theme.css: {}
 
-forum:
-  version: VERSION
-  css:
-    component:
-      css/components/forum.css: {}
-
 layout_builder_fourcol_section:
   version: VERSION
   css:
diff --git a/core/themes/olivero/templates/dataset/forum-list.html.twig b/core/themes/olivero/templates/dataset/forum-list.html.twig
deleted file mode 100644
index 2d537faa27da..000000000000
--- a/core/themes/olivero/templates/dataset/forum-list.html.twig
+++ /dev/null
@@ -1,79 +0,0 @@
-{#
-/**
- * @file
- * Theme override to display a list of forums and containers.
- *
- * Available variables:
- * - forums: A collection of forums and containers to display. It is keyed to
- *   the numeric IDs of all child forums and containers. Each forum in forums
- *   contains:
- *   - is_container: A flag indicating if the forum can contain other
- *     forums. Otherwise, the forum can only contain topics.
- *   - depth: How deep the forum is in the current hierarchy.
- *   - zebra: 'even' or 'odd', used for row class.
- *   - icon_class: 'default' or 'new', used for forum icon class.
- *   - icon_title: Text alternative for the forum icon.
- *   - name: The name of the forum.
- *   - link: The URL to link to this forum.
- *   - description: The description field for the forum, containing:
- *     - value: The descriptive text for the forum.
- *   - new_topics: A flag indicating if the forum contains unread posts.
- *   - new_url: A URL to the forum's unread posts.
- *   - new_text: Text for the above URL, which tells how many new posts.
- *   - old_topics: A count of posts that have already been read.
- *   - num_posts: The total number of posts in the forum.
- *   - last_reply: Text representing the last time a forum was posted or
- *     commented in.
- * - forum_id: Forum ID for the current forum. Parent to all items within the
- *   forums array.
- *
- * @see template_preprocess_forum_list()
- */
-#}
-<table id="forum-{{ forum_id }}">
-  <thead>
-    <tr>
-      <th>{{ 'Forum'|t }}</th>
-      <th>{{ 'Topics'|t }}</th>
-      <th>{{ 'Posts'|t }}</th>
-      <th>{{ 'Last post'|t }}</th>
-    </tr>
-  </thead>
-  <tbody>
-  {% for child_id, forum in forums %}
-    <tr id="forum-list-{{ child_id }}" class="{{ forum.zebra }}">
-      <td {% if forum.is_container == true -%}
-        colspan="4" class="container"
-      {%- else -%}
-        class="forum-list__forum"
-      {%- endif -%}>
-        {#
-          Enclose the contents of this cell with X divs, where X is the
-          depth this forum resides at. This will allow us to use CSS
-          left-margin for indenting.
-        #}
-        {% if forum.depth > 0 %}{% for i in 1..forum.depth %}<div class="indented">{% endfor %}{% endif %}
-          <div class="forum__icon forum-status-{{ forum.icon_class }}" title="{{ forum.icon_title }}">
-            <span class="visually-hidden">{{ forum.icon_title }}</span>
-          </div>
-          <div class="forum__name"><a href="{{ forum.link }} " class="forum__name--link">{{ forum.label }}</a></div>
-          {% if forum.description.value %}
-            <div class="forum__description">{{ forum.description.value }}</div>
-          {% endif %}
-          {% if forum.depth > 0 %}{% for i in 1..forum.depth %}</div>{% endfor %}{% endif %}
-      </td>
-      {% if forum.is_container == false %}
-        <td class="forum__topics">
-          {{ forum.num_topics }}
-          {% if forum.new_topics == true %}
-            <br />
-            <a href="{{ forum.new_url }}">{{ forum.new_text }}</a>
-          {% endif %}
-        </td>
-        <td class="forum__posts">{{ forum.num_posts }}</td>
-        <td class="forum__last-reply">{{ forum.last_reply }}</td>
-      {% endif %}
-    </tr>
-  {% endfor %}
-  </tbody>
-</table>
diff --git a/core/themes/olivero/templates/dataset/forums.html.twig b/core/themes/olivero/templates/dataset/forums.html.twig
deleted file mode 100644
index 457f4678088d..000000000000
--- a/core/themes/olivero/templates/dataset/forums.html.twig
+++ /dev/null
@@ -1,24 +0,0 @@
-{#
-/**
- * @file
- * Theme override to display a forum.
- *
- * May contain forum containers as well as forum topics.
- *
- * Available variables:
- * - forums: The forums to display (as processed by forum-list.html.twig).
- * - topics: The topics to display.
- * - topics_pager: The topics pager.
- * - forums_defined: A flag to indicate that the forums are configured.
- *
- * @see template_preprocess_forums()
- */
-#}
-{{ attach_library('olivero/forum') }}
-{% if forums_defined %}
-  <div class="forum">
-    {{ forums }}
-    {{ topics }}
-    {{ topics_pager }}
-  </div>
-{% endif %}
diff --git a/core/themes/stable9/templates/dataset/forum-icon.html.twig b/core/themes/stable9/templates/dataset/forum-icon.html.twig
deleted file mode 100644
index 37a970e17ace..000000000000
--- a/core/themes/stable9/templates/dataset/forum-icon.html.twig
+++ /dev/null
@@ -1,24 +0,0 @@
-{#
-/**
- * @file
- * Theme override to display a status icon for a forum post.
- *
- * Available variables:
- * - attributes: HTML attributes to be applied to the wrapper element.
- *   - class: HTML classes that determine which icon to display. May be one of
- *     'hot', 'hot-new', 'new', 'default', 'closed', or 'sticky'.
- *   - title: Text alternative for the forum icon.
- * - icon_title: Text alternative for the forum icon, same as above.
- * - new_posts: '1' when this topic contains new posts, otherwise '0'.
- * - first_new: '1' when this is the first topic with new posts, otherwise '0'.
- * - icon_status: Indicates which status icon should be used.
- *
- * @see template_preprocess_forum_icon()
- */
-#}
-<div{{ attributes }}>
-  {% if first_new -%}
-    <a id="new"></a>
-  {%- endif %}
-  <span class="visually-hidden">{{ icon_title }}</span>
-</div>
diff --git a/core/themes/stable9/templates/dataset/forum-list.html.twig b/core/themes/stable9/templates/dataset/forum-list.html.twig
deleted file mode 100644
index 892c59156a0b..000000000000
--- a/core/themes/stable9/templates/dataset/forum-list.html.twig
+++ /dev/null
@@ -1,75 +0,0 @@
-{#
-/**
- * @file
- * Theme override to display a list of forums and containers.
- *
- * Available variables:
- * - forums: A collection of forums and containers to display. It is keyed to
- *   the numeric IDs of all child forums and containers. Each forum in forums
- *   contains:
- *   - is_container: A flag indicating if the forum can contain other
- *     forums. Otherwise, the forum can only contain topics.
- *   - depth: How deep the forum is in the current hierarchy.
- *   - zebra: 'even' or 'odd', used for row class.
- *   - icon_class: 'default' or 'new', used for forum icon class.
- *   - icon_title: Text alternative for the forum icon.
- *   - name: The name of the forum.
- *   - link: The URL to link to this forum.
- *   - description: The description field for the forum, containing:
- *     - value: The descriptive text for the forum.
- *   - new_topics: A flag indicating if the forum contains unread posts.
- *   - new_url: A URL to the forum's unread posts.
- *   - new_text: Text for the above URL, which tells how many new posts.
- *   - old_topics: A count of posts that have already been read.
- *   - num_posts: The total number of posts in the forum.
- *   - last_reply: Text representing the last time a forum was posted or
- *     commented in.
- * - forum_id: Forum ID for the current forum. Parent to all items within the
- *   forums array.
- *
- * @see template_preprocess_forum_list()
- */
-#}
-<table>
-  <thead>
-    <tr>
-      <th>{{ 'Forum'|t }}</th>
-      <th>{{ 'Topics'|t }}</th>
-      <th>{{ 'Posts'|t }}</th>
-      <th>{{ 'Last post'|t }}</th>
-    </tr>
-  </thead>
-  <tbody>
-  {% for child_id, forum in forums %}
-    <tr>
-      <td{% if forum.is_container == true %} colspan="4"{% endif %}>
-        {#
-          Enclose the contents of this cell with X divs, where X is the
-          depth this forum resides at. This will allow us to use CSS
-          left-margin for indenting.
-        #}
-        {% if forum.depth > 0 %}{% for i in 1..forum.depth %}<div class="indent">{% endfor %}{% endif %}
-          <div title="{{ forum.icon_title }}">
-            <span class="visually-hidden">{{ forum.icon_title }}</span>
-          </div>
-          <div><a href="{{ forum.link }}">{{ forum.label }}</a></div>
-          {% if forum.description.value %}
-            <div>{{ forum.description.value }}</div>
-          {% endif %}
-        {% if forum.depth > 0 %}{% for i in 1..forum.depth %}</div>{% endfor %}{% endif %}
-      </td>
-      {% if forum.is_container == false %}
-        <td>
-          {{ forum.num_topics }}
-          {% if forum.new_topics == true %}
-            <br />
-            <a href="{{ forum.new_url }}">{{ forum.new_text }}</a>
-          {% endif %}
-        </td>
-        <td>{{ forum.num_posts }}</td>
-        <td>{{ forum.last_reply }}</td>
-      {% endif %}
-    </tr>
-  {% endfor %}
-  </tbody>
-</table>
diff --git a/core/themes/stable9/templates/dataset/forum-topic.html.twig b/core/themes/stable9/templates/dataset/forum-topic.html.twig
deleted file mode 100644
index b6f45f2303b4..000000000000
--- a/core/themes/stable9/templates/dataset/forum-topic.html.twig
+++ /dev/null
@@ -1,18 +0,0 @@
-{#
-/**
- * @file
- * Default theme implementation to display a forum topic.
- *
- * Available variables:
- * - title_link: The forum title link to display.
- * - submitted: Indicates when and by whom a topic was submitted.
- *
- * @see template_preprocess_forums()
- *
- * @ingroup themeable
- */
-#}
-<div class="forum__title">
-  <div>{{ title_link }}</div>
-  <div>{{ submitted }}</div>
-</div>
diff --git a/core/themes/stable9/templates/dataset/forums.html.twig b/core/themes/stable9/templates/dataset/forums.html.twig
deleted file mode 100644
index af67b30dde77..000000000000
--- a/core/themes/stable9/templates/dataset/forums.html.twig
+++ /dev/null
@@ -1,22 +0,0 @@
-{#
-/**
- * @file
- * Theme override to display a forum.
- *
- * May contain forum containers as well as forum topics.
- *
- * Available variables:
- * - forums: The forums to display (as processed by forum-list.html.twig).
- * - topics: The topics to display.
- * - topics_original: Original topics data before modification.
- * - topics_pager: The topics pager.
- * - forums_defined: A flag to indicate that the forums are configured.
- *
- * @see template_preprocess_forums()
- */
-#}
-{% if forums_defined %}
-  {{ forums }}
-  {{ topics }}
-  {{ topics_pager }}
-{% endif %}
diff --git a/core/themes/stable9/templates/user/forum-submitted.html.twig b/core/themes/stable9/templates/user/forum-submitted.html.twig
deleted file mode 100644
index 65680cef1b59..000000000000
--- a/core/themes/stable9/templates/user/forum-submitted.html.twig
+++ /dev/null
@@ -1,21 +0,0 @@
-{#
-/**
- * @file
- * Theme override for a forum post submission string.
- *
- * The submission string indicates when and by whom a topic was submitted.
- *
- * Available variables:
- * - author: The author of the post.
- * - time: How long ago the post was created.
- * - topic: An object with the raw data of the post. Potentially unsafe. Be
- *   sure to clean this data before printing.
- *
- * @see template_preprocess_forum_submitted()
- */
-#}
-{% if time %}
-  <span>{% trans %}By {{ author }} {{ time }} ago{% endtrans %}</span>
-{% else %}
-  {{ 'n/a'|t }}
-{% endif %}
-- 
GitLab